New module 'mbsstr'. Remove module 'strstr'.
[pspp] / ChangeLog
1 2007-02-04  Bruno Haible  <bruno@clisp.org>
2
3         New module mbsstr. Remove module strstr.
4         * modules/mbsstr: New file.
5         * modules/strstr: Remove file.
6         * lib/mbsstr.c: Renamed from lib/strstr.c.
7         (mbsstr): Renamed from strstr.
8         * lib/string_.h (strstr): Remove declaration. Change the conditional
9         link warning.
10         (mbsstr): New declaration.
11         * m4/mbsstr.m4: New file.
12         * m4/strstr.m4: Remove file.
13         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
14         REPLACE_STRSTR.
15         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
16         Don't initialize GNULIB_STRSTR.
17         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
18         substitute GNULIB_STRSTR and REPLACE_STRSTR.
19         * MODULES.html.sh (Internationalization functions): Add mbsstr.
20         (Support for systems lacking ANSI C 89): Remove strstr.
21
22 2007-02-04  Bruno Haible  <bruno@clisp.org>
23
24         New module mbsrchr.
25         * modules/mbsrchr: New file.
26         * lib/mbsrchr.c: New file.
27         * lib/string_.h (strrchr): Add a conditional link warning.
28         (mbsrchr): New declaration.
29         * m4/mbsrchr.m4: New file.
30         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31         GNULIB_MBSRCHR.
32         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
33         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
34
35 2007-02-04  Bruno Haible  <bruno@clisp.org>
36
37         New module mbschr.
38         * modules/mbschr: New file.
39         * lib/mbschr.c: New file.
40         * lib/string_.h (strchr): Add a conditional link warning.
41         (mbschr): New declaration.
42         * m4/mbschr.m4: New file.
43         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44         GNULIB_MBSCHR.
45         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
46         * MODULES.html.sh (Internationalization functions): Add mbschr.
47
48 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
49
50         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
51
52         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
53
54 2007-02-04  Bruno Haible  <bruno@clisp.org>
55
56         New module description section 'configure.ac-early'.
57         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
58         (func_get_autoconf_early_snippet): New function.
59         (func_import, func_create_testdir): Use it. Remove special cases for
60         modules 'extensions' and 'lock'.
61         * modules/extensions (configure.ac-early): Require
62         gl_USE_SYSTEM_EXTENSIONS.
63         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
64
65 2007-02-04  Bruno Haible  <bruno@clisp.org>
66
67         Make use of gcj-4.3's -fsource and -ftarget option.
68         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
69         and if so try the options -fsource and -ftarget.
70         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
71         source_version, ftarget_option, target_version arguments.
72         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
73         (is_envjavac_oldgcj_14_14_usable): Renamed from
74         is_envjavac_gcj_14_14_usable.
75         (is_envjavac_oldgcj_14_13_usable): Renamed from
76         is_envjavac_gcj_14_13_usable.
77         (is_gcj_present): Update.
78         (is_gcj_43, is_gcj43_usable): New functions.
79         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
80         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
81         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
82         try the options -fsource and -ftarget.
83
84 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
85
86         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
87         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
88         larger value.
89
90 2007-02-03  Jim Meyering  <jim@meyering.net>
91
92         Give tools a better chance to allocate space for very large buffers.
93         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
94
95         Make pwd and readlink work also when run with an unreadable parent dir
96         on systems with openat support.
97         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
98         provided getcwd function, even when we have openat support.
99         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
100
101 2007-02-02  Bruno Haible  <bruno@clisp.org>
102
103         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
104         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
105         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
106         portability problems if one of these functions is only used on specific
107         platforms.
108         Reported by Paul Eggert.
109
110 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
111
112         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
113         is causing more trouble than it's curing.
114         * lib/regex_internal.h (__mempcpy): Remove.
115         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
116         (and make the code a tad smaller to boot).
117         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
118
119 2007-02-02  Jim Meyering  <jim@meyering.net>
120
121         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
122         section, not in the Makefile.am: one.
123
124 2007-02-02  Eric Blake  <ebb9@byu.net>
125
126         * lib/strchrnul.c: Always include config.h first.
127
128         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
129         gnulib strstr is not necessary here.
130
131 2007-02-02  Simon Josefsson  <simon@josefsson.org>
132
133         * m4/socklen.m4: Fix typo.
134
135 2007-02-02  Eric Blake  <ebb9@byu.net>
136
137         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
138         * modules/netinet_in (Makefile.am): Likewise.
139
140 2007-02-01  Bruno Haible  <bruno@clisp.org>
141
142         * lib/string_.h (GL_LINK_WARNING): New macro.
143         (strcasecmp, strstr, strcasestr): If provided by the system,
144         conditionally define as a macro that leads to a warning instead of to
145         an error.
146         (strncasecmp): Conditionally define as a macro that leads to a warning.
147
148 2007-02-01  Jim Meyering  <jim@meyering.net>
149
150         Give tools a better chance to allocate space for very large buffers.
151         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
152
153 2007-02-01  Karl Berry  <karl@gnu.org>
154
155         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
156
157 2007-02-01  Bruno Haible  <bruno@clisp.org>
158
159         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
160         renamings.
161
162 2007-02-01  Eric Blake  <ebb9@byu.net>
163
164         * modules/regex (Depends-on): Revert dependence on mempcpy.
165         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
166         module's definition of mempcpy.
167         Reported by Paul Eggert.
168
169 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
170
171         * lib/string_.h: If the gnulib module XYZ is not present, undefine
172         the symbol XYZ before redefining it.  This fixes a problem with
173         programs that don't use XYZ, when compiled on systems that define
174         XYZ to something else.
175
176 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
177
178         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
179         occurs when "mkdir -m foo" creates a setgid directory that is (1)
180         writeable to group or other and (2) is intended to have a special
181         mode bit that is set or cleared.  In such a case, the directory
182         should be neither group- nor other-writeable until the special
183         mode bits are right.
184
185 2007-01-31  Eric Blake  <ebb9@byu.net>
186
187         * modules/mountlist (Depends-on): Add strstr.
188
189         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
190         bug.
191         * modules/string (Makefile.am): Remove redundant replacement.
192         * modules/regex (Depends-on): Add mempcpy.
193
194 2007-01-31  Bruno Haible  <bruno@clisp.org>
195
196         New module description field 'Link'.
197         * gnulib-tool (func_usage): Document --extract-link-directive.
198         (sed_extract_prog): Recognize 'Link' directive.
199         (func_get_link_directive): New function.
200         (func_import): Show summary of link directives.
201         Handle --extract-link-directive option.
202         * modules/acl (Link): New section.
203         * modules/clock-time (Link): New section.
204         * modules/euidaccess (Link): New section.
205         * modules/gettext (Link): New section.
206         * modules/iconv (Link): New section.
207         * modules/lock (Link): New section.
208         * modules/nanosleep (Link): New section.
209         * modules/readline (Link): New section.
210
211 2007-01-27  Bruno Haible  <bruno@clisp.org>
212
213         Enforce the use of gnulib modules for unportable <string.h> functions.
214         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
215         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
216         (gl_HEADER_STRING_H_BODY): Require it.
217         * lib/string_.h: If the gnulib module XYZ is not present, redefine
218         the symbol XYZ to one that gives a link error.
219         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
220         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
221         * modules/mempcpy (configure.ac): Likewise.
222         * modules/memrchr (configure.ac): Likewise.
223         * modules/stpcpy (configure.ac): Likewise.
224         * modules/stpncpy (configure.ac): Likewise.
225         * modules/strcase (configure.ac): Likewise.
226         * modules/strcasestr (configure.ac): Likewise.
227         * modules/strchrnul (configure.ac): Likewise.
228         * modules/strdup (configure.ac): Likewise.
229         * modules/strndup (configure.ac): Likewise.
230         * modules/strnlen (configure.ac): Likewise.
231         * modules/strpbrk (configure.ac): Likewise.
232         * modules/strsep (configure.ac): Likewise.
233         * modules/strstr (configure.ac): Likewise.
234         * modules/strtok_r (configure.ac): Likewise.
235
236 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
237
238         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
239
240 2007-01-30  Jim Meyering  <jim@meyering.net>
241
242         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
243
244 2007-01-29  Bruno Haible  <bruno@clisp.org>
245
246         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
247         * lib/execute.c: Likewise.
248         * lib/pipe.c: Likewise.
249         * lib/printf-args.h: Likewise.
250         * lib/printf-args.c: Likewise.
251         * lib/printf-parse.c: Likewise.
252         * lib/vasnprintf.c: Likewise.
253
254 2007-01-29  Eric Blake  <ebb9@byu.net>
255
256         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
257         declaration.
258
259 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
260
261         * lib/strptime.h (strptime): Use 'restrict' for args where
262         POSIX requires this.
263         * lib/strptime.c (strptime): Likewise.
264         Change license notice from LGPL to GPL, since gnulib-tool will
265         change this as needed.
266         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
267         defined.
268         Include "strptime.h" first, to check interface.
269         Do not #undef _LIBC and _NL_CURRENT.
270         Do not include <stdlib.h>; no longer needed.
271         Include "time_r.h" and declare ptime_locale_status
272         only if _LIBC is not defined.
273         (__P): Remove unused macro.
274         (match_string): Bring back glibc version, but use it only if _LIBC
275         is defined.
276         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
277         Remove unnecessary assertion and abort() call.
278         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
279         * m4/strptime.m4: Fix serial number comment.
280         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
281         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
282         (Depends-on): Add time_r.
283
284 2007-01-29  Bruno Haible  <bruno@clisp.org>
285
286         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
287         strptime.
288         * modules/strptime (Depends-on): Add stdbool.
289         * lib/strptime.h: Include <time.h> always. Add comments.
290
291 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
292
293         * modules/strptime: New file.
294         * lib/strptime.h: New file.
295         * lib/strptime.c: New file.
296         * m4/strptime.m4: New file.
297
298 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
299
300         * MODULES.html.sh: New module mpsort.
301         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
302
303         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
304         a circularity problem with HP-UX ia64 reported by Bob Proulx in
305         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
306         All uses changed.
307         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
308         All uses changed.
309         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
310         to _Restrict_.
311         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
312         the parameter matches the prototype.
313
314 2007-01-28  Jim Meyering  <jim@meyering.net>
315
316         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
317         sys/time.h here, reverting that part of the previous patch:
318         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
319
320 2007-01-28  Bruno Haible  <bruno@clisp.org>
321
322         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
323         value of $(SYS_TIME_H).
324         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
325         remove it conditionally, too. [added by Jim Meyering]
326         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
327         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
328         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
329         GETTIMEOFDAY_REPLACEMENT to 1.
330
331 2007-01-28  Bruno Haible  <bruno@clisp.org>
332
333         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
334         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
335         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
336         Set UNISTD_H instead of UNISTD_H2.
337         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
338
339 2007-01-28  Bruno Haible  <bruno@clisp.org>
340
341         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
342         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
343
344 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
345
346         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
347         (func_create_testdir): Ensure C locale for `grep' and `tr'
348         character ranges.
349         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
350         ACLOCAL_AMFLAGS parsing state machine.
351
352 2007-01-27  Bruno Haible  <bruno@clisp.org>
353
354         * modules/unistr/base: Update.
355
356 2007-01-27  Bruno Haible  <bruno@clisp.org>
357
358         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
359         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
360         * modules/unistr/u32-mbtouc-unsafe: Renamed from
361         modules/unistr/u32-mbtouc.
362         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
363         * lib/unistr.h: Update.
364         * lib/linebreak.c: Update.
365         * modules/unistr/u32-mbtouc: Renamed from
366         modules/unistr/u32-mbtouc-safe.
367         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
368         * lib/unistr.h: Update.
369         * lib/unistr/u32-to-u8.c: Update.
370         * lib/unistr/u32-to-u16.c: Update.
371
372 2007-01-27  Bruno Haible  <bruno@clisp.org>
373
374         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
375         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
376         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
377         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
378         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
379         * modules/unistr/u16-mbtouc-unsafe: Renamed from
380         modules/unistr/u16-mbtouc.
381         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
382         * lib/unistr.h: Update.
383         * lib/linebreak.c: Update.
384         * modules/linebreak: Update.
385         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
386         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
387         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
388         * modules/unistr/u16-mbtouc: Renamed from
389         modules/unistr/u16-mbtouc-safe.
390         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
391         * lib/unistr.h: Update.
392         * lib/unistr/u16-to-u8.c: Update.
393         * modules/unistr/u16-to-u8: Update.
394         * lib/unistr/u16-to-u32.c: Update.
395         * modules/unistr/u16-to-u32: Update.
396
397 2007-01-27  Bruno Haible  <bruno@clisp.org>
398
399         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
400         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
401         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
402         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
403         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
404         * modules/unistr/u8-mbtouc-unsafe: Renamed from
405         modules/unistr/u8-mbtouc.
406         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
407         * lib/unistr.h: Update.
408         * lib/striconveh.c: Update.
409         * modules/striconveh: Update.
410         * lib/linebreak.c: Update.
411         * modules/linebreak: Update.
412         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
413         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
414         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
415         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
416         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
417         * lib/unistr.h: Update.
418         * lib/striconveh.c: Update.
419         * modules/striconveh: Update.
420         * lib/unistr/u8-to-u16.c: Update.
421         * modules/unistr/u8-to-u16: Update.
422         * lib/unistr/u8-to-u32.c: Update.
423         * modules/unistr/u8-to-u32: Update.
424
425 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
426
427         Sync from Libtool.
428         * lib/argz.c: Do not include strings.h nor memory.h, include
429         string.h unconditionally.  Patch by Simon Josefsson.
430
431 2007-01-27  Bruno Haible  <bruno@clisp.org>
432
433         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
434         from gl_HEADER_STRING_H_BODY.
435         (gl_HEADER_STRING_H_BODY): Require it.
436         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
437         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
438         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
439         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
440         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
441         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
442         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
443         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
444         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
445         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
446         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
447         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
448         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
449         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
450         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
451
452 2007-01-27  Bruno Haible  <bruno@clisp.org>
453
454         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
455         check_PROGRAMS into noinst_PROGRAMS.
456         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
457         check_PROGRAMS in this case.
458         (func_import): Set for_test to false.
459         (func_create_testdir): Set for_test to true.
460
461 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
462             Bruno Haible  <bruno@clisp.org>
463
464         * modules/strcasestr (Files): Remove lib/strcasestr.h.
465         (Depends-on): Add string.
466         (Includes): Use <string.h> instead of strcasestr.h.
467         * modules/string (Makefile.am): Also substitute the value of
468         REPLACE_STRCASESTR.
469         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
470         assume strcasestr is declared in <string.h> not <strings.h>. Also
471         set REPLACE_STRCASESTR.
472         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
473         REPLACE_STRCASESTR.
474         * lib/strcasestr.h: Remove file.
475         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
476         * lib/string_.h (strcasestr): New declaration.
477
478 2007-01-27  Bruno Haible  <bruno@clisp.org>
479
480         * lib/string_.h: Use 'extern'.
481
482 2007-01-27  Jim Meyering  <jim@meyering.net>
483
484         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
485         of set-but-not-used local, "q".
486
487         * lib/mempcpy.c: Include <config.h> before <string.h>.
488         This fixes a compilation error on HP-UX, due to the system's
489         "restrict"-using mempcpy prototype.
490
491 2007-01-26  Bruno Haible  <bruno@clisp.org>
492
493         Small optimization.
494         * lib/javacomp.c: Include c-strstr.h.
495          (is_envjavac_gcj): Use c_strstr instead of strstr.
496         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
497
498 2007-01-26  Bruno Haible  <bruno@clisp.org>
499
500         * MODULES.html.sh (Unicode string functions): Add the new modules.
501
502         * modules/uniconv/u32-strconv-to-locale: New file.
503         * lib/uniconv/u32-strconv-to-locale.c: New file.
504
505         * modules/uniconv/u16-strconv-to-locale: New file.
506         * lib/uniconv/u16-strconv-to-locale.c: New file.
507
508         * modules/uniconv/u8-strconv-to-locale: New file.
509         * lib/uniconv/u8-strconv-to-locale.c: New file.
510
511         * modules/uniconv/u32-strconv-from-locale: New file.
512         * lib/uniconv/u32-strconv-from-locale.c: New file.
513
514         * modules/uniconv/u16-strconv-from-locale: New file.
515         * lib/uniconv/u16-strconv-from-locale.c: New file.
516
517         * modules/uniconv/u8-strconv-from-locale: New file.
518         * lib/uniconv/u8-strconv-from-locale.c: New file.
519
520         * modules/uniconv/u32-strconv-to-enc: New file.
521         * lib/uniconv/u32-strconv-to-enc.c: New file.
522         * modules/uniconv/u32-strconv-to-enc-tests: New file.
523         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
524
525         * modules/uniconv/u16-strconv-to-enc: New file.
526         * lib/uniconv/u16-strconv-to-enc.c: New file.
527         * lib/uniconv/u-strconv-to-enc.h: New file.
528         * modules/uniconv/u16-strconv-to-enc-tests: New file.
529         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
530
531         * modules/uniconv/u8-strconv-to-enc: New file.
532         * lib/uniconv/u8-strconv-to-enc.c: New file.
533         * modules/uniconv/u8-strconv-to-enc-tests: New file.
534         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
535
536         * modules/uniconv/u32-strconv-from-enc: New file.
537         * lib/uniconv/u32-strconv-from-enc.c: New file.
538         * modules/uniconv/u32-strconv-from-enc-tests: New file.
539         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
540
541         * modules/uniconv/u16-strconv-from-enc: New file.
542         * lib/uniconv/u16-strconv-from-enc.c: New file.
543         * modules/uniconv/u16-strconv-from-enc-tests: New file.
544         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
545
546         * modules/uniconv/u8-strconv-from-enc: New file.
547         * lib/uniconv/u8-strconv-from-enc.c: New file.
548         * lib/uniconv/u-strconv-from-enc.h: New file.
549         * modules/uniconv/u8-strconv-from-enc-tests: New file.
550         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
551
552         * modules/uniconv/u32-conv-from-enc: New file.
553         * lib/uniconv/u32-conv-from-enc.c: New file.
554         * modules/uniconv/u32-conv-from-enc-tests: New file.
555         * tests/uniconv/test-u32-conv-from-enc.c: New file.
556
557         * modules/uniconv/u16-conv-from-enc: New file.
558         * lib/uniconv/u16-conv-from-enc.c: New file.
559         * lib/uniconv/u-conv-from-enc.h: New file.
560         * modules/uniconv/u16-conv-from-enc-tests: New file.
561         * tests/uniconv/test-u16-conv-from-enc.c: New file.
562
563         * modules/uniconv/u8-conv-from-enc: New file.
564         * lib/uniconv/u8-conv-from-enc.c: New file.
565         * modules/uniconv/u8-conv-from-enc-tests: New file.
566         * tests/uniconv/test-u8-conv-from-enc.c: New file.
567
568         * modules/uniconv/base: New file.
569         * lib/uniconv.h: New file.
570
571 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
572
573         * doc/gnulib-tool.texi (Initial import): Update to match current
574         behavior with strdup module.
575         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
576         * lib/memmem.h: Remove; all uses removed.  This is now done
577         by <string.h>.
578         * lib/mempcpy.h: Likewise.
579         * lib/memrchr.h: Likewise.
580         * lib/stpcpy.h: Likewise.
581         * lib/stpncpy.h: Likewise.
582         * lib/strcase.h: Likewise.
583         * lib/strchrnul.h: Likewise.
584         * lib/strdup.h: Likewise.
585         * lib/strndup.h: Likewise.
586         * lib/strnlen.h: Likewise.
587         * lib/strpbrk.h: Likewise.
588         * lib/strsep.h: Likewise.
589         * lib/strstr.h: Likewise.
590         * lib/strtok_r.h: Likewise.
591         * lib/string_.h: New file.
592         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
593         Rely on <string.h> instead.
594         * lib/canon-host.c: Likewise.
595         * lib/chdir-long.c: Likewise.
596         * lib/concatpath.c: Likewise.
597         * lib/exclude.c: Likewise.
598         * lib/fchdir.c: Likewise.
599         * lib/getaddrinfo.c: Likewise.
600         * lib/getcwd.c: Likewise.
601         * lib/getsubopt.c: Likewise.
602         * lib/glob.c: Likewise.
603         * lib/hard-locale.c: Likewise.
604         * lib/iconvme.c: Likewise.
605         * lib/javacomp.c: Likewise.
606         * lib/mempcpy.c: Likewise.
607         * lib/memrchr.c: Likewise.
608         * lib/regex_internal.h: Likewise.
609         * lib/stpncpy.c: Likewise.
610         * lib/strcasecmp.c: Likewise.
611         * lib/strchrnul.c: Likewise.
612         * lib/strdup.c: Likewise.
613         * lib/striconv.c: Likewise.
614         * lib/striconveh.c: Likewise.
615         * lib/striconveha.c: Likewise.
616         * lib/strncasecmp.c: Likewise.
617         * lib/strndup.c: Likewise.
618         * lib/strnlen.c: Likewise.
619         * lib/strsep.c: Likewise.
620         * lib/strstr.c: Likewise.
621         * lib/strtok_r.c: Likewise.
622         * lib/userspec.c: Likewise.
623         * lib/w32spawn.h: Likewise.
624         * lib/xstrndup.c: Likewise.
625         * lib/mountlist.c (strstr): Remove decl.
626         * m4/string_h.m4: New file.
627         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
628         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
629         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
630         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
631         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
632         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
633         Set REPLACE_STRCASECMP if necessary.
634         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
635         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
636         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
637         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
638         HAVE_DECL_STRDUP if necessary.
639         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
640         since gl_FUNC_STRNDUP does that now.
641         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
642         Check for decl here...
643         (gl_PREREQ_STRNLEN): ... not here.
644         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
645         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
646         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
647         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
648         necessary.
649         * modules/string: New file.
650         * modules/memmem (Files): Remove special-purpose include file.
651         (Depends-on): Add string.
652         (Include): Include <string.h>, not the removed file.
653         * modules/mempcpy: Likewise.
654         * modules/memrchr: Likewise.
655         * modules/stpcpy: Likewise.
656         * modules/stpncpy: Likewise.
657         * modules/strcase: Likewise.
658         * modules/strchrnul: Likewise.
659         * modules/strdup: Likewise.
660         * modules/strndup: Likewise.
661         * modules/strnlen: Likewise.
662         * modules/strpbrk: Likewise.
663         * modules/strsep: Likewise.
664         * modules/strstr: Likewise.
665         * modules/strtok_r: Likewise.
666         * tests/test-dirname.c: Don't include "strdup.h", since
667         <string.h> now suffices.
668         * tests/test-memmem.c: Don't include "memmem.h", since
669         <string.h> now suffices.
670
671 2007-01-25  Bruno Haible  <bruno@clisp.org>
672
673         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
674         *resultp is 0.
675
676         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
677         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
678         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
679         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
680
681         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
682         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
683         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
684         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
685         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
686         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
687
688 2007-01-24  Bruno Haible  <bruno@clisp.org>
689
690         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
691         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
692         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
693         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
694         gl_FUNC_FTS_CORE.
695         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
696         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
697         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
698         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
699         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
700         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
701         gl_FUNC_FCHOWNAT.
702         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
703         gl_FUNC_STRFTIME.
704         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
705         Reported by Ralf Wildenhues.
706
707 2007-01-24  Bruno Haible  <bruno@clisp.org>
708
709         Drop AC_REQUIRE calls that are redundant with the module dependencies.
710         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
711         gl_GETADDRINFO.
712         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
713         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
714         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
715
716 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
717
718         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
719         Don't use 'exit'; just return from 'main'.
720         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
721
722         * lib/fnmatch_.h: Readjust white space and comments to match
723         glibc, to avoid spurious diffs.
724
725 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
726
727         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
728         2004-12-01 change by Jakub Jelinek, since this code won't compile
729         if !LIBC.  Problem reported by Bob Proulx.
730
731 2007-01-23  Bruno Haible  <bruno@clisp.org>
732
733         * lib/striconveh.c: Include c-strcaseeq.h.
734         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
735         * modules/striconveh (Depends-on): Add c-strcaseeq.
736
737 2007-01-23  Bruno Haible  <bruno@clisp.org>
738
739         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
740
741         * modules/c-strcaseeq: New file.
742         * lib/c-strcaseeq.h: New file.
743
744         * modules/streq: New file.
745         * lib/streq.h: New file.
746
747 2007-01-23  Bruno Haible  <bruno@clisp.org>
748
749         * modules/striconveha-tests: New file.
750         * tests/test-striconveha.c: New file.
751
752         * lib/striconveha.h: Include <stdbool.h>.
753         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
754         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
755         (mem_iconveha_notranslit): Renamed from mem_iconveha.
756         (mem_iconveha): New function.
757         (str_iconveha_notranslit): Renamed from str_iconveha.
758         (str_iconveha): New function.
759         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
760         c-strcase.
761
762 2007-01-23  Bruno Haible  <bruno@clisp.org>
763
764         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
765         encodings without forgiving before trying any encoding with handler.
766         (str_iconveha): Try all encodings without forgiving before trying any
767         encoding with handler.
768
769 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
770
771         Import the following changes from libc.
772
773         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
774
775         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
776
777         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
778
779         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
780         normal_bracket label.
781
782         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
783
784         [BZ #361]
785         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
786         to normal_bracket after fetching the next character.
787
788 2007-01-22  Bruno Haible  <bruno@clisp.org>
789
790         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
791         argument.
792         * lib/striconveh.c (iconv_carefully_1): New function.
793         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
794         argument.
795         (str_cd_iconveh): Update.
796         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
797         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
798         * tests/test-striconveh.c (MAGIC): New macro.
799         (new_offsets): New function.
800         (main): Test call with and without offsets.
801
802 2007-01-22  Bruno Haible  <bruno@clisp.org>
803
804         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
805         * modules/sys_select (Makefile.am): Likewise.
806         * modules/sys_socket (Makefile.am): Likewise.
807         * modules/sys_time (Makefile.am): Likewise.
808
809 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
810
811         * modules/gettimeofday (License): Change from GPL to LGPL, since
812         gettimeofday is a library function.
813
814 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
815
816         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
817
818 2007-01-21  Bruno Haible  <bruno@clisp.org>
819
820         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
821
822 2007-01-21  Bruno Haible  <bruno@clisp.org>
823
824         * modules/striconveha: New file.
825         * lib/striconveha.h: New file.
826         * lib/striconveha.c: New file.
827         * MODULES.html.sh (Internationalization functions): Add striconveha.
828         * lib/striconv.c (str_iconv): Optimize the case of an empty input
829         string.
830         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
831
832 2007-01-21  Bruno Haible  <bruno@clisp.org>
833
834         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
835         * lib/striconveh.c (str_iconveh): Likewise.
836
837 2007-01-21  Bruno Haible  <bruno@clisp.org>
838
839         * lib/striconveh.h (mem_iconveh): New declaration.
840         * lib/striconveh.c (mem_iconveh): New function.
841         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
842
843 2007-01-21  Bruno Haible  <bruno@clisp.org>
844
845         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
846
847         * lib/striconveh.h (mem_cd_iconveh): Change specification.
848         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
849         original result buffer.
850         (str_cd_iconveh): Update.
851         * tests/test-striconveh.c (main): Update.
852
853         * lib/striconv.h (mem_cd_iconv): Change specification.
854         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
855         result buffer.
856         (str_cd_iconv): Update.
857         * tests/test-striconv.c (main): Update.
858
859 2007-01-21  Bruno Haible  <bruno@clisp.org>
860
861         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
862
863 2007-01-20  Jim Meyering  <jim@meyering.net>
864
865         * lib/userspec.c (parse_with_separator): If a user or group string
866         starts with "+", skip the corresponding name-to-ID look-up, since
867         such a look-up must fail: user and group names may not include "+".
868
869 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
870
871         * lib/poll.c: Include sys/time.h and time.h unconditionally,
872         since we now assume the sys_time module.
873         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
874         check for sys/time.h; no longer needed.
875         * modules/poll (Depends-on): Depend on sys_time.
876
877 2007-01-18  Bruno Haible  <bruno@clisp.org>
878
879         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
880         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
881
882         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
883         gettimeofday.
884
885         * tests/test-gettimeofday.c: Include <time.h>.
886         (dummy): Remove variable.
887
888         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
889         gl_HEADER_SYS_TIME_H.
890         (gl_HEADER_SYS_TIME_H): New macro.
891
892         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
893         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
894         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
895         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
896         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
897         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
898         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
899         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
900         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
901         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
902         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
903
904         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
905         last change; it caused a compilation error when cross-compiling to
906         Cygwin.
907
908 2007-01-18  Jim Meyering  <jim@meyering.net>
909
910         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
911         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
912         than the race-prone "test -d sys || mkdir sys".
913         (configure.ac): Use AC_PROG_MKDIR_P.
914         * modules/sys_select: Likewise.
915         * modules/sys_socket: Likewise.
916         * modules/sys_time: Likewise.
917
918 2007-01-18  Eric Blake  <ebb9@byu.net>
919
920         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
921         replace gettimeofday.
922         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
923         name, to avoid infinite recursion.
924
925 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
926
927         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
928         module sys_time.
929         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
930         assume timespec.h defines struct timeval.
931         * lib/settime.c: Likewise.
932         * lib/utimens.c: Likewise.
933         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
934         since we now assume the gettimeofday module.
935         * lib/tempname.c (__gen_tempname): Likewise.
936         * lib/gettimeofday.h: Remove.
937         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
938         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
939         Include <time.h>, for 'time()'.
940         (localtime_buffer_addr): Also use this workaround if
941         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
942         to simplify the uses.  All uses changed.
943         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
944         that #undef is inside {}, and 'const' follows type name consistently.
945         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
946         (gettimeofday): Do not use the maximum possible value for
947         tv->tv_usec, since that might break usages other than ls.c.
948         Instead, we'll leave ls.c alone.  This undoes today's patch
949         by Bruno.  Add a compile-time warning for 1s-clock resolution;
950         we've never observed the problem but might as well keep the
951         canary.
952         * lib/nanosleep.c: Include timespec.h first, for interface check.
953         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
954         now assume the sys_time module.
955         * lib/tempname.c: Likewise.
956         * lib/timespec.h: Likewise.
957         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
958         needed.
959         * lib/strftime.c: Likewise.
960         * lib/timespec.h: Likewise.
961         * lib/posixtm.c: Include posixtm.h first, for interface check.
962         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
963         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
964         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
965         * lib/sys_time_.h: New file.
966         * lib/timespec.h (struct timespec): Use long int, not long.
967         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
968         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
969         Remove obsolescent call to AC_HEADER_TIME.
970         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
971         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
972         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
973         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
974         Likewise.
975         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
976         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
977         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
978         into the sys_time module.  Check for gettimeofday just once.
979         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
980         for gettimeofday signature to just check the signature.  Merely
981         compile it, since linking doesn't test signature.  Improve test for
982         whether gettimeofday.o is actually needed.
983         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
984         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
985         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
986         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
987         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
988         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
989         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
990         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
991         than worrying about sys/time.h.
992         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
993         Don't bother worrying about TIME_WITH_SYS_TIME.
994         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
995         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
996         * m4/sys_time_h.m4: New file.
997         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
998         Don't include sys/time.h.  Return from main rather than exiting.
999         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
1000         all uses changed.
1001         * modules/gethrxtime (Depends-on): Add sys_time.
1002         * modules/gettime (Depends-on): Likewise.
1003         * modules/gettimeofday (Depends-on): Likewise.
1004         * modules/nanosleep (Depends-on): Likewise.
1005         * modules/settime (Depends-on): Likewise.
1006         * modules/tempname (Depends-on): Likewise.
1007         * modules/utimens (Depends-on): Likewise.
1008         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
1009         (Include:) Change back to <sys/time.h>.
1010         (Maintainer:) Add self.
1011         * modules/sys_time: New file.
1012         * modules/tempname (Depends-on): Add gettimeofday.
1013         * tests/test-gettimeofday.c: Include <sys/time.h>
1014         rather than gettimeofday.h.
1015
1016 2007-01-17  Bruno Haible  <bruno@clisp.org>
1017
1018         * gnulib-tool (func_get_license): Revert last patch. Instead, let
1019         the license default to GPL.
1020         (func_create_testdir): Don't complain if a module is LGPL and its
1021         tests module depends on GPLed modules.
1022
1023 2007-01-17  Bruno Haible  <bruno@clisp.org>
1024
1025         * lib/gettimeofday.c (gettimeofday): Add code for the case
1026         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
1027         maximum possible value for tv->tv_usec, rather than the minimum one.
1028
1029 2005-10-08  Martin Lambers  <marlam@marlam.de>
1030 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1031 2007-01-16  Bruno Haible  <bruno@clisp.org>
1032
1033         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
1034         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
1035         gl_FUNC_GETTIMEOFDAY.
1036         (Include): Add gettimeofday.h.
1037         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
1038         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
1039         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
1040         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
1041         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
1042         * lib/gettimeofday.h: New file.
1043         * lib/gettimeofday.c: Include <sys/timeb.h>.
1044         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
1045         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1046         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
1047         fall back on time().
1048
1049         * tests/test-gettimeofday.c: New file.
1050         * modules/gettimeofday-tests: New file.
1051
1052 2007-01-16  Eric Blake  <ebb9@byu.net>
1053
1054         * modules/fnmatch (Depends-on): Depend on wchar.
1055         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
1056         * m4/fnmatch.m4: Likewise.
1057         * modules/mbchar (Makefile.am): Assume <wchar.h>.
1058         * m4/mbchar.m4: Likewise.
1059         * modules/mbswidth (Depends-on): Depend on wchar.
1060         * lib/mbswidth.c: Assume <wchar.h>.
1061         * m4/mbswidth.m4: Likewise.
1062         * modules/quotearg (Depends-on): Depend on wchar.
1063         * lib/quotearg.c: Assume <wchar.h>.
1064         * m4/quotearg.m4: Likewise.
1065         * modules/regex (Depends-on): Depend on wchar.
1066         * lib/regex_internal.h: Assume <wchar.h>.
1067         * m4/regex.m4: Likewise.
1068         * modules/stdint (Depends-on): Depend on wchar.
1069         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
1070         * m4/stdint.m4: Likewise.
1071         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
1072         * modules/strftime (Depends-on): Depend on wchar.
1073         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
1074         * modules/strtol (Depends-on): Depend on wchar.
1075         * lib/strtol.c: Assume <wchar.h>.
1076         * modules/wcwidth (Depends-on): Depend on wchar.
1077         * lib/wcwidth.h: Assume <wchar.h>.
1078         * m4/wcwidth.m4: Likewise.
1079
1080 2007-01-16  Bruno Haible  <bruno@clisp.org>
1081
1082         * modules/csharpexec-script: New, created from...
1083         * modules/csharpexec: ... this.
1084
1085 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
1086
1087         * modules/javaexec-script: New, created from...
1088         * modules/javaexec: ... this.
1089
1090 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1091
1092         * modules/poll (Dependencies): Add sys_select.
1093
1094 2007-01-15  Jim Meyering  <jim@meyering.net>
1095
1096         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1097         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1098         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1099         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1100
1101 2007-01-15  Bruno Haible  <bruno@clisp.org>
1102
1103         * modules/striconveh: New file.
1104         * lib/striconveh.h: New file.
1105         * lib/striconveh.c: New file.
1106         * MODULES.html.sh (Internationalization functions): Add striconveh.
1107
1108         * modules/striconveh-tests: New file.
1109         * tests/test-striconveh.c: New file.
1110
1111 2007-01-15  Bruno Haible  <bruno@clisp.org>
1112
1113         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1114         not from GNU libiconv or GNU libc.
1115
1116 2007-01-15  Bruno Haible  <bruno@clisp.org>
1117
1118         * doc/gnulib-intro.texi (Copyright): Explain the different license
1119         terms for module descriptions, autoconf macros, tests, documentation.
1120
1121 2007-01-14  Bruno Haible  <bruno@clisp.org>
1122
1123         * modules/striconv-tests: New file.
1124         * tests/test-striconv.c: New file.
1125
1126 2007-01-14  Bruno Haible  <bruno@clisp.org>
1127
1128         * modules/iconv-tests: New file.
1129         * tests/test-iconv.c: New file.
1130
1131 2007-01-14  Bruno Haible  <bruno@clisp.org>
1132
1133         * gnulib-tool (func_get_license): For test modules, use the license of
1134         the main module.
1135
1136 2007-01-14  Bruno Haible  <bruno@clisp.org>
1137
1138         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1139         if iconv is found to exist.
1140
1141 2007-01-14  Bruno Haible  <bruno@clisp.org>
1142
1143         * modules/c-ctype-tests: New file.
1144         * tests/test-c-ctype.c: New file.
1145
1146 2007-01-14  Bruno Haible  <bruno@clisp.org>
1147
1148         * modules/binary-io-tests: New file.
1149         * tests/test-binary-io.sh: New file.
1150         * tests/test-binary-io.c: New file.
1151
1152 2007-01-14  Bruno Haible  <bruno@clisp.org>
1153
1154         * modules/array-oset-tests: New file.
1155         * tests/test-array_oset.c: New file.
1156
1157 2007-01-14  Bruno Haible  <bruno@clisp.org>
1158
1159         * modules/array-list-tests: New file.
1160         * tests/test-array_list.c: New file.
1161
1162 2007-01-14  Bruno Haible  <bruno@clisp.org>
1163
1164         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
1165         and make.
1166         Reported by Simon Josefsson in
1167         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
1168
1169 2007-01-14  Bruno Haible  <bruno@clisp.org>
1170
1171         * modules/allocsa-tests: New file.
1172         * tests/test-allocsa.c: New file.
1173
1174 2007-01-14  Bruno Haible  <bruno@clisp.org>
1175
1176         * modules/fchdir (Depends-on): Add absolute-header.
1177         * modules/unistd (Depends-on): Likewise.
1178
1179 2006-12-30  Bruno Haible  <bruno@clisp.org>
1180
1181         * modules/fchdir: New file.
1182         * modules/unistd (Files): Add lib/unistd_.h.
1183         (Makefile.am): Generate unistd.h from unistd_.h.
1184         * lib/fchdir.c: New file.
1185         * lib/dirent_.h: New file.
1186         * lib/unistd_.h: New file.
1187         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
1188         * m4/fchdir.m4: New file.
1189         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
1190         (gl_HEADER_UNISTD): Invoke it.
1191         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
1192         function.
1193         * lib/backupfile.c (opendir, closedir): Undefine.
1194         * lib/chown.c (open, close): Undefine.
1195         * lib/clean-temp.c (open, close): Undefine.
1196         * lib/copy-file.c (open, close): Undefine.
1197         * lib/execute.c (open, close): Undefine.
1198         * lib/fsusage.c (open, close): Undefine.
1199         * lib/gc-gnulib.c (open, close): Undefine.
1200         * lib/getcwd.c (opendir, closedir): Undefine.
1201         * lib/glob.c (opendir, closedir): Undefine.
1202         * lib/javacomp.c (open, close): Undefine.
1203         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
1204         * lib/openat-proc.c (open, close): Undefine.
1205         * lib/pagealign_alloc.c (open, close): Undefine.
1206         * lib/pipe.c (open, close): Undefine.
1207         * lib/progreloc.c (open, close): Undefine.
1208         * lib/savedir.c (opendir, closedir): Undefine.
1209         * lib/utime.c (open, close): Undefine.
1210         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
1211
1212 2007-01-10  Bruno Haible  <bruno@clisp.org>
1213
1214         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
1215
1216 2007-01-12  Eric Blake  <ebb9@byu.net>
1217
1218         Provide a robust <wchar.h>.  Further simplifications are now
1219         possible in other modules, but not included here.
1220         * modules/wchar: New module.
1221         * m4/wchar.m4: New file.
1222         * lib/wchar_.h: Likewise.
1223         * modules/mbchar (Depends-on): Depend on wchar, as the first use
1224         of the new module.
1225         * MODULES.html.sh (Extended multibyte and wide character utilities):
1226         New section.
1227
1228 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1229
1230         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
1231         to a reasonable default for memory allocation.
1232         (xreadlink): Don't allocate a huge buffer, to work around a buggy
1233         file system that reports garbage st_size values for symlinks.
1234         Problem reported by Liyang Hu.
1235
1236 2007-01-11  Simon Josefsson  <simon@josefsson.org>
1237
1238         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
1239         Emacs .#* auto-save files).
1240
1241 2007-01-11  Bruno Haible  <bruno@clisp.org>
1242
1243         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
1244         directory.
1245
1246 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
1247
1248         Use @...@ consistently in lib/wctype_.h.
1249         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
1250         on it being set to 1 or 0.
1251         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
1252         go back to AC_SUBSTing it.
1253         * modules/wctype (Makefile.am): Undo previous change.
1254
1255 2007-01-10  Eric Blake  <ebb9@byu.net>
1256
1257         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
1258         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
1259         * modules/wctype (Makefile.am): Likewise.
1260         Reported by Chris McGuire.
1261
1262 2007-01-10  Jim Meyering  <jim@meyering.net>
1263
1264         fts.c: a small readability/maintainability improvement
1265         * lib/fts.c (fts_read): Make this code slightly more readable and
1266         maintainable by hoisting the "sp->fts_cur = p" assignments to
1267         immediately follow the statements that set P.  Derived from
1268         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
1269
1270 2007-01-10  Eric Blake  <ebb9@byu.net>
1271
1272         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
1273         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
1274         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1275         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1276         Reported by Chris McGuire.
1277
1278 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1279
1280         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
1281         in sed script.
1282
1283 2007-01-09  Bruno Haible  <bruno@clisp.org>
1284
1285         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
1286         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
1287         variables.
1288         (func_module): Use them.
1289
1290 2007-01-09  Bruno Haible  <bruno@clisp.org>
1291
1292         * modules/unistr/base: New file.
1293         * lib/unistr.h: New file.
1294
1295         * modules/unistr/u8-to-u16: New file.
1296         * lib/unistr/u8-to-u16.c: New file.
1297
1298         * modules/unistr/u8-to-u32: New file.
1299         * lib/unistr/u8-to-u32.c: New file.
1300
1301         * modules/unistr/u16-to-u8: New file.
1302         * lib/unistr/u16-to-u8.c: New file.
1303
1304         * modules/unistr/u16-to-u32: New file.
1305         * lib/unistr/u16-to-u32.c: New file.
1306
1307         * modules/unistr/u32-to-u8: New file.
1308         * lib/unistr/u32-to-u8.c: New file.
1309
1310         * modules/unistr/u32-to-u16: New file.
1311         * lib/unistr/u32-to-u16.c: New file.
1312
1313         * modules/unistr/u8-check: New file.
1314         * modules/unistr/u16-check: New file.
1315         * modules/unistr/u32-check: New file.
1316         * lib/unistr/u8-check.c: New file.
1317         * lib/unistr/u16-check.c: New file.
1318         * lib/unistr/u32-check.c: New file.
1319
1320         * modules/unistr/u8-chr: New file.
1321         * modules/unistr/u16-chr: New file.
1322         * modules/unistr/u32-chr: New file.
1323         * lib/unistr/u8-chr.c: New file.
1324         * lib/unistr/u16-chr.c: New file.
1325         * lib/unistr/u32-chr.c: New file.
1326
1327         * modules/unistr/u8-cmp: New file.
1328         * modules/unistr/u16-cmp: New file.
1329         * modules/unistr/u32-cmp: New file.
1330         * lib/unistr/u8-cmp.c: New file.
1331         * lib/unistr/u16-cmp.c: New file.
1332         * lib/unistr/u32-cmp.c: New file.
1333
1334         * modules/unistr/u8-cpy: New file.
1335         * modules/unistr/u16-cpy: New file.
1336         * modules/unistr/u32-cpy: New file.
1337         * lib/unistr/u8-cpy.c: New file.
1338         * lib/unistr/u16-cpy.c: New file.
1339         * lib/unistr/u32-cpy.c: New file.
1340         * lib/unistr/u-cpy.h: New file.
1341
1342         * modules/unistr/u8-cpy-alloc: New file.
1343         * modules/unistr/u16-cpy-alloc: New file.
1344         * modules/unistr/u32-cpy-alloc: New file.
1345         * lib/unistr/u8-cpy-alloc.c: New file.
1346         * lib/unistr/u16-cpy-alloc.c: New file.
1347         * lib/unistr/u32-cpy-alloc.c: New file.
1348         * lib/unistr/u-cpy-alloc.h: New file.
1349
1350         * modules/unistr/u8-endswith: New file.
1351         * modules/unistr/u16-endswith: New file.
1352         * modules/unistr/u32-endswith: New file.
1353         * lib/unistr/u8-endswith.c: New file.
1354         * lib/unistr/u16-endswith.c: New file.
1355         * lib/unistr/u32-endswith.c: New file.
1356         * lib/unistr/u-endswith.h: New file.
1357
1358         * modules/unistr/u8-mblen: New file.
1359         * modules/unistr/u16-mblen: New file.
1360         * modules/unistr/u32-mblen: New file.
1361         * lib/unistr/u8-mblen.c: New file.
1362         * lib/unistr/u16-mblen.c: New file.
1363         * lib/unistr/u32-mblen.c: New file.
1364
1365         * modules/unistr/u8-mbtouc: New file.
1366         * modules/unistr/u16-mbtouc: New file.
1367         * modules/unistr/u32-mbtouc: New file.
1368         * lib/unistr/u8-mbtouc.c: New file.
1369         * lib/unistr/u16-mbtouc.c: New file.
1370         * lib/unistr/u32-mbtouc.c: New file.
1371
1372         * modules/unistr/u8-mbtouc-safe: New file.
1373         * modules/unistr/u16-mbtouc-safe: New file.
1374         * modules/unistr/u32-mbtouc-safe: New file.
1375         * lib/unistr/u8-mbtouc-safe.c: New file.
1376         * lib/unistr/u16-mbtouc-safe.c: New file.
1377         * lib/unistr/u32-mbtouc-safe.c: New file.
1378
1379         * modules/unistr/u8-move: New file.
1380         * modules/unistr/u16-move: New file.
1381         * modules/unistr/u32-move: New file.
1382         * lib/unistr/u8-move.c: New file.
1383         * lib/unistr/u16-move.c: New file.
1384         * lib/unistr/u32-move.c: New file.
1385         * lib/unistr/u-move.h: New file.
1386
1387         * modules/unistr/u8-next: New file.
1388         * modules/unistr/u16-next: New file.
1389         * modules/unistr/u32-next: New file.
1390         * lib/unistr/u8-next.c: New file.
1391         * lib/unistr/u16-next.c: New file.
1392         * lib/unistr/u32-next.c: New file.
1393
1394         * modules/unistr/u8-prev: New file.
1395         * modules/unistr/u16-prev: New file.
1396         * modules/unistr/u32-prev: New file.
1397         * lib/unistr/u8-prev.c: New file.
1398         * lib/unistr/u16-prev.c: New file.
1399         * lib/unistr/u32-prev.c: New file.
1400
1401         * modules/unistr/u8-set: New file.
1402         * modules/unistr/u16-set: New file.
1403         * modules/unistr/u32-set: New file.
1404         * lib/unistr/u8-set.c: New file.
1405         * lib/unistr/u16-set.c: New file.
1406         * lib/unistr/u32-set.c: New file.
1407         * lib/unistr/u-set.h: New file.
1408
1409         * modules/unistr/u8-startswith: New file.
1410         * modules/unistr/u16-startswith: New file.
1411         * modules/unistr/u32-startswith: New file.
1412         * lib/unistr/u8-startswith.c: New file.
1413         * lib/unistr/u16-startswith.c: New file.
1414         * lib/unistr/u32-startswith.c: New file.
1415         * lib/unistr/u-startswith.h: New file.
1416
1417         * modules/unistr/u8-stpcpy: New file.
1418         * modules/unistr/u16-stpcpy: New file.
1419         * modules/unistr/u32-stpcpy: New file.
1420         * lib/unistr/u8-stpcpy.c: New file.
1421         * lib/unistr/u16-stpcpy.c: New file.
1422         * lib/unistr/u32-stpcpy.c: New file.
1423         * lib/unistr/u-stpcpy.h: New file.
1424
1425         * modules/unistr/u8-stpncpy: New file.
1426         * modules/unistr/u16-stpncpy: New file.
1427         * modules/unistr/u32-stpncpy: New file.
1428         * lib/unistr/u8-stpncpy.c: New file.
1429         * lib/unistr/u16-stpncpy.c: New file.
1430         * lib/unistr/u32-stpncpy.c: New file.
1431         * lib/unistr/u-stpncpy.h: New file.
1432
1433         * modules/unistr/u8-strcat: New file.
1434         * modules/unistr/u16-strcat: New file.
1435         * modules/unistr/u32-strcat: New file.
1436         * lib/unistr/u8-strcat.c: New file.
1437         * lib/unistr/u16-strcat.c: New file.
1438         * lib/unistr/u32-strcat.c: New file.
1439         * lib/unistr/u-strcat.h: New file.
1440
1441         * modules/unistr/u8-strchr: New file.
1442         * modules/unistr/u16-strchr: New file.
1443         * modules/unistr/u32-strchr: New file.
1444         * lib/unistr/u8-strchr.c: New file.
1445         * lib/unistr/u16-strchr.c: New file.
1446         * lib/unistr/u32-strchr.c: New file.
1447
1448         * modules/unistr/u8-strcmp: New file.
1449         * modules/unistr/u16-strcmp: New file.
1450         * modules/unistr/u32-strcmp: New file.
1451         * lib/unistr/u8-strcmp.c: New file.
1452         * lib/unistr/u16-strcmp.c: New file.
1453         * lib/unistr/u32-strcmp.c: New file.
1454
1455         * modules/unistr/u8-strcpy: New file.
1456         * modules/unistr/u16-strcpy: New file.
1457         * modules/unistr/u32-strcpy: New file.
1458         * lib/unistr/u8-strcpy.c: New file.
1459         * lib/unistr/u16-strcpy.c: New file.
1460         * lib/unistr/u32-strcpy.c: New file.
1461         * lib/unistr/u-strcpy.h: New file.
1462
1463         * modules/unistr/u8-strcspn: New file.
1464         * modules/unistr/u16-strcspn: New file.
1465         * modules/unistr/u32-strcspn: New file.
1466         * lib/unistr/u8-strcspn.c: New file.
1467         * lib/unistr/u16-strcspn.c: New file.
1468         * lib/unistr/u32-strcspn.c: New file.
1469         * lib/unistr/u-strcspn.h: New file.
1470
1471         * modules/unistr/u8-strdup: New file.
1472         * modules/unistr/u16-strdup: New file.
1473         * modules/unistr/u32-strdup: New file.
1474         * lib/unistr/u8-strdup.c: New file.
1475         * lib/unistr/u16-strdup.c: New file.
1476         * lib/unistr/u32-strdup.c: New file.
1477         * lib/unistr/u-strdup.h: New file.
1478
1479         * modules/unistr/u8-strlen: New file.
1480         * modules/unistr/u16-strlen: New file.
1481         * modules/unistr/u32-strlen: New file.
1482         * lib/unistr/u8-strlen.c: New file.
1483         * lib/unistr/u16-strlen.c: New file.
1484         * lib/unistr/u32-strlen.c: New file.
1485         * lib/unistr/u-strlen.h: New file.
1486
1487         * modules/unistr/u8-strmblen: New file.
1488         * modules/unistr/u16-strmblen: New file.
1489         * modules/unistr/u32-strmblen: New file.
1490         * lib/unistr/u8-strmblen.c: New file.
1491         * lib/unistr/u16-strmblen.c: New file.
1492         * lib/unistr/u32-strmblen.c: New file.
1493
1494         * modules/unistr/u8-strmbtouc: New file.
1495         * modules/unistr/u16-strmbtouc: New file.
1496         * modules/unistr/u32-strmbtouc: New file.
1497         * lib/unistr/u8-strmbtouc.c: New file.
1498         * lib/unistr/u16-strmbtouc.c: New file.
1499         * lib/unistr/u32-strmbtouc.c: New file.
1500
1501         * modules/unistr/u8-strncat: New file.
1502         * modules/unistr/u16-strncat: New file.
1503         * modules/unistr/u32-strncat: New file.
1504         * lib/unistr/u8-strncat.c: New file.
1505         * lib/unistr/u16-strncat.c: New file.
1506         * lib/unistr/u32-strncat.c: New file.
1507         * lib/unistr/u-strncat.h: New file.
1508
1509         * modules/unistr/u8-strncmp: New file.
1510         * modules/unistr/u16-strncmp: New file.
1511         * modules/unistr/u32-strncmp: New file.
1512         * lib/unistr/u8-strncmp.c: New file.
1513         * lib/unistr/u16-strncmp.c: New file.
1514         * lib/unistr/u32-strncmp.c: New file.
1515
1516         * modules/unistr/u8-strncpy: New file.
1517         * modules/unistr/u16-strncpy: New file.
1518         * modules/unistr/u32-strncpy: New file.
1519         * lib/unistr/u8-strncpy.c: New file.
1520         * lib/unistr/u16-strncpy.c: New file.
1521         * lib/unistr/u32-strncpy.c: New file.
1522         * lib/unistr/u-strncpy.h: New file.
1523
1524         * modules/unistr/u8-strnlen: New file.
1525         * modules/unistr/u16-strnlen: New file.
1526         * modules/unistr/u32-strnlen: New file.
1527         * lib/unistr/u8-strnlen.c: New file.
1528         * lib/unistr/u16-strnlen.c: New file.
1529         * lib/unistr/u32-strnlen.c: New file.
1530         * lib/unistr/u-strnlen.h: New file.
1531
1532         * modules/unistr/u8-strpbrk: New file.
1533         * modules/unistr/u16-strpbrk: New file.
1534         * modules/unistr/u32-strpbrk: New file.
1535         * lib/unistr/u8-strpbrk.c: New file.
1536         * lib/unistr/u16-strpbrk.c: New file.
1537         * lib/unistr/u32-strpbrk.c: New file.
1538         * lib/unistr/u-strpbrk.h: New file.
1539
1540         * modules/unistr/u8-strrchr: New file.
1541         * modules/unistr/u16-strrchr: New file.
1542         * modules/unistr/u32-strrchr: New file.
1543         * lib/unistr/u8-strrchr.c: New file.
1544         * lib/unistr/u16-strrchr.c: New file.
1545         * lib/unistr/u32-strrchr.c: New file.
1546
1547         * modules/unistr/u8-strspn: New file.
1548         * modules/unistr/u16-strspn: New file.
1549         * modules/unistr/u32-strspn: New file.
1550         * lib/unistr/u8-strspn.c: New file.
1551         * lib/unistr/u16-strspn.c: New file.
1552         * lib/unistr/u32-strspn.c: New file.
1553         * lib/unistr/u-strspn.h: New file.
1554
1555         * modules/unistr/u8-strstr: New file.
1556         * modules/unistr/u16-strstr: New file.
1557         * modules/unistr/u32-strstr: New file.
1558         * lib/unistr/u8-strstr.c: New file.
1559         * lib/unistr/u16-strstr.c: New file.
1560         * lib/unistr/u32-strstr.c: New file.
1561         * lib/unistr/u-strstr.h: New file.
1562
1563         * modules/unistr/u8-strtok: New file.
1564         * modules/unistr/u16-strtok: New file.
1565         * modules/unistr/u32-strtok: New file.
1566         * lib/unistr/u8-strtok.c: New file.
1567         * lib/unistr/u16-strtok.c: New file.
1568         * lib/unistr/u32-strtok.c: New file.
1569         * lib/unistr/u-strtok.h: New file.
1570
1571         * modules/unistr/u8-uctomb: New file.
1572         * modules/unistr/u16-uctomb: New file.
1573         * modules/unistr/u32-uctomb: New file.
1574         * lib/unistr/u8-uctomb.c: New file.
1575         * lib/unistr/u16-uctomb.c: New file.
1576         * lib/unistr/u32-uctomb.c: New file.
1577
1578         * MODULES.html.sh (Unicode string functions): Add the new modules.
1579
1580 2007-01-08  Bruno Haible  <bruno@clisp.org>
1581
1582         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
1583         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
1584         subdirectories.
1585
1586 2007-01-08  Karl Berry  <karl@gnu.org>
1587
1588         * doc/error.texi: mention that main() fns must set program_name
1589         when progname is used.
1590
1591 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
1592
1593         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
1594         WCTYPE_H is empty, for the benefit of builds from non-distclean
1595         directories.  Problem reported by Eric Blake in
1596         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
1597
1598 2007-01-08  Bruno Haible  <bruno@clisp.org>
1599
1600         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
1601         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
1602         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
1603         PROVIDE_CANONICALIZE_FILENAME_MODE.
1604         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
1605
1606 2007-01-08  Bruno Haible  <bruno@clisp.org>
1607
1608         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
1609         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
1610         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
1611         * lib/fts.c: Likewise.
1612         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
1613
1614 2006-12-25  Bruno Haible  <bruno@clisp.org>
1615
1616         * modules/utf8-ucs4-safe: New file.
1617         * lib/utf8-ucs4-safe.h: New file.
1618         * lib/unistr/utf8-ucs4-safe.c: New file.
1619
1620         * modules/utf16-ucs4-safe: New file.
1621         * lib/utf16-ucs4-safe.h: New file.
1622         * lib/unistr/utf16-ucs4-safe.c: New file.
1623
1624         * MODULES.html.sh (Unicode string functions): Add the new modules.
1625
1626 2007-01-08  Bruno Haible  <bruno@clisp.org>
1627
1628         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
1629         (Depends-on): Add unitypes.
1630         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1631         (u8_mbtouc_aux): Move out to separate file.
1632         (u8_mbtouc): Use ucs4_t, uint8_t types.
1633         * lib/unistr/utf8-ucs4.c: New file.
1634
1635         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
1636         (Depends-on): Add unitypes.
1637         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
1638         (u16_mbtouc_aux): Move out to separate file.
1639         (u16_mbtouc): Use ucs4_t, uint16_t types.
1640         * lib/unistr/utf16-ucs4.c: New file.
1641
1642         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
1643         (Depends-on): Add unitypes.
1644         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
1645         (u8_uctomb_aux): Move out to separate file.
1646         (u8_uctomb): Use ucs4_t, uint8_t types.
1647         * lib/unistr/ucs4-utf8.c: New file.
1648
1649         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
1650         (Depends-on): Add unitypes.
1651         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
1652         (u16_uctomb_aux): Move out to separate file.
1653         (u16_uctomb): Use ucs4_t, uint16_t types.
1654         * lib/unistr/ucs4-utf16.c: New file.
1655
1656 2006-12-25  Bruno Haible  <bruno@clisp.org>
1657
1658         * modules/unitypes: New file.
1659         * lib/unitypes.h: New file.
1660         * MODULES.html.sh (func_all_modules): New section "Unicode string
1661         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
1662         this section. Add unitypes.
1663
1664 2007-01-08  Bruno Haible  <bruno@clisp.org>
1665
1666         Avoid variable names that conflict with those from libtool.
1667         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
1668         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
1669         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
1670         library_names_spec to acl_library_names_spec, hardcode_* to
1671         acl_hardcode_*.
1672         Reported by Ralf Wildenhues.
1673
1674 2007-01-08  Bruno Haible  <bruno@clisp.org>
1675
1676         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
1677         definition.
1678         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
1679         definition.
1680         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
1681         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
1682         definition.
1683         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
1684         definition.
1685         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
1686         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
1687         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
1688         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
1689         definition.
1690         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
1691         definition.
1692         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
1693         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
1694         GC_USE_<algorithm>.
1695         * lib/gc-libgcrypt.c: Likewise.
1696         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
1697         * modules/gc-arctwo (configure.ac): Likewise.
1698         * modules/gc-des (configure.ac): Likewise.
1699         * modules/gc-hmac-md5 (configure.ac): Likewise.
1700         * modules/gc-hmac-sha1 (configure.ac): Likewise.
1701         * modules/gc-md2 (configure.ac): Likewise.
1702         * modules/gc-md4 (configure.ac): Likewise.
1703         * modules/gc-md5 (configure.ac): Likewise.
1704         * modules/gc-random (configure.ac): Likewise.
1705         * modules/gc-rijndael (configure.ac): Likewise.
1706         * modules/gc-sha1 (configure.ac): Likewise.
1707
1708 2007-01-08  Bruno Haible  <bruno@clisp.org>
1709
1710         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
1711         macro definition.
1712         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
1713         definition.
1714         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
1715         definition.
1716         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
1717         * modules/fcntl-safer (configure.ac): Likewise.
1718         * modules/fopen-safer (configure.ac): Likewise.
1719         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
1720         GNULIB_FWRITEERROR macro definition.
1721
1722 2007-01-08  Bruno Haible  <bruno@clisp.org>
1723
1724         * m4/gnulib-common.m4: New file.
1725         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
1726         (func_get_filelist): Add m4/gnulib-common.m4.
1727
1728 2007-01-08  Bruno Haible  <bruno@clisp.org>
1729
1730         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
1731         command.
1732
1733 2007-01-08  Jim Meyering  <jim@meyering.net>
1734
1735         Use a more robust test for a "can't happen" condition.
1736         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
1737         narrowed the st_size value.  Presuming the "can't happen" condition
1738         is true, that narrowing could conceivably convert an invalid st_size
1739         value into a valid one.  Instead, use a change based on Matthew
1740         Woehlke's original patch.
1741
1742         Slight readability improvement: use an assert-like macro
1743         in place of literal "abort ()" uses.
1744         * lib/fts.c (fts_assert): Define.
1745         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
1746         Use this macro instead of a bare 'abort'.
1747
1748 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1749
1750         Don't worry about using IRIX 5.3's wctype.h broken definitions;
1751         simply work around them.
1752         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
1753         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
1754         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
1755         Don't bother to define as macros, since the standard doesn't require it.
1756         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
1757         longer worry about IRIX 5.3.
1758         (HAVE_WCTYPE_CTMP_BUG): Remove.
1759
1760 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1761
1762         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
1763         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
1764         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
1765         Problems reported by Georg Schwarz for IRIX 5.3.
1766
1767         * gnulib-tool (autoconf_minversion): Take the maximum version number
1768         found, not the minimum.  Problem reported by James Youngman.
1769
1770 2007-01-03  Karl Berry  <karl@gnu.org>
1771
1772         * doc/error.texi: new file, explaining interaction with progname.
1773         * doc/gnulib.texi: include it.  Update copyright.
1774
1775 2007-01-03  Simon Josefsson  <simon@josefsson.org>
1776
1777         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
1778         AC_CANONICAL_HOST, to improve autobuild outputs.
1779
1780 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
1781             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1782
1783         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
1784         sockets, server sockets, and other file descriptors.  Count errors
1785         to compute the return value.  Reorder the code a bit to be easier
1786         to follow.  Don't set event bits that were not requested (except
1787         POLLERR and POLLHUP).
1788
1789 2007-01-01  Bruno Haible  <bruno@clisp.org>
1790
1791         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
1792
1793 2007-01-03  Jim Meyering  <jim@meyering.net>
1794
1795         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
1796
1797 2007-01-02  Bruno Haible  <bruno@clisp.org>
1798
1799         * modules/settime (Include): Require timespec.h.
1800         * modules/nanosleep (Include): Likewise.
1801
1802 2007-01-01  Bruno Haible  <bruno@clisp.org>
1803
1804         * gnulib-tool (func_emit_copyright_notice): Bump year.
1805         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
1806
1807 2007-01-01  Bruno Haible  <bruno@clisp.org>
1808
1809         Improve support for OpenBSD.
1810         * build-aux/config.rpath (libname_spec): Export.
1811         (library_names_spec): New variable. Export.
1812         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
1813         library_names_spec from the config.rpath output. Locate shared library
1814         through the name pattern in library_names_spec.
1815
1816 2007-01-01  Eric Blake  <ebb9@byu.net>
1817
1818         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
1819
1820 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
1821
1822         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
1823         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
1824         assume the C locale, and avoid an "eval" that could cause trouble.
1825         Problem with SORT reported by Bob Proulx.
1826
1827         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
1828         Define.  Trivial patch from Henning Nielsen Lund, originally
1829         sent to bug-grep@gnu.org today.
1830
1831 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1832
1833         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
1834         struct stat.  Problem reported by Henning Nielsen Lund.
1835         * lib/acl.c: Include acl.h first, to check interface.  Don't
1836         bother to include sys/types.h and sys/stat.h again.
1837
1838 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
1839
1840         Import the following change from libc; problem reported by
1841         Sven Verdoolaege.
1842
1843         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
1844
1845         [BZ #1373]
1846         * lib/argp.h: Remove __NTH for __argp_usage inline function.
1847
1848 2006-12-28  Jim Meyering  <jim@meyering.net>
1849
1850         * build-aux/announce-gen: Do not assume that the package
1851         builds any of tar.gz, tar.bz2, and .xdelta files.
1852         Suggestion from Simon Josefsson.
1853
1854 2006-12-28  Simon Josefsson  <simon@josefsson.org>
1855
1856         * modules/announce-gen: New file.
1857
1858 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
1859
1860         * lib/mbchar.h: Just include <wctype.h>; the wctype module
1861         handles its gotchas now.
1862         * lib/mbswidth.c: Likewise.
1863         * lib/wcwidth.h: Likewise.
1864         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
1865         and iswcntrl; the wctype module does this stuff now.
1866         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1867         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1868         * modules/mbchar (Depends-on): Add wctype.
1869         * modules/mbswidth (Depends-on): Likewise.
1870         * modules/wcwidth (Depends-on): Likewise.
1871
1872 2006-12-27  Eric Blake  <ebb9@byu.net>
1873
1874         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
1875         module uses more than what <wctype.h> is required to provide.
1876
1877 2006-12-26  Eric Blake  <ebb9@byu.net>
1878
1879         * gnulib-tool (sed_extract_prog): Avoid space-tab.
1880
1881 2006-12-26  Eric Blake  <ebb9@byu.net>
1882
1883         * modules/absolute-header: New module.
1884         * modules/fcntl (Depends-on): Depend on it.
1885         * modules/inttypes (Depends-on): Likewise.
1886         * modules/stdint (Depends-on): Likewise.
1887         * modules/sys_stat (Depends-on): Likewise.
1888         * modules/wctype (Depends-on): Likewise.
1889         * MODULES.html.sh (Support for building libraries and
1890         executables): Document it.
1891
1892 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1893
1894         * gnulib-tool (SED): Remove, undoing previous change.
1895         The problem was that it broke coreutils on Solaris, because
1896         "sed --posix" leaked into a makefile.
1897         (sed): New alias, if 'alias' and GNU sed.
1898
1899 2006-12-24  Jim Meyering  <jim@meyering.net>
1900
1901         Work around an fchownat bug in glibc-2.4:
1902         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
1903         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
1904         in spite of the -P option.
1905         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
1906         New macros.
1907         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
1908         * modules/openat (Files): Add lib/fchownat.c.
1909         * lib/openat.c (fchownat): Don't define here.  Move to...
1910         * lib/fchownat.c: ...this new file.
1911
1912 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1913
1914         Fix bug reported by Bruno Haible in
1915         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
1916         where quotearg.c didn't compile on Mac OS X 10.2 because it
1917         lacks <wchar.h> and wint_t.
1918         * lib/wctype_.h (__wctype_wint_t): New type.
1919         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
1920         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
1921         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
1922         Arg is now of type __wctype_wint_t, not wint_t.
1923         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
1924         substitute HAVE_WINT_T.
1925         * modules/wctype (Files): Add m4/wint_t.m4.
1926         (wctype.h): Substitute HAVE_WINT_T.
1927
1928 2006-12-23  Bruno Haible  <bruno@clisp.org>
1929
1930         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
1931
1932 2006-12-23  Bruno Haible  <bruno@clisp.org>
1933
1934         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
1935         S_ISLNK.
1936         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
1937         mingw.
1938
1939 2006-12-22  Bruno Haible  <bruno@clisp.org>
1940
1941         * lib/copy-file.c: Include acl.h.
1942         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
1943         Close the file descriptors only after being done with copy_acl.
1944         * modules/copy-file (Depends-on): Add acl.
1945
1946 2006-12-22  Bruno Haible  <bruno@clisp.org>
1947
1948         * gnulib-tool (SED): New variable.
1949         Use $SED instead of sed everywhere.
1950
1951 2006-12-22  Bruno Haible  <bruno@clisp.org>
1952
1953         * modules/no-c++: New file.
1954         * m4/no-c++.m4: New file.
1955         * MODULES.html.sh (Support for building libraries and executables):
1956         Add no-c++.
1957
1958 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1959
1960         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
1961         Include <limits.h>, and use its INT_MAX to rewrite the
1962         j loop so that it does not overflow 'int'.  Problem reported by
1963         Ralf Wildenhues in
1964         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1965         Play it safe by shifting left by 1 rather than multiplying by 2,
1966         as GCC is less likely to optimize this away when the value
1967         is signed (when it assumes overflow leads to undefined behavior).
1968         Also, don't assume time_t uses two's complement.
1969
1970 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
1971
1972         * MODULES.html.sh: New module wctype.
1973         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
1974         * lib/fnmatch.c: Don't bother to include <wchar.h> before
1975         <wctype.h>, since the new wctype module should fix this.
1976         * lib/quotearg.c: Include <wctype.h> unconditionally, since
1977         the wctype module should arrange for it.
1978         * lib/regex_internal.h: Likewise.
1979         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
1980         since the wctype module should handle this now.
1981         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
1982         * modules/fnmatch (Depends-on): Add wctype.
1983         * modules/quotearg (Depends-on): Likewise.
1984         * modules/regex (Depends-on): Likewise.
1985
1986 2006-12-19  Bruno Haible  <bruno@clisp.org>
1987
1988         * lib/strdup.h [C++]: Wrap definitions in extern "C".
1989         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
1990
1991 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1992
1993         * modules/savewd (Depends-on): Fix dependency on fcntl.
1994
1995 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1996
1997         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
1998         conforms to C99, rather than relying on the user's environment
1999         setting of STDINT_H.
2000
2001 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2002         and Eric Blake  <ebb9@byu.net>
2003
2004         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
2005         This is more consistent with the other defines here.
2006         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
2007         Port to z/OS.  Problem reported by Paul Gilmartin.
2008         Change local vars to use gl_ prefix rather than ac_.
2009         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
2010         with other defines.
2011         * modules/double-slash-root: New module.
2012         * modules/dirname (Files): Remove m4/double-slash-root.m4.
2013         (Depends-on): Add double-slash-root.
2014         * MODULES.html.sh (File system functions): Mention new module.
2015
2016 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2017
2018         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
2019         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
2020         This is for the benefit of gzip, which doesn't do i18n.
2021
2022 2006-12-12  Jim Meyering  <jim@meyering.net>
2023
2024         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
2025         Reported by Andreas Schwab <schwab@suse.de>.
2026
2027 2006-12-12  Bruno Haible  <bruno@clisp.org>
2028
2029         Merge these changes.
2030         2006-09-05  Bruno Haible  <bruno@clisp.org>
2031         * lib/iconvme.c (iconv_string): No need to save and restore errno when
2032         iconv_alloc succeeded.
2033         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
2034         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
2035         test for " && dest " at the end - dest is always != NULL there. Call
2036         iconv with 4xNULL arguments initially, to reset the state. Call iconv
2037         with 2xNULL arguments, also to flush the state storage. Handle the
2038         IRIX iconv behaviour. Realloc the final result, to throw away unused
2039         memory.
2040
2041 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
2042
2043         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
2044         and fchmodat unconditionally, since glibc 2.4 has them.
2045         Problem reported by Arkadiusz Miskiewicz.
2046
2047 2006-12-10  Bruno Haible  <bruno@clisp.org>
2048
2049         * gnulib-tool (func_import): Show the include files only for those
2050         modules that are copied and specified.
2051         Reported by Karl Berry.
2052
2053 2006-12-08  Jim Meyering  <jim@meyering.net>
2054
2055         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
2056         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
2057
2058         * build-aux/announce-gen: Add two new options, both optional:
2059         --bootstrap-tools=TOOL_LIST
2060               a comma-separated list of tools, e.g.,
2061               autoconf,automake,bison,gnulib
2062         --gnulib-snapshot-date=DATE
2063               if gnulib is in the bootstrap tool list,
2064               then report this as the snapshot date.
2065               If not specified, use the current date/time.
2066               If you specify a date here, be sure it's UTC.
2067
2068 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2069
2070         * tests/test-argp-2.sh: Fix test to match actual output.
2071         (func_compare): Fix sed script to be portable.
2072
2073 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2074
2075         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
2076         workaround for this case.  It is not autoconfigured now; offhand
2077         it's hard to see how to autoconfigure it.
2078
2079 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
2080
2081         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
2082         a directory that is about to be chowned.  Such a directory's
2083         initial file permissions should permit the owner only and this
2084         should not be changed until after the chown, since the group and
2085         other bits would be incorrect if they granted permission before
2086         the chown.
2087
2088         Fix porting problem for iswctype reported by Georg Schwarz in:
2089         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
2090         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
2091         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2092         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2093         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2094
2095 2006-12-03  Jim Meyering  <jim@meyering.net>
2096
2097         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2098         p->fts_statp may not yet be defined.
2099         (fts_read): Instead, set it in the caller, once p->fts_statp is
2100         sure to be defined, and corresponds to a top-level directory.
2101         This bug made du -x fail.  Here's the coreutils test case:
2102         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2103         Reported by Mike Frysinger.
2104
2105 2006-12-01  Jim Meyering  <jim@meyering.net>
2106
2107         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2108         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2109         Reported by Simon Josefsson.
2110
2111 2006-11-30  Jim Meyering  <jim@meyering.net>
2112
2113         * m4/warning.m4: Use the all-permissive copyright notice
2114         recommended by RMS (rather than LGPL).
2115         * m4/vararrays.m4: Likewise.
2116         * m4/flexmember.m4: Likewise.
2117
2118 2006-11-29  Bruno Haible  <bruno@clisp.org>
2119
2120         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2121         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2122         using +=.
2123         Reported by Simon Josefsson <simon@josefsson.org>.
2124
2125 2006-11-28  James Youngman <jay@gnu.org>
2126
2127         * README: Advise users that they might find the bug-gnulib@gnu.org
2128         and autotools-announce@gnu.org mailing lists useful.
2129
2130 2006-11-28  Bruno Haible  <bruno@clisp.org>
2131
2132         * m4/ptrdiff_max.m4: Remove file.
2133
2134 2006-11-21  Bruno Haible  <bruno@clisp.org>
2135
2136         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2137         _AC_COMPUTE_INT.
2138         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2139         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2140         _AC_COMPUTE_INT.
2141         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2142         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
2143         _AC_COMPUTE_INT.
2144         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2145
2146 2006-11-28  Jim Meyering  <jim@meyering.net>
2147
2148         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2149         warning from "gcc -Wshadow" about shadowing the builtin.
2150
2151 2006-11-27  Bruno Haible  <bruno@clisp.org>
2152
2153         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2154         _AC_COMPUTE_INT.
2155         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2156
2157 2006-11-27  Bruno Haible  <bruno@clisp.org>
2158             Paul Eggert  <eggert@cs.ucla.edu>
2159
2160         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
2161
2162 2006-11-26  Bruno Haible  <bruno@clisp.org>
2163
2164         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2165         noinst_LTLIBRARIES.
2166
2167 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
2168             Bruno Haible  <bruno@clisp.org>
2169
2170         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
2171         if compiling with "gcc -ansi".
2172
2173 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
2174
2175         Fix some incompatibilities with gcc -ansi -pedantic.
2176         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
2177         if compiling pedantically with GCC, unless it's C99 or later.
2178         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
2179         it mishandles gcc -ansi -pedantic as well.
2180         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
2181         if gcc -pedantic.
2182         * lib/regexec.c (check_node_accept_bytes): Don't use auto
2183         initializers for struct if -pedantic, unless it's C99 or later.
2184
2185 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
2186
2187         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
2188         Don't close an fd more than once. Identical atimes indicate
2189         success, not failure.
2190
2191 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
2192
2193         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
2194
2195 2006-11-23  Jim Meyering  <jim@meyering.net>
2196
2197         * build-aux/announce-gen: New file.  From coreutils.
2198
2199 2006-11-22  Jim Meyering  <jim@meyering.net>
2200
2201         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
2202         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
2203         (fts_read): Use a temporary to narrow the overused st_size member
2204         before using it in a switch statement.  Reported by Matthew Woehlke.
2205
2206         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
2207         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
2208
2209 2006-11-20  Bruno Haible  <bruno@clisp.org>
2210
2211         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
2212         changequote instead of pairs of brackets.
2213         Reported by Andreas Schwab <schwab@suse.de>.
2214
2215 2006-11-21  Jim Meyering  <jim@meyering.net>
2216
2217         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
2218         so as to remain compatible with older compilers.
2219         Patch from Michael Deutschmann.
2220
2221 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2222
2223         * MODULES.html.sh (File system functions): Add openat.
2224
2225         * lib/openat.h (rpl_fstatat): New macro, if
2226         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
2227         (fstatat): Define to rpl_fstatat under the same conditions,
2228         unless COMPILING_FSTATAT.
2229         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
2230         seems to have the bug.
2231         * lib/fstatat.c: New file.
2232         * modules/openat (Files): Add it.
2233
2234 2006-11-20  Bruno Haible  <bruno@clisp.org>
2235
2236         * Makefile: New file.
2237
2238 2006-11-20  Jim Meyering  <jim@meyering.net>
2239
2240         The beginnings of syntax-related checks for gnulib.
2241         * lib/Makefile: New file.
2242         * lib/t-idcache: New script.  Ensure that the two halves of
2243         idcache.c stay in sync.
2244
2245         * lib/idcache.c: Adjust comments in user- and group- portions to
2246         be more accurate, and to be consistent with one another.
2247
2248 2006-11-20  Jim Meyering  <jim@meyering.net>
2249
2250         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
2251         continue using the flexible array member (thus, this module performs
2252         half as many malloc calls), with the addition that...
2253         (getgroup, getuser): Consistently record a non-match via an empty
2254         "name" string, and map an empty string match to a NULL return value.
2255         * modules/idcache (Depends-on): Re-add flexmember.
2256
2257         * lib/idcache.c (getuser): Remove all uses of the register keyword.
2258         (getuidbyname, getgroup, getgidbyname): Likewise.
2259
2260         Use cleaner syntax: NULL rather than 0.
2261         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
2262
2263 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
2264
2265         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
2266         It mishandled the case where the group was missing.
2267         Problem reported by Greg Schafer.
2268         * modules/idcache: Likewise.
2269
2270 2006-11-18  Jim Meyering  <jim@meyering.net>
2271
2272         * check-module (%exempt_header): Add exception for some
2273         conditionally-included headers.
2274
2275         * modules/i-ring (Depends-on): Add verify.
2276         (License): Change to LGPL.
2277
2278 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
2279
2280         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
2281         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
2282         and inttostr.h.  Use snprintf rather than uinttostr, so that
2283         LGPLed code doesn't depend on GPLed.
2284
2285 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
2286
2287         * modules/inline (License): Change from GPL to LGPL.
2288
2289 2006-11-17  Jim Meyering  <jim@meyering.net>
2290
2291         * modules/d-type (License): Switch to LGPL.
2292
2293 2006-11-15  Bruno Haible  <bruno@clisp.org>
2294
2295         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
2296
2297 2006-11-15  Eric Blake  <ebb9@byu.net>
2298
2299         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
2300         the module dependency.
2301
2302 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
2303             Bruno Haible  <bruno@clisp.org>
2304
2305         * gnulib-tool (func_create_testdir): Add license consistency check.
2306
2307 2006-11-15  Eric Blake  <ebb9@byu.net>
2308
2309         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
2310         random "(cached)" in configure output.
2311
2312 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2313
2314         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
2315         test for conforming inttypes.h is both announced and cached.
2316
2317         * MODULES.html.sh (seen_modules, seen_files): New variables.
2318         (func_module): Rewrite to use a few less gnulib-tool and sed
2319         invocations.  Avoid a couple of quadratic algorithms for ...
2320         (missed_modules, missed_files): ... these, with ...
2321         (func_append, func_tmpdir): ... these new functions, from
2322         gnulib-tool.  Analogously, install traps for cleanup.
2323
2324         * tests/test-gc.c (main): Remove unused variables.
2325         * tests/test-read-file.c: Include stdlib.h, for 'free'.
2326
2327 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
2328
2329         * modules/inttostr (License): Change to LGPL.
2330
2331 2006-11-14  Eric Blake  <ebb9@byu.net>
2332
2333         * modules/tempname (License): Change to LGPL.
2334
2335 2006-11-14  Eric Blake  <ebb9@byu.net>
2336
2337         * doc/functions.texi (Function Portability): *printf functions on
2338         Cygwin now understand all POSIX size specifiers.
2339
2340 2006-11-14  Bruno Haible  <bruno@clisp.org>
2341
2342         * modules/c-ctype (License): Change to LGPL.
2343
2344 2006-11-12  Bruno Haible  <bruno@clisp.org>
2345
2346         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2347         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
2348         for GNOME libraries, for which the include files are installed in
2349         subdirectories of $prefix/include.
2350
2351 2006-11-12  Bruno Haible  <bruno@clisp.org>
2352
2353         * m4/lib-link.m4: Require at least autoconf-2.54.
2354         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
2355         name to underscores for the --with option.
2356
2357 2006-11-13  Bruno Haible  <bruno@clisp.org>
2358
2359         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
2360         the tests directory.
2361         Reported by Ralf Wildenhues.
2362
2363 2006-11-13  Bruno Haible  <bruno@clisp.org>
2364
2365         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
2366         (func_emit_initmacro_end): Undo the override here.
2367         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
2368         Works around the famous automake error in coreutils.
2369
2370 2006-11-13  Eric Blake  <ebb9@byu.net>
2371
2372         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
2373         element, not its node.
2374
2375 2006-11-12  Bruno Haible  <bruno@clisp.org>
2376
2377         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
2378         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
2379
2380 2006-11-12  Bruno Haible  <bruno@clisp.org>
2381
2382         * gnulib-tool: New option --local-symlink.
2383         (func_usage): Document it.
2384         (lsymbolic): New variable.
2385         (func_import, func_create_testdir): If --symlink was not specified,
2386         test whether --local-symlink was specified and the file comes from
2387         the local_gnulib_dir.
2388
2389 2006-11-12  Bruno Haible  <bruno@clisp.org>
2390
2391         * gnulib-tool (func_ln): New function.
2392         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
2393
2394 2006-11-12  Bruno Haible  <bruno@clisp.org>
2395
2396         Finish support for source files in subdirectories.
2397         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
2398         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
2399         AUTOMAKE_OPTIONS.
2400         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
2401
2402 2006-11-12  Bruno Haible  <bruno@clisp.org>
2403
2404         * gnulib-tool (func_get_automake_snippet): Synthesize also an
2405         EXTRA_lib_SOURCES augmentation.
2406         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
2407
2408 2006-11-12  Jim Meyering  <jim@meyering.net>
2409
2410         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
2411         file descriptors.  This also averts a failure on systems with
2412         native openat support when a traversed directory lacks "x" access.
2413         * lib/fts_.h: Include "i-ring.h"
2414         (struct FTS) [fts_fd_ring]: New member.
2415         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
2416         (FCHDIR): Add parentheses.
2417         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
2418         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
2419         When descending, rather than simply closing the previous
2420         fts_cwd_fd value, push that file descriptor onto the ring.
2421         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
2422         (fts_open): Initialize the new fd_ring member.
2423         (fts_close): Clear the ring.
2424         (fts_safe_changedir): When possible, use our new fd_ring to skip
2425         the diropen and fstat and dev/ino comparison that would normally
2426         accompany a virtual `chdir ("..")'.
2427
2428         * modules/fts (Depends-on): Add i-ring.
2429         * modules/i-ring: New module.
2430         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
2431         * m4/i-ring.m4: New file.
2432
2433 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2434
2435         * gnulib-tool (func_create_testdir): Fix replacement of
2436         `build-aux' in configure.ac.  Run autotools in gltests
2437         subdirectory.
2438         (func_create_testdir, func_create_megatestdir, test): There is
2439         no need for '--force' in most autotool invocations in a new
2440         tree.  Actually fail the whole test if any of the tools, or the
2441         configure or make stages fail.
2442
2443         Sync from Automake.
2444         * build-aux/gnupload: Revert last change.  Add pointer to upload
2445         instructions of the GNU Maintenance Instructions.
2446         Suggestion by Karl Berry.
2447
2448 2006-11-10  Jim Meyering  <jim@meyering.net>
2449
2450         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
2451
2452 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2453
2454         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
2455         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
2456         (bind_textdomain_codeset) [! ENABLE_NLS]:
2457         Evaluate all the arguments.  That way, callers get compatible behavior
2458         if the arguments have side effects.  Also, it avoids some GCC
2459         diagnostics in some cases; Joel E. Denny reported problems when Bison
2460         was configured with --enable-gcc-warnigs.
2461
2462 2006-11-10  Jim Meyering  <jim@meyering.net>
2463
2464         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
2465         relevant options in CFLAGS (like -O, -fno-inline) are taken into
2466         account.
2467
2468 2006-11-10  Jim Meyering  <jim@meyering.net>
2469
2470         * modules/inline: New file/module.
2471         * modules/xalloc (Files): Remove m4/inline.m4.
2472         (Depends-on): Add inline, instead.
2473         * modules/oset: Likewise.
2474         * modules/list: Likewise.
2475
2476 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2477
2478         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
2479         Problem reported by Matthew Woehlke.
2480
2481 2006-11-09  Bruno Haible  <bruno@clisp.org>
2482
2483         * lib/tempname.c (gen_tempname): Remove variant that invokes
2484         __gen_tempname.
2485         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
2486         __gen_tempname.
2487
2488 2006-11-08  Bruno Haible  <bruno@clisp.org>
2489
2490         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
2491         to 'yes' instead of 'cross-compiling'.
2492
2493 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
2494
2495         * lib/quotearg.h (quotearg_free): New decl.
2496         * lib/quotearg.c (quotearg_free): New function.
2497         (slot0, nslots, slotvec0, slotvec):
2498         Now file-scope so that quotearg_free can get at them.
2499
2500 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2501
2502         Sync from Automake.
2503         * build-aux/gnupload: Add missing 'gnu' to example URL.
2504         Report by Karl Berry.
2505
2506 2006-11-08  Bruno Haible  <bruno@clisp.org>
2507
2508         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
2509         Suggested by Paul Eggert.
2510
2511 2006-11-08  Jim Meyering  <jim@meyering.net>
2512
2513         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
2514         It's already included if !_LIBC.
2515         (fts_safe_changedir): Add a comment.
2516
2517 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2518
2519         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
2520         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
2521         Matthew Woehlke.
2522
2523         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
2524         definitions up, to avoid colliding with change below.
2525         (static_inline) [HAVE_INLINE]: New macro.
2526         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
2527         Provide extern decls when !HAVE_INLINE.  Do not define unless
2528         static_inline is defined, either by us or by xmalloc.c.  Use
2529         static_inline rather than static inline.
2530         (XCALLOC): Optimize sizeof(T) = 1 case.
2531         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
2532
2533 2006-11-07  Bruno Haible  <bruno@clisp.org>
2534
2535         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
2536         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
2537         AC_C_INLINE.
2538         * modules/xalloc (Files): Add m4/inline.m4.
2539
2540 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2541
2542         * README: Fix typo.
2543         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
2544         (Miscellanous Notes): ...from this.
2545
2546 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
2547
2548         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
2549         Mention that offsetof should be used instead of sizeof.
2550         From Bruno Haible.
2551
2552 2006-11-07  Bruno Haible  <bruno@clisp.org>
2553
2554         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
2555
2556 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2557
2558         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2559         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
2560         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2561         (gl_tree_add_before, gl_tree_add_after):
2562         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
2563         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
2564         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2565         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
2566         (gl_linked_add_after, gl_linked_add_at): Likewise.
2567         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
2568         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
2569         (gl_tree_add_before, gl_tree_add_after): Likewise.
2570         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
2571         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
2572         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
2573
2574 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2575
2576         * lib/gl_oset.h: Use C comment style, not C++ comment style.
2577
2578 2006-11-06  Bruno Haible  <bruno@clisp.org>
2579
2580         * m4/inline.m4: New file.
2581         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
2582         * modules/list (Files): Add m4/inline.m4.
2583         * modules/oset (Files): Likewise.
2584
2585 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
2586
2587         * lib/idcache.c: Include <stddef.h>, for offsetof.
2588         (struct userid.name): Change from char * to a flexible array member.
2589         All uses changed.
2590         * modules/idcache (Depends-on): Add flexmember.
2591
2592         * MODULES.html.sh (Core language properties): New module flexmember.
2593         * modules/flexmember, m4/flexmember.m4: New files.
2594
2595         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
2596         inline functions that are identical with the old xnmalloc_inline,
2597         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
2598         that we can avoid some unnecessary integer multiplications and
2599         divisions in the common case where the element size is known at
2600         compile time.
2601         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
2602         needed.
2603         (xnboundedmalloc): Remove.
2604         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
2605         arguments, for consistency with rest of this header.
2606         (xcharalloc): Rewrite using XNMALLOC.
2607         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
2608         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
2609         versions have been moved to lib/xalloc.h and renamed to be the
2610         non-*_inline versions.
2611         (xmalloc, xrealloc): Implement without reference to the xnmalloc
2612         and xnrealloc functions, since those functions are now inline and
2613         now call us.
2614         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
2615         renaming described above.
2616         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
2617         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
2618         captures the dependency in AC_C_INLINE.
2619
2620         New module canonicalize-lgpl, proposed by Charles Wilson in
2621         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
2622         with a few small changes afterwards.
2623         * MODULES.html.sh (File system functions): New module
2624         canonicalize-lgpl.
2625         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
2626         and canonicalize_file_name.
2627         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
2628         * modules/canonicalize-lgpl: New files.
2629
2630 2006-11-05  Bruno Haible  <bruno@clisp.org>
2631
2632         * gnulib-tool (func_import, func_create_testdir): Create directories
2633         also for files in subdirectories of lib/.
2634
2635 2006-11-05  Bruno Haible  <bruno@clisp.org>
2636
2637         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
2638         ANSI C compliant.
2639
2640 2006-11-03  Bruno Haible  <bruno@clisp.org>
2641
2642         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
2643         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
2644         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
2645         (xnboundedmalloc): New inline function.
2646         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
2647         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
2648         xmalloc.
2649         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
2650         xmalloc.
2651         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
2652         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
2653         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
2654         xmalloc.
2655         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2656         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
2657         xmalloc.
2658         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
2659         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2660         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
2661         xmalloc.
2662         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
2663         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
2664         gl_tree_add_after): Use XMALLOC instead of xmalloc.
2665         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
2666         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
2667         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
2668         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
2669
2670 2006-11-03  Bruno Haible  <bruno@clisp.org>
2671
2672         * lib/c-ctype.h [C++]: Define functions without name mangling.
2673         * lib/fwriteerror.h [C++]: Likewise.
2674         * lib/gcd.h [C++]: Likewise.
2675         * lib/linebreak.h [C++]: Likewise.
2676
2677 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
2678
2679         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
2680         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
2681         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
2682         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
2683         Check for functions and headers just once.
2684         Check for declaration of canonicalize_file_name.
2685         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
2686
2687 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
2688
2689         * gnulib-tool (func_import): Fix typo in actioncmd.
2690
2691 2006-11-02  Bruno Haible  <bruno@clisp.org>
2692
2693         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
2694         newline sequence in the Makefile.am snippet as a space, like "make"
2695         does.
2696         Reported by Roger Persson <perrog@gmail.com>.
2697
2698 2006-11-01  Bruno Haible  <bruno@clisp.org>
2699
2700         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
2701         already declared in <string.h>.
2702         * lib/strcase.h (strncasecmp): Don't declare it if yes.
2703
2704 2006-11-01  Bruno Haible  <bruno@clisp.org>
2705
2706         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
2707         * lib/strcase.h: Include <string.h>.
2708         (strcasecmp): Define to rpl_strcasecmp here.
2709
2710 2006-11-01  Bruno Haible  <bruno@clisp.org>
2711
2712         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
2713
2714 2006-11-01  Eric Blake  <ebb9@byu.net>
2715
2716         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
2717
2718         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
2719
2720 2006-10-29  Bruno Haible  <bruno@clisp.org>
2721
2722         Make it compile in C++ mode.
2723         * lib/full-write.c (full_rw): Add a cast.
2724
2725 2006-11-01  Bruno Haible  <bruno@clisp.org>
2726
2727         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
2728         be POSIX compliant.
2729         Reported by Roger Persson <perrog@gmail.com>.
2730
2731 2006-11-01  Eric Blake  <ebb9@byu.net>
2732
2733         * lib/getopt_.h: Fix comments.
2734
2735 2006-10-31  Eric Blake  <ebb9@byu.net>
2736
2737         * modules/tmpdir (Depends-on): Add sys_stat.
2738         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
2739         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
2740         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
2741         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
2742         tempname.
2743
2744 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
2745
2746         Avoid some C++ diagnostics reported by Bruno Haible.
2747         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
2748         xmalloc.
2749         (quotearg_alloc): Use xcharalloc rather than xmalloc.
2750         (struct slotvec): Move to top level.
2751         (quotearg_n_options): Rewrite to avoid xmalloc.
2752         * lib/xalloc.h (xcharalloc): New function.
2753         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
2754         [defined __cplusplus]: Add function template that provides result
2755         type propagation.  This part of the change is from Bruno Haible.
2756
2757 2006-10-29  Bruno Haible  <bruno@clisp.org>
2758
2759         Make it compile in C++ mode.
2760         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
2761         * lib/strnlen1.c (strnlen1): Cast memchr result.
2762         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
2763         * lib/clean-temp.c (string_equals, string_hash): Add casts.
2764         (create_temp_dir): Rename local variable 'template'.
2765         (compile_csharp_using_sscli): Add cast.
2766         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
2767         * lib/findprog.c (find_in_path): Likewise.
2768         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
2769         * lib/wait-process.c (register_slave_subprocess): Likewise.
2770
2771 2006-10-22  Bruno Haible  <bruno@clisp.org>
2772
2773         * modules/tsearch: New file.
2774         * lib/tsearch.h: New file.
2775         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
2776         * m4/tsearch.m4: New file.
2777         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
2778
2779 2006-10-29  Eric Blake  <ebb9@byu.net>
2780
2781         * lib/arcfour.c: Assume config.h.
2782         * lib/arctwo.c: Likewise.
2783         * lib/base64.c: Likewise.
2784         * lib/check-version.c: Likewise.
2785         * lib/crc.c: Likewise.
2786         * lib/des.c: Likewise.
2787         * lib/gc-gnulib.c: Likewise.
2788         * lib/gc-libgcrypt.c: Likewise.
2789         * lib/gc-pbkdf2-sha1.c: Likewise.
2790         * lib/getaddrinfo.c: Likewise.
2791         * lib/getdelim.c: Likewise.
2792         * lib/getline.c: Likewise.
2793         * lib/hmac-md5.c: Likewise.
2794         * lib/hmac-sha1.c: Likewise.
2795         * lib/iconvme.c: Likewise.
2796         * lib/md2.c: Likewise.
2797         * lib/md4.c: Likewise.
2798         * lib/memxor.c: Likewise.
2799         * lib/read-file.c: Likewise.
2800         * lib/readline.c: Likewise.
2801         * lib/rijndael-alg-fst.c: Likewise.
2802         * lib/rijndael-api-fst.c: Likewise.
2803         * lib/xgetdomainname.c: Likewise.
2804
2805 2006-10-28  Eric Blake  <ebb9@byu.net>
2806
2807         * lib/xstrndup.c: Assume config.h.
2808
2809 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
2810
2811         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
2812         stat-macros.h is now for our own macros, whereas stat_h is for
2813         macros in the <sys/stat.h> name space.
2814         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
2815         (STAT_MACROS_H): Remove.
2816         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
2817         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
2818         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
2819         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
2820         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
2821         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
2822         Move these macros to ...
2823         * lib/stat_.h: here.  Don't include stat-macros.h.
2824         * lib/canonicalize.c: Don't include stat-macros.h.
2825         * lib/chown.c: Likewise.
2826         * lib/euidaccess.c: Likewise.
2827         * lib/file-type.c: Likewise.
2828         * lib/filemode.c: Likewise.
2829         * lib/glob.c: Likewise.
2830         * lib/isapipe.c: Likewise.
2831         * lib/lchown.c: Likewise.
2832         * lib/lstat.c: Likewise.
2833         * lib/mkdir-p.c: Likewise.
2834         * lib/rmdir.c: Likewise.
2835         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
2836         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
2837         unless mkdir isn't declared, to speed up 'configure'.
2838         Always create sys/stat.h, since it's unlikely any real sys/stat.h
2839         would define all the S_* symbols.
2840         * modules/canonicalize (Depends-on):
2841         Depend on sys_stat, not stat-macros.
2842         * modules/chown: Likewise.
2843         * modules/euidaccess: Likewise.
2844         * modules/filemode: Likewise.
2845         * modules/file-type: Likewise.
2846         * modules/glob: Likewise.
2847         * modules/isapipe: Likewise.
2848         * modules/lchown: Likewise.
2849         * modules/lstat: Likewise.
2850         * modules/mkancesdirs: Likewise.
2851         * modules/rmdir: Likewise.
2852         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
2853         * modules/modechange: Likewise.
2854         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
2855         (configure.ac): Remove gl_STAT_MACROS.
2856         * modules/sys_stat (Depends-on): Remove stat-macros.
2857
2858 2006-10-27  Bruno Haible  <bruno@clisp.org>
2859
2860         * m4/signed.m4: Remove file.
2861         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
2862         invocation.
2863         * modules/vasnprintf (Files): Remove m4/signed.m4.
2864
2865 2006-10-27  Bruno Haible  <bruno@clisp.org>
2866
2867         Update to GNU gettext 0.16.
2868         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
2869         m4/inttypes-h.m4, m4/signed.m4.
2870         * m4/gettext.m4: Update to GNU gettext 0.16.
2871         * m4/intl.m4: New file, from GNU gettext.
2872         * m4/intldir.m4: New file, from GNU gettext.
2873         * config/srclist.txt: Update
2874
2875 2006-10-27  Eric Blake  <ebb9@byu.net>
2876
2877         * MODULES.html.sh: Document tempname.
2878         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
2879         dependencies.
2880         (Files): Move lib/tempname.c...
2881         * modules/tempname: ...to this new module.
2882         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
2883         (gl_PREREQ_TEMPNAME): Move...
2884         * m4/tempname.m4: ...to this new file.
2885         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
2886         * modules/sys_stat (Depends-on): Add stat-macros.
2887         * lib/stat_.h (includes): Pick up stat macros.
2888         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
2889         if stat macros are broken.
2890         * lib/tempname.c (includes): No need to include "stat-macros.h".
2891         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
2892         (direxists, __path_search) [!_LIBC]: Don't compile these in
2893         gnulib; the tmpdir module covers that.
2894         * lib/tempname.h: New file.
2895
2896 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
2897
2898         * COPYING: Explain how gnulib-tool converts licence headers.
2899         Almost all wording by Eric Blake.
2900
2901 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
2902
2903         * lib/mbchar.h (is_basic_table): Make read-only.
2904         * lib/mbchar.c (is_basic_table): Likewise.
2905         Reported by John Darrington.
2906
2907 2006-10-25  Bruno Haible  <bruno@clisp.org>
2908
2909         * lib/progname.h (set_program_name): Undefine before defining.
2910
2911 2006-10-25  Bruno Haible  <bruno@clisp.org>
2912
2913         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
2914         false for non-gcc C++ compilers.
2915         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
2916
2917 2006-10-24  Bruno Haible  <bruno@clisp.org>
2918
2919         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
2920         iconv implementations like Irix iconv.
2921
2922 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2923
2924         * modules/vararrays: New file.
2925         * m4/vararrays.m4: New file, taken from diffutils.
2926         * MODULES.html.sh: New module vararrays.
2927
2928 2006-10-24  Karl Berry  <karl@gnu.org>
2929
2930         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
2931         Don't call GNU Unix.
2932
2933 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2934
2935         * users.txt: Add Libtool.
2936
2937         Sync from Libtool:
2938
2939         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2940
2941         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
2942         to gnulib's policy of including config.h unconditionally.
2943
2944 2006-10-24  Bruno Haible  <bruno@clisp.org>
2945
2946         * modules/wcwidth (Files): Add m4/wint_t.m4.
2947         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
2948         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
2949
2950 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2951
2952         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
2953         to pacify GCC with some -W flags enabled.  Problem reported by
2954         Bruno Haible.
2955
2956 2006-10-24  Jim Meyering  <jim@meyering.net>
2957
2958         * MODULES.html.sh: Remove uinttostr.  It's not a module.
2959         Reported by Karl Berry.
2960
2961 2006-10-23  Bruno Haible  <bruno@clisp.org>
2962
2963         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
2964
2965 2006-10-24  Bruno Haible  <bruno@clisp.org>
2966
2967         * lib/gl_list.h: Use C comment style, not C++ comment style.
2968
2969 2006-10-23  Eric Blake  <ebb9@byu.net>
2970
2971         * lib/getaddrinfo.c (includes): Add missing include.
2972
2973 2006-10-23  Bruno Haible  <bruno@clisp.org>
2974             Paul Eggert  <eggert@cs.ucla.edu>
2975
2976         Ability to rename obstack_free.
2977         * lib/obstack.h (__obstack_free): New macro. Declare instead of
2978         obstack_free.
2979         (obstack_free): Invoke the __obstack_free macro.
2980         * lib/obstack.c (obstack_free): Use __obstack_free macro.
2981
2982 2006-10-23  Bruno Haible  <bruno@clisp.org>
2983             Paul Eggert  <eggert@cs.ucla.edu>
2984
2985         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
2986         __argc, __argv from the declaration. (They are defined as macros on
2987         mingw.)
2988
2989 2006-10-22  Bruno Haible  <bruno@clisp.org>
2990
2991         * doc/gnulib-intro.texi: New file.
2992         * doc/gnulib.texi: Include it.
2993
2994 2006-10-21  Bruno Haible  <bruno@clisp.org>
2995
2996         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
2997         "Introduction", "Miscellanous Notes", "Particular Modules".
2998
2999 2006-10-21  Bruno Haible  <bruno@clisp.org>
3000
3001         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3002         Change mostlyclean-local rule to avoid sh syntax error from bash
3003         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
3004
3005 2006-10-23  Jim Meyering  <jim@meyering.net>
3006
3007         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
3008         in place of snprintf.
3009
3010         * modules/inttostr (Files): Add lib/uinttostr.c.
3011         * lib/uinttostr.c (inttostr): New file/function.
3012         * lib/inttostr.h (uinttostr): Declare.
3013         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
3014         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
3015         Add uinttostr.
3016         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
3017
3018 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3019
3020         * lib/canonicalize.c (ELOOP): Define if not already defined.
3021         Problem reported by Bruno Haible in
3022         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
3023
3024 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3025
3026         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
3027         Problem reported by Perry Smith and Ville Laurikari.
3028
3029         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
3030         uses.
3031
3032 2006-10-19  Bruno Haible  <bruno@clisp.org>
3033
3034         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
3035         for mingw.
3036
3037 2006-10-19  Bruno Haible  <bruno@clisp.org>
3038
3039         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
3040         Needed for mingw.
3041
3042 2006-10-19  Bruno Haible  <bruno@clisp.org>
3043
3044         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
3045
3046 2006-10-19  Bruno Haible  <bruno@clisp.org>
3047
3048         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
3049         it.
3050
3051 2006-10-19  Bruno Haible  <bruno@clisp.org>
3052
3053         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
3054         invocation.
3055
3056 2006-10-19  Bruno Haible  <bruno@clisp.org>
3057
3058         * gnulib-tool (func_create_testdir): Don't include ftruncate and
3059         mountlist by default.
3060
3061 2006-10-16  Bruno Haible  <bruno@clisp.org>
3062
3063         * lib/c-strstr.c: Include c-strstr.h.
3064
3065 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3066
3067         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
3068         in a slash.
3069
3070 2006-10-18  Bruno Haible  <bruno@clisp.org>
3071
3072         * lib/lock.h [C++]: Wrap definitions in extern "C".
3073
3074 2006-10-18  Bruno Haible  <bruno@clisp.org>
3075
3076         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
3077         gl_LIBOBJS list.
3078
3079 2006-10-18  Bruno Haible  <bruno@clisp.org>
3080
3081         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
3082
3083 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3084
3085         * lib/xstrtol.h: Include gettext.h.
3086         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
3087         Problem reported by Eric Blake.
3088         * modules/xstrtol (Depends-on): Add gettext-h.
3089
3090 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
3091
3092         * lib/strftime.c (advance): New macro.
3093         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3094         incomplete type, so you can't add 0 to it.  Problem and patch
3095         reported by Eelco Dolstra for dietlibc.
3096
3097 2006-10-18  Jim Meyering  <jim@meyering.net>
3098
3099         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3100         type for a local, and rename it: s/up/user_proc/.
3101
3102 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3103
3104         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3105         READ_UTMP_USER_PROCESS.
3106         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3107
3108 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3109
3110         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3111         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3112
3113 2006-10-17  Eric Blake  <ebb9@byu.net>
3114
3115         * lib/sigprocmask.c (sigprocmask): Fix typo.
3116
3117         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3118
3119         * modules/clean-temp (Makefile.am): Don't add to make output...
3120         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3121         config.h.
3122
3123 2006-10-17  Bruno Haible  <bruno@clisp.org>
3124
3125         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3126         differently if DEFAULT_TEXT_DOMAIN is set.
3127
3128 2006-10-16  Bruno Haible  <bruno@clisp.org>
3129
3130         * lib/clean-temp.c: Include fwriteerror.h.
3131
3132 2006-10-16  Bruno Haible  <bruno@clisp.org>
3133
3134         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3135
3136 2006-10-16  Bruno Haible  <bruno@clisp.org>
3137
3138         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3139         * lib/sigprocmask.h: Include <sys/types.h>.
3140         (sigset_t): Use the system's definition if present.
3141
3142 2006-10-17  Eric Blake  <ebb9@byu.net>
3143
3144         * lib/xvasprintf.c (includes): Assume config.h.
3145         * lib/xasprintf.c (includes): Likewise.
3146
3147 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3148
3149         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3150         at least as wide as intmax_t.
3151
3152 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3153
3154         (Imported from Automake.)
3155         * build-aux/gnupload: Update to version 1.1 of directive file.
3156
3157 2006-10-16  Eric Blake  <ebb9@byu.net>
3158
3159         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
3160         match Automake 1.10a.
3161
3162 2006-10-14  Bruno Haible  <bruno@clisp.org>
3163
3164         * modules/sigprocmask: New file.
3165         * lib/sigprocmask.h: New file.
3166         * lib/sigprocmask.c: New file.
3167         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
3168         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
3169         request sigprocmask.o.
3170         (gl_PREREQ_SIGPROCMASK): New macro.
3171         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
3172         (Depends-on): Add sigprocmask.
3173         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
3174         gt_SIGNALBLOCKING. Test for 'raise' only once.
3175         * lib/fatal-signal.c: Include sigprocmask.h.
3176         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
3177         unblock_fatal_signals): Define always.
3178         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
3179         sigprocmask.
3180
3181 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3182
3183         Sync from Automake.
3184         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3185         which incorrectly sets the mode of an existing destination
3186         directory.  In some cases the unpatched install-sh could do the
3187         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3188         system.  We hope this is rare in practice, but it's clearly worth
3189         fixing.  Problem reported by Alex Unleashed in
3190         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3191         Also, don't bother to check for -m bugs unless we're using -m;
3192         suggested by Stepan Kasal.
3193
3194 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3195
3196         Sync from Automake.
3197         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
3198         `-c' flag, so they appear at the same position as in %FASTDEP%
3199         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
3200         which ignores unknown options only after the first non-option.
3201         Bug report against M4 by Nelson H. F. Beebe.
3202
3203 2006-10-13  Jim Meyering  <jim@meyering.net>
3204
3205         Fix a bug in yesterday's change.
3206         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
3207         p->fts_statp->st_dev would be used uninitialized.
3208         Ensures that we always call fts_stat on the very first entry.
3209         Miklos Szeredi reported that find -xdev stopped working.
3210
3211 2006-10-12  Bruno Haible  <bruno@clisp.org>
3212
3213         * gnulib-tool (func_get_automake_snippet): Append an automatically
3214         computed EXTRA_DIST augmentation.
3215         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
3216         * modules/alloca-opt (Makefile.am): Likewise.
3217         * modules/allocsa (Makefile.am): Likewise.
3218         * modules/arcfour (Makefile.am): Likewise.
3219         * modules/arctwo (Makefile.am): Likewise.
3220         * modules/argmatch (Makefile.am): Likewise.
3221         * modules/argz (Makefile.am): Likewise.
3222         * modules/atexit (Makefile.am): Likewise.
3223         * modules/backupfile (Makefile.am): Likewise.
3224         * modules/byteswap (Makefile.am): Likewise.
3225         * modules/c-strtod (Makefile.am): Likewise.
3226         * modules/c-strtold (Makefile.am): Likewise.
3227         * modules/calloc (Makefile.am): Likewise.
3228         * modules/canon-host (Makefile.am): Likewise.
3229         * modules/canonicalize (Makefile.am): Likewise.
3230         * modules/chdir-long (Makefile.am): Likewise.
3231         * modules/chdir-safer (Makefile.am): Likewise.
3232         * modules/check-version (Makefile.am): Likewise.
3233         * modules/chown (Makefile.am): Likewise.
3234         * modules/cloexec (Makefile.am): Likewise.
3235         * modules/close-stream (Makefile.am): Likewise.
3236         * modules/closeout (Makefile.am): Likewise.
3237         * modules/crc (Makefile.am): Likewise.
3238         * modules/csharpexec (Makefile.am): Likewise.
3239         * modules/cycle-check (Makefile.am): Likewise.
3240         * modules/des (Makefile.am): Likewise.
3241         * modules/dev-ino (Makefile.am): Likewise.
3242         * modules/dirfd (Makefile.am): Likewise.
3243         * modules/dirname (Makefile.am): Likewise.
3244         * modules/dup2 (Makefile.am): Likewise.
3245         * modules/eealloc (Makefile.am): Likewise.
3246         * modules/error (Makefile.am): Likewise.
3247         * modules/euidaccess (Makefile.am): Likewise.
3248         * modules/exclude (Makefile.am): Likewise.
3249         * modules/exitfail (Makefile.am): Likewise.
3250         * modules/fcntl-safer (Makefile.am): Likewise.
3251         * modules/fcntl (Makefile.am): Likewise.
3252         * modules/file-type (Makefile.am): Likewise.
3253         * modules/fileblocks (Makefile.am): Likewise.
3254         * modules/filemode (Makefile.am): Likewise.
3255         * modules/filenamecat (Makefile.am): Likewise.
3256         * modules/fnmatch (Makefile.am): Likewise.
3257         * modules/fopen-safer (Makefile.am): Likewise.
3258         * modules/fpending (Makefile.am): Likewise.
3259         * modules/fprintftime (Makefile.am): Likewise.
3260         * modules/free (Makefile.am): Likewise.
3261         * modules/fsusage (Makefile.am): Likewise.
3262         * modules/ftruncate (Makefile.am): Likewise.
3263         * modules/fts (Makefile.am): Likewise.
3264         * modules/gc-arcfour (Makefile.am): Likewise.
3265         * modules/gc-des (Makefile.am): Likewise.
3266         * modules/gc-hmac-md5 (Makefile.am): Likewise.
3267         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
3268         * modules/gc-md4 (Makefile.am): Likewise.
3269         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3270         * modules/gc-sha1 (Makefile.am): Likewise.
3271         * modules/gc (Makefile.am): Likewise.
3272         * modules/getaddrinfo (Makefile.am): Likewise.
3273         * modules/getcwd (Makefile.am): Likewise.
3274         * modules/getdelim (Makefile.am): Likewise.
3275         * modules/getdomainname (Makefile.am): Likewise.
3276         * modules/getgroups (Makefile.am): Likewise.
3277         * modules/gethostname (Makefile.am): Likewise.
3278         * modules/gethrxtime (Makefile.am): Likewise.
3279         * modules/getline (Makefile.am): Likewise.
3280         * modules/getloadavg (Makefile.am): Likewise.
3281         * modules/getlogin_r (Makefile.am): Likewise.
3282         * modules/getndelim2 (Makefile.am): Likewise.
3283         * modules/getopt (Makefile.am): Likewise.
3284         * modules/getpagesize (Makefile.am): Likewise.
3285         * modules/getpass-gnu (Makefile.am): Likewise.
3286         * modules/getpass (Makefile.am): Likewise.
3287         * modules/getsubopt (Makefile.am): Likewise.
3288         * modules/gettime (Makefile.am): Likewise.
3289         * modules/gettimeofday (Makefile.am): Likewise.
3290         * modules/getugroups (Makefile.am): Likewise.
3291         * modules/getusershell (Makefile.am): Likewise.
3292         * modules/glob (Makefile.am): Likewise.
3293         * modules/group-member (Makefile.am): Likewise.
3294         * modules/hard-locale (Makefile.am): Likewise.
3295         * modules/hash (Makefile.am): Likewise.
3296         * modules/hmac-md5 (Makefile.am): Likewise.
3297         * modules/hmac-sha1 (Makefile.am): Likewise.
3298         * modules/human (Makefile.am): Likewise.
3299         * modules/idcache (Makefile.am): Likewise.
3300         * modules/imaxabs (Makefile.am): Likewise.
3301         * modules/imaxdiv (Makefile.am): Likewise.
3302         * modules/inet_ntop (Makefile.am): Likewise.
3303         * modules/inet_pton (Makefile.am): Likewise.
3304         * modules/intprops (Makefile.am): Likewise.
3305         * modules/inttostr (Makefile.am): Likewise.
3306         * modules/inttypes (Makefile.am): Likewise.
3307         * modules/isapipe (Makefile.am): Likewise.
3308         * modules/javaversion (Makefile.am): Likewise.
3309         * modules/lchmod (Makefile.am): Likewise.
3310         * modules/lchown (Makefile.am): Likewise.
3311         * modules/localcharset (Makefile.am): Likewise.
3312         * modules/long-options (Makefile.am): Likewise.
3313         * modules/lstat (Makefile.am): Likewise.
3314         * modules/malloc (Makefile.am): Likewise.
3315         * modules/mathl (Makefile.am): Likewise.
3316         * modules/mbchar (Makefile.am): Likewise.
3317         * modules/md2 (Makefile.am): Likewise.
3318         * modules/md4 (Makefile.am): Likewise.
3319         * modules/md5 (Makefile.am): Likewise.
3320         * modules/memcasecmp (Makefile.am): Likewise.
3321         * modules/memchr (Makefile.am): Likewise.
3322         * modules/memcmp (Makefile.am): Likewise.
3323         * modules/memcoll (Makefile.am): Likewise.
3324         * modules/memcpy (Makefile.am): Likewise.
3325         * modules/memmem (Makefile.am): Likewise.
3326         * modules/memmove (Makefile.am): Likewise.
3327         * modules/mempcpy (Makefile.am): Likewise.
3328         * modules/memrchr (Makefile.am): Likewise.
3329         * modules/memset (Makefile.am): Likewise.
3330         * modules/memxor (Makefile.am): Likewise.
3331         * modules/mkancesdirs (Makefile.am): Likewise.
3332         * modules/mkdir-p (Makefile.am): Likewise.
3333         * modules/mkdir (Makefile.am): Likewise.
3334         * modules/mkdtemp (Makefile.am): Likewise.
3335         * modules/mkstemp (Makefile.am): Likewise.
3336         * modules/mktime (Makefile.am): Likewise.
3337         * modules/modechange (Makefile.am): Likewise.
3338         * modules/mountlist (Makefile.am): Likewise.
3339         * modules/nanosleep (Makefile.am): Likewise.
3340         * modules/obstack (Makefile.am): Likewise.
3341         * modules/openat (Makefile.am): Likewise.
3342         * modules/pagealign_alloc (Makefile.am): Likewise.
3343         * modules/pathmax (Makefile.am): Likewise.
3344         * modules/physmem (Makefile.am): Likewise.
3345         * modules/poll (Makefile.am): Likewise.
3346         * modules/posixtm (Makefile.am): Likewise.
3347         * modules/posixver (Makefile.am): Likewise.
3348         * modules/putenv (Makefile.am): Likewise.
3349         * modules/quote (Makefile.am): Likewise.
3350         * modules/quotearg (Makefile.am): Likewise.
3351         * modules/raise (Makefile.am): Likewise.
3352         * modules/read-file (Makefile.am): Likewise.
3353         * modules/readline (Makefile.am): Likewise.
3354         * modules/readlink (Makefile.am): Likewise.
3355         * modules/readtokens (Makefile.am): Likewise.
3356         * modules/readutmp (Makefile.am): Likewise.
3357         * modules/realloc (Makefile.am): Likewise.
3358         * modules/regex (Makefile.am): Likewise.
3359         * modules/rename-dest-slash (Makefile.am): Likewise.
3360         * modules/rename (Makefile.am): Likewise.
3361         * modules/rijndael (Makefile.am): Likewise.
3362         * modules/rmdir (Makefile.am): Likewise.
3363         * modules/rpmatch (Makefile.am): Likewise.
3364         * modules/safe-read (Makefile.am): Likewise.
3365         * modules/safe-write (Makefile.am): Likewise.
3366         * modules/same-inode (Makefile.am): Likewise.
3367         * modules/same (Makefile.am): Likewise.
3368         * modules/save-cwd (Makefile.am): Likewise.
3369         * modules/savedir (Makefile.am): Likewise.
3370         * modules/setenv (Makefile.am): Likewise.
3371         * modules/settime (Makefile.am): Likewise.
3372         * modules/sha1 (Makefile.am): Likewise.
3373         * modules/sig2str (Makefile.am): Likewise.
3374         * modules/snprintf (Makefile.am): Likewise.
3375         * modules/stat-macros (Makefile.am): Likewise.
3376         * modules/stat-time (Makefile.am): Likewise.
3377         * modules/stdbool (Makefile.am): Likewise.
3378         * modules/stdint (Makefile.am): Likewise.
3379         * modules/stdlib-safer (Makefile.am): Likewise.
3380         * modules/stpcpy (Makefile.am): Likewise.
3381         * modules/stpncpy (Makefile.am): Likewise.
3382         * modules/strcase (Makefile.am): Likewise.
3383         * modules/strcasestr (Makefile.am): Likewise.
3384         * modules/strchrnul (Makefile.am): Likewise.
3385         * modules/strcspn (Makefile.am): Likewise.
3386         * modules/strdup (Makefile.am): Likewise.
3387         * modules/strerror (Makefile.am): Likewise.
3388         * modules/strftime (Makefile.am): Likewise.
3389         * modules/strndup (Makefile.am): Likewise.
3390         * modules/strnlen (Makefile.am): Likewise.
3391         * modules/strpbrk (Makefile.am): Likewise.
3392         * modules/strsep (Makefile.am): Likewise.
3393         * modules/strstr (Makefile.am): Likewise.
3394         * modules/strtod (Makefile.am): Likewise.
3395         * modules/strtoimax (Makefile.am): Likewise.
3396         * modules/strtok_r (Makefile.am): Likewise.
3397         * modules/strtol (Makefile.am): Likewise.
3398         * modules/strtoll (Makefile.am): Likewise.
3399         * modules/strtoul (Makefile.am): Likewise.
3400         * modules/strtoull (Makefile.am): Likewise.
3401         * modules/strtoumax (Makefile.am): Likewise.
3402         * modules/strverscmp (Makefile.am): Likewise.
3403         * modules/sys_socket (Makefile.am): Likewise.
3404         * modules/sys_stat (Makefile.am): Likewise.
3405         * modules/sysexits (Makefile.am): Likewise.
3406         * modules/time_r (Makefile.am): Likewise.
3407         * modules/timegm (Makefile.am): Likewise.
3408         * modules/timespec (Makefile.am): Likewise.
3409         * modules/tmpfile-safer (Makefile.am): Likewise.
3410         * modules/trim (Makefile.am): Likewise.
3411         * modules/unistd-safer (Makefile.am): Likewise.
3412         * modules/unlinkdir (Makefile.am): Likewise.
3413         * modules/unlocked-io (Makefile.am): Likewise.
3414         * modules/userspec (Makefile.am): Likewise.
3415         * modules/utime (Makefile.am): Likewise.
3416         * modules/utimecmp (Makefile.am): Likewise.
3417         * modules/utimens (Makefile.am): Likewise.
3418         * modules/vasnprintf (Makefile.am): Likewise.
3419         * modules/vasprintf (Makefile.am): Likewise.
3420         * modules/vsnprintf (Makefile.am): Likewise.
3421         * modules/xalloc (Makefile.am): Likewise.
3422         * modules/xgetcwd (Makefile.am): Likewise.
3423         * modules/xnanosleep (Makefile.am): Likewise.
3424         * modules/xreadlink (Makefile.am): Likewise.
3425         * modules/xstrtod (Makefile.am): Likewise.
3426         * modules/xstrtol (Makefile.am): Likewise.
3427         * modules/xstrtold (Makefile.am): Likewise.
3428         * modules/yesno (Makefile.am): Likewise.
3429         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
3430
3431 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3432
3433         * modules/error (Makefile.am): Distribute files through
3434         EXTRA_DIST, not lib_SOURCES.
3435
3436 2006-10-12  Eric Blake  <ebb9@byu.net>
3437
3438         * modules/error (Makefile.am): Distribute files in /lib.
3439         * modules/obstack (Makefile.am): Likewise.
3440
3441 2006-10-12  Bruno Haible  <bruno@clisp.org>
3442
3443         * modules/acl (Makefile.am): Distribute all files in lib/ through
3444         EXTRA_DIST.
3445         * modules/arcfour (Makefile.am): Likewise.
3446         * modules/arctwo (Makefile.am): Likewise.
3447         * modules/argmatch (Makefile.am): Likewise.
3448         * modules/argz (Makefile.am): Likewise.
3449         * modules/atexit (Makefile.am): Likewise.
3450         * modules/backupfile (Makefile.am): Likewise.
3451         * modules/c-strtod (Makefile.am): Likewise.
3452         * modules/c-strtold (Makefile.am): Likewise.
3453         * modules/calloc (Makefile.am): Likewise.
3454         * modules/canon-host (Makefile.am): Likewise.
3455         * modules/canonicalize (Makefile.am): Likewise.
3456         * modules/chdir-long (Makefile.am): Likewise.
3457         * modules/chdir-safer (Makefile.am): Likewise.
3458         * modules/check-version (Makefile.am): Likewise.
3459         * modules/chown (Makefile.am): Likewise.
3460         * modules/cloexec (Makefile.am): Likewise.
3461         * modules/close-stream (Makefile.am): Likewise.
3462         * modules/closeout (Makefile.am): Likewise.
3463         * modules/crc (Makefile.am): Likewise.
3464         * modules/cycle-check (Makefile.am): Likewise.
3465         * modules/des (Makefile.am): Likewise.
3466         * modules/dirfd (Makefile.am): Likewise.
3467         * modules/dirname (Makefile.am): Likewise.
3468         * modules/dup2 (Makefile.am): Likewise.
3469         * modules/euidaccess (Makefile.am): Likewise.
3470         * modules/exclude (Makefile.am): Likewise.
3471         * modules/exitfail (Makefile.am): Likewise.
3472         * modules/fcntl-safer (Makefile.am): Likewise.
3473         * modules/file-type (Makefile.am): Likewise.
3474         * modules/fileblocks (Makefile.am): Likewise.
3475         * modules/filemode (Makefile.am): Likewise.
3476         * modules/filenamecat (Makefile.am): Likewise.
3477         * modules/fnmatch (Makefile.am): Likewise.
3478         * modules/fopen-safer (Makefile.am): Likewise.
3479         * modules/fpending (Makefile.am): Likewise.
3480         * modules/fprintftime (Makefile.am): Likewise.
3481         * modules/free (Makefile.am): Likewise.
3482         * modules/fsusage (Makefile.am): Likewise.
3483         * modules/ftruncate (Makefile.am): Likewise.
3484         * modules/fts (Makefile.am): Likewise.
3485         * modules/gc (Makefile.am): Likewise.
3486         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
3487         * modules/getaddrinfo (Makefile.am): Likewise.
3488         * modules/getcwd (Makefile.am): Likewise.
3489         * modules/getdelim (Makefile.am): Likewise.
3490         * modules/getdomainname (Makefile.am): Likewise.
3491         * modules/getgroups (Makefile.am): Likewise.
3492         * modules/gethostname (Makefile.am): Likewise.
3493         * modules/gethrxtime (Makefile.am): Likewise.
3494         * modules/getline (Makefile.am): Likewise.
3495         * modules/getloadavg (Makefile.am): Likewise.
3496         * modules/getlogin_r (Makefile.am): Likewise.
3497         * modules/getopt (Makefile.am): Likewise.
3498         * modules/getpass (Makefile.am): Likewise.
3499         * modules/getpass-gnu (Makefile.am): Likewise.
3500         * modules/getsubopt (Makefile.am): Likewise.
3501         * modules/gettime (Makefile.am): Likewise.
3502         * modules/gettimeofday (Makefile.am): Likewise.
3503         * modules/getugroups (Makefile.am): Likewise.
3504         * modules/getusershell (Makefile.am): Likewise.
3505         * modules/glob (Makefile.am): Likewise.
3506         * modules/group-member (Makefile.am): Likewise.
3507         * modules/hard-locale (Makefile.am): Likewise.
3508         * modules/hash (Makefile.am): Likewise.
3509         * modules/hmac-md5 (Makefile.am): Likewise.
3510         * modules/hmac-sha1 (Makefile.am): Likewise.
3511         * modules/human (Makefile.am): Likewise.
3512         * modules/idcache (Makefile.am): Likewise.
3513         * modules/imaxabs (Makefile.am): Likewise.
3514         * modules/imaxdiv (Makefile.am): Likewise.
3515         * modules/inet_ntop (Makefile.am): Likewise.
3516         * modules/inet_pton (Makefile.am): Likewise.
3517         * modules/inttostr (Makefile.am): Likewise.
3518         * modules/isapipe (Makefile.am): Likewise.
3519         * modules/lchown (Makefile.am): Likewise.
3520         * modules/long-options (Makefile.am): Likewise.
3521         * modules/lstat (Makefile.am): Likewise.
3522         * modules/malloc (Makefile.am): Likewise.
3523         * modules/mathl (Makefile.am): Likewise.
3524         * modules/mbchar (Makefile.am): Likewise.
3525         * modules/md2 (Makefile.am): Likewise.
3526         * modules/md4 (Makefile.am): Likewise.
3527         * modules/md5 (Makefile.am): Likewise.
3528         * modules/memcasecmp (Makefile.am): Likewise.
3529         * modules/memchr (Makefile.am): Likewise.
3530         * modules/memcmp (Makefile.am): Likewise.
3531         * modules/memcoll (Makefile.am): Likewise.
3532         * modules/memcpy (Makefile.am): Likewise.
3533         * modules/memmem (Makefile.am): Likewise.
3534         * modules/memmove (Makefile.am): Likewise.
3535         * modules/mempcpy (Makefile.am): Likewise.
3536         * modules/memrchr (Makefile.am): Likewise.
3537         * modules/memset (Makefile.am): Likewise.
3538         * modules/memxor (Makefile.am): Likewise.
3539         * modules/mkancesdirs (Makefile.am): Likewise.
3540         * modules/mkdir (Makefile.am): Likewise.
3541         * modules/mkdir-p (Makefile.am): Likewise.
3542         * modules/mkdtemp (Makefile.am): Likewise.
3543         * modules/mkstemp (Makefile.am): Likewise.
3544         * modules/mktime (Makefile.am): Likewise.
3545         * modules/modechange (Makefile.am): Likewise.
3546         * modules/mountlist (Makefile.am): Likewise.
3547         * modules/nanosleep (Makefile.am): Likewise.
3548         * modules/openat (Makefile.am): Likewise.
3549         * modules/pagealign_alloc (Makefile.am): Likewise.
3550         * modules/physmem (Makefile.am): Likewise.
3551         * modules/poll (Makefile.am): Likewise.
3552         * modules/posixtm (Makefile.am): Likewise.
3553         * modules/posixver (Makefile.am): Likewise.
3554         * modules/putenv (Makefile.am): Likewise.
3555         * modules/quote (Makefile.am): Likewise.
3556         * modules/quotearg (Makefile.am): Likewise.
3557         * modules/raise (Makefile.am): Likewise.
3558         * modules/read-file (Makefile.am): Likewise.
3559         * modules/readline (Makefile.am): Likewise.
3560         * modules/readlink (Makefile.am): Likewise.
3561         * modules/readtokens (Makefile.am): Likewise.
3562         * modules/readutmp (Makefile.am): Likewise.
3563         * modules/realloc (Makefile.am): Likewise.
3564         * modules/regex (Makefile.am): Likewise.
3565         * modules/rename (Makefile.am): Likewise.
3566         * modules/rename-dest-slash (Makefile.am): Likewise.
3567         * modules/rijndael (Makefile.am): Likewise.
3568         * modules/rmdir (Makefile.am): Likewise.
3569         * modules/rpmatch (Makefile.am): Likewise.
3570         * modules/safe-read (Makefile.am): Likewise.
3571         * modules/safe-write (Makefile.am): Likewise.
3572         * modules/same (Makefile.am): Likewise.
3573         * modules/save-cwd (Makefile.am): Likewise.
3574         * modules/savedir (Makefile.am): Likewise.
3575         * modules/setenv (Makefile.am): Likewise.
3576         * modules/settime (Makefile.am): Likewise.
3577         * modules/sha1 (Makefile.am): Likewise.
3578         * modules/sig2str (Makefile.am): Likewise.
3579         * modules/snprintf (Makefile.am): Likewise.
3580         * modules/stdlib-safer (Makefile.am): Likewise.
3581         * modules/stpcpy (Makefile.am): Likewise.
3582         * modules/stpncpy (Makefile.am): Likewise.
3583         * modules/strcase (Makefile.am): Likewise.
3584         * modules/strcasestr (Makefile.am): Likewise.
3585         * modules/strchrnul (Makefile.am): Likewise.
3586         * modules/strcspn (Makefile.am): Likewise.
3587         * modules/strdup (Makefile.am): Likewise.
3588         * modules/strerror (Makefile.am): Likewise.
3589         * modules/strftime (Makefile.am): Likewise.
3590         * modules/strndup (Makefile.am): Likewise.
3591         * modules/strnlen (Makefile.am): Likewise.
3592         * modules/strpbrk (Makefile.am): Likewise.
3593         * modules/strsep (Makefile.am): Likewise.
3594         * modules/strstr (Makefile.am): Likewise.
3595         * modules/strtod (Makefile.am): Likewise.
3596         * modules/strtoimax (Makefile.am): Likewise.
3597         * modules/strtok_r (Makefile.am): Likewise.
3598         * modules/strtol (Makefile.am): Likewise.
3599         * modules/strtoll (Makefile.am): Likewise.
3600         * modules/strtoul (Makefile.am): Likewise.
3601         * modules/strtoull (Makefile.am): Likewise.
3602         * modules/strtoumax (Makefile.am): Likewise.
3603         * modules/strverscmp (Makefile.am): Likewise.
3604         * modules/time_r (Makefile.am): Likewise.
3605         * modules/timegm (Makefile.am): Likewise.
3606         * modules/tmpfile-safer (Makefile.am): Likewise.
3607         * modules/unistd-safer (Makefile.am): Likewise.
3608         * modules/unlinkdir (Makefile.am): Likewise.
3609         * modules/userspec (Makefile.am): Likewise.
3610         * modules/utime (Makefile.am): Likewise.
3611         * modules/utimecmp (Makefile.am): Likewise.
3612         * modules/utimens (Makefile.am): Likewise.
3613         * modules/vasnprintf (Makefile.am): Likewise.
3614         * modules/vasprintf (Makefile.am): Likewise.
3615         * modules/vsnprintf (Makefile.am): Likewise.
3616         * modules/xalloc (Makefile.am): Likewise.
3617         * modules/xgetcwd (Makefile.am): Likewise.
3618         * modules/xnanosleep (Makefile.am): Likewise.
3619         * modules/xreadlink (Makefile.am): Likewise.
3620         * modules/xstrtod (Makefile.am): Likewise.
3621         * modules/xstrtol (Makefile.am): Likewise.
3622         * modules/xstrtold (Makefile.am): Likewise.
3623         * modules/yesno (Makefile.am): Likewise.
3624
3625 2006-10-12  Jim Meyering  <jim@meyering.net>
3626
3627         * m4/getloadavg.m4: Revert the change below.
3628
3629         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
3630         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
3631         fail with a symlink, which is what coreutils' ./bootstrap now
3632         creates by default.
3633
3634 2006-10-12  Bruno Haible  <bruno@clisp.org>
3635
3636         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
3637         mingw.
3638         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
3639         MSVC and mingw explicitly.
3640
3641 2006-10-11  Simon Josefsson  <jas@extundo.com>
3642             Bruno Haible  <bruno@clisp.org>
3643
3644         Add support for multiple gnulib-tool invocations in the scope of a
3645         single configure.ac file.
3646         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
3647         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
3648         with the same contents as the _LIBADD variable.
3649         (func_emit_initmacro_start, func_emit_initmacro_end,
3650         func_emit_initmacro_done): New functions.
3651         (func_import, func_create_testdir): Invoke them. Allow the identifiers
3652         gl_LIBOBJS and gl_LTLIBOBJS.
3653
3654 2006-10-11  Bruno Haible  <bruno@clisp.org>
3655
3656         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
3657         (func_create_testdir): Don't create po/Makefile.am, don't invoke
3658         autoreconf. Instead, invoke autopoint explicitly but move back the
3659         *.m4 files from gnulib.
3660
3661 2006-10-11  Bruno Haible  <bruno@clisp.org>
3662
3663         * gnulib-tool (func_usage): Make module names after --create-testdir
3664         optional.
3665         (func_create_testdir): If no module was specified, use nearly all
3666         modules.
3667
3668 2006-10-12  Jim Meyering  <jim@meyering.net>
3669
3670         Big performance improvement for fts-based tools that use FTS_NOSTAT.
3671         Avoid spurious inode-mismatch problems on non-POSIX file systems.
3672         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
3673         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
3674         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
3675         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
3676         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
3677         (fts_set_stat_required): New function.
3678         (fts_open): Defer the calls to fts_stat, if possible or requested.
3679         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
3680         into fts_stat itself.
3681         (fts_read): Perform any required (deferred) fts_stat call.
3682         (fts_build): Likewise, for the directory we're about to open and read.
3683         In the readdir loop, carefully decide whether each entry will require
3684         an eventual call to fts_stat, using dirent.d_type info if available.
3685         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
3686         a command line argument into this function.  Update all callers.
3687         Map a return value of FTS_DOT to FTS_D for a command line argument.
3688         * modules/fts (Depends-on): Add d-type.  Alphabetize.
3689         Thanks to Miklos Szeredi for his tenacity and for the initial
3690         bug report about "find" failing on a FUSE-based file system.
3691
3692         * lib/fts.c (fts_open): Use consistent indentation.
3693
3694 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3695
3696         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
3697         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
3698         reported by Jim Meyering.  All uses of cache variables renamed
3699         to match Autoconf's.
3700         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
3701         the other one.
3702
3703         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
3704         Fix misspelling in diagnostic.
3705
3706 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3707
3708         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
3709         defined.  Problem reported by Matthew Woehlke.
3710
3711         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
3712         Add support for Tandem NonStop R series.
3713         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
3714         Use new macro.
3715
3716         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
3717         (has_trailing_slash): Omit size arg; all callers changed.
3718         Omit 'inline', since it doesn't help performance and we'd
3719         need to configure it.
3720         Don't count //, ///, etc. as having a trailing slash.
3721         As a side effect, this removes a C99ism reported by Matthew Woehlke.
3722         (rpl_rename_dest_slash): On failure, use rename's errno rather
3723         than (in some cases) an incorrect or junk errno.
3724         Simplify code by removing need to compute length; this does
3725         cause it to make two passes instead of one over the file name,
3726         but it's worth it.
3727
3728         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
3729         change, since Autoconf's version may no longer be appropriate now
3730         that we are using CVS Autoconf's version.  Add support for Tandem.
3731
3732 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3733             Bruno Haible  <bruno@clisp.org>
3734
3735         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
3736         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
3737         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
3738         gl_AC_TYPE_LONG_LONG.
3739
3740         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
3741         instead of HAVE_LONG_LONG.
3742         * lib/printf-args.c (printf_fetchargs): Likewise.
3743         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
3744         * lib/vasnprintf.c (VASNPRINTF): Likewise.
3745         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
3746         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
3747         gl_AC_TYPE_LONG_LONG.
3748
3749 2006-10-11  Bruno Haible  <bruno@clisp.org>
3750
3751         * m4/longlong.m4: Add comments.
3752         * m4/ulonglong.m4: Likewise.
3753
3754 2006-10-10  Bruno Haible  <bruno@clisp.org>
3755
3756         Make it possible to #define stpcpy, strdup to aliases.
3757         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
3758         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
3759
3760 2006-10-10  Bruno Haible  <bruno@clisp.org>
3761
3762         Make it possible to #define gcd to an alias.
3763         * lib/gcd.c: Include config.h.
3764
3765 2006-10-10  Bruno Haible  <bruno@clisp.org>
3766
3767         Make it possible to #define c_isascii to an alias.
3768         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
3769         defined. Undefine the macros before defining them, to avoid gcc
3770         warnings.
3771         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
3772         define NO_C_CTYPE_MACROS early.
3773
3774 2006-10-10  Bruno Haible  <bruno@clisp.org>
3775
3776         Make it possible to #define set_program_name to an alias.
3777         * lib/progname.c: Don't undefine set_program_name; instead, undefine
3778         ENABLE_RELOCATABLE early.
3779
3780 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
3781
3782         Port to Tandem NSK OSS, which has 64-bit signed int but at most
3783         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
3784         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
3785         More generally, don't assume that 64-bit signed int is available
3786         if unsigned int is, and vice versa.
3787         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
3788         unsigned symbols, not on their signed counterparts.
3789         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
3790         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
3791         (UINT64_C, UINTMAX_C):
3792         Likewise.
3793         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
3794         unsigned counterparts.
3795         (Have_long_long, Unsigned): New macros.
3796         (Int): Renamed from INT.
3797         (strtoimax): Use the new macros.
3798         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
3799         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
3800         * modules/inttypes (inttypes.h): Substitute
3801         HAVE_UNSIGNED_LONG_LONG_INT.
3802         * modules/stdint (stdint.h): Likewise.
3803         (Files): Add m4/ulonglong.m4.
3804
3805 2006-10-10  Bruno Haible  <bruno@clisp.org>
3806
3807         Fix a gcc -Wshadow warning.
3808         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
3809         to 'bucket'.
3810         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
3811         gl_linked_indexof_from_to): Likewise.
3812         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
3813         Likewise.
3814         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
3815         Likewise.
3816         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
3817         Reported by Eric Blake.
3818
3819 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
3820
3821         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
3822         for NetBSD.  Problem reported by Bruno Haible.
3823
3824 2006-10-09  Jim Meyering  <jim@meyering.net>
3825
3826         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
3827         Patch from Bruno Haible.
3828
3829 2006-10-09  Jim Meyering  <jim@meyering.net>
3830
3831         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
3832         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
3833         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
3834
3835 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
3836
3837         Don't include <config.h> twice; this doesn't work in some cases,
3838         e.g., when config.h has "#define intmax_t long long int" and
3839         we include <config.h>, <inttypes.h>, <config.h> in that order.
3840         Problem reported by Matthew Woehlke in:
3841         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
3842         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
3843         * lib/fts-cycle.c: Don't include config.h.
3844         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
3845         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
3846         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
3847         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
3848         inttypes.h.
3849         * lib/xstrtoumax.c: Likewise.
3850         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
3851         __strtol and the like, so that this module is more like its siblings.
3852         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
3853         Remove; no longer needed now that we assume gnulib inttypes.h.
3854
3855 2006-10-08  Bruno Haible  <bruno@clisp.org>
3856
3857         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
3858         option.
3859
3860 2006-10-07  Jim Meyering  <jim@meyering.net>
3861
3862         * modules/inttypes (inttypes.h): Revert what seems to have been
3863         an inadvertent part of today's change: use "|", not "/" in the
3864         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
3865
3866 2006-10-07  Bruno Haible  <bruno@clisp.org>
3867
3868         * modules/sublist: New file.
3869
3870 2006-10-07  Bruno Haible  <bruno@clisp.org>
3871
3872         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
3873         * modules/argz (argz.h): Likewise.
3874         * modules/arpa_inet (arpa/inet.h): Likewise.
3875         * modules/byteswap (byteswap.h): Likewise.
3876         * modules/configmake (configmake.h): Likewise.
3877         * modules/fcntl (fcntl.h): Likewise.
3878         * modules/fnmatch (fnmatch.h): Likewise.
3879         * modules/getopt (getopt.h): Likewise.
3880         * modules/glob (glob.h): Likewise.
3881         * modules/inttypes (inttypes.h): Likewise.
3882         * modules/netinet_in (netinet/in.h): Likewise.
3883         * modules/poll (poll.h): Likewise.
3884         * modules/stdbool (stdbool.h): Likewise.
3885         * modules/stdint (stdint.h): Likewise.
3886         * modules/sys_select (sys/select.h): Likewise.
3887         * modules/sys_socket (sys/socket.h): Likewise.
3888         * modules/sys_stat (sys/stat.h): Likewise.
3889         * modules/sysexits (sysexits.h): Likewise.
3890         * modules/unistd (unistd.h): Likewise.
3891         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3892         Add a "DO NOT EDIT" comment to the generated file.
3893         (func_import): Likewise for gnulib-comp.m4.
3894
3895 2006-10-07  Bruno Haible  <bruno@clisp.org>
3896
3897         * lib/gl_sublist.h: New file.
3898         * lib/gl_sublist.c: New file.
3899
3900 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
3901
3902         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
3903         name (relative to the original working directory) and the file
3904         name component (relative to the temporary working directory).  All
3905         callers changed.
3906         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
3907         * lib/mkdir-p.c (make_dir_parents): Likewise.
3908         * lib/mkdir-p.h (make_dir_parents): Likewise.
3909
3910 2006-10-06  Eric Blake  <ebb9@byu.net>
3911
3912         Define several macros for use by the clean-temp module.
3913         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
3914         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
3915         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
3916
3917         * lib/clean-temp.h (close_stream_temp): New declaration.
3918         * lib/clean-temp.c (includes): Pull in headers according to what
3919         other modules are in use.
3920         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
3921
3922 2006-10-06  Bruno Haible  <bruno@clisp.org>
3923
3924         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
3925         instead of fopen, fwriteerror.
3926
3927 2006-10-06  Bruno Haible  <bruno@clisp.org>
3928
3929         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
3930         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
3931         int.
3932         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
3933         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
3934         Return an error indicator.
3935         Suggested by Eric Blake.
3936
3937 2006-10-06  Bruno Haible  <bruno@clisp.org>
3938
3939         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
3940         Reported by Eric Blake.
3941
3942 2006-10-06  Bruno Haible  <bruno@clisp.org>
3943
3944         * modules/closeout (Description): Mention stderr too.
3945
3946 2006-10-06  Bruno Haible  <bruno@clisp.org>
3947         and Paul Eggert  <eggert@cs.ucla.edu>
3948
3949         * lib/closeout.c (close_stdout): Also close stderr.
3950         * lib/closeout.h: Update comment.
3951
3952 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3953
3954         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
3955         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
3956         * lib/dirchownmod.c: Include lchown.h.
3957         * lib/lchown.c: Don't include files that lchown.h now includes.
3958         Don't declare chown, since lchown.h now does that.
3959         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
3960         (lchown): Define to rpl_chown if lchown is declared but
3961         does not exist.  Declare using a prototype if lchown is not
3962         declared.  Add a copyright notice.
3963         * lib/mkstemp.h: Include <unistd.h>.
3964         * lib/openat.c: Include lchown.h.
3965
3966         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
3967         we now test for that separately.
3968         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
3969         rather than O_NOFOLLOW, when testing whether it's possible to
3970         avoid a race condition reliably.
3971         * lib/savewd.c (savewd_chdir): Likewise.
3972
3973         Remove macros that are no longer needed now that stdint.h is
3974         reliable.
3975         * lib/fsusage.c (UINTMAX_MAX): Remove.
3976         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
3977         * lib/utimecmp.c (SIZE_MAX): Remove.
3978
3979         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
3980
3981         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
3982         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
3983         O_NOATIME works.
3984
3985 2006-10-05  Bruno Haible  <bruno@clisp.org>
3986
3987         * lib/gl_list.h (gl_sortedlist_search_from_to,
3988         gl_sortedlist_indexof_from_to): New declarations.
3989         (gl_list_implementation): New fields sortedlist_search_from_to,
3990         sortedlist_indexof_from_to.
3991         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
3992         inline functions.
3993         * lib/gl_list.c (gl_sortedlist_search_from_to,
3994         gl_sortedlist_indexof_from_to): New functions.
3995         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
3996         function.
3997         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
3998         (gl_array_sortedlist_search_from_to): New function.
3999         (gl_array_list_implementation): Update.
4000         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
4001         function.
4002         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
4003         (gl_carray_sortedlist_search_from_to): New function.
4004         (gl_carray_list_implementation): Update.
4005         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
4006         gl_linked_sortedlist_indexof_from_to): New functions.
4007         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4008         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4009         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
4010         gl_tree_sortedlist_indexof_from_to): New functions.
4011         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4012         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4013         Update.
4014         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4015         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
4016         Update.
4017
4018 2006-10-05  Bruno Haible  <bruno@clisp.org>
4019
4020         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
4021         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
4022         (struct gl_list_implementation): Add fields search_from_to,
4023         indexof_from_to. Remove fields search, indexof.
4024         (gl_list_search): Use the search_from_to method.
4025         (gl_list_search_from, gl_list_search_from_to): New functions.
4026         (gl_list_indexof): Use the indexof_from_to method.
4027         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4028         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
4029         (gl_list_search_from, gl_list_search_from_to): New functions.
4030         (gl_list_indexof): Use the indexof_from_to method.
4031         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4032         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
4033         gl_array_indexof. Add start_index, end_index arguments.
4034         (gl_array_search_from_to): Renamed from gl_array_search. Add
4035         start_index, end_index arguments.
4036         (gl_array_remove, gl_array_list_implementation): Update.
4037         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
4038         gl_carray_indexof. Add start_index, end_index arguments.
4039         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
4040         start_index, end_index arguments.
4041         (gl_carray_remove, gl_carray_list_implementation): Update.
4042         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
4043         gl_linked_search. Add start_index, end_index arguments.
4044         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
4045         start_index, end_index arguments.
4046         (gl_linked_remove): Update.
4047         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4048         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4049         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
4050         field to 'size_t'.
4051         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
4052         gl_tree_search. Add start_index, end_index arguments.
4053         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4054         start_index, end_index arguments.
4055         (gl_tree_remove): Update.
4056         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4057         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4058         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
4059         function.
4060         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
4061         gl_tree_search. Add start_index, end_index arguments.
4062         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4063         start_index, end_index arguments.
4064         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4065         Update.
4066         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
4067
4068 2006-10-05  Bruno Haible  <bruno@clisp.org>
4069
4070         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
4071
4072         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
4073         fwriteerror_temp): New declarations.
4074         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
4075         (descriptors): New variable.
4076         (cleanup): First, close the descriptors.
4077         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
4078         fclose_temp, fwriteerror_temp): New functions.
4079
4080 2006-10-04  Jim Meyering  <jim@meyering.net>
4081
4082         * lib/fts.c (fts_open): Tiny comment change.
4083
4084 2006-10-04  Bruno Haible  <bruno@clisp.org>
4085
4086         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
4087         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
4088         gl_LOCK_BODY.
4089         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
4090         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
4091         gl_LOCK_EARLY_BODY.
4092         (gl_LOCK): Require gl_LOCK_BODY.
4093
4094 2006-10-04  Bruno Haible  <bruno@clisp.org>
4095
4096         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4097         (gl_oset_search_atleast): New declaration.
4098         (struct gl_oset_implementation): Add field 'search_atleast'.
4099         (gl_oset_search_atleast): New inline function.
4100         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4101         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4102         (gl_array_oset_implementation): Update.
4103         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4104         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4105         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4106
4107 2006-10-04  Bruno Haible  <bruno@clisp.org>
4108
4109         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4110
4111 2006-10-03  Bruno Haible  <bruno@clisp.org>
4112
4113         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4114         from gl_avltreehash_list_implementation.
4115
4116 2006-10-03  Bruno Haible  <bruno@clisp.org>
4117
4118         * lib/gl_oset.c (gl_oset_add): Fix return type.
4119
4120 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4121
4122         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4123
4124 2006-10-02  Eric Blake  <ebb9@byu.net>
4125
4126         * modules/strnlen (Depends-on): Add extensions.
4127
4128 2006-10-02  Eric Blake  <ebb9@byu.net>
4129
4130         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4131         definition in 2.60+.
4132
4133 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4134
4135         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4136         checks.
4137
4138 2006-10-02  Bruno Haible  <bruno@clisp.org>
4139
4140         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4141         to the AUTOMAKE_OPTIONS.
4142         Reported by Jim Meyering.
4143
4144 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4145
4146         Work around bug in Solaris 10 /proc file system:
4147         /proc/self/fd/NNN/.. isn't the parent directory of
4148         the directory whose file descriptor is NNN.  This needs to
4149         be worked around at run time, not compile time, since a
4150         program might be built on Solaris 8, where things work, and
4151         run on Solaris 10.
4152         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4153         to use the following interface instead:
4154         (OPENAT_BUFFER_SIZE): New macro.
4155         (openat_proc_name): New function.
4156         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
4157         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
4158         Likewise.
4159         * lib/openat-proc.c: New file.
4160         * modules/openat (Files): Add lib/openat-proc.c.
4161         (Depends-on): Add same-inode, stdbool.
4162         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
4163
4164 2006-09-29  Bruno Haible  <bruno@clisp.org>
4165
4166         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
4167         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
4168         argument. Set stdout_closed before testing for ferror, not after.
4169         (fwriteerror, fwriteerror_no_ebadf): New functions.
4170
4171 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4172
4173         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
4174
4175 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
4176
4177         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
4178         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
4179
4180 2006-09-28  Jim Meyering  <jim@meyering.net>
4181
4182         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
4183         Include <unistd.h>.
4184
4185 2006-09-28  Bruno Haible  <bruno@clisp.org>
4186
4187         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
4188         * modules/linkedhash-list (Depends-on): Likewise.
4189         * modules/rbtreehash-list (Depends-on): Likewise.
4190
4191 2006-09-28  Bruno Haible  <bruno@clisp.org>
4192
4193         * lib/strndup.h: Simplify the redefinition of strndup.
4194         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
4195         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
4196
4197 2006-09-28  Bruno Haible  <bruno@clisp.org>
4198
4199         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
4200         * lib/gl_linkedhash_list.c: Likewise.
4201         * lib/gl_rbtreehash_list.c: Likewise.
4202
4203 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
4204
4205         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
4206         getaddrinfo.
4207
4208         * lib/__fpending.h: Don't include <stdio_ext.h> unless
4209         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
4210         it causes <stdio_ext.h> to cause a compile-time error.
4211         Problem reported by Nelson H. F. Beebe.
4212         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
4213         of HAVE_DECL___PENDING.
4214
4215         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
4216         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
4217         declaration.
4218
4219 2006-09-27  Jim Meyering  <jim@meyering.net>
4220
4221         This file could end up with a definition for a function
4222         named __strndup, rather than rpl_strndup on a system with
4223         incomplete weak_alias support.
4224         * lib/strndup.c (strndup): Rename from __strndup.
4225         Remove #defines that used to map __strndup to strndup.
4226         Don't use K&R prototypes.
4227         Remove LIBC-related code, since this file is not sync'd with glibc.
4228         * lib/strndup.h: Revamp, accordingly.
4229         * m4/strndup.m4: Modernize.
4230
4231 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4232
4233         * modules/savewd (Depends-on): Add 'raise'.
4234         * lib/savewd.c: Include <signal.h>, for 'raise'.
4235
4236 2006-09-26  Jim Meyering  <jim@meyering.net>
4237
4238         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
4239         when we detect Darwin 8.7.0's acl_get_file bug.
4240         Rearrange to perform the new (below) run-test while $LIBS
4241         contains any acl-related library.  Set USE_ACL at the end.
4242         (gl_ACL_GET_FILE): New function.
4243
4244 2006-09-26  Eric Blake  <ebb9@byu.net>
4245
4246         * lib/verror.c: Include <config.h> unconditionally.
4247
4248 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4249
4250         * modules/clock-time (Maintainer): Add self.
4251         * modules/getlogin_r (Depends-on): Add extensions.
4252
4253 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4254
4255         * modules/clock-time: New module.
4256         * modules/nanosleep (Depends-on): Add clock-time.
4257         * modules/gethrxtime (Depends-on): Likewise.
4258         * modules/gettime (Depends-on): Likewise.
4259         * modules/settime (Depends-on): Likewise.
4260
4261         * modules/fts-lgpl: Depend on openat.
4262         * modules/mkancesdirs: Depend on savewd.
4263         * modules/mkdir-p: Likewise.
4264
4265 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4266
4267         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
4268
4269         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
4270         `gl_have_arbitrary_file_name_length_limit' to
4271         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
4272         actually works between configure runs.
4273
4274 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4275             Bruno Haible  <bruno@clisp.org>
4276
4277         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
4278
4279 2006-09-25  Jim Meyering  <jim@meyering.net>
4280
4281         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
4282         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
4283
4284 2006-09-25  Eric Blake  <ebb9@byu.net>
4285
4286         * gnulib-tool (func_import, func_create_testdir): Fix typos in
4287         exec's in 2006-09-18 patch when shuffling fds.
4288
4289 2006-09-25  Bruno Haible  <bruno@clisp.org>
4290
4291         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
4292         Reported by Jim Meyering.
4293
4294 2006-09-24  Jim Meyering  <jim@meyering.net>
4295
4296         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
4297         compare a pointer against a literal "0".  That caused failures with
4298         at least HP-UX's hpcc.
4299
4300 2006-09-22  Simon Josefsson  <jas@extundo.com>
4301
4302         * modules/gc-sha1:
4303         * modules/gc-md4:
4304         * modules/gc-hmac-sha1:
4305         * modules/gc-hmac-md5:
4306         * modules/gc-des:
4307         * modules/gc-arcfour: Distribute more files.
4308
4309 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4310
4311         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
4312         (gl_linked_iterator_from_to): Initialize struct completely.
4313         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
4314         (gl_tree_iterator_from_to): Likewise
4315         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
4316         * lib/gl_array_list.c [lint] (gl_array_iterator)
4317         (gl_array_iterator_from_to): Likewise.
4318         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
4319         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
4320         (gl_carray_iterator_from_to): Likewise.
4321
4322         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
4323         * lib/md4.c (md4_process_block): Remove unused variable.
4324         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
4325         parentheses for clarity.
4326
4327 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4328
4329         * modules/bison-i18n (Depends-on): Add gettext.
4330
4331 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4332
4333         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
4334         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
4335         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
4336         also add missing comma that caused broken test.
4337         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
4338         stdlib.h, for `abort'.
4339         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
4340         variables.
4341         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
4342         include unistd.h if present, for `rmdir'.
4343         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
4344         variables.
4345         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
4346         in the process include standard headers for prototypes.
4347         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
4348         gets declared on GNU/Linux.
4349         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
4350         unistd.h, for `rmdir'.
4351         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
4352
4353         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
4354         always true.
4355         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
4356
4357         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
4358
4359 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4360
4361         * gnulib-tool (func_version): Create output all at once.  This
4362         may help avoid triggering unnecessary SIGPIPEs, and at any
4363         rate it doesn't hurt.
4364
4365 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4366             Bruno Haible  <bruno@clisp.org>
4367
4368         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
4369         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
4370         * m4/signed.m4 (bh_C_SIGNED): Likewise.
4371
4372         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
4373         (gl_FUNC_VASPRINTF): Invoke it.
4374
4375 2006-09-22  Bruno Haible  <bruno@clisp.org>
4376
4377         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
4378         getloadavg.c as first argument.
4379
4380 2006-09-22  Bruno Haible  <bruno@clisp.org>
4381
4382         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
4383         at the beginning of the gl_INIT macro.
4384         * modules/getloadavg (configure.ac): Pass $gl_source_base to
4385         gl_GETLOADAVG.
4386
4387 2006-09-22  Bruno Haible  <bruno@clisp.org>
4388
4389         * gnulib-tool (func_create_megatestdir): Don't include the config-h
4390         module.
4391         Suggested by Ralf Wildenhues.
4392
4393 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
4394
4395         Import this patch from libc:
4396
4397         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
4398
4399         * lib/regex_internal.c (re_string_reconstruct): Handle
4400         offset < pstr->valid_raw_len && pstr->offsets_needed case.
4401         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
4402         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
4403         re_string_context_at.
4404
4405         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
4406         now requires it.
4407         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
4408         gl_REGEX now does it for us.
4409         (gl_REGEX): Add test taken from
4410         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
4411
4412         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
4413         Check that large offsets work.  Modernize Autoconf usages.
4414         Prefer "yes" to mean a good thing rather than a bad.
4415         Don't put "#define mkstemp" in config.h, as this might interfere
4416         with standard system headers that "#define mkstemp mkstemp64".
4417
4418         * modules/mkstemp (Depends-on): Add extensions, so that
4419         mkstemp is visible on some platforms.
4420         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
4421         (Include): Change to "mkstemp.h" from <stdlib.h>.
4422         (Files): Add mkstemp.h.
4423
4424         * lib/mkstemp.h: New file, since some standard headers
4425         #define mkstemp.
4426         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
4427         Include "mkstemp.h".
4428         Make the _LIBC code resemble glibc original more,
4429         e.g., use K&R style.
4430         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
4431         (mkstemp): Remove, since mkstemp.h does this for us.
4432         * lib/stdlib--.h: Include mkstemp.h.
4433
4434         Import this patch from libc:
4435
4436         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4437
4438         * lib/tempname.c (__gen_tempname): Change attempts_min
4439         into a macro.  Use preprocessor to decide how to initialize
4440         attempts [Coverity CID 67].
4441
4442 2006-09-20  Bruno Haible  <bruno@clisp.org>
4443
4444         * lib/mkdtemp.c: Import from libc.
4445         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
4446                 * sysdeps/posix/tempname.c (__gen_tempname): Change
4447                 attempts_min into a macro.  Use preprocessor to decide how to
4448                 initialize attempts [Coverity CID 67].
4449         2001-11-27  Paul Eggert  <eggert@twinsun.com>
4450                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
4451                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
4452
4453 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4454
4455         * gnulib-tool (func_exit): New function, to allow to pass the
4456         exit status portably through the trap.  Use everywhere.
4457         (--help, --version): Signal a write error.
4458         (trap): catch SIGPIPE, for write errors.
4459         Exit at the end of the trap, with the correct exit status.
4460
4461 2006-09-19  Karl Berry  <karl@gnu.org>
4462
4463         * doc/gnulib.texi: note about the license texinfo files.
4464
4465 2006-09-19  Eric Blake  <ebb9@byu.net>
4466
4467         * gnulib-tool: Avoid space-tab.
4468
4469 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4470
4471         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
4472         that prevented coreutils 6.1 from building.  Problem reported
4473         by Petter Reinholdtsen.
4474
4475 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4476
4477         * gnulib-tool (avoidlist): Fix typo that broke options like
4478         --avoid=lock that are used by coreutils bootstrap.
4479
4480 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
4481
4482         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
4483         more systematically.
4484
4485 2006-09-18  Jim Meyering  <jim@meyering.net>
4486
4487         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
4488
4489 2006-09-18  Bruno Haible  <bruno@clisp.org>
4490
4491         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
4492
4493 2006-09-18  Bruno Haible  <bruno@clisp.org>
4494
4495         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
4496         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
4497         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
4498         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
4499         * m4/gettext.m4: Require autoconf >= 2.52.
4500         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
4501         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
4502         of gl_cv_header_inttypes_h.
4503
4504 2006-09-18  Bruno Haible  <bruno@clisp.org>
4505
4506         * lib/javaversion.c: Include configmake.h.
4507
4508 2006-09-18  Bruno Haible  <bruno@clisp.org>
4509
4510         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
4511         avoid that the while loops be executed in a subshell.
4512
4513 2006-09-18  Bruno Haible  <bruno@clisp.org>
4514
4515         * MODULES.html.sh (func_module): Break long lines.
4516         Suggested by Bruce Korb <bkorb@gnu.org>.
4517
4518 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4519
4520         Speed up by a factor of 1.12.
4521         * gnulib-tool (nl): New variable.
4522         (func_import): Rewrite include directive extraction to only read each
4523         directive once.
4524
4525 2006-09-17  Bruno Haible  <bruno@clisp.org>
4526
4527         * modules/javaversion (Makefile.am): Remove DEFS setting.
4528         (Depends-on): Add configmake, for PKGDATADIR definition.
4529
4530 2006-09-17  Bruno Haible  <bruno@clisp.org>
4531
4532         * gnulib-tool (func_create_testdir): Rewrite all files at once.
4533
4534 2006-09-17  Bruno Haible  <bruno@clisp.org>
4535
4536         * gnulib-tool (func_append): New function, stolen from libtool.m4.
4537         (func_modules_transitive_closure, func_modules_add_dummy,
4538         func_modules_to_filelist, func_import, func_create_testdir,
4539         func_create_megatestdir, ...): Use it wherever possible.
4540         Suggested by Ralf Wildenhues.
4541
4542 2006-09-16  Karl Berry  <karl@gnu.org>
4543
4544         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
4545         to avoid sectioning errors.
4546         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
4547         [ifinfo]: blank line after @center-ed titles.
4548         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
4549         Spell FSF address consistently with others.
4550         (These changes approved by rms.)
4551
4552 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4553
4554         Speed up by a factor of 1.61.
4555         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
4556         already checked module names again.
4557
4558 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4559
4560         Speed up by a factor of 1.13.
4561         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
4562         for new_files, and the input to func_add_or_update.
4563
4564 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4565
4566         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
4567         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
4568
4569 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4570
4571         * modules/mkancesdirs (Depends-on): Add fcntl.
4572         * modules/savewd: New file.
4573         * MODULES.html.sh (File system functions): Add savewd.
4574
4575         * modules/configmake (Makefile.am): Add support for the
4576         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
4577
4578 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4579
4580         * m4/savewd.m4: New file.
4581
4582 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
4583
4584         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
4585         (dirchownmod): New arg FD.  All callers changed.
4586         Use FD rather than opening the directory ourself, as opening is
4587         now the caller's responsibility.
4588         * lib/dirchownmod.h: Likewise.
4589         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
4590         hosts that require <sys/types.h> before <sys/stat.h>.  Include
4591         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
4592         (test_dir): Remove.
4593         (mkancesdirs): Return length of prefix of FILE that has already
4594         been made, or -2 if there is a child doing the work.  Redo
4595         algorithm so that it is O(N) rather than O(N**2).  Optimize away
4596         ".", and treat ".." specially since it might stray back into
4597         already-created areas.  Use a subprocess if necessary.  New arg
4598         WD; all users changed.  MAKE_DIR function should now return 1
4599         if it creates a directory that is not readable.  Return -2 if
4600         a child process is spun off.
4601         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
4602         Adjust signature to match code.
4603         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
4604         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
4605         all users changed.
4606         * lib/savewd.c, lib/savewd.h: New files.
4607
4608 2006-09-15  Jim Meyering  <jim@meyering.net>
4609
4610         * modules/rename-dest-slash: New module.
4611         * MODULES.html.sh (posix_compat): Add it here.
4612
4613         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
4614
4615 2006-09-15  Jim Meyering  <jim@meyering.net>
4616
4617         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
4618         file.
4619
4620         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
4621
4622 2006-09-15  Jim Meyering  <jim@meyering.net>
4623
4624         * lib/rename-dest-slash.c (has_trailing_slash): Use
4625         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
4626         (rpl_rename_dest_slash): Perform the cheaper trailing slash
4627         test before testing whether SRC is a directory.
4628         Suggestions from Bruno Haible.
4629
4630         Avoid a warning about an unused variable.
4631         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
4632         into the #ifdef block where it's used.
4633
4634         * lib/rename-dest-slash.c: New file.
4635
4636 2006-09-14  Bruno Haible  <bruno@clisp.org>
4637
4638         * lib/allocsa.c: Include <config.h> unconditionally.
4639         * lib/asnprintf.c: Likewise.
4640         * lib/asprintf.c: Likewise.
4641         * lib/c-strcasecmp.c: Likewise.
4642         * lib/c-strcasestr.c: Likewise.
4643         * lib/c-strncasecmp.c: Likewise.
4644         * lib/c-strstr.c: Likewise.
4645         * lib/classpath.c: Likewise.
4646         * lib/clean-temp.c: Likewise.
4647         * lib/concatpath.c: Likewise.
4648         * lib/copy-file.c: Likewise.
4649         * lib/csharpcomp.c: Likewise.
4650         * lib/csharpexec.c: Likewise.
4651         * lib/execute.c: Likewise.
4652         * lib/fatal-signal.c: Likewise.
4653         * lib/findprog.c: Likewise.
4654         * lib/fwriteerror.c: Likewise.
4655         * lib/gl_array_list.c: Likewise.
4656         * lib/gl_array_oset.c: Likewise.
4657         * lib/gl_avltree_list.c: Likewise.
4658         * lib/gl_avltree_oset.c: Likewise.
4659         * lib/gl_avltreehash_list.c: Likewise.
4660         * lib/gl_carray_list.c: Likewise.
4661         * lib/gl_linked_list.c: Likewise.
4662         * lib/gl_linkedhash_list.c: Likewise.
4663         * lib/gl_list.c: Likewise.
4664         * lib/gl_oset.c: Likewise.
4665         * lib/gl_rbtree_list.c: Likewise.
4666         * lib/gl_rbtree_oset.c: Likewise.
4667         * lib/gl_rbtreehash_list.c: Likewise.
4668         * lib/imaxabs.c: Likewise.
4669         * lib/imaxdiv.c: Likewise.
4670         * lib/javacomp.c: Likewise.
4671         * lib/javaexec.c: Likewise.
4672         * lib/javaversion.c: Likewise.
4673         * lib/linebreak.c: Likewise.
4674         * lib/localcharset.c: Likewise.
4675         * lib/lock.c: Likewise.
4676         * lib/mbchar.c: Likewise.
4677         * lib/mbswidth.c: Likewise.
4678         * lib/mkdtemp.c: Likewise.
4679         * lib/pipe.c: Likewise.
4680         * lib/printf-args.c: Likewise.
4681         * lib/printf-parse.c: Likewise.
4682         * lib/progname.c: Likewise.
4683         * lib/progreloc.c: Likewise.
4684         * lib/readlink.c: Likewise.
4685         * lib/sh-quote.c: Likewise.
4686         * lib/stpcpy.c: Likewise.
4687         * lib/stpncpy.c: Likewise.
4688         * lib/strcasecmp.c: Likewise.
4689         * lib/strcasestr.c: Likewise.
4690         * lib/strcspn.c: Likewise.
4691         * lib/striconv.c: Likewise.
4692         * lib/strncasecmp.c: Likewise.
4693         * lib/strnlen1.c: Likewise.
4694         * lib/strstr.c: Likewise.
4695         * lib/strtok_r.c: Likewise.
4696         * lib/tls.c: Likewise.
4697         * lib/tmpdir.c: Likewise.
4698         * lib/unicodeio.c: Likewise.
4699         * lib/unsetenv.c: Likewise.
4700         * lib/vasnprintf.c: Likewise.
4701         * lib/vasprintf.c: Likewise.
4702         * lib/wait-process.c: Likewise.
4703         * lib/xallocsa.c: Likewise.
4704         * lib/xsetenv.c: Likewise.
4705         * lib/xstriconv.c: Likewise.
4706
4707 2006-09-13  Simon Josefsson  <jas@extundo.com>
4708
4709         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
4710         that internally, suggested by Ralf Wildenhues
4711         <Ralf.Wildenhues@gmx.de>.
4712
4713 2006-09-13  Simon Josefsson  <jas@extundo.com>
4714
4715         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
4716         @LIBOBJS@.
4717         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4718
4719 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
4720
4721         * lib/_fpending.c: Include <config.h> unconditionally, since we no
4722         longer worry about uses that don't define HAVE_CONFIG_H.
4723         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
4724         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
4725         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
4726         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
4727         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
4728         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
4729         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
4730         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
4731         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
4732         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
4733         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
4734         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
4735         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
4736         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
4737         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
4738         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
4739         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
4740         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
4741         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
4742         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
4743         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
4744         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
4745         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
4746         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
4747         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
4748         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
4749         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
4750         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
4751         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
4752         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
4753         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
4754         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
4755         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
4756         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
4757         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
4758         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
4759         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
4760         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
4761         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
4762         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
4763         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
4764         Likewise.
4765
4766 2006-09-13  Eric Blake  <ebb9@byu.net>
4767
4768         * lib/getopt.c: Fix typo in last commit.
4769
4770 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4771
4772         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
4773         dgettext.
4774
4775 2006-09-12  Jim Meyering  <jim@meyering.net>
4776
4777         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
4778         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
4779         Reported by Nelson H. F. Beebe.
4780
4781 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
4782
4783         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
4784         program_invocation_name and program_invocation_short_name are
4785         initialized.
4786         * lib/argp-namefrob.h: Move declarations of program_invocation_name
4787         and program_invocation_short_name to argp.h, so they are visible
4788         to user programs.
4789         * lib/argp.h: Likewise
4790
4791 2006-09-10  Bruno Haible  <bruno@clisp.org>
4792
4793         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
4794         m4/inttypes_h.m4, m4/uintmax_t.m4.
4795
4796 2006-09-10  Bruno Haible  <bruno@clisp.org>
4797
4798         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
4799         gl_AC_TYPE_UINTMAX_T.
4800
4801 2006-09-10  Bruno Haible  <bruno@clisp.org>
4802
4803         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
4804
4805 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
4806
4807         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
4808         convention.  Text proposed by Bruno Haible.
4809         (struct argp_option): Document the use of N_() wrappers.
4810
4811         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
4812         '\v', and translate the two parts separately, instead of feeding
4813         the whole string to gettext.  This allows to exclude
4814         '\v' from the strings visible to the translator by writing doc
4815         strings as N_("..") "\v" N_("..").
4816
4817 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
4818
4819         * config/srclist.txt: Undo latest change; the bug was fixed.
4820
4821 2006-09-09  Bruno Haible  <bruno@clisp.org>
4822
4823         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
4824         assignments if building a library without libtool.
4825         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
4826         in func_emit_lib_Makefile_am.
4827         (func_import): When building a static library libfoo.a, arrange to
4828         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
4829         (func_create_testdir): Likewise.
4830         * modules/gc (configure.ac, Makefile.am): If building statically,
4831         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
4832         * modules/iconvme (configure.ac, Makefile.am): Likewise.
4833         * modules/striconv (configure.ac, Makefile.am): Likewise.
4834         Based on a suggestion by Ralf Wildenhues.
4835
4836 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4837
4838         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
4839         Check for unistd.h too, since Autoconf doesn't assume POSIX.
4840         Also:
4841
4842         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4843         Add year_2050_test to catch glibc bug 2821
4844         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4845
4846         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4847         Prefer #ifdef to #if.
4848
4849         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4850         Return from 'main' instead of calling 'exit'.
4851
4852 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4853
4854         * lib/mktime.c (guess_time_tm): Fix bug where mktime
4855         returned the maximum time_t value rather than (time_t) -1.
4856         Problem originally reported by William Bardwell
4857         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4858
4859         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4860         Moved to here ...
4861         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
4862         ... from here.
4863
4864 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4865
4866         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
4867         2821 is fixed.
4868
4869 2006-09-08  Jim Meyering  <jim@meyering.net>
4870
4871         Don't make generated files read-only.  That would bother too many
4872         people.  However, do retain the ability to work when targets are
4873         read-only: remove the destination and temporary files before writing
4874         them (when generated via sed or echo), or by using the -f option for
4875         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
4876         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4877         * modules/byteswap, modules/configmake, modules/fcntl:
4878         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4879         * modules/localcharset, modules/netinet_in, modules/poll:
4880         * modules/stdbool, modules/stdint, modules/sys_select:
4881         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4882
4883 2006-09-08  Jim Meyering  <jim@meyering.net>
4884
4885         Avoid new build failure on FreeBSD 6.0.
4886         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
4887         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
4888         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
4889
4890 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4891
4892         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
4893
4894 2006-09-07  Jim Meyering  <jim@meyering.net>
4895
4896         Fix global typo in last change: use chmod u-w, not chmod u-x.
4897         Spotted by Paul Eggert and Bruce Korb.
4898         * modules/alloca-opt, modules/argz, modules/arpa_inet:
4899         * modules/byteswap, modules/configmake, modules/fcntl:
4900         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
4901         * modules/localcharset, modules/netinet_in, modules/poll:
4902         * modules/stdbool, modules/stdint, modules/sys_select:
4903         * modules/sys_socket, modules/sys_stat, modules/sysexits:
4904
4905 2006-09-06  Jim Meyering  <jim@meyering.net>
4906
4907         Make generated files be read-only.
4908         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
4909         Ensure that each generated file is now read-only.
4910         * modules/argz: Likewise.
4911         * modules/arpa_inet: Likewise.
4912         * modules/byteswap: Likewise.
4913         * modules/configmake: Likewise.
4914         * modules/fcntl: Likewise.
4915         * modules/fnmatch: Likewise.
4916         * modules/getopt: Likewise.
4917         * modules/glob: Likewise.
4918         * modules/inttypes: Likewise.
4919         * modules/netinet_in: Likewise.
4920         * modules/poll: Likewise.
4921         * modules/stdbool: Likewise.
4922         * modules/stdint: Likewise.
4923         * modules/sys_select: Likewise.
4924         * modules/sys_socket: Likewise.
4925         * modules/sys_stat: Likewise.
4926         * modules/sysexits: Likewise.
4927         * modules/localcharset: Same as above, but continue using temporary
4928         file named "t-$@" (why different?) rather than the "$@-t" used
4929         everywhere else.
4930
4931         * modules/sysexits (Makefile.am): Replace literal occurrences
4932         of "sysexit.h" more readable, and more consistent, "$@".
4933
4934 2006-09-06  Bruno Haible  <bruno@clisp.org>
4935
4936         * modules/striconv: New file.
4937         * modules/xstriconv: New file.
4938         * MODULES.html.sh (Internationalization functions): Add striconv,
4939         xstriconv.
4940
4941 2006-09-06  Bruno Haible  <bruno@clisp.org>
4942
4943         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
4944         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
4945         not using libtool correctly.
4946
4947 2006-09-06  Bruno Haible  <bruno@clisp.org>
4948
4949         * lib/striconv.h: New file.
4950         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
4951         iconvstring.c.
4952         * lib/xstriconv.h: New file.
4953         * lib/xstriconv.c: New file.
4954
4955 2006-09-06  Bruno Haible  <bruno@clisp.org>
4956
4957         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
4958         lib_..._LDFLAGS.
4959
4960 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4961
4962         * lib/argz_.h: Sync from Libtool.
4963
4964         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
4965                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4966
4967         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
4968
4969 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4970
4971         * modules/trim: New file.
4972
4973 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
4974
4975         * lib/trim.h: New file.
4976         * lib/trim.c: New file.
4977
4978 2006-09-05  Bruno Haible  <bruno@clisp.org>
4979
4980         * MODULES.html.sh (String handling): Add trim.
4981
4982 2006-09-04  Karl Berry  <karl@gnu.org>
4983
4984         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
4985         until next release.
4986
4987 2006-09-03  Bruno Haible  <bruno@clisp.org>
4988
4989         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
4990         correctly.
4991
4992 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4993
4994         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
4995         not gl_GETLOADAVG.  Omit unneeded semicolons.
4996         Problems reported by Ralf Wildenhues in
4997         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
4998         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
4999         at the end, which is the usual gnulib style.
5000
5001         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
5002         of doing all the work ourselves.
5003         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
5004         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
5005
5006 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5007
5008         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
5009         Problem reported by Ralf Wildenhues in
5010         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5011
5012         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
5013         HAVE_STRUCT_STATFS_F_FSTYPENAME.
5014
5015 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5016
5017         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
5018         yesterday's patch by changing test -n to test -z.
5019
5020 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5021
5022         * modules/getloadavg (Files): Add m4/getloadavg.m4.
5023         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
5024         the former is now obsolescent.
5025
5026         * modules/chdir-long (Depends-on): Add fcntl.
5027
5028 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5029
5030         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
5031         obsolescent, and programs should use gnulib instead.
5032         * m4/getloadavg.m4: New file, with contents taken from Autoconf
5033         but with prefixes changed.
5034
5035 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5036
5037         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
5038         or stdbool.h, because they might not exist while configuring.
5039
5040         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
5041         Don't include unistd.h or limits.h; not needed, since chdir-long.h
5042         does that for us.
5043         (O_DIRECTORY): Remove.
5044
5045 2006-08-31  Eric Blake  <ebb9@byu.net>
5046
5047         * gnulib-tool: Don't let emacs change spaces to TAB.
5048
5049 2006-08-31  Bruno Haible  <bruno@clisp.org>
5050
5051         * gnulib-tool: When calling func_import more than once, do it in a
5052         subshell.
5053         Reported by Eric Blake <ebb9@byu.net>.
5054
5055 2006-08-31  Bruno Haible  <bruno@clisp.org>
5056
5057         * gnulib-tool (nl): Remove variable.
5058         (sed_transform_lib_file): Use more robust test for config-h module.
5059         (func_import): Fix typo in 2006-08-25 patch.
5060
5061 2006-08-31  Bruno Haible  <bruno@clisp.org>
5062
5063         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
5064         specified, augment Makefile.am variables instead of assigning them.
5065
5066 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5067
5068         Work around a bug in both the Linux and SunOS 64-bit kernels:
5069         nanosleep mishandles sleeps for longer than 2**31 seconds.
5070         Problem reported by Frank v Waveren in
5071         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5072         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
5073         Check for nanosleep bug.
5074         (LIB_NANOSLEEP): Append clock_gettime library if needed.
5075
5076 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5077
5078         Work around a bug in both the Linux and SunOS 64-bit kernels:
5079         nanosleep mishandles sleeps for longer than 2**31 seconds.
5080         Problem reported by Frank v Waveren in
5081         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5082         * lib/nanosleep.c (BILLION): New constant.
5083         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
5084         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
5085         implementation.
5086
5087 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5088
5089         * modules/nanosleep (Depends-on): Add gettime.
5090
5091 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5092         and Simon Josefsson  <jas@extundo.com>
5093         and Oskar Liljeblad  <oskar@osk.mine.nu>
5094
5095         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5096         * gnulib-tool (func_import): New license type 'unmodifiable license
5097         text'.
5098         * modules/fdl: Use it.  Longer description.
5099         * module/gpl, module/lgpl: New files.
5100
5101 2006-08-30  Jim Meyering  <jim@meyering.net>
5102
5103         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5104         shadowing the parameter.
5105
5106 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5107
5108         Sync from Libtool:
5109
5110         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5111
5112         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5113         sharing with gnulib.  Report by Eric Blake.
5114
5115 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5116
5117         * modules/isapipe: New file.
5118         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5119
5120 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5121
5122         * modules/configmake (Makefile.am): Add a comment, and omit
5123         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5124         by Bruno Haible.
5125
5126 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5127
5128         * m4/isapipe.m4: New file.
5129
5130 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5131
5132         * lib/isapipe.c, lib/isapipe.h: New files.
5133
5134 2006-08-29  Jim Meyering  <jim@meyering.net>
5135
5136         * modules/configmake (Makefile.am): Make configmake.h depend on
5137         Makefile.  Otherwise, a stale configmake.h could hang around.
5138
5139 2006-08-29  Eric Blake  <ebb9@byu.net>
5140
5141         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5142         resolution of upstream bug 3044.
5143
5144 2006-08-29  Bruno Haible  <bruno@clisp.org>
5145
5146         * modules/localcharset (Depends-on): Add configmake.
5147         (Makefile.am): Remove setting of LIBDIR through DEFS.
5148
5149 2006-08-29  Bruno Haible  <bruno@clisp.org>
5150
5151         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5152         defined.
5153
5154 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5155
5156         * modules/fcntl: New file.
5157         * modules/chdir-safer (Depends-on): Add fcntl.
5158         * modules/fts: Likewise.
5159         * modules/mkdir-p: Likewise.
5160
5161         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
5162         This undoes the most recent change, since we're now addressing the
5163         problem in a different way.
5164
5165         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
5166         into output, since the output might be called Makefile.am even
5167         if $makefile_name is something different.
5168         (func_import): Use $makefile_am rather than
5169         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
5170         empty.
5171
5172         * modules/inttypes (Files): Add m4/inttypes-h.m4.
5173
5174 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5175
5176         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
5177         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
5178         recent change to stdint.m4, since we're now addressing the problem in a
5179         different way.
5180
5181 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5182
5183         * m4/fcntl_h.m4: New file.
5184
5185 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5186
5187         * lib/fcntl_.h: New file.
5188         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
5189         the fcntl module.
5190         * lib/dirchownmod.c: Likewise.
5191         * lib/fts.c: Likewise.
5192
5193         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
5194         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
5195         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
5196         just before including <inttypes.h>, to avoid circular inclusion.
5197
5198 2006-08-28  Jim Meyering  <jim@meyering.net>
5199
5200         * doc/visibility.texi: Actually read and correct the grammar of the
5201         sentence affected by yesterday's change.
5202
5203 2006-08-28  Eric Blake  <ebb9@byu.net>
5204
5205         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
5206         needs wrapper.
5207
5208 2006-08-28  Eric Blake  <ebb9@byu.net>
5209
5210         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
5211
5212 2006-08-28  Eric Blake  <ebb9@byu.net>
5213
5214         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
5215
5216 2006-08-28  Bruno Haible  <bruno@clisp.org>
5217
5218         * modules/c-strstr: New file, from GNU gettext.
5219         * MODULES.html.sh (String handling): Add c-strstr.
5220
5221 2006-08-28  Bruno Haible  <bruno@clisp.org>
5222
5223         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
5224         macros.
5225         Reported by Eric Blake.
5226
5227 2006-08-28  Bruno Haible  <bruno@clisp.org>
5228
5229         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
5230         (VASNPRINTF): Return a string of length > INT_MAX without failing.
5231         * lib/vasprintf.c: Include errno.h, limits.h.
5232         (EOVERFLOW): New fallback definition.
5233         (vasprintf): Test here whether the string length is > INT_MAX.
5234         * lib/vsnprintf.c: Include errno.h, limits.h.
5235         (EOVERFLOW): New fallback definition.
5236         (vsnprintf): Fix bug when generated string was too long for the buffer.
5237         Test here whether the string length is > INT_MAX.
5238
5239 2006-08-28  Bruno Haible  <bruno@clisp.org>
5240
5241         * lib/inttypes_.h (SCNX*): Remove definitions.
5242         Reported by Eric Blake.
5243
5244 2006-08-28  Bruno Haible  <bruno@clisp.org>
5245
5246         * lib/c-strstr.h: New file, from GNU gettext.
5247         * lib/c-strstr.c: New file, from GNU gettext.
5248
5249 2006-08-28  Bruno Haible  <bruno@clisp.org>
5250
5251         * gnulib-tool: Reorder some statements.
5252
5253 2006-08-28  Bruno Haible  <bruno@clisp.org>
5254
5255         * gnulib-tool: New option --makefile-name.
5256         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
5257         $makefile_name.
5258         (func_import): Write $makefile_name to the cache file, and read it from
5259         there unless explicitly specified. Use $makefile_name as file name
5260         instead of Makefile.am. Adjust the recommendations accordingly.
5261
5262 2006-08-28  Bruno Haible  <bruno@clisp.org>
5263
5264         * gnulib-tool (func_verify_module): Check against misapplying patch.
5265
5266 2006-08-28  Bruno Haible  <bruno@clisp.org>
5267
5268         * gnulib-tool (func_relativize, func_relconcat): New functions.
5269         Give an error if --local-dir is given with --update.
5270         Remove trailing slashes from $local_gnulib_dir.
5271         (func_import): Store the relativized $local_gnulib_dir in
5272         gnulib-cache.m4, and read it from there if not specified explicitly.
5273
5274 2006-08-28  Bruno Haible  <bruno@clisp.org>
5275
5276         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
5277         is the current directory. Respect also $local_gnulib_dir.
5278
5279 2006-08-28  Bruno Haible  <bruno@clisp.org>
5280             Simon Josefsson  <jas@extundo.com>
5281
5282         BeOS portability.
5283         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
5284
5285 2006-08-27  Jim Meyering  <jim@meyering.net>
5286
5287         * doc/visibility.texi: Remove duplicate word: "pointer".
5288
5289 2006-08-26  Bruno Haible  <bruno@clisp.org>
5290
5291         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
5292         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
5293         (Makefile.am): Create inttypes.h from inttypes_.h.
5294         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
5295
5296         * modules/imaxabs: New file.
5297
5298         * modules/imaxdiv: New file.
5299
5300 2006-08-26  Bruno Haible  <bruno@clisp.org>
5301
5302         * m4/inttypes.m4: New file.
5303         * m4/_inttypes_h.m4: Remove file.
5304         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
5305         PRI_MACROS_BROKEN.
5306         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
5307
5308         * m4/imaxabs.m4: New file.
5309
5310         * m4/imaxdiv.m4: New file.
5311
5312 2006-08-26  Bruno Haible  <bruno@clisp.org>
5313
5314         * lib/inttypes_.h: New file.
5315         * lib/inttypes.h: Remove file.
5316         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
5317
5318         * lib/imaxabs.c: New file.
5319
5320         * lib/imaxdiv.c: New file.
5321
5322 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5323
5324         New config-h module, so that "make" output needn't be cluttered
5325         by -DHAVE_CONFIG_H.
5326         * MODULES.html.sh (Support for building libraries and executables):
5327         Add config-h.
5328         * modules/config-h: New file.
5329         * gnulib-tool (nl, sed_transform_lib_file): New vars.
5330         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
5331         the config-h module is used.
5332
5333         New configmake module, so that "make" output needn't be cluttered
5334         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
5335         * MODULES.html.sh (Support for building libraries and executables):
5336         Add configmake.
5337         * modules/configmake: New file.
5338
5339 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5340
5341         * m4/config-h.m4: New file.
5342
5343 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5344
5345         * config/srclist.txt: Add elisp-comp.
5346
5347 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
5348
5349         * MODULES.html.sh (Support for building libraries and executables):
5350         Add elisp-comp.
5351         * build-aux/elisp-comp: New file.
5352         * modules/elisp-comp: New file.
5353
5354 2006-08-24  Bruno Haible  <bruno@clisp.org>
5355
5356         * gnulib-tool (func_create_testdir): Use non-default values of
5357         sourcebase and m4base.
5358
5359 2006-08-24  Bruno Haible  <bruno@clisp.org>
5360
5361         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
5362         HTML structure.
5363
5364 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
5365
5366         * modules/openat (Depends-on): Add lchown.
5367
5368 2006-08-23  Bruno Haible  <bruno@clisp.org>
5369
5370         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
5371         of gl_LOCK_EARLY instead of gl_LOCK.
5372
5373 2006-08-23  Bruno Haible  <bruno@clisp.org>
5374
5375         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
5376         on OSF/1 to no.
5377         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
5378
5379 2006-08-23  Bruno Haible  <bruno@clisp.org>
5380
5381         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
5382         as unusable.
5383
5384         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
5385         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
5386         (gl_LOCK): New macro.
5387
5388 2006-08-22  Simon Josefsson  <jas@extundo.com>
5389
5390         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
5391         to md5 module.
5392
5393 2006-08-22  Simon Josefsson  <jas@extundo.com>
5394
5395         * MODULES.html.sh: Add "Support for maintaining and release
5396         projects".
5397
5398         * build-aux/gnupload: New file, from coreutils.
5399
5400 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5401
5402         Avoid the need for AC_LIBSOURCES in m4 macros.
5403         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
5404         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
5405         * modules/check-version (EXTRA_DIST): Add check-version.h.
5406         * modules/crc (EXTRA_DIST): Add crc.h.
5407         * modules/des (EXTRA_DIST): Add des.h.
5408         * modules/gc (EXTRA_DIST): Add gc.h.
5409         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
5410         * modules/getline (EXTRA_DIST): Add getline.h.
5411         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
5412         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
5413         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
5414         * modules/md2 (EXTRA_DIST): Add md2.h.
5415         * modules/md4 (EXTRA_DIST): Add md4.h.
5416         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
5417         * modules/read-file (EXTRA_DIST): Add read-file.h.
5418         * modules/readline (EXTRA_DIST): Add readline.h.
5419         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
5420         rijndael-api-fst.h.
5421
5422 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5423
5424         * m4/rijndael.m4 (gl_ARCFOUR):
5425         * m4/arctwo.m4 (gl_ARCTWO):
5426         * m4/check-version.m4 (gl_CHECK_VERSION):
5427         * m4/crc.m4 (gl_CRC):
5428         * m4/des.m4 (gl_DES):
5429         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
5430         * m4/gc.m4 (gl_GC):
5431         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
5432         * m4/getline.m4 (gl_FUNC_GETLINE):
5433         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
5434         * m4/hmac-md5.m4 (gl_HMAC_MD5):
5435         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
5436         * m4/md2.m4 (gl_MD2):
5437         * m4/md4.m4 (gl_MD4):
5438         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
5439         * m4/read-file.m4 (gl_FUNC_READ_FILE):
5440         * m4/readline.m4 (gl_FUNC_READLINE):
5441         * m4/rijndael.m4 (gl_RIJNDAEL):
5442         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5443         to get the necessary .h files and whatnot.
5444
5445 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
5446
5447         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
5448         gnulib rather than the other way around.
5449         * config/srclistvars.sh (COREUTILS): Remove.
5450
5451 2006-08-22  Jim Meyering  <jim@meyering.net>
5452
5453         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
5454
5455         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
5456
5457 2006-08-22  Eric Blake  <ebb9@byu.net>
5458
5459         * modules/regexprops-generic: New file.
5460         * MODULES.html.sh (Support for building documentation): List it.
5461
5462 2006-08-22  Eric Blake  <ebb9@byu.net>
5463
5464         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
5465         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
5466         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
5467         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
5468
5469 2006-08-22  Bruno Haible  <bruno@clisp.org>
5470
5471         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
5472         and lib_LTLIBRARIES like the other lib_* variables.
5473
5474 2006-08-22  Bruno Haible  <bruno@clisp.org>
5475
5476         * build-aux/x-to-1.in: New file, from GNU gettext.
5477
5478 2006-08-22  Bruno Haible  <bruno@clisp.org>
5479
5480         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
5481         <utmpx.h> exists.
5482
5483 2006-08-22  Bruno Haible  <bruno@clisp.org>
5484
5485         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
5486         <utmpx.h> exists.
5487
5488 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5489
5490         BeOS portability.
5491         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
5492         exist.
5493         Problem reported by Bruno Haible.
5494
5495 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5496
5497         Avoid the need for AC_LIBSOURCES in m4 macros.
5498         * modules/acl (EXTRA_DIST): Add acl.h.
5499         * modules/argmatch (Files): Add m4/argmatch.m4.
5500         (configure.ac): Add gl_ARGMATCH.
5501         (EXTRA_DIST): Renamed from lib_SOURCES, for
5502         consistency with the other modules.  Remove argmatch.c.
5503         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
5504         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
5505         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
5506         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
5507         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
5508         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
5509         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
5510         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
5511         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
5512         * modules/closeout (EXTRA_DIST): Add closeout.h.
5513         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
5514         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
5515         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
5516         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
5517         dirname.h; remove basename.c and stripslash.c.
5518         * modules/exclude (EXTRA_DIST): Add exclude.h.
5519         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
5520         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
5521         * modules/file-type (EXTRA_DIST): Add file-type.h.
5522         * modules/filemode (EXTRA_DIST): Add filemode.h.
5523         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
5524         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5525         * modules/fpending (EXTRA_DIST): Add __fpending.h.
5526         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
5527         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
5528         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
5529         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
5530         * modules/getdate (EXTRA_DIST): Add getdate.c.
5531         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
5532         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
5533         * modules/getpass (EXTRA_DIST): Add getpass.h.
5534         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
5535         * modules/group-member (EXTRA_DIST): Add group-member.h.
5536         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
5537         * modules/hash (EXTRA_DIST): Add hash.h.
5538         * modules/human (EXTRA_DIST): Add human.h.
5539         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
5540         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
5541         * modules/lchown (EXTRA_DIST): Add lchown.h.
5542         * modules/long-options (EXTRA_DIST): Add long-options.h.
5543         * modules/lstat (EXTRA_DIST): Add lstat.h.
5544         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
5545         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
5546         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
5547         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
5548         * modules/memxor (EXTRA_DIST): Add memxor.h.
5549         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
5550         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
5551         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
5552         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
5553         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
5554         * modules/physmem (EXTRA_DIST): Add physmem.h.
5555         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
5556         * modules/posixver (EXTRA_DIST): Add posixver.h.
5557         * modules/quote (EXTRA_DIST): Add quote.h.
5558         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
5559         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
5560         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
5561         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
5562         regex_internal.h regexec.c.
5563         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
5564         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
5565         * modules/same (EXTRA_DIST): Add same.h.
5566         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
5567         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
5568         * modules/savedir (EXTRA_DIST): Add savedir.h.
5569         * modules/sha1 (EXTRA_DIST): Add sha1.h.
5570         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
5571         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
5572         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
5573         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
5574         * modules/strdup (EXTRA_DIST): Add strdup.h.
5575         * modules/strftime (EXTRA_DIST): Add strftime.h.
5576         * modules/strndup (EXTRA_DIST): Add strndup.h.
5577         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
5578         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
5579         * modules/time_r (EXTRA_DIST): Add time_r.h.
5580         * modules/timespec (EXTRA_DIST): Add timespec.h.
5581         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
5582         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
5583         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
5584         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
5585         * modules/userspec (EXTRA_DIST): Add userspec.h.
5586         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
5587         * modules/utimens (EXTRA_DIST): Add utimens.h.
5588         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
5589         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
5590         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
5591         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
5592         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
5593         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
5594         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
5595         * modules/yesno (EXTRA_DIST): Add yesno.h.
5596
5597 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
5598
5599         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
5600
5601         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
5602         * m4/dev-ino.m4, same-inode.m4: Remove.
5603
5604         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
5605         * m4/acl.m4 (AC_FUNC_ACL):
5606         * m4/backupfile.m4 (gl_BACKUPFILE):
5607         * m4/c-strtod.m4 (gl_C99_STRTOLD):
5608         * m4/canon-host.m4 (gl_CANON_HOST):
5609         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
5610         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
5611         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
5612         * m4/cloexec.m4 (gl_CLOEXEC):
5613         * m4/close-stream.m4 (gl_CLOSE_STREAM):
5614         * m4/closeout.m4 (gl_CLOSEOUT):
5615         * m4/dirfd.m4 (gl_FUNC_DIRFD):
5616         * m4/dirname.m4 (gl_DIRNAME):
5617         * m4/exclude.m4 (gl_EXCLUDE):
5618         * m4/exitfail.m4 (gl_EXITFAIL):
5619         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
5620         * m4/file-type.m4 (gl_FILE_TYPE):
5621         * m4/filemode.m4 (gl_FILEMODE):
5622         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
5623         * m4/fpending.m4 (gl_FUNC_FPENDING):
5624         * m4/fprintftime.m4 (gl_FPRINTFTIME):
5625         * m4/fts.m4 (gl_FUNC_FTS):
5626         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
5627         * m4/getdate.m4 (gl_GETDATE):
5628         * m4/gethrxtime.m4 (gl_GETHRXTIME):
5629         * m4/getpagesize.m4 (gl_GETPAGESIZE):
5630         * m4/getpass.m4 (gl_FUNC_GETPASS):
5631         * m4/gettime.m4 (gl_GETTIME):
5632         * m4/getugroups.m4 (gl_GETUGROUPS):
5633         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
5634         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
5635         * m4/hard-locale.m4 (gl_HARD_LOCALE):
5636         * m4/hash.m4 (gl_HASH):
5637         * m4/idcache.m4 (gl_IDCACHE):
5638         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
5639         * m4/lchown.m4 (gl_FUNC_LCHOWN):
5640         * m4/long-options.m4 (gl_LONG_OPTIONS):
5641         * m4/lstat.m4 (gl_FUNC_LSTAT):
5642         * m4/md5.m4 (gl_MD5):
5643         * m4/memcasecmp.m4 (gl_MEMCASECMP):
5644         * m4/memcoll.m4 (gl_MEMCOLL):
5645         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
5646         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
5647         * m4/memxor.m4 (gl_MEMXOR):
5648         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
5649         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
5650         * m4/modechange.m4 (gl_MODECHANGE):
5651         * m4/mountlist.m4 (gl_MOUNTLIST):
5652         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5653         * m4/openat.m4 (gl_FUNC_OPENAT):
5654         * m4/pathmax.m4 (gl_PATHMAX):
5655         * m4/physmem.m4 (gl_PHYSMEM):
5656         * m4/posixtm.m4 (gl_POSIXTM):
5657         * m4/posixver.m4 (gl_POSIXVER):
5658         * m4/quote.m4 (gl_QUOTE):
5659         * m4/quotearg.m4 (gl_QUOTEARG):
5660         * m4/readtokens.m4 (gl_READTOKENS):
5661         * m4/readutmp.m4 (gl_READUTMP):
5662         * m4/regex.m4 (gl_REGEX):
5663         * m4/safe-read.m4 (gl_SAFE_READ):
5664         * m4/safe-write.m4 (gl_SAFE_WRITE):
5665         * m4/same.m4 (gl_SAME):
5666         * m4/save-cwd.m4 (gl_SAVE_CWD):
5667         * m4/savedir.m4 (gl_SAVEDIR):
5668         * m4/settime.m4 (gl_SETTIME):
5669         * m4/sha1.m4 (gl_SHA1):
5670         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
5671         * m4/stat-macros.m4 (gl_STAT_MACROS):
5672         * m4/stat-time.m4 (gl_STAT_TIME):
5673         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
5674         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
5675         * m4/strdup.m4 (gl_FUNC_STRDUP):
5676         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
5677         * m4/strndup.m4 (gl_FUNC_STRNDUP):
5678         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
5679         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
5680         * m4/time_r.m4 (gl_TIME_R):
5681         * m4/timespec.m4 (gl_TIMESPEC):
5682         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
5683         * m4/unlinkdir.m4 (gl_UNLINKDIR):
5684         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
5685         * m4/userspec.m4 (gl_USERSPEC):
5686         * m4/utimecmp.m4 (gl_UTIMECMP):
5687         * m4/utimens.m4 (gl_UTIMENS):
5688         * m4/xalloc.m4 (gl_XALLOC):
5689         * m4/xgetcwd.m4 (gl_XGETCWD):
5690         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
5691         * m4/xreadlink.m4 (gl_XREADLINK):
5692         * m4/xstrtod.m4 (gl_XSTRTOD):
5693         * m4/yesno.m4 (gl_YESNO):
5694         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
5695         to get the necessary .h files and whatnot.
5696
5697 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
5698             Bruno Haible  <bruno@clisp.org>
5699
5700         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
5701         /bin/sh understanding of '!' conditional negation.
5702
5703 2006-08-21  Jim Meyering  <jim@meyering.net>
5704
5705         * modules/openat (Depends-on): Really alphabetize.
5706
5707         * modules/acl (Depends-on): Add error and quote.
5708
5709         * check-module (find_included_lib_files): Add at-func.c to the
5710         ok-to-include-more-than-once white list.
5711
5712         * modules/openat (Depends-on): Add lstat.  Alphabetize.
5713
5714 2006-08-21  Bruno Haible  <bruno@clisp.org>
5715
5716         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5717         Emit a pkgdata_DATA variable only if some snippets add contents to it.
5718         Reported by Martin Lambers <marlam@marlam.de>.
5719
5720 2006-08-21  Bruno Haible  <bruno@clisp.org>
5721
5722         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
5723         specify an installation location, don't emit a noinst_LIBRARIES or
5724         noinst_LTLIBRARIES assignment.
5725
5726 2006-08-21  Bruno Haible  <bruno@clisp.org>
5727
5728         BeOS portability.
5729         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
5730         BeOS has mbrtowc() but no <wctype.h>.
5731
5732 2006-08-21  Bruno Haible  <bruno@clisp.org>
5733
5734         BeOS portability.
5735         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
5736         exist.
5737
5738 2006-08-21  Bruno Haible  <bruno@clisp.org>
5739
5740         BeOS portability.
5741         * lib/mbchar.h: Include <wctype.h> only if it exists.
5742
5743 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5744
5745         Remove files that are no longer needed by their respective modules.
5746         * m4/obstack.m4: Remove.
5747         * m4/strerror_r.m4: Remove.
5748         * m4/uint32_t.m4: Remove.
5749         * m4/uintptr_t.m4: Remove.
5750         * m4/ullong_max.m4: Remove.
5751         * m4/xstrtoimax.m4: Remove.
5752         * m4/xstrtoumax.m4: Remove.
5753
5754         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
5755         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
5756         dependencies now capture this.
5757
5758         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
5759         Do not use AC_LIBSOURCES, since gnulib modules now do this.
5760         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
5761         * m4/human.m4 (gl_HUMAN): Likewise.
5762         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
5763         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
5764
5765         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
5766
5767         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
5768         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
5769         stdint.
5770         * m4/human.m4 (gl_HUMAN): Likewise.
5771         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
5772         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
5773         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5774         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5775         * m4/xstrtol (gl_XSTRTOL): Likewise.
5776
5777         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
5778         AC_TYPE_LONG_LONG_INT.
5779         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
5780         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
5781         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
5782         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
5783
5784         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
5785         on stdbool.
5786
5787         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
5788         (gl_PREREQ_XSTRTOUL): Remove.
5789
5790         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
5791
5792         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
5793         mode.
5794
5795 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5796
5797         Add and change modules to make it easier for coreutils to use
5798         gnulib-tool.
5799         * modules/backupfile (Files): Remove m4/d-ino.m4.
5800         (Depends-on): Add d-ino.
5801         * modules/cycle-check (Depends-on): Add stdint.
5802         (lib_SOURCES): Add cycle-check.h.
5803         * modules/d-ino: New module.
5804         * modules/d-type: New module.
5805         * modules/error (Files): Remove m4/strerror_r.m4.
5806         * modules/filemode (Files): Add m4/st_dm_mode.m4.
5807         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5808         m4/inttypes_h.m4, m4/uintmax_t.m4.
5809         (Depends-on): Add stdint.
5810         (lib_SOURCES): Add fsusage.h.
5811         * modules/getcwd (Files): Remove d-ino.m4.
5812         (Depends-on): Add d-ino.
5813         * modules/getndelim2 (Depends-on): Add stdint.
5814         * modules/glob (Files): Remove m4/d-type.m4.
5815         (Depends-on): Add d-type.
5816         * modules/host-os: New module.
5817         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
5818         m4/inttypes_h.m4, m4/uintmax_t.m4.
5819         * Depends-on: Add stdint.
5820         (lib_SOURCES): Add human.h.
5821         * modules/inttostr (Files): Remove m4/intmax_t.m4,
5822         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
5823         m4/uintmax_t.m4, m4/ulonglong.m4.
5824         (Depends-on): Add stdint.
5825         (EXTRA_DIST): Add inttostr.h.
5826         * modules/lchmod: New module.
5827         * modules/link-follow: New module.
5828         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
5829         (Depends-on): Add lchmod.
5830         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
5831         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
5832         (Depends-on): Add stdint.
5833         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
5834         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
5835         (Depends-on): Add stdint.
5836         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
5837         * modules/perl: New module.
5838         * modules/regex (Depends-on): Add stdint.
5839         * modules/rmdir-errno: New module.
5840         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5841         m4/intmax_t.m4.
5842         (Depends-on): Add stdint.
5843         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
5844         m4/uintmax_t.m4.
5845         (Depends-on): Add stdint.
5846         * modules/unlink-busy: New module.
5847         * modules/utimecmp (Depends-on): Add stdint.
5848         * modules/uptime: New module.
5849         * modules/winsz-ioctl: New module.
5850         * modules/winsz-termios: New module.
5851         * modules/xnanosleep (Depends-on): Add nanosleep.
5852         * modules/ullong_max: Remove.
5853         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
5854         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
5855         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
5856         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
5857         (Depends-on): Add inttypes.
5858         (lib_SOURCES): Add xstrtol.h.
5859         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
5860         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
5861         * MODULES.html.sh: Move 'assert' into the assert section.
5862         Move 'dummy' into the linking section.
5863         Remove ullong_max.
5864         Add section for compatibility checks for POSIX:2001 functions,
5865         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
5866         winsz-ioctl, and winsz-termios into it.
5867         Add lchmod.
5868         Add top-level Misc section and put host-os, perl, and uptime
5869         into it.
5870
5871 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5872
5873         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
5874         now assume the stdint module.  Do not include inttypes.h.
5875         * lib/fsusage.h: Likewise.
5876         * lib/getndelim2.c: Likewise.
5877         * lib/human.h: Likewise.
5878         * lib/inttostr.h: Likewise.
5879         * lib/obstack.c: Likewise.
5880         * lib/regex_internal.h: Likewise.
5881         * lib/tempname.c: Likewise.
5882         * lib/utimecmp.c: Likewise.
5883         * lib/xstrtol.h: Likewise.
5884
5885         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
5886
5887         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
5888         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
5889         * lib/xtime.h: Likewise.
5890
5891 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5892
5893         * modules/openat (Files): Add lib/fchmodat.c.
5894         Fixes problem reported by Jay Youngman.
5895
5896 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5897
5898         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
5899         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
5900
5901 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5902             Bruno Haible  <bruno@clisp.org>
5903
5904         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
5905         and is a script that invokes bison. Tighten the code. Add comments.
5906
5907 2006-08-18  Jim Meyering  <jim@meyering.net>
5908
5909         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
5910         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
5911         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
5912         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
5913
5914 2006-08-18  Bruno Haible  <bruno@clisp.org>
5915
5916         * modules/bison-i18n: New file.
5917         * MODULES.html.sh (Internationalization functions): Add it.
5918
5919 2006-08-18  Bruno Haible  <bruno@clisp.org>
5920
5921         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
5922         sys/statvfs.h. When getmntinfo was found, check its declaration and
5923         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
5924
5925 2006-08-18  Bruno Haible  <bruno@clisp.org>
5926
5927         * m4/bison-i18n.m4: New file, from bison.
5928
5929 2006-08-18  Bruno Haible  <bruno@clisp.org>
5930
5931         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
5932         (ME_DUMMY): Treat "kernfs" as a dummy.
5933         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
5934
5935 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5936
5937         Update from coreutils.
5938
5939         2006-08-15  Jim Meyering  <jim@meyering.net>
5940
5941         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
5942
5943         2006-01-17  Jim Meyering  <jim@meyering.net>
5944
5945         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
5946
5947         2006-01-11  Jim Meyering  <jim@meyering.net>
5948
5949         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
5950         Check for the lchmod function.
5951
5952 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
5953
5954         Update from coreutils.
5955
5956         * lib/__fpending.h: Add copyright notice.
5957         * lib/fprintftime.h: Likewise.
5958         * lib/savedir.c: Use (C) in copyright notice.
5959         * lib/savedir.h: Likewise.
5960
5961         2006-08-15  Jim Meyering  <jim@meyering.net>
5962
5963         * lib/at-func.c: New file, with the logic of all emulated at-functions.
5964         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
5965         in support of the EXPECTED_ERRNO macro.
5966         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
5967         definitions.  Instead, define the appropriate symbols and include
5968         "at-func.c".
5969         * lib/mkdirat.c (mkdirat): Likewise.
5970         * lib/fchmodat.c (fchmodat): Likewise.
5971         (ENOSYS): Remove definition.
5972         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
5973         it.  Don't include "unistd--.h" -- it wasn't ever used.
5974
5975         2006-01-17  Jim Meyering  <jim@meyering.net>
5976
5977         Rewrite fts.c not to change the current working directory,
5978         by using openat, fstatat, fdopendir, etc..
5979
5980         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
5981         (HAVE_OPENAT_SUPPORT): Define.
5982         [_LIBC] (fchdir): Don't undef or define; no longer used.
5983         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
5984         Now, this `function' always succeeds, and consumes its file descriptor
5985         parameter -- so callers must not close such FDs.  Update callers.
5986         (diropen_fd, opendirat, cwd_advance_fd): New functions.
5987         (diropen): Add parameter, SP.  Adjust all callers.
5988         Implement using diropen_fd, rather than open.
5989         (fts_open): Initialize new member, fts_cwd_fd.
5990         Remove fts_rft-setting code.
5991         (fts_close): Close fts_cwd_fd, if necessary.
5992         (__opendir2): Define in terms of opendir or opendirat,
5993         depending on whether the FST_NOCHDIR flag is set.
5994         (fts_build): Since fts_safe_changedir consumes its FD, and since
5995         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
5996         and close the dup'd file descriptor upon failure.
5997         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
5998         (fts_safe_changedir): Tweak semantics to reflect that this function
5999         now calls cwd_advance_fd and hence consumes its FD argument.
6000         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
6001         [struct FTS] (fts_rft): Remove now-unused member.
6002         [struct FTS] (fts_cycle.state): Improve comment.
6003
6004         * lib/openat.c (openat_needs_fchdir): New function.
6005         * lib/openat.h (openat_needs_fchdir): Declare it.
6006
6007 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
6008
6009         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
6010         Problem and fix reported by Pádraig Brady in
6011         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
6012
6013 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6014
6015         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
6016
6017 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6018
6019         * lib/memcoll.c (memcoll): Optimize for the common case where the
6020         arguments are bytewise equal.
6021
6022 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6023
6024         * doc/regexprops-generic.texi: Add a copyright notice.
6025
6026 2006-08-15  Bruno Haible  <bruno@clisp.org>
6027
6028         * modules/tmpdir (License): Change to LGPL.
6029
6030 2006-08-15  Bruno Haible  <bruno@clisp.org>
6031
6032         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
6033         module.
6034
6035 2006-08-14  Simon Josefsson  <jas@extundo.com>
6036
6037         * config/srclist.txt: Add gnupload.
6038
6039 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6040
6041         Change copyright notice from LGPL 2 to GPL 2, since that's the
6042         standard form used in the gnulib repository.
6043         * tests/test-lock.c: Likewise.
6044         * tests/test-stdint.c: Likewise.
6045         * tests/test-tls.c: Likewise.
6046
6047         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
6048         prelude-manager.  User shorter URLs for GNU projects, without '?'.
6049         Add copyright notice.
6050
6051         * check-module: Add copyright notice.  Output a copyright
6052         notice if "--version" is specified.
6053         * modules/COPYING: New file.
6054         * tests/test-getaddrinfo.c: Add copyright notice.
6055         * tests/test-verify.c: Likewise.
6056
6057 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6058
6059         Change copyright notice from LGPL 2 to GPL 2, since that's the
6060         standard form used in the gnulib repository.
6061         * lib/lock.c: LGPL -> GPL.
6062         * lib/lock.h: Likewise.
6063         * lib/strnlen1.c: Likewise.
6064         * lib/strnlen1.h: Likewise.
6065         * lib/tls.c: Likewise.
6066         * lib/tls.h: Likewise.
6067         * lib/tmpdir.c: Likewise.
6068
6069         * lib/TODO: Remove; this belongs only in coreutils.
6070
6071 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6072
6073         Add copyright notices to long-enough files that lack them, since
6074         otherwise the files aren't clearly free.  Use the same notice that
6075         getdate.texi already uses.
6076         * doc/alloca-opt.texi: Add copyright notice.
6077         * doc/alloca.texi: Likewise.
6078         * doc/ctime.texi: Likewise.
6079         * doc/functions.texi: Likewise.
6080         * doc/gcd.texi: Likewise.
6081         * doc/gnulib-tool.texi: Likewise.
6082         * doc/inet_ntoa.texi: Likewise.
6083         * doc/visibility.texi: Likewise.
6084
6085         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
6086         * doc/quote.texi: Add copyright notice.
6087
6088         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
6089         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
6090         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
6091         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6092         is now obsolete, and give a pointer to the Sun list.
6093         Add copyright notice.
6094
6095 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6096
6097         * config/srclistvars.sh: Add copyright notice.
6098
6099 2006-08-14  Eric Blake  <ebb9@byu.net>
6100
6101         Import the following change from libc:
6102
6103         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6104
6105         Upstream bug 2997.
6106         * lib/misc/error.c: Add space between program name and message if file
6107         name is missing.
6108
6109 2006-08-12  Karl Berry  <karl@gnu.org>
6110
6111         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6112         remove, these originate in gnulib now.
6113
6114 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6115
6116         * doc/Makefile (standards.info standards.html standards.dvi):
6117         Also depend on make-stds.texi.
6118
6119 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6120
6121         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6122         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6123
6124         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6125         in wchar_t.  Problem reported by Eric Blake.
6126
6127         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6128         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6129         Also, help the compiler to keep LEN in a register.
6130
6131 2006-08-11  Eric Blake  <ebb9@byu.net>
6132
6133         * users.txt: Sort.  Add tar.
6134
6135 2006-08-11  Bruno Haible  <bruno@clisp.org>
6136
6137         * users.txt: New file.
6138
6139 2006-08-11  Bruno Haible  <bruno@clisp.org>
6140
6141         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6142         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6143
6144 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6145
6146         * modules/snprintf (Depends-on): Remove minmax.
6147         (Maintainer): Add self and Bruno.
6148
6149 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6150
6151         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6152         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6153         (EOVERFLOW): Define if the system does not.
6154         Do not include "minmax.h"; it wasn't used.
6155         (snprintf): Don't assume size_t promotes to an unsigned type.
6156         Fix bug when generated string was too long for the buffer: the
6157         buffer's contents are supposed to be the initial prefix of the
6158         output.  Don't assume vasnprintf returns EOVERFLOW if the size
6159         exceeds INT_MAX; do the check ourselves.
6160
6161         Import the following changes from libc:
6162
6163         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
6164
6165         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
6166         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
6167         set wc to the byte which couldn't be converted.
6168         (re_string_reconstruct): Don't clear valid_raw_len before calling
6169         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
6170         tip_context using re_string_context_at.
6171
6172         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
6173
6174         * lib/posix/regex.h: g++ still cannot handled [restrict].
6175
6176         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
6177
6178         * lib/posix/regex.h: Remove special handling for VMS.
6179
6180 2006-08-10  Jim Meyering  <jim@meyering.net>
6181
6182         * modules/same-inode: New module.
6183         * modules/dev-ino: New module.
6184         * modules/cycle-check: Depend on these modules, rather than simply
6185         including their .h files.
6186         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
6187         required via m4/cycle-check.m4.
6188         * modules/same: Depend on new same-inode module, rather than
6189         including same-inode.h.
6190         * modules/chdir-safer: New file.
6191
6192         * modules/chown (Depends-on): Add stat-macros.
6193
6194 2006-08-10  Jim Meyering  <jim@meyering.net>
6195
6196         * m4/cycle-check.m4: New file.
6197         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
6198         * m4/dev-ino.m4, m4/same-inode.m4: New files.
6199
6200 2006-08-10  Eric Blake  <ebb9@byu.net>
6201
6202         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
6203         in from original proposal.
6204
6205 2006-08-10  Eric Blake  <ebb9@byu.net>
6206         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6207
6208         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
6209         namespace.
6210
6211 2006-08-10  Bruno Haible  <bruno@clisp.org>
6212
6213         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
6214         as well.
6215
6216 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6217
6218         Sync from coreutils.
6219
6220         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
6221
6222         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
6223         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
6224
6225 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6226
6227         * modules/restrict: Remove; no longer needed now that we assume
6228         Autoconf 2.59 or later.
6229         * MODULES.html.sh: Remove 'restrict'.
6230         * modules/argp (Depends-on): Remove 'restrict'.
6231         * modules/base64 (Depends-on): Likewise.
6232         * modules/gc (Depends-on): Likewise.
6233         * modules/getaddrinfo (Depends-on): Likewise.
6234         * modules/glob (Depends-on): Likewise.
6235         * modules/inet_ntop (Depends-on): Likewise.
6236         * modules/inet_pton (Depends-on): Likewise.
6237         * modules/memxor (Depends-on): Likewise.
6238         * modules/regex (Depends-on): Likewise.
6239         * modules/strtok_r (Depends-on): Likewise.
6240         * modules/time_r (Depends-on): Likewise.
6241
6242 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6243
6244         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
6245         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
6246         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6247         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
6248         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
6249         * m4/memxor.m4 (gl_MEMXOR): Likewise.
6250         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
6251         gl_C_RESTRICT replaced by AC_C_RESTRICT.
6252
6253         Merge from coreutils.
6254         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
6255         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
6256         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
6257         * m4/time_r.m4 (gl_TIME_R): Likewise.
6258
6259 2006-08-09  Karl Berry  <karl@gnu.org>
6260
6261         * config/srclist.txt: no more gettext-tools, per Bruno.
6262
6263 2006-08-08  Eric Blake  <ebb9@byu.net>
6264
6265         * modules/verror: New module.
6266         * MODULES.html.sh: Document it.
6267
6268 2006-08-08  Eric Blake  <ebb9@byu.net>
6269
6270         * lib/verror.h, lib/verror.c: New files.
6271
6272 2006-08-08  Eric Blake  <ebb9@byu.net>
6273
6274         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
6275         verror_at_line output complies with GNU Coding Standards even when
6276         file is NULL.
6277
6278 2006-08-07  Bruno Haible  <bruno@clisp.org>
6279
6280         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
6281         versions of AIX.
6282         Reported by Ralf Wildenhues.
6283
6284 2006-08-07  Bruno Haible  <bruno@clisp.org>
6285
6286         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
6287         in an AC_DEFUN. Needed so that the autoconf snippets can use
6288         AC_REQUIRE.
6289
6290 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6291
6292         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6293         Initialize pkgdata_DATA.
6294         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
6295         overriding it.
6296
6297 2006-08-06  Eric Blake  <ebb9@byu.net>
6298
6299         * lib/error.h: Fold in some upstream changes from glibc.
6300         * lib/error.c: Likewise.
6301
6302 2006-08-04  Bruno Haible  <bruno@clisp.org>
6303
6304         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6305         Make the mostlyclean-local rule depend on mostlyclean-generic.
6306         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
6307
6308 2006-07-31  Bruno Haible  <bruno@clisp.org>
6309
6310         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
6311         <stdlib.h>, <string.h>.
6312
6313 2006-07-30  Bruno Haible  <bruno@clisp.org>
6314
6315         * modules/readlink (License): Change to LGPL.
6316
6317 2006-07-30  Bruno Haible  <bruno@clisp.org>
6318
6319         * modules/javaversion (Makefile.am): Distribute javaversion.java and
6320         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
6321         set PKGDATADIR to point to it.
6322
6323 2006-07-30  Bruno Haible  <bruno@clisp.org>
6324
6325         * modules/csharpexec (configure.ac): Comment out macro invocation.
6326         * modules/javaexec (configure.ac): Likewise.
6327         * modules/javacomp-script (configure.ac): Likewise.
6328
6329         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
6330
6331 2006-07-30  Bruno Haible  <bruno@clisp.org>
6332
6333         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
6334         linked-list.
6335
6336 2006-07-30  Bruno Haible  <bruno@clisp.org>
6337
6338         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
6339
6340 2006-07-30  Bruno Haible  <bruno@clisp.org>
6341
6342         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6343         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
6344         get removed.
6345
6346 2006-07-29  Bruno Haible  <bruno@clisp.org>
6347
6348         Make it possible for gnulib-tool to work with locally modified or
6349         augmented gnulib repositories.
6350         * gnulib-tool (func_usage): Document --local-dir option.
6351         (local_gnulib_dir): New variable.
6352         Handle --local-dir option.
6353         (func_lookup_file): New function.
6354         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
6355         (func_get_description, func_get_filelist, func_get_description,
6356         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
6357         func_get_automake_snippet, func_get_include_directive,
6358         func_get_license, func_get_maintainer): Use func_lookup_file.
6359         (func_import, func_create_testdir): Use func_lookup_file.
6360
6361 2006-07-29  Bruno Haible  <bruno@clisp.org>
6362
6363         * modules/setenv (Depends-on): Add unistd.
6364
6365 2006-07-29  Bruno Haible  <bruno@clisp.org>
6366
6367         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
6368
6369 2006-07-29  Bruno Haible  <bruno@clisp.org>
6370
6371         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
6372
6373 2006-07-29  Bruno Haible  <bruno@clisp.org>
6374
6375         * gnulib-tool (import, update): If there is no Makefile.am, look at
6376         aclocal.m4, instead of bailing out.
6377
6378 2006-07-29  Bruno Haible  <bruno@clisp.org>
6379
6380         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
6381         Categorize the options by when they are useful.
6382
6383 2006-07-29  Bruno Haible  <bruno@clisp.org>
6384
6385         * gnulib-tool (func_usage): Document option --no-libtool.
6386         Handle option --no-libtool.
6387         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
6388         for changed semantics of $libtool variable.
6389         (func_import): Likewise. If libtool is not used, show this through
6390         an option --no-libtool.
6391         (func_create_testdir): Update.
6392
6393 2006-07-29  Bruno Haible  <bruno@clisp.org>
6394
6395         * gnulib-tool (func_import): Extend error message about missing
6396         --doc-base.
6397
6398 2006-07-29  Bruno Haible  <bruno@clisp.org>
6399
6400         * gnulib-tool (func_import): Don't create the $docbase directory if
6401         there is no file to store there.
6402
6403 2006-07-29  Bruno Haible  <bruno@clisp.org>
6404
6405         * gnulib-tool (autoconf_minversion): If a --dir option is given and
6406         relevant, look for configure.ac there, not in the current directory.
6407         Also use a simple search for AC_PREREQ, not "autoconf --trace".
6408
6409 2006-07-29  Bruno Haible  <bruno@clisp.org>
6410
6411         * gnulib-tool (SORT): New variable.
6412         (func_usage): Undocument --assume-autoconf option.
6413         Remove --assume-autoconf option handling.
6414         (autoconf_minversion): Determine from the contents of configure.ac.
6415         (func_import): Remove autoconf_minversion handling.
6416         Suggested by Eric Blake.
6417
6418 2006-07-29  Bruno Haible  <bruno@clisp.org>
6419
6420         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
6421
6422 2006-07-29  Bruno Haible  <bruno@clisp.org>
6423
6424         * config/srclist.txt (*setenv.[ch]): Remove rules.
6425
6426 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6427
6428         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
6429
6430 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6431
6432         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
6433         arpa/inet.h.
6434
6435 2006-07-28  Simon Josefsson  <jas@extundo.com>
6436
6437         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
6438         * modules/inet_pton (Depends-on): Likewise.
6439
6440 2006-07-28  Simon Josefsson  <jas@extundo.com>
6441
6442         * m4/netinet_in_h.m4: New file.
6443
6444 2006-07-28  Simon Josefsson  <jas@extundo.com>
6445
6446         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
6447         #include's.
6448
6449 2006-07-28  Simon Josefsson  <jas@extundo.com>
6450
6451         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
6452         #include's.
6453
6454 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
6455
6456         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
6457         setgid on directories only if they set these bits.
6458         * lib/modechange.h: Remove obsolete comment about masks.
6459
6460 2006-07-28  Eric Blake  <ebb9@byu.net>
6461
6462         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
6463         macro expansion.
6464
6465 2006-07-28  Bruno Haible  <bruno@clisp.org>
6466
6467         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
6468
6469 2006-07-28  Bruno Haible  <bruno@clisp.org>
6470
6471         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
6472
6473 2006-07-28  Bruno Haible  <bruno@clisp.org>
6474
6475         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
6476         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
6477         Define fallbacks.
6478         Avoids link error on FreeBSD 4.x.
6479         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
6480
6481         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
6482         encoding.
6483         * lib/mbswidth.c (iswcntrl): Likewise.
6484
6485 2006-07-27  Bruno Haible  <bruno@clisp.org>
6486
6487         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
6488         test.
6489
6490 2006-07-27  Bruno Haible  <bruno@clisp.org>
6491
6492         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
6493         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
6494         defined.
6495
6496 2006-07-26  Eric Blake  <ebb9@byu.net>
6497
6498         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
6499
6500 2006-07-26  Eric Blake  <ebb9@byu.net>
6501
6502         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
6503         like mingw that lack mkstemp.
6504         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
6505         avoid compilation warning on mingw.
6506
6507 2006-07-26  Bruno Haible  <bruno@clisp.org>
6508
6509         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
6510         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
6511         INT_FAST*_MIN, INTPTR_MIN.
6512
6513 2006-07-25  Bruno Haible  <bruno@clisp.org>
6514
6515         * modules/version-etc (Depends-on): Add stdarg.
6516
6517 2006-07-25  Bruno Haible  <bruno@clisp.org>
6518
6519         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
6520         complex commands.
6521
6522 2006-07-25  Bruno Haible  <bruno@clisp.org>
6523
6524         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
6525         defined in <stdarg.h> or config.h.
6526
6527 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6528
6529         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
6530         (gl_STDIO_SAFER): Remove.
6531
6532 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
6533
6534         * MODULES.html.sh (File stream based Input/Output):
6535         Add fopen-safer, tmpfile-safer; remove stdio-safer.
6536         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
6537         * modules/fopen-safer, modules/tmpfile-safer: New files.
6538         * modules/stdio-safer: Remove.
6539
6540 2006-07-24  Bruno Haible  <bruno@clisp.org>
6541
6542         * modules/tmpdir: New file.
6543         * MODULES.html.sh (File system functions): Add it.
6544
6545 2006-07-24  Bruno Haible  <bruno@clisp.org>
6546
6547         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
6548         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
6549
6550 2006-07-24  Bruno Haible  <bruno@clisp.org>
6551
6552         * modules/clean-temp: New file.
6553
6554 2006-07-24  Bruno Haible  <bruno@clisp.org>
6555
6556         * m4/tmpdir.m4: New file, from GNU gettext.
6557
6558 2006-07-24  Bruno Haible  <bruno@clisp.org>
6559
6560         * lib/tmpdir.h: New file, from GNU gettext.
6561         * lib/tmpdir.c: New file, from GNU gettext.
6562
6563 2006-07-24  Bruno Haible  <bruno@clisp.org>
6564
6565         * lib/clean-temp.h: New file, from GNU gettext.
6566         * lib/clean-temp.c: New file, from GNU gettext.
6567
6568 2006-07-23  Eric Blake  <ebb9@byu.net>
6569
6570         * modules/stdio-safer (Files): Add tmpfile-safer.c.
6571         (Depends-on): Add binary-io.
6572
6573 2006-07-23  Eric Blake  <ebb9@byu.net>
6574
6575         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
6576
6577 2006-07-23  Eric Blake  <ebb9@byu.net>
6578
6579         * lib/tmpfile-safer.c: New file.
6580         * lib/stdio-safer.h (fopen_safer): Add prototype.
6581         * lib/stdio--.h (tmpfile): Make safer.
6582
6583 2006-07-23  Bruno Haible  <bruno@clisp.org>
6584
6585         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
6586         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
6587         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
6588         gl_linked_remove_at): Use it.
6589
6590 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6591         and Simon Josefsson <jas@extundo.com>
6592
6593         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
6594
6595         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
6596
6597 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6598
6599         * modules/close-stream: New file.
6600         * modules/closeout (Description): Make it clear that it exits
6601         with a diagnostic on error.
6602         (Depends-on): Add close-stream.  Remove fpending, stdbool.
6603         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
6604
6605 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6606
6607         * m4/close-stream.m4: New file.
6608
6609 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
6610
6611         * lib/close-stream.c, lib/close-stream.h: New files.
6612
6613 2006-07-22  Bruno Haible  <bruno@clisp.org>
6614
6615         Merge from GNU gettext 0.15.
6616
6617         2006-05-01  Bruno Haible  <bruno@clisp.org>
6618
6619                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
6620
6621         2006-07-22  Bruno Haible  <bruno@clisp.org>
6622
6623                 * modules/javaversion: New file.
6624                 * MODULES.html.sh (Java): Add javaversion.
6625
6626         2006-03-12  Bruno Haible  <bruno@clisp.org>
6627
6628                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
6629
6630         2005-12-04  Bruno Haible  <bruno@clisp.org>
6631
6632                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
6633                 (untested).
6634
6635         2006-06-21  Bruno Haible  <bruno@clisp.org>
6636
6637                 Avoid warnings from recent versions of mcs.
6638                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
6639                 -o, -L, -r any more. Use options documented since mcs-1.0
6640                 instead. Similarly for -g.
6641
6642         2005-12-04  Bruno Haible  <bruno@clisp.org>
6643
6644                 * build-aux/csharpcomp.sh.in: Suffix for resources is
6645                 .resources, not .resource.
6646
6647         2005-07-09  Bruno Haible  <bruno@clisp.org>
6648
6649                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
6650                 add a .dll suffix.
6651                 Reported by Mark Junker <mjscod@gmx.de>.
6652
6653         2006-07-22  Bruno Haible  <bruno@clisp.org>
6654
6655                 * modules/gettext: Upgrade to gettext-0.15.
6656                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
6657                 m4/visibility.m4.
6658                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
6659
6660 2006-07-22  Bruno Haible  <bruno@clisp.org>
6661
6662         Merge from GNU gettext 0.15.
6663
6664         2006-03-25  Bruno Haible  <bruno@clisp.org>
6665
6666                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
6667
6668         2006-07-21  Bruno Haible  <bruno@clisp.org>
6669
6670                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
6671                 "1.1".
6672
6673         2006-05-09  Bruno Haible  <bruno@clisp.org>
6674
6675                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
6676                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
6677                 for the conftestver execution.
6678
6679         2006-05-01  Bruno Haible  <bruno@clisp.org>
6680
6681                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
6682                 optional target-version argument. Verify that the compiler
6683                 groks source of the specified source-version, or add -source
6684                 option as necessary. Verify that the compiler produces
6685                 bytecode in the specified target-version, or add -target and
6686                 -source options as necessary. Make the result of the test
6687                 available as variable CONF_JAVAC. Also log error output in
6688                 config.log.
6689
6690         2006-03-11  Bruno Haible  <bruno@clisp.org>
6691
6692                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
6693
6694         2006-05-09  Bruno Haible  <bruno@clisp.org>
6695
6696                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
6697                 CLASSPATH_SEPARATOR to a semicolon.
6698
6699         2006-03-12  Bruno Haible  <bruno@clisp.org>
6700
6701                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
6702                 available as variable CONF_JAVA, for subsequent autoconf
6703                 tests. Also log error output in config.log.
6704
6705         2006-07-19  Bruno Haible  <bruno@clisp.org>
6706
6707                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
6708                 that getline works on glibc2 systems. Needed to avoid trouble
6709                 in relocatable.c.
6710                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
6711
6712         2005-12-04  Bruno Haible  <bruno@clisp.org>
6713
6714                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
6715                 launcher (untested).
6716
6717         2005-12-04  Bruno Haible  <bruno@clisp.org>
6718
6719                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
6720
6721         2006-07-22  Bruno Haible  <bruno@clisp.org>
6722
6723                 * gettext.m4: Update from GNU gettext-0.15.
6724                 * nls.m4: Likewise.
6725                 * po.m4: Likewise.
6726                 * inttypes-pri.m4: Likewise.
6727                 * inttypes-h.m4: Renamed from inttypes.m4.
6728                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
6729
6730 2006-07-22  Bruno Haible  <bruno@clisp.org>
6731
6732         Merge from GNU gettext 0.15.
6733
6734         2005-07-05  Bruno Haible  <bruno@clisp.org>
6735
6736                 * printf-args.c (printf_fetchargs): Work around broken
6737                 definition of wint_t on mingw.
6738
6739         2005-02-12  Bruno Haible  <bruno@clisp.org>
6740
6741                 * xallocsa.h: Add extern "C" for C++.
6742
6743         2006-05-17  Bruno Haible  <bruno@clisp.org>
6744
6745                 Cygwin portability.
6746                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
6747
6748         2006-04-30  Bruno Haible  <bruno@clisp.org>
6749
6750                 * progreloc.c: Include <mach-o/dyld.h> if available.
6751                 (find_executable): Use _NSGetExecutablePath when possible.
6752
6753         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
6754
6755                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
6756                 function.
6757
6758         2005-12-29  Bruno Haible  <bruno@clisp.org>
6759
6760                 * progreloc.c (set_program_name_and_installdir): Fix
6761                 compilation error.
6762
6763         2005-12-04  Bruno Haible  <bruno@clisp.org>
6764
6765                 Cygwin portability.
6766                 * progreloc.c: Include <windows.h> also on Cygwin.
6767                 (find_executable): Add support for Cygwin.
6768                 (set_program_name_and_installdir): Handle also platforms with
6769                 nonempty EXEEXT.
6770
6771         2006-07-11  Bruno Haible  <bruno@clisp.org>
6772
6773                 * javacomp.c: Fix a comment.
6774                 Reported by Jim Meyering.
6775
6776         2006-04-30  Bruno Haible  <bruno@clisp.org>
6777
6778                 * javacomp.h (compile_java_class): Add source_version,
6779                 target_version arguments.
6780                 * javacomp.c: Rewritten to choose only a compiler that
6781                 respects the specified source_version and target_version.
6782
6783         2006-06-27  Bruno Haible  <bruno@clisp.org>
6784
6785                 Assume correct S_ISDIR macro.
6786                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
6787
6788         2006-07-22  Bruno Haible  <bruno@clisp.org>
6789
6790                 * javaversion.h: New file, from GNU gettext.
6791                 * javaversion.c: New file, from GNU gettext.
6792                 * javaversion.java: New file, from GNU gettext.
6793                 * javaversion.class: New file, from GNU gettext.
6794
6795         2006-05-17  Bruno Haible  <bruno@clisp.org>
6796
6797                 Cygwin portability.
6798                 * javaexec.c (execute_java_class): Test for jview program
6799                 also on Cygwin.
6800
6801         2006-04-09  Bruno Haible  <bruno@clisp.org>
6802
6803                 * fatal-signal.c: Don't include string.h.
6804                 (at_fatal_signal): Use a copying loop instead of memcpy.
6805
6806         2005-12-04  Bruno Haible  <bruno@clisp.org>
6807
6808                 * csharpexec.c: Add support for 'clix' launcher (untested).
6809                 (execute_csharp_using_sscli): New function.
6810                 (execute_csharp_program): Call it.
6811
6812         2006-06-21  Bruno Haible  <bruno@clisp.org>
6813
6814                 Avoid warnings from recent versions of mcs.
6815                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
6816                 -o, -L, -r any more. Use options documented since mcs-1.0
6817                 instead. Similarly for -g.
6818
6819         2005-07-09  Bruno Haible  <bruno@clisp.org>
6820
6821                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
6822                 add a .dll suffix.
6823                 Reported by Mark Junker <mjscod@gmx.de>.
6824
6825         2006-06-17  Bruno Haible  <bruno@clisp.org>
6826
6827                 * config.charset: Update for NetBSD 3.0.
6828
6829         2006-05-17  Bruno Haible  <bruno@clisp.org>
6830
6831                 Cygwin portability.
6832                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
6833
6834         2006-05-16  Bruno Haible  <bruno@clisp.org>
6835
6836                 * localcharset.c [CYGWIN]: Include <windows.h>.
6837                 (get_charset_aliases): For Cygwin, return the same CPxxx
6838                 aliases list as under WIN32.
6839                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
6840                 the environment variables. Fall back to GetACP().
6841
6842         2006-04-05  Bruno Haible  <bruno@clisp.org>
6843
6844                 * config.charset: Update Juan Manuel Guerrero's address.
6845
6846         2005-02-12  Bruno Haible  <bruno@clisp.org>
6847
6848                 * allocsa.h: Add extern "C" for C++.
6849
6850         2005-02-10  Bruno Haible  <bruno@clisp.org>
6851
6852                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
6853                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
6854
6855         2006-07-22  Bruno Haible  <bruno@clisp.org>
6856
6857                 * gettext.h: Update to GNU gettext-0.15.
6858
6859 2006-07-22  Bruno Haible  <bruno@clisp.org>
6860
6861         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
6862         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
6863         lib-prefix.m4, longdouble.m4, ssize_t.m4.
6864
6865 2006-07-21  Eric Blake  <ebb9@byu.net>
6866
6867         * modules/stdlib-safer: New file.
6868         * MODULES.html.sh (File stream based Input/Output): Add
6869         stdlib-safer.
6870
6871 2006-07-21  Eric Blake  <ebb9@byu.net>
6872
6873         * lib/stdlib-safer.h: New file from coreutils, required by
6874         stdlib--.h.
6875
6876 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
6877
6878         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
6879
6880 2006-07-20  Bruno Haible  <bruno@clisp.org>
6881
6882         * gnulib-tool: Recognize new option --assume-autoconf.
6883         (autoconf_minversion): New variable.
6884         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
6885
6886 2006-07-20  Bruno Haible  <bruno@clisp.org>
6887
6888         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
6889
6890 2006-07-19  Derek R. Price  <derek@ximbiot.com>
6891
6892         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
6893         Reindent and repaginate.
6894
6895 2006-07-19  Derek Price  <derek@ximbiot.com>
6896
6897         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
6898         Correct grammar.
6899
6900 2006-07-17  Bruno Haible  <bruno@clisp.org>
6901
6902         * modules/list: New file.
6903         * modules/array-list: New file.
6904         * modules/carray-list, modules/carray-list-tests: New files.
6905         * modules/linked-list, modules/linked-list-tests: New files.
6906         * modules/avltree-list, modules/avltree-list-tests: New files.
6907         * modules/rbtree-list, modules/rbtree-list-tests: New files.
6908         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
6909         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
6910         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
6911         * modules/oset: New file.
6912         * modules/array-oset: New file.
6913         * modules/avltree-oset, modules/avltree-oset-tests: New files.
6914         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
6915         * tests/test-carray_list.c: New file.
6916         * tests/test-linked_list.c: New file.
6917         * tests/test-avltree_list.c: New file.
6918         * tests/test-rbtree_list.c: New file.
6919         * tests/test-linkedhash_list.c: New file.
6920         * tests/test-avltreehash_list.c: New file.
6921         * tests/test-rbtreehash_list.c: New file.
6922         * tests/test-avltree_oset.c: New file.
6923         * tests/test-rbtree_oset.c: New file.
6924         * MODULES.html.sh (Container data structures): New section.
6925
6926 2006-07-17  Bruno Haible  <bruno@clisp.org>
6927
6928         * m4/gl_list.m4: New file.
6929
6930 2006-07-17  Bruno Haible  <bruno@clisp.org>
6931
6932         * lib/gl_list.h: New file.
6933         * lib/gl_list.c: New file.
6934         * lib/gl_array_list.h: New file.
6935         * lib/gl_array_list.c: New file.
6936         * lib/gl_carray_list.h: New file.
6937         * lib/gl_carray_list.c: New file.
6938         * lib/gl_linked_list.h: New file.
6939         * lib/gl_linked_list.c: New file.
6940         * lib/gl_anylinked_list1.h: New file.
6941         * lib/gl_anylinked_list2.h: New file.
6942         * lib/gl_avltree_list.h: New file.
6943         * lib/gl_avltree_list.c: New file.
6944         * lib/gl_anyavltree_list1.h: New file.
6945         * lib/gl_anyavltree_list2.h: New file.
6946         * lib/gl_rbtree_list.h: New file.
6947         * lib/gl_rbtree_list.c: New file.
6948         * lib/gl_anyrbtree_list1.h: New file.
6949         * lib/gl_anyrbtree_list2.h: New file.
6950         * lib/gl_anytree_list1.h: New file.
6951         * lib/gl_anytree_list2.h: New file.
6952         * lib/gl_linkedhash_list.h: New file.
6953         * lib/gl_linkedhash_list.c: New file.
6954         * lib/gl_anyhash_list1.h: New file.
6955         * lib/gl_anyhash_list2.h: New file.
6956         * lib/gl_avltreehash_list.h: New file.
6957         * lib/gl_avltreehash_list.c: New file.
6958         * lib/gl_rbtreehash_list.h: New file.
6959         * lib/gl_rbtreehash_list.c: New file.
6960         * lib/gl_anytreehash_list1.h: New file.
6961         * lib/gl_anytreehash_list2.h: New file.
6962
6963         * lib/gl_oset.h: New file.
6964         * lib/gl_oset.c: New file.
6965         * lib/gl_array_oset.h: New file.
6966         * lib/gl_array_oset.c: New file.
6967         * lib/gl_avltree_oset.h: New file.
6968         * lib/gl_avltree_oset.c: New file.
6969         * lib/gl_rbtree_oset.h: New file.
6970         * lib/gl_rbtree_oset.c: New file.
6971         * lib/gl_anytree_oset.h: New file.
6972
6973 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6974
6975         * m4/mkancesdirs.m4: New file.
6976         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
6977         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
6978         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
6979         it.
6980
6981 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
6982
6983         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
6984         * lib/mkancesdirs.h: New files.
6985         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
6986         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
6987         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
6988         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
6989         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
6990         callers changed.  Revamp internals significantly, by not
6991         attempting to create directories that are temporarily more
6992         permissive than the final results.  Do not attempt to use
6993         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
6994         This removes some race conditions, fixes some bugs, and simplifies
6995         things.  Use new dirchownmod function to do owner and mode changes.
6996         * lib/mkdir-p.h: Likewise.
6997         * lib/modechange.c (octal_to_mode): New function.
6998         (struct mode_change): New member mentioned.
6999         (make_node_op_equals): New arg mentioned.  All callers changed.
7000         (mode_compile): Keep track of which mode bits the user has explicitly
7001         mentioned.
7002         (mode_adjust): New arg DIR, so that we implement the X op correctly.
7003         New arg PMODE_BITS, to keep track of which mode bits the user
7004         mentioned; it treats S_ISUID and S_ISGID speciall.
7005         All callers changed.
7006         * lib/modechange.h: Likewise.
7007
7008 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7009
7010         * MODULES.html.sh: Add mkancestors.
7011         * modules/mkancesdirs: New module.
7012         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
7013         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
7014         The chdir-safer and afs files are now orphans; I'll remove them
7015         unless someone speaks up.
7016         Add lib/dirchownmod.c, lib/dirchownmod.h.
7017         (Depends-on): Remove alloca, chown, save-cwd, dirname.
7018         Add lchown, mkancesdirs.
7019         (Maintainer): Add self.
7020
7021 2006-07-15  Karl Berry  <karl@gnu.org>
7022
7023         * gnulib-tool: help message wording/arrangement.
7024
7025 2006-07-14  Simon Josefsson  <jas@extundo.com>
7026
7027         * doc/gnulib.texi (Libtool and Windows): New section.
7028
7029 2006-07-12  Simon Josefsson  <jas@extundo.com>
7030
7031         * modules/gendocs (License): Fix license, approved by Karl.
7032
7033 2006-07-12  Eric Blake  <ebb9@byu.net>
7034
7035         * MODULES.html.sh: Add gendocs.
7036
7037 2006-07-11  Eric Blake  <ebb9@byu.net>
7038
7039         * modules/fdl: New module, to install doc/fdl.texi.
7040         * MODULES.html.sh: Add new section for documentation modules.
7041         * gnulib-tool: Avoid space-tab.
7042         (--doc-base): New option, to manage files from doc.
7043
7044 2006-07-11  Eric Blake  <ebb9@byu.net>
7045
7046         * m4/absolute-header.m4: Fix comments to match recent change.
7047
7048 2006-07-11  Eric Blake  <ebb9@byu.net>
7049
7050         * gnulib-tool: List --doc-base before --tests-base.
7051
7052 2006-07-11  Derek R. Price  <derek@ximbiot.com>
7053
7054         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
7055
7056 2006-07-11  Bruno Haible  <bruno@clisp.org>
7057
7058         * README: Mention where to put documentation.
7059
7060 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7061
7062         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
7063
7064 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7065
7066         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
7067         to stdint.m4.
7068
7069 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7070
7071         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
7072         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
7073         "no/such/file/stdint.h" when there is no such file, so that
7074         the resulting C code can be parsed by dodgy compilers.
7075         Problems reported by Bob Proulx.
7076
7077 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7078
7079         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
7080         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7081         macros into the GNU _D_EXACT_NAMLEN.
7082         * lib/savedir.c:  Likewise.
7083         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
7084
7085 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7086         and Paul Eggert  <eggert@cs.ucla.edu>
7087
7088         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
7089         * m4/savedir.m4:
7090         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7091         macros into the GNU _D_EXACT_NAMLEN.
7092
7093 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7094
7095         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7096         around the absolute name, to work around a problem with the HP-UX
7097         11.23 native C compiler, reported by Bob Proulx.
7098
7099 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7100
7101         * doc/maintain.texi, make-stds.texi: Sync from
7102         <http://savannah.gnu.org/projects/gnustandards>.
7103
7104 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7105
7106         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7107
7108 2006-07-09  Jim Meyering  <jim@meyering.net>
7109
7110         * m4/glob.m4: Remove a doubled word in a comment.
7111
7112 2006-07-09  Jim Meyering  <jim@meyering.net>
7113
7114         * lib/argp-pv.c: Remove a doubled word in a comment.
7115         * lib/check-version.c (check_version): Likewise.
7116         * lib/javacomp.c (compile_java_class): Likewise.
7117
7118 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7119
7120         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7121         for the benefit of people using Autoconf 2.60.  If you want to
7122         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7123         (or m4/onceonly.m4, if pre-2.57) manually.
7124
7125 2006-07-08  Jim Meyering  <jim@meyering.net>
7126
7127         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7128         comment.
7129         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7130         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7131         comment.
7132
7133 2006-07-08  Jim Meyering  <jim@meyering.net>
7134
7135         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7136
7137 2006-07-07  Simon Josefsson  <jas@extundo.com>
7138
7139         * tests/test-crc.c: Change expected crc value, the test vector
7140         were probably computed using the old broken crc.c?
7141
7142 2006-07-06  Simon Josefsson  <jas@extundo.com>
7143
7144         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7145         now the canonical place for the M4 file).
7146
7147         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7148         from the sys_socket dependency now.
7149
7150         * modules/inet_pton (Files): Ditto.
7151
7152         * modules/inet_ntop (Files): Ditto.
7153
7154 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
7155
7156         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
7157         not gl_PREREQ_GETUSERSHELL.
7158
7159 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7160
7161         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
7162         with only one argument, for Autoconf 2.60.
7163         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
7164         expand to nothing, so add a shell command to avoid syntax error.
7165         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
7166
7167 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7168
7169         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
7170
7171 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7172
7173         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
7174         no longer needed.  Check for isblank decl.
7175         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
7176         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
7177         of existence.
7178
7179 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7180
7181         * lib/getloadavg.c: Use __VMS, not VMS.
7182         * lib/getopt.c: Likewise.
7183         * lib/getpagesize.h: Likewise.
7184         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
7185         and probably does not work.
7186
7187 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7188
7189         * lib/.cppi-disable: Add wcwidth.
7190         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
7191         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
7192         (ISGRAPH): Remove.  All uses changed to isgraph.
7193         (FOLD) [!defined _LIBC]: Remove special case.
7194         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
7195         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
7196         HAVE_ISBLANK.
7197         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
7198         case.
7199
7200 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7201
7202         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
7203         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
7204         brackets.  Other minor changes to suppress some compiler
7205         warnings.
7206
7207 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7208         and Paul Eggert  <eggert@cs.ucla.edu>
7209
7210         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
7211         of invoking obsolescent AC_HEADER_DIRENT macro.
7212         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
7213         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
7214         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
7215         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
7216         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
7217         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7218         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
7219         * m4/readdir.m4: Remove; no longer needed.
7220
7221 2006-07-06  Derek R. Price  <derek@ximbiot.com>
7222         and Paul Eggert  <eggert@cs.ucla.edu>
7223
7224         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
7225         Don't worry about this obsolete case any more.
7226         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
7227         directories.
7228         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
7229         worry about this obsolete case any more.
7230         * lib/fts.c: Likewise.
7231         * lib/getcwd.c: Likewise.
7232         * lib/glob.h: Likewise.
7233         * lib/savedir.c: Likewise.
7234
7235 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7236
7237         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
7238         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
7239         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
7240         needed.
7241         All uses removed.
7242         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7243         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7244         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
7245         needed.
7246         * m4/getdate.m4 (gl_GETDATE): Likewise.
7247         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7248         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7249         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7250         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7251         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
7252         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7253         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
7254         needed.
7255
7256 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
7257
7258         * lib/memcasecmp.c: Include <limits.h>.
7259         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
7260         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
7261         Don't assume isdigit succeeds only on '0' through '9'.
7262
7263 2006-07-05  Eric Blake  <ebb9@byu.net>
7264
7265         * modules/getaddrinfo (Depends-on): Add snprintf.
7266
7267 2006-07-05  Eric Blake  <ebb9@byu.net>
7268
7269         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
7270         to avoid 'header present but could not be compiled' on cygwin.
7271
7272 2006-07-05  Eric Blake  <ebb9@byu.net>
7273
7274         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
7275         missing from netdb.h.
7276         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
7277
7278 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7279
7280         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
7281         no longer needed.
7282         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
7283         * m4/getdate.m4 (gl_GETDATE): Likewise.
7284         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
7285         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
7286         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
7287         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
7288         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
7289
7290 2006-07-05  Derek R. Price  <derek@ximbiot.com>
7291
7292         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
7293         All uses of is_space replaced by isspace.
7294         * lib/exit.h: Don't talk about STDC_HEADERS.
7295         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
7296         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
7297         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
7298         replaced by isprint etc.
7299         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
7300         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7301         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
7302         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
7303         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
7304         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
7305
7306 2006-07-05  Bruno Haible  <bruno@clisp.org>
7307
7308         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
7309         the function exists, before testing against AIX.
7310         Reported by Martin Lambers <marlam@marlam.de>.
7311
7312 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7313
7314         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
7315         From Mark D. Baushke.
7316
7317 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7318
7319         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
7320         to the absolute name, not just one, to bypass Sun C 5.8's
7321         "warning: #include of /usr/include/... may be non-portable".
7322
7323 2006-07-04  Eric Blake  <ebb9@byu.net>
7324
7325         * modules/dirname-tests: New test module.
7326         * tests/test-dirname.c: New file, replacing dirname.c
7327         TEST_DIRNAME section that was recently deleted.
7328
7329 2006-07-04  Bruno Haible  <bruno@clisp.org>
7330
7331         Assume ANSI C header files and <ctype.h> functions.
7332         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
7333         (mbsnwidth): Use isprint, iscntrl instead.
7334
7335 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7336
7337         Merge from coreutils.
7338         * MODULES.html.sh: Add xstrtold.
7339         * modules/xstrtold: New file.
7340         * modules/cycle-check (Files): Add lib/same-inode.h.
7341         * modules/dirname (Files): Add m4/double-slash-root.m4.
7342         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
7343         * modules/mkdir-p (Files): Add lib/same-inode.h.
7344         * modules/same (Files): Add lib/same-inode.h.
7345
7346 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7347
7348         * m4/absolute-header.m4: Renamed from full-header-path.m4.
7349         This is to keep the terminology clean; POSIX talks about
7350         "absolute pathnames", not "full pathnames", but the GNU
7351         Coding Standards say to use "path" for something else;
7352         so use "absolute" to keep both sides happy.
7353         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
7354         Set gl_absolute_header, not gl_full_header_path.
7355         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
7356         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
7357         All uses changed.
7358
7359         Merge from coreutils.
7360
7361         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7362
7363         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
7364         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
7365         want to require the building of c-strtod.o.
7366         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
7367         needs -lm directly.
7368         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
7369
7370         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
7371
7372         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
7373         --as-needed option if available.  Problem reported by Albert Chin in
7374         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
7375         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
7376         cc merely issues a bunch of annoying warnings for --as-needed
7377         (this problem was reported by Bob Proulx).  Also, try linking with
7378         -lm to detect a bug in binutils 2.16 (this problem was reported
7379         by Ralf Wildenhues).
7380
7381         2006-06-18  Jim Meyering  <jim@meyering.net>
7382
7383         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
7384         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
7385         macro.
7386         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
7387         also check for glibc-2.4's abort-inducing bug.
7388
7389         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
7390         Low-probability clean-up should be to use rmdir to get rid of
7391         the just-created directory, not unlink.
7392
7393         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
7394         configure fail, and request a bug report to inform us about it.
7395         Add a comment that, barring reports to the contrary, in 2007 we'll
7396         assume ftruncate is universally available.
7397
7398         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7399
7400         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
7401
7402         2006-03-12  Jim Meyering  <jim@meyering.net>
7403
7404         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
7405         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
7406         * m4/same.m4 (gl_SAME): Likewise.
7407         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
7408
7409         2006-03-11  Eric Blake  <ebb9@byu.net>
7410
7411         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
7412         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
7413         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
7414         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
7415
7416 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7417
7418         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
7419         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
7420         reported by Mark D. Baushke, one in
7421         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
7422
7423         Merge from coreutils.
7424
7425         * lib/.cppi-disable: Add stdint_.h.
7426         * lib/.cvsignore: Add stdint.h.
7427
7428         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
7429
7430         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
7431         both double and long double versions.
7432         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
7433         * lib/xstrtold.c: New file.
7434         * lib/xstrtod.h (xstrtold): New decl.
7435
7436         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
7437
7438         * lib/filemode.c (setst): Remove.
7439         (strmode): Rewrite to avoid setst.  This makes the code shorter,
7440         (arguably) clearer, and the generated code is a bit smaller on my
7441         Debian GNU/Linux stable x86 host.
7442
7443         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
7444
7445         * lib/filemode.c: Include "filemode.h" first, to test the interface.
7446         Assume that filemode.h includes sys/types.h and sys/stat.h.
7447         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
7448         (ftypelet): Reorder to put common cases first, for efficiency.
7449         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
7450         to do 'M'.
7451         (strmode): Renamed from mode_string, and now stores 12 bytes instead
7452         of 10, for compatibility with FreeBSD.  All callers changed.
7453         (filemodestring): Now stores 12 bytes instead of 10, and sets file
7454         types that can't be deduced solely from st_mode.  First arg is now a
7455         const pointer.
7456         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
7457         (strmode): Renamed from mode_string.
7458         (filemodestring): New decl.
7459         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
7460         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
7461         needed.
7462         (S_ISPORT, S_ISWHT): New macros, if not already defined.
7463
7464         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
7465
7466         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
7467         fsusage.h now does that.  Include fsusage.h first, to test interface.
7468         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
7469         at most one method (the old code could have generated decls that
7470         didn't conform to C89, not that this was ever exercised).
7471         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
7472
7473         2006-03-19  Jim Meyering  <jim@meyering.net>
7474
7475         Work even in a chroot where d_ino values for entries in "/"
7476         don't match the stat.st_ino values for the same names.
7477         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
7478         number, iterate through all entries again, using lstat instead.
7479         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
7480         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
7481
7482         * lib/getcwd.c (__getcwd): Clarify a comment.
7483         Use memcpy in place of a call to strcpy.
7484
7485         2006-03-12  Jim Meyering  <jim@meyering.net>
7486
7487         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
7488         matches that of the current directory (which we're about to chdir ".."
7489         out of), then save the dev-ino of the parent, instead.
7490
7491         * lib/same-inode.h (SAME_INODE): New file/macro.
7492         * lib/chdir-safer.c (SAME_INODE): Remove definition.
7493         Include "same-inode.h", instead.
7494         * lib/same.c: Likewise.
7495         * lib/cycle-check.h: Include "same-inode.h".
7496         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
7497         * lib/cycle-check.c (SAME_INODE): Remove definition.
7498         * lib/root-dev-ino.h: Include "same-inode.h".
7499
7500         2006-03-11  Eric Blake  <ebb9@byu.net>
7501
7502         * lib/same.c (same_name): s/base_name/last_component/
7503         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
7504         * lib/filenamecat.c (file_name_concat): Likewise.
7505
7506         2006-03-11  Eric Blake  <ebb9@byu.net>,
7507                     Paul Eggert  <eggert@cs.ucla.edu>
7508
7509         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
7510         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
7511         drive prefix.
7512         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
7513         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
7514         (last_component): New method.
7515         * lib/dirname.c (dir_len): Determine when drive letters need a
7516         subsequent slash.  Preserve // when it is special.
7517         (dir_name): Don't append dot when drive letter is absolute.
7518         [TEST_DIRNAME]: Move into a full-blown gnulib test.
7519         * lib/basename.c (base_name): New semantics - malloc the result.
7520         Preserve // when it is special.  Preserve relative files that look
7521         like drive letters.
7522         (base_len): Preserve // when it is special.
7523         (last_component): New method, similar to old base_name semantics.
7524         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
7525         base_name.  Strip redundant slashes from ///.
7526
7527 2006-07-03  Jim Meyering  <jim@meyering.net>
7528
7529         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
7530         macro is used before the first cycle_check call.
7531
7532 2006-07-03  Eric Blake  <ebb9@byu.net>
7533
7534         * modules/dirname (Depends-on): Add xstrndup.
7535
7536 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7537
7538         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
7539         test cases, so that config.log is a bit easier to follow.
7540
7541 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7542
7543         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
7544         both are 64 bits, since this seems to be the tradition, and this
7545         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
7546         we ever run into a host that prefers long long to long in this
7547         case, we'll need another configure-time test.  Problem reported by
7548         Jim Meyering.
7549
7550 2006-07-02  Eric Blake  <ebb9@byu.net>
7551
7552         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
7553
7554 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7555
7556         * modules/inttypes (Depends-on): No longer depends on stdint.
7557         * modules/stdint (Description): Say more about assumptions.
7558         Say that the fast types might differ.  Say macros are used.
7559         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
7560         (Makefile.am): Revise list of substituted symbols to match
7561         new stdint.m4.
7562         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
7563         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
7564         * tests/test-stdint.c (verify_same_types)
7565         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
7566         the code conforms to C99/C89.
7567         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
7568         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
7569
7570 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7571
7572         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
7573         but fix a bug, by requiring at least 64 bits.
7574         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
7575         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
7576         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
7577         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
7578
7579         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
7580         changes.  Make 2.59 a prerequisite.  Check and substitute for
7581         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
7582         inttypes.h.  Do not use special include files; just use the
7583         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
7584         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
7585         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
7586         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
7587         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
7588         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
7589         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
7590         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
7591         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
7592         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
7593         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
7594         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
7595         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
7596         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
7597         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
7598         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
7599         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
7600         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
7601         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
7602         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
7603         WINT_MAX.  Check for C99 conformance more strictly, by detecting
7604         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
7605         not check for things that C99 does not require, e.g., int8_t.  If
7606         a test isn't needed unless <stdint.h> isn't working, and is
7607         unlikely to be needed for any other reason, then don't do it
7608         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
7609         size_t, since we assume C89 freestanding at least.  Do not check
7610         for sig_atomic_t, wchar_t, or wint_t, since the code now does
7611         the right thing even if the types are not defined.  Instead use:
7612         (gl_STDINT_TYPE_PROPERTIES): New macro.
7613         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
7614         testing whether <sys/types.h> clashes, as Autoconf does this for
7615         us now.  All uses removed.
7616         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
7617         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
7618         (gl_CHECK_TYPE_SAME):
7619         Remove; no longer needed.
7620         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
7621         exists, since we'll return 0 anyway in that case.
7622         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
7623
7624 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7625
7626         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
7627         possible collision with system files.
7628         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
7629         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
7630         WCHAR_MIN and WCHAR_MAX in this case.
7631         (<stddef.h>): Do not include; no longer needed.
7632         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
7633         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
7634         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
7635         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
7636         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
7637         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
7638         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
7639         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
7640         !defined(__c99))]: Include in this case too, since it's harmless
7641         now.
7642         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
7643         dangerous to do so.
7644         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
7645         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
7646         (_STDINT_MIN, _STDINT_MAX): New macros.
7647         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
7648         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
7649         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
7650         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
7651         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
7652         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
7653         macros, not typedefs; this simplifies things quite a bit.
7654         Use long int for all types narrower than int64_t.
7655         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
7656         Define in terms of long long int or int64_t or long int,
7657         not int64_t or int32_t.  This saves some compile-time testing.
7658         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
7659         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
7660         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
7661         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
7662         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
7663         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
7664         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
7665         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
7666         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
7667         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
7668         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7669         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7670         undef any previous version and define our own version, for
7671         simplicity and consistency with the new macros for types.
7672         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
7673         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
7674         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
7675         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
7676         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
7677         @WINT_T_SUFFIX@ to keep things simple here.
7678         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
7679         Simplify by assuming typical 8/16/32/64 host, since we're
7680         already doing that elsewhere anyway.
7681         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
7682         and assume long long int is 64 bits if available.  This
7683         speeds up 'configure'.
7684
7685 2006-07-01  Eric Blake  <ebb9@byu.net>
7686
7687         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
7688         Reported by Andreas Buening.
7689
7690 2006-07-01  Eric Blake  <ebb9@byu.net>
7691
7692         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
7693
7694 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
7695
7696         * lib/getaddrinfo.c: fixed typo
7697
7698 2006-06-29  Jim Meyering  <jim@meyering.net>
7699
7700         * modules/strftime (Maintainer): Add my name, since with the
7701         FPRINTFTIME changes strftime.c has forked from glibc.
7702
7703 2006-06-29  Eric Blake  <ebb9@byu.net>
7704
7705         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
7706
7707 2006-06-29  Eric Blake  <ebb9@byu.net>
7708
7709         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
7710
7711 2006-06-29  Eric Blake  <ebb9@byu.net>
7712
7713         * lib/stat_.h: New file.
7714
7715 2006-06-29  Eric Blake  <ebb9@byu.net>
7716
7717         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
7718         unused static function.
7719
7720 2006-06-29  Eric Blake  <ebb9@byu.net>
7721
7722         * doc/functions.texi (Function Portability): Document missing lstat
7723         on mingw.
7724
7725 2006-06-29  Eric Blake  <ebb9@byu.net>
7726
7727         * MODULES.html.sh: Add sys_stat.
7728         * modules/sys_stat: New module.
7729         * modules/mkstemp (Depends-on): Add sys_stat.
7730
7731 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7732
7733         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
7734
7735 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7736
7737         * m4/c-bs-a.m4: Removed.
7738
7739 2006-06-29  Derek R. Price  <derek@ximbiot.com>
7740
7741         * lib/strftime.c: Assume strftime() exists.
7742
7743 2006-06-29  Derek Price  <derek@ximbiot.com>
7744
7745         * modules/c-bs-a: Removed - \a is C89.
7746         * MODULES.html.sh: Remove c-bs-a.
7747
7748 2006-06-29  Bruno Haible  <bruno@clisp.org>
7749
7750         * modules/wcwidth (License): Change to LGPL.
7751
7752 2006-06-28  Simon Josefsson  <jas@extundo.com>
7753
7754         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
7755         on _WIN32.
7756
7757         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
7758         getnameinfo.
7759
7760 2006-06-28  Simon Josefsson  <jas@extundo.com>
7761
7762         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
7763
7764 2006-06-28  Simon Josefsson  <jas@extundo.com>
7765
7766         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
7767         functions there.  It will succeed on Windows XP, but on Windows
7768         2000 and (presumably) earlier, it will fail, and use the internal
7769         re-implementation.
7770         (use_win32_p): New function.
7771         (getaddrinfo): Use strtoul on servname, to support numeric ports.
7772         Support AI_NUMERICSERV to disable getservbyname.
7773         (getnameinfo): New function, only supports
7774         NI_NUMERICHOST|NI_NUMERICSERV for now.
7775
7776         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
7777         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
7778         getnameinfo.
7779
7780 2006-06-28  Eric Blake  <ebb9@byu.net>
7781
7782         * modules/wcwidth: New file.
7783         * modules/mbchar (Depends-on): Add wcwidth.
7784         * modules/mbswidth (Depends-on): Add wcwidth.
7785         * MODULES.html.sh: Add wcwidth.
7786
7787 2006-06-28  Eric Blake  <ebb9@byu.net>
7788
7789         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
7790         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
7791
7792 2006-06-28  Eric Blake  <ebb9@byu.net>
7793
7794         * lib/xvasprintf.h: Fix comments.
7795
7796 2006-06-28  Eric Blake  <ebb9@byu.net>
7797
7798         * lib/mbchar.h (wcwidth): Include wcwidth.h.
7799         * lib/mbswidth.c (wcwidth): Move from here...
7800         * lib/wcwidth.h: ...to this new file.
7801
7802 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7803
7804         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
7805
7806         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
7807         it's obsolete.
7808         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
7809
7810 2006-06-28  Derek R. Price  <derek@ximbiot.com>
7811
7812         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
7813         Autoconf 2.60 says this stuff was obsolete.
7814
7815 2006-06-28  Bruno Haible  <bruno@clisp.org>
7816
7817         * modules/wcwidth (Files): Add m4/wchar_t.m4.
7818
7819 2006-06-28  Bruno Haible  <bruno@clisp.org>
7820
7821         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
7822         gt_TYPE_WCHAR_T.
7823
7824 2006-06-28  Bruno Haible  <bruno@clisp.org>
7825
7826         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
7827         declaration for wcwidth.
7828         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
7829
7830 2006-06-28  Bruno Haible  <bruno@clisp.org>
7831
7832         * lib/mkdtemp.c [MINGW]: Include <io.h>.
7833         (mkdir): Define using _mkdir.
7834
7835 2006-06-28  Bruno Haible  <bruno@clisp.org>
7836
7837         * lib/getaddrinfo.h: Fix POSIX URL.
7838         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
7839         _WIN32.
7840         (use_win32_p): Make static.
7841         (getaddrinfo): Reject service name if it is empty or does not consist
7842         solely of decimal digits, or if its value is > 65535.
7843         (getnameinfo): Remove useless casts.
7844
7845 2006-06-27  Simon Josefsson  <jas@extundo.com>
7846
7847         * modules/sys_select: New file, suggested by Bruno Haible, Paul
7848         Eggert and Martin Lambers.
7849
7850 2006-06-27  Simon Josefsson  <jas@extundo.com>
7851
7852         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
7853         Eggert and Martin Lambers.
7854
7855 2006-06-27  Bruno Haible  <bruno@clisp.org>
7856
7857         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
7858         result to 0, not to empty.
7859         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
7860
7861 2006-06-27  Bruno Haible  <bruno@clisp.org>
7862
7863         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
7864
7865 2006-06-26  Simon Josefsson  <jas@extundo.com>
7866
7867         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
7868         present.
7869
7870 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
7871
7872         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
7873         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
7874         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
7875
7876 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
7877
7878         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
7879
7880 2006-06-26  Bruno Haible  <bruno@clisp.org>
7881
7882         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
7883
7884 2006-06-26  Bruno Haible  <bruno@clisp.org>
7885
7886         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
7887
7888 2006-06-26  Bruno Haible  <bruno@clisp.org>
7889
7890         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
7891         SGI C compiler in pre-C99 mode.
7892         Suggested by Mark D. Baushke and Larry Jones.
7893
7894 2006-06-26  Bruno Haible  <bruno@clisp.org>
7895
7896         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
7897         WCHAR_MAX.
7898         Reported by Mark D. Baushke and Larry Jones.
7899
7900 2006-06-26  Bruno Haible  <bruno@clisp.org>
7901
7902         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
7903         in pre-C99 mode.
7904         Suggested by Mark D. Baushke and Larry Jones.
7905
7906 2006-06-23  Simon Josefsson  <jas@extundo.com>
7907             Bruno Haible  <bruno@clisp.org>
7908
7909         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
7910         Emit mostlyclean-local rule.
7911         (func_emit_tests_Makefile_am): Likewise.
7912         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
7913
7914 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
7915
7916         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
7917
7918 2006-06-23  Bruno Haible  <bruno@clisp.org>
7919
7920         * tests/test-stdint.c: Update to match ISO C 99 Technical
7921         Corrigendum 1.
7922
7923 2006-06-23  Bruno Haible  <bruno@clisp.org>
7924
7925         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
7926
7927 2006-06-23  Bruno Haible  <bruno@clisp.org>
7928
7929         * lib/stdint_.h: Treat IRIX like OpenBSD.
7930
7931 2006-06-23  Bruno Haible  <bruno@clisp.org>
7932
7933         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
7934         ISO C 99 Technical Corrigendum 1.
7935
7936 2006-06-22  Simon Josefsson  <jas@extundo.com>
7937
7938         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
7939         MinGW.
7940
7941 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
7942
7943         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
7944         needed.  Some compiler complained about some of them.  Problem reported
7945         by Larry Jones in
7946         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
7947
7948 2006-06-21  Simon Josefsson  <jas@extundo.com>
7949
7950         * tests/test-getaddrinfo.c: New file.
7951
7952         * modules/getaddrinfo-tests: New file.
7953
7954         * MODULES.html.sh: Add inet_pton.
7955
7956         * modules/inet_pton: New file.
7957
7958 2006-06-21  Simon Josefsson  <jas@extundo.com>
7959
7960         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
7961         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
7962         of using the (limited) gnulib implementation on Windows XP.
7963
7964         * m4/inet_pton.m4: New file.
7965
7966 2006-06-21  Simon Josefsson  <jas@extundo.com>
7967
7968         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
7969         variable.
7970
7971         * lib/socket_.h: Don't define WINVER.
7972
7973         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
7974         slightly modified to work in gnulib.
7975
7976 2006-06-21  Simon Josefsson  <jas@extundo.com>
7977
7978         * doc/gnulib.texi (Windows sockets): Add.
7979
7980 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
7981
7982         * lib/read-file.c (fread_file): Start with buffer allocation of
7983         0 bytes rather than 1 byte; this simplifies the code.
7984         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
7985         code to free buffer and save/restore errno.
7986         (internal_read_file): Remove unused local.
7987
7988 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
7989
7990         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
7991         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
7992         Problem reported by Denis Excoffier in
7993         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
7994
7995 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7996
7997         * modules/sys_socket, modules/socklen: Include sys/types since
7998         FreeBSD 4.x's sys/socket.h needs it.
7999
8000 2006-06-19  Simon Josefsson  <jas@extundo.com>
8001
8002         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
8003
8004 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
8005
8006         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
8007
8008 2006-06-19  Bruno Haible  <bruno@clisp.org>
8009
8010         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
8011         and FULL_PATH_INTTYPES_H in angle brackets.
8012         Reported by Mark D. Baushke <mdb@gnu.org>.
8013
8014 2006-06-17  Eric Blake  <ebb9@byu.net>
8015
8016         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
8017         errno.
8018
8019 2006-06-17  Bruno Haible  <bruno@clisp.org>
8020
8021         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
8022         <sys/inttypes.h>.
8023
8024 2006-06-17  Bruno Haible  <bruno@clisp.org>
8025
8026         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
8027         whether errno is declared. Assume <errno.h> declares errno.
8028
8029 2006-06-17  Bruno Haible  <bruno@clisp.org>
8030
8031         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
8032
8033 2006-06-17  Bruno Haible  <bruno@clisp.org>
8034
8035         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
8036         problem on Solaris 2.5.1.
8037
8038 2006-06-16  Eric Blake  <ebb9@byu.net>
8039
8040         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
8041         * lib/unicodeio.c [!defined errno]: Likewise.
8042         * lib/strtol.c [!defined errno]: Likewise.
8043         * lib/strtod.c [!defined errno]: Likewise.
8044
8045 2006-06-15  Eric Blake  <ebb9@byu.net>
8046
8047         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
8048
8049 2006-06-15  Eric Blake  <ebb9@byu.net>
8050
8051         * config/srclist.txt (ssize_t.m4): Lose sync.
8052
8053 2006-06-15  Bruno Haible  <bruno@clisp.org>
8054
8055         * modules/stdint (Files): Include m4/full-header-path.m4,
8056         m4/size_max.m4, m4/wchar_t.m4.
8057         (Makefile.am): Many more substitutions.
8058         * modules/stdint-tests: New file.
8059         * tests/test-stdint.c: New file.
8060
8061 2006-06-15  Bruno Haible  <bruno@clisp.org>
8062
8063         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
8064         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
8065         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
8066         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
8067         gl_CHECK_TYPE_SAME): New macros.
8068
8069 2006-06-15  Bruno Haible  <bruno@clisp.org>
8070
8071         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
8072
8073 2006-06-15  Bruno Haible  <bruno@clisp.org>
8074
8075         * lib/stdint_.h: Rewritten to be fully auto-configured.
8076         Fixes bug on HP-UX/IA64.
8077
8078 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
8079
8080         * lib/getdate.y (__attribute__): Don't define if already defined.
8081         Problem reported by Larry Jones.
8082         * lib/utimens.c (__attribute__): Likewise.
8083
8084 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8085
8086         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
8087         reported by Andreas Schwab.
8088
8089 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8090             Bruno Haible  <bruno@clisp.org>
8091
8092         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8093         check for the declaration of strnlen and a run test that exposes the
8094         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8095         rpl_strndup.
8096
8097 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8098             Bruno Haible  <bruno@clisp.org>
8099
8100         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8101
8102 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8103
8104         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8105         compile test, for Tru64 4.0D.
8106
8107 2006-05-28  Karl Berry  <karl@gnu.org>
8108
8109         * config/srclist.txt (printf-args.c): lose sync.
8110
8111 2006-05-26  Martin Lambers  <marlam@marlam.de>
8112
8113         * lib/getpass.c: Updates the test for the native W32 API, and adds
8114         missing includes, thus fixing compilation warnings.
8115
8116 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8117
8118         * lib/exclude.c (exclude_fnmatch): New function.
8119         (excluded_file_name): Call exclude_fnmatch.
8120         * lib/exclude.h (excluded_file_name): New prototype
8121
8122 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8123
8124         * lib/tempname.c (small_open, large_open): New macros.
8125         (__open, __open64) [!_LIBC]: Remove.
8126         (__gen_tempname): Use small_open and large_open instead of __open
8127         and __open64.  This fixes a portability bug on HP-UX 11.11i
8128         reported by Simon Wing-Tang in
8129         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8130
8131 2006-05-24  Bruno Haible  <bruno@clisp.org>
8132
8133         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8134         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8135         Reported by Thorsten Maerz <torte@netztorte.de> via
8136         Aaron Stone <aaron@serendipity.cx>.
8137
8138 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8139
8140         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8141         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8142         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8143         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8144         not really conditional on the cache.
8145         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8146
8147 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8148
8149         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8150         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8151         (my_usleep): Don't mishandle maximum value.
8152
8153 2006-05-19  Jim Meyering  <jim@meyering.net>
8154
8155         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
8156
8157 2006-05-17  Bruno Haible  <bruno@clisp.org>
8158
8159         Cygwin portability.
8160         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
8161
8162 2006-05-17  Bruno Haible  <bruno@clisp.org>
8163
8164         * lib/stdint_.h: Fix recognition of Cygwin.
8165
8166 2006-05-15  Bruno Haible  <bruno@clisp.org>
8167
8168         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
8169         on libtool patch by Ralf Wildenhues.
8170
8171 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8172
8173         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
8174         test for C99 conformance; (bool) 0.5 is an integer constant
8175         expression, but (bool) -0.5 is not.  Problem reported by Fedor
8176         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
8177
8178 2006-05-11  Simon Josefsson  <jas@extundo.com>
8179
8180         * m4/xvasprintf.m4: Fix obvious typo.
8181
8182 2006-05-11  Jim Meyering  <jim@meyering.net>
8183
8184         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
8185         James Lemley.
8186
8187 2006-05-10  Simon Josefsson  <jas@extundo.com>
8188
8189         * lib/md4.c: Typo fix, update copyright years.
8190         (K1, K2): Don't use L because it turn computations into 64-bit on
8191         64-bit platforms.
8192
8193 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
8194
8195         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
8196         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
8197         unwanted sign propagation, e.g., on hosts with 64-bit int.
8198         There still are some problems with reeelly weird theoretical hosts
8199         (e.g., 33-bit int) but it's not worth worrying about now.
8200         * lib/sha1.c (rol): Likewise.
8201         (K1, K2, K3, K4): Remove unnecessary L suffix.
8202
8203 2006-05-10  Bruno Haible  <bruno@clisp.org>
8204
8205         * lib/des.c: Cast to avoid warnings.
8206
8207 2006-05-09  Bruno Haible  <bruno@clisp.org>
8208
8209         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
8210         (Depends-on): Depend also on xsize, stdarg.
8211         (configure.ac): Add gl_XVASPRINTF.
8212
8213 2006-05-09  Bruno Haible  <bruno@clisp.org>
8214
8215         * m4/xvasprintf.m4: New file.
8216
8217 2006-05-09  Bruno Haible  <bruno@clisp.org>
8218
8219         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
8220         (EOVERFLOW): Define fallback value.
8221         (xstrcat): New function.
8222         (xvasprintf): Recognize the special case of a string concatenation.
8223
8224 2006-05-08  Eric Blake  <ebb9@byu.net>
8225
8226         * gnulib-tool (func_version): Base copyright year on CVS date.
8227         (func_emit_copyright_notice): New function.
8228         (func_emit_lib_Makefile_am): Use it.
8229         (func_emit_tests_Makefile_am): Likewise.
8230         (func_import): Likewise.
8231
8232 2006-05-08  Bruno Haible  <bruno@clisp.org>
8233
8234         * modules/stdarg: New file.
8235         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
8236
8237 2006-05-08  Bruno Haible  <bruno@clisp.org>
8238
8239         * m4/stdarg.m4: New file, from GNU gettext.
8240
8241 2006-05-08  Bruno Haible  <bruno@clisp.org>
8242
8243         * config/srclist.txt (build-aux/config.rpath): different from latest
8244         release.
8245
8246 2006-05-08  Bruno Haible  <bruno@clisp.org>
8247
8248         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
8249
8250 2006-05-05  Jim Meyering  <jim@meyering.net>
8251
8252         * m4/warning.m4: New file, derived from bison's file by the same name.
8253
8254 2006-05-03  Bruno Haible  <bruno@clisp.org>
8255
8256         * lib/stdint_.h: Shorter URL.
8257         * lib/inttypes.h: Likewise.
8258
8259 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8260
8261         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
8262
8263 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8264
8265         * lib/verify.h: Document the internals better.  Most of this change
8266         was written by Bruno Haible.
8267
8268 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
8269
8270         * doc/verify.texi: New file, partly based on a proposal by
8271         Bruno Haible.
8272
8273 2006-05-02  Bruno Haible  <bruno@clisp.org>
8274
8275         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
8276         test from here...
8277         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
8278
8279 2006-04-29  Bruno Haible  <bruno@clisp.org>
8280
8281         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
8282         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
8283
8284 2006-04-29  Bruno Haible  <bruno@clisp.org>
8285
8286         * gnulib-tool: Make --update option actually work.
8287
8288 2006-04-29  Bruno Haible  <bruno@clisp.org>
8289
8290         * doc/gcd.texi: New file.
8291         * doc/gnulib.texi: Include it.
8292
8293 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
8294
8295         * lib/getdate.y (get_date): When adding relative date, start with the
8296         initial time, not with the result of the first mktime call.
8297
8298 2006-04-25  Bruno Haible  <bruno@clisp.org>
8299
8300         * gnulib-tool (func_import): Output the include directives in three
8301         blocks, sorted separately.
8302         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8303
8304 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8305
8306         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
8307         to define main with arguments, for C++.  Reported by Eric Blake.
8308         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
8309         Prefer 'int main ()' to 'int main (void)', for C++.
8310         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
8311         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
8312         for 'main', for C99 and C++.
8313
8314 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
8315
8316         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
8317         Don't assume that exit status -1 is valid.
8318         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8319         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
8320         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
8321         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
8322         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
8323         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
8324         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
8325         functions can be used without declaring them, or that you can
8326         exit with status -1.
8327         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
8328
8329 2006-04-24  Karl Berry  <karl@gnu.org>
8330
8331         * config/srclist.txt (longdouble.m4): sync lost.
8332
8333 2006-04-24  Eric Blake  <ebb9@byu.net>
8334
8335         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
8336
8337 2006-04-24  Bruno Haible  <bruno@clisp.org>
8338
8339         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
8340         poll() implementation in AIX.
8341         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8342
8343 2006-04-24  Bruno Haible  <bruno@clisp.org>
8344
8345         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
8346         assigned exactly once.
8347
8348 2006-04-23  Claudio Fontana  <claudio@gnu.org>
8349             Bruno Haible  <bruno@clisp.org>
8350
8351         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
8352         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
8353         for AM_CPPFLAGS.
8354
8355 2006-04-23  Bruno Haible  <bruno@clisp.org>
8356
8357         * modules/copy-file: Depend on unistd.
8358         * modules/execute: Likewise.
8359         * modules/fatal-signal: Likewise.
8360         * modules/findprog: Likewise.
8361         * modules/mkdtemp : Likewise.
8362         * modules/pipe: Likewise.
8363         * modules/wait-process: Likewise.
8364
8365 2006-04-23  Bruno Haible  <bruno@clisp.org>
8366
8367         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
8368         condition was already detected.
8369         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8370
8371 2006-04-23  Bruno Haible  <bruno@clisp.org>
8372
8373         * lib/copy-file.c: Include <unistd.h> unconditionally.
8374         * lib/execute.c: Likewise.
8375         * lib/fatal-signal.c: Likewise.
8376         * lib/findprog.c: Likewise.
8377         * lib/mkdtemp.c: Likewise.
8378         * lib/pipe.h: Likewise.
8379         * lib/pipe.c: Likewise.
8380         * lib/wait-process.h: Likewise.
8381
8382 2006-04-23  Bruno Haible  <bruno@clisp.org>
8383
8384         * gnulib-tool (func_usage): Fix --import description. Document
8385         --update.
8386         (func_import): Create temporary file in a temporary directory, if
8387         --dry-run is specified. Silence errors from 'grep' when there are no
8388         m4 files in $m4dir.
8389         (func_create_testdir): Silence errors from 'grep' when there are no
8390         m4 files in $m4dir.
8391         Reported by Karl Berry <karl@freefriends.org>.
8392
8393 2006-04-20  Bruno Haible  <bruno@clisp.org>
8394
8395         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
8396         one argument, so that the code will be portable to Autoconf 2.60.
8397         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
8398         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8399         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
8400
8401 2006-04-19  Derek Price  <derek@ximbiot.com>
8402             Eric Blake  <ebb9@byu.net>
8403
8404         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
8405         rather than "/full/path.h".  Update comment to match.  Shorten &
8406         generalize m4_translit call via AS_TR_CPP.
8407
8408 2006-04-19  Derek Price  <derek@ximbiot.com>
8409             Eric Blake  <ebb9@byu.net>
8410
8411         * lib/inttypes.h: Correct grammar in comment.
8412
8413 2006-04-18  Derek Price  <derek@ximbiot.com>
8414             Paul Eggert  <eggert@cs.ucla.edu>
8415
8416         * modules/inttypes: New file.
8417         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
8418
8419 2006-04-18  Derek Price  <derek@ximbiot.com>
8420             Paul Eggert  <eggert@cs.ucla.edu>
8421
8422         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
8423         New files.
8424
8425 2006-04-18  Derek Price  <derek@ximbiot.com>
8426             Paul Eggert  <eggert@cs.ucla.edu>
8427
8428         * lib/inttypes.h: New file.
8429         * lib/strtoimax.c: Assume <inttypes.h>.
8430
8431 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
8432
8433         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
8434         isn't mounted.  Problem reported by Kir Kolyshkin.
8435
8436 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
8437
8438         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
8439         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
8440         Derek R. Price.
8441         * lib/regex.h (RE_DUP_MAX): Update comment to match current
8442         implementation.
8443
8444 2006-04-12  Eric Blake  <ebb9@byu.net>
8445
8446         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
8447         is now done automatically by the corresponding Autoconf macro.
8448
8449 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8450
8451         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
8452         time_r.h.
8453
8454 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8455
8456         Merge regex changes from libc, removing some of our
8457         POSIX-conformance changes that were rejected and redoing them in a
8458         less-intrusive way.
8459
8460         * lib/regcomp.c (re_compile_internal, init_dfa):
8461         Length arg is now size_t, not Idx.  All uses changed.
8462         (peek_token): Forward decl now says internal_function.
8463         (__re_error_msgid, __re_error_msgid_idx):
8464         Now static rather than extern with attribute_hidden.
8465         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
8466         For some reason libc prefers K&R style defns for external functions.
8467         (regerror) [!defined _LIBC]: Likewise.
8468         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
8469         (seek_collating_symbol_entry, lookup_collation_sequence_value):
8470         (build_range_exp, build_collating_symbol):
8471         Use K&R-style defn.
8472         (re_compile_fastmap): Use '\0' to memset, not 0.
8473         (utf8_sb_map): Make the calculations more obvious.
8474         (init_dfa, parse_bracket_exp, build_charclass_op):
8475         Call calloc and cast result, as glibc does.
8476         (init_word_char, fetch_token, peek_token, peek_token_bracket):
8477         (build_range_exp, build_collating_symbol):
8478         Now internal functions.
8479
8480         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
8481
8482         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
8483         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
8484         Don't depend on VMS; depend on __VMS instead, for POSIX
8485         namespace cleanness.
8486         (regoff_t): Define to ssize_t, not long int.
8487
8488         Remove the REG_ macros named below.  Instead, make the old names
8489         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
8490         __USE_GNU_REGEX.
8491         (REG_BACKSLASH_ESCAPE_IN_LISTS):
8492         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
8493         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
8494         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
8495         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
8496         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
8497         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
8498         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
8499         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
8500         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
8501         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
8502         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
8503         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
8504         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
8505         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
8506         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
8507         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
8508         (REG_NREGS):
8509         Remove.  All uses replaced by the old RE_* names.
8510         (RE_BACKSLASH_ESCAPE_IN_LISTS):
8511         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
8512         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
8513         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
8514         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
8515         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
8516         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
8517         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
8518         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
8519         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
8520         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
8521         Don't bother having these macros be independent of each others'
8522         values, since they no longer exist in the POSIX name space.
8523
8524         Rename the following member names back to their old names,
8525         unless !__USE_GNU_REGEX.  All uses changed back.
8526         (buffer): Renamed from re_buffer.
8527         (allocated): Renamed from re_allocated.
8528         (used): Renamed from re_used.
8529         (syntax): Renamed from re_syntax.
8530         (fastmap): Renamed from re_fastmap.
8531         (translate): Renamed from re_translate.
8532         (can_be_null): Renamed from re_can_be_null.
8533         (regs_allocated): Renamed from re_regs_allocated.
8534         (fastmap_accurate): Renamed from re_fastmap_accurate.
8535         (no_sub): Renamed from re_no_sub.
8536         (not_bol): Renamed from re_not_bol.
8537         (not_eol): Renamed from re_not_eol.
8538         (newline_anchor): Renamed from re_newline_anchor.
8539         (num_regs): Renamed from rm_num_regs.
8540         (start): Renamed from rm_start.
8541         (end): Renamed from rm_end.
8542
8543         (free_state): Move up a bit.
8544
8545         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
8546         #define to be empty.
8547         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
8548         when that is what is intended.
8549         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
8550         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
8551         (MAX): New macro.
8552         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
8553         All uses changed back to re_malloc, etc.  It's now the caller's
8554         responsibility to check for overflow; all callers changed.
8555         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
8556         (re_x2nrealloc): Remove.
8557         (free_state): Remove decl.
8558
8559         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
8560         (re_set_registers, re_exec):
8561         Use K&R-style defn.
8562
8563         2006-01-31  Roland McGrath  <roland@redhat.com>
8564
8565         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
8566         Reported by Mike Frysinger <vapier@gentoo.org>.
8567
8568         2006-01-15  Andreas Jaeger  <aj@suse.de>
8569
8570         [BZ #1950]
8571         * lib/regex_internal.c (re_string_reconstruct): Adjust for
8572         build_wcs_upper_buffer change.
8573         (build_wcs_upper_buffer): Change return type.
8574
8575         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
8576
8577         * lib/regex_internal.h: Include <stdint.h> if available.
8578
8579         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
8580
8581         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
8582
8583         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
8584
8585         * lib/regcomp.c: Adjust for changed secondary hash function.
8586
8587         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
8588
8589         * lib/regex.h: Pretty printing.
8590         Clean up namespace a bit.
8591
8592         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
8593
8594         * lib/regexec.c (update_cur_sifted_state, check_arrival,
8595         check_arrival_add_next_nodes): Avoid using uninitialized variable.
8596
8597         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8598                     Ulrich Drepper  <drepper@redhat.com>
8599
8600         [BZ #1302]
8601         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
8602         changed.
8603         (bitset_word_t): Renamed from bitset_word.  All uses changed.
8604
8605         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
8606
8607         [BZ #281]
8608         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
8609         * lib/regcomp.c: Remove unnecessary uses of
8610         unsigned RE_TRANSLATE_TYPE.
8611         * lib/regex_internal.h: Likewise.
8612         * lib/regex_internal.c: Likewise.
8613         * lib/regexec.c: Likewise.
8614         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
8615
8616         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
8617
8618         * lib/regexec.c (find_recover_state): Remove unnecessary
8619         initialization.
8620         (transit_state_bkref): Make DFA a const pointer.
8621         (get_subexp): Likewise.
8622         (check_arrival): Likewise.
8623         (update_cur_sifted_state): Likewise.
8624         (re_search_internal): Likewise.
8625         (prune_impossible_nodes): Likewise.
8626         (acquire_init_state_context): Likewise.
8627         (proceed_next_node): Likewise.
8628         (set_regs): Likewise.
8629         (free_fail_stack_return): Likewise.
8630         (check_arrival_expand_ecl): Mark DFA parameter as const.
8631         (check_arrival_expand_ecl_sub): Likewise.
8632         (check_subexp_limits): Likewise.
8633         (sub_epsilon_src_nodes):  Likewise.
8634         (add_epsilon_src_nodes):  Likewise.
8635         (merge_state_array): Likewise.
8636         (update_regs): Likewise.
8637         (build_trtable): Likewise.
8638         (sift_states_backward): Mark MCTX parameter as const.
8639         (build_sifted_states): Likewise.
8640         (update_cur_sifted_state): Likewise.
8641         (sift_states_mkref): Likewise.
8642         (check_arrival_expand_ecl): Mark eclosure as const.
8643         (check_dst_limits_calc_pos_1): Likewise.
8644         * lib/regex_internal.h (re_match_context_t): Make dfa a const
8645         pointer.
8646
8647         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
8648
8649         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
8650         (transit_state_sb): Likewise.
8651         (transit_state_mb): Likewise.
8652         (sift_states_iter_mb): Likewise.
8653         (check_arrival_add_next_nodes): Likewise.
8654         (check_node_accept_bytes): Change first parameter to pointer-to-const.
8655         [_LIBC] (re_search_2_stub): Use mempcpy.
8656
8657         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
8658         mbrtowc for very simple UTF-8 case.
8659
8660         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
8661         a pointer-to-const.
8662         (re_acquire_state_context): Likewise.
8663         * lib/regex_internal.h: Adjust prototypes.
8664
8665         * lib/regex.c: Prevent using C++ compilers.
8666
8667         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
8668         (re_acquire_state_context): Likewise.
8669
8670 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8671
8672         * modules/regex (Depends-on): Add ssize_t.
8673
8674 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8675
8676         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
8677         translation table.
8678
8679 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
8680
8681         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
8682
8683 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
8684             Bruno Haible  <bruno@clisp.org>
8685
8686         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
8687         <sys/types.h> and <inttypes.h>.
8688
8689 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8690
8691         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
8692         `__error_t_defined', so argp.h will not typedef the former.
8693
8694 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
8695
8696         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
8697         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
8698         glibc names.  Even if glibc is changed to conform to POSIX, the
8699         traditional names will be available anyway, since regex depends on
8700         the extensions module.  Also, fix a longstanding typo in the
8701         implementation of Spencer ERE test #75 from grep 2.3.  Problems
8702         reported by Emanuele Giaquinta.  Also, change sense of cached
8703         variable, so that the message makes sense.
8704
8705 2006-03-24  Simon Josefsson  <jas@extundo.com>
8706
8707         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
8708         including some doc fixes.
8709         (base64_encode_alloc): Fix +1 bug on allocation failures.
8710
8711 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8712
8713         * lib/base64.c (base64_encode): Do not read past end of array with
8714         unsanitized input on systems with CHAR_BIT > 8.
8715
8716 2006-03-24  Eric Blake  <ebb9@byu.net>
8717
8718         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
8719
8720 2006-03-22  Karl Berry  <karl@gnu.org>
8721
8722         * config/srclist.txt (*setenv.[ch]): get from coreutils.
8723         * config/srclistvars.sh (COREUTILS): new var.
8724
8725 2006-03-17  Jim Meyering  <jim@meyering.net>
8726
8727         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
8728         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
8729
8730 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8731
8732         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
8733         no longer needs it.  Instead, check that regoff_t is as least
8734         as wide as ptrdiff_t.
8735
8736         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
8737         so that our regex.h stays compatible with the installed regex.
8738         This is helpful for installers who configure --without-included-regex.
8739         Problem reported by Emanuele Giaquinta.
8740
8741 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
8742
8743         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
8744         Typedef to long int, not to off_, as POSIX will likely change
8745         in that direction.
8746
8747 2006-03-15  Eric Blake  <ebb9@byu.net>
8748
8749         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
8750
8751 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
8752
8753         * lib/argp-help.c (validate_uparams): Fix typo
8754         * lib/argp-parse.c (argp_default_options): Consistently begin help
8755         messages with a lowercase letter.
8756
8757 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
8758
8759         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
8760         overrun buffers and shouldn't be used (much as gets shouldn't be
8761         used).
8762         * lib/time_r.c (asctime_r, ctime_r): Likewise.
8763
8764 2006-03-08  Simon Josefsson  <jas@extundo.com>
8765
8766         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
8767         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8768
8769 2006-03-08  Simon Josefsson  <jas@extundo.com>
8770
8771         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
8772         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8773
8774 2006-03-08  Simon Josefsson  <jas@extundo.com>
8775
8776         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
8777         signal that configure disabled the device.
8778
8779 2006-03-08  Simon Josefsson  <jas@extundo.com>
8780
8781         * build-aux/maint.mk: Fix refresh-po, to handle no translated
8782         languages.
8783
8784 2006-03-07  Simon Josefsson  <jas@extundo.com>
8785
8786         * modules/getopt (Depends-on): Add unistd.
8787
8788         * modules/unistd: New file.
8789
8790 2006-03-07  Simon Josefsson  <jas@extundo.com>
8791
8792         * modules/gc-random: New file.
8793
8794 2006-03-07  Simon Josefsson  <jas@extundo.com>
8795
8796         * m4/unistd_h.m4: New file.
8797
8798 2006-03-07  Simon Josefsson  <jas@extundo.com>
8799
8800         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
8801         test to be side-effect free by storing the result in the cache
8802         variable gl_cv_lib_readline, and moving the assignment of
8803         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
8804         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8805
8806 2006-03-07  Simon Josefsson  <jas@extundo.com>
8807
8808         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
8809         error on missing devices (the functions will return an error).
8810
8811         * m4/gc.m4: Move random stuff to gc-random.m4
8812
8813 2006-03-07  Simon Josefsson  <jas@extundo.com>
8814
8815         * lib/unistd_.h: New file.
8816
8817 2006-03-07  Simon Josefsson  <jas@extundo.com>
8818
8819         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
8820
8821 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8822
8823         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
8824         Problem reported by Juan Manuel Guerrero.
8825
8826 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8827
8828         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
8829         the unistd module.
8830         * lib/getlogin_r.c: Likewise.
8831         * lib/getlogin_r.h: Likewise.
8832         * lib/glob.c: Likewise.
8833         * lib/pagealign_alloc.c: Likewise.
8834         * lib/unistd_.h: Remove; no longer needed.
8835
8836 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
8837
8838         * MODULES.html.sh (Support for systems lacking POSIX:2001):
8839         Add unistd.
8840         * modules/c-stack (Depends-on): Add unistd.
8841         * modules/getlogin_r: Likewise.
8842         * modules/glob: Likewise.
8843         * modules/pagealign_alloc: Likewise.
8844         * modules/unistd (Files): Remove lib/unistd_.h.
8845         (EXTRA_DIST): Remove.
8846         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
8847         need unistd_.h.
8848         (MOSTLYCLEANFILES): Remove unistd.h-t.
8849
8850 2006-03-03  Simon Josefsson  <jas@extundo.com>
8851
8852         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
8853
8854 2006-03-03  Simon Josefsson  <jas@extundo.com>
8855
8856         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
8857         libidn and bison.
8858
8859 2006-03-03  Simon Josefsson  <jas@extundo.com>
8860
8861         * build-aux/maint.mk: Add indent target.
8862
8863 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
8864
8865         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
8866         our replacement poll.h in any case, to avoid a differing
8867         declaration from a system header.  Seen on AIX.
8868
8869 2006-03-01  Simon Josefsson  <jas@extundo.com>
8870
8871         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
8872         <kasal@ucw.cz>.
8873
8874 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8875
8876         * modules/gettime (Depends-on): Add extensions module.
8877         * modules/nanosleep (Depends-on): Likewise.
8878         * modules/settime (Depends-on): Likewise.
8879
8880 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
8881
8882         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
8883         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
8884         pedantically.
8885         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
8886         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
8887
8888         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
8889         not "==".  Reported by Ralf Wildenhues.
8890
8891 2006-03-01  Karl Berry  <karl@gnu.org>
8892
8893         * doc/Copyright/request-*: new files, synced from gnuorg.
8894
8895 2006-03-01  Karl Berry  <karl@gnu.org>
8896
8897         * config/srclist.txt (Copyright/*): new entries.
8898
8899 2006-02-28  Simon Josefsson  <jas@extundo.com>
8900
8901         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
8902
8903 2006-02-27  Simon Josefsson  <jas@extundo.com>
8904
8905         * lib/base64.h: Indent #define's.  From Jim Meyering
8906         <jim@meyering.net>.
8907
8908 2006-02-27  Jim Meyering  <jim@meyering.net>
8909
8910         Revert the change of 2006-02-24, so these files can continue
8911         to be sync'd from gettext.
8912         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
8913         of `config.h'.
8914
8915 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
8916
8917         * modules/intprops: New file.
8918         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
8919         Add intprops.
8920         * modules/getloadavg (Files): Remove lib/intprops.h.
8921         (Depends-on): Add intprops.
8922         * modules/human: Likewise.
8923         * modules/inttostr: Likewise.
8924         * modules/openat: Likewise.
8925         * modules/sig2str: Likewise.
8926         * modules/userspec: Likewise.
8927         * modules/utimecmp: Likewise.
8928         * modules/xnanosleep: Likewise.
8929         * modules/xstrtol: Likewise.
8930
8931 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
8932
8933         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
8934         * modules/lock-tests (TESTS): Use $(EXEEXT).
8935         * modules/tls-tests: Likewise.
8936         * modules/argp-tests: Likewise.
8937         (check_PROGRAMS): New var, replacing...
8938         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
8939
8940 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8941
8942         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
8943         `config.h'.
8944
8945 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
8946
8947         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
8948
8949 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8950
8951         Sync from coreutils.
8952         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
8953         gl_CHDIR_SAFER.
8954
8955 2006-02-22  Jim Meyering  <jim@meyering.net>
8956
8957         Sync from coreutils.
8958         * m4/chdir-safer.m4: New file.
8959
8960 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
8961
8962         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
8963         AT_FDCWD exceeds INT_MAX.
8964         * lib/openat.h (AT_FDCWD): Likewise.
8965
8966 2006-02-17  Eric Blake  <address@hidden>
8967
8968         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
8969
8970 2006-02-16  Simon Josefsson  <jas@extundo.com>
8971
8972         * modules/getaddrinfo (Depends-on): Add sys_socket.
8973
8974 2006-02-15  Simon Josefsson  <jas@extundo.com>
8975
8976         * build-aux/maint.mk: Add dsyntax-check rule.
8977
8978 2006-02-15  Eric Blake  <ebb9@byu.net>
8979
8980         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
8981         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
8982         'present but cannot compile' warnings on cygwin.
8983         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
8984         use ws2tcpip.h if sys/socket.h works.
8985         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
8986         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
8987
8988 2006-02-14  Simon Josefsson  <jas@extundo.com>
8989
8990         * modules/maintainer-makefile (Files): Rename.
8991
8992         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
8993         and (the local) Makefile.cfg to maint-cfg.mk.
8994
8995         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
8996         to the latter.
8997
8998         * modules/maintainer-makefile: New module.
8999
9000         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
9001         severaly stripped to make it possible to build it up from scratch
9002         with reliable tests.
9003
9004         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
9005         fixes to permit overriding the default actions when configure and
9006         makefile are not available.
9007
9008 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
9009
9010         Sync from coreutils.
9011         * modules/lstat (Depends-on): Don't depend on xalloc.
9012         (License): Change from GPL to LGPL, since this is now simply a
9013         replacement for a libc function.
9014
9015 2006-02-14  Jim Meyering  <jim@meyering.net>
9016
9017         Sync from coreutils.
9018
9019         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
9020         failure on deficient systems, and simplify gnulib lgpl dependencies.
9021         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
9022         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
9023
9024         * lib/xalloc-die.c: Remove unused definition of N_.
9025
9026 2006-02-14  Jim Meyering  <jim@meyering.net>
9027
9028         Sync from coreutils.
9029         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
9030         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
9031         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
9032         double-quote uses of that variable, to accommodate the rare case in
9033         which getmntent is available in none of the libraries checked.  This
9034         happens at least on FreeBSD 5.0.
9035
9036 2006-02-13  Simon Josefsson  <jas@extundo.com>
9037
9038         * gnulib-tool (Usage): Fix --import, from
9039         karl@freefriends.org (Karl Berry).
9040
9041 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9042
9043         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
9044
9045 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
9046
9047         * lib/argp-namefrob.h: Restore changes accidentally lost during the
9048         "autoupdate" on 2005-12-12.
9049
9050 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9051
9052         * modules/closeout (Depends-on): Remove atexit.
9053
9054 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9055
9056         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
9057         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
9058
9059 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
9060
9061         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
9062         __EXTENSIONS__ if this causes compilation to fail.  Problem
9063         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
9064         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
9065
9066 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
9067
9068         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
9069         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
9070         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
9071         All uses changed.
9072
9073 2006-01-26  Simon Josefsson  <jas@extundo.com>
9074
9075         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
9076         prototype is visible on mingw32.
9077
9078         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
9079         for mingw32.
9080
9081         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
9082         mingw32).
9083
9084 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9085
9086         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
9087         attempt to open for write; this always fails, at least on POSIX
9088         hosts.  This reinstates the 2006-01-09 change, which was
9089         inadvertently removed.
9090
9091 2006-01-26  Bruno Haible  <bruno@clisp.org>
9092
9093         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9094         Reported by Paul Eggert.
9095
9096 2006-01-26  Bruno Haible  <bruno@clisp.org>
9097             Paul Eggert  <eggert@cs.ucla.edu>
9098
9099         * lib/stdbool_.h (_Bool)
9100         [(! (defined __cplusplus || defined __BEOS__)
9101           && !defined __GNUC__
9102           && !(defined __HP_cc || defined __xlc__
9103                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9104                || defined __sgi))]:
9105         #define to signed char in these cases too; this simplifies
9106         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9107         etc., separately) and makes it more conservative.
9108
9109 2006-01-25  Simon Josefsson  <jas@extundo.com>
9110
9111         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9112         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9113         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9114
9115 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9116
9117         * lib/argp-namefrob.h: Bugfix. Remove stray #
9118
9119 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9120
9121         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9122         so that we test the test.
9123         Check for yet another HP-UX cc bug involving *bool |= bool.
9124
9125 2006-01-25  Karl Berry  <karl@gnu.org>
9126
9127         * config/srclist.txt (vasnprintf.c): sync lost.
9128
9129 2006-01-25  Jim Meyering  <jim@meyering.net>
9130
9131         Sync from the stable (b5) branch of coreutils:
9132
9133         * lib/fts.c (fts_children): Don't let close() clobber errno from
9134         failed fchdir().
9135
9136         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9137         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9138         a dangling symlink.  That can also happen at least for ELOOP.
9139         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9140         FYI, this bug predates the inclusion of fts.c in coreutils.
9141
9142         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9143         in their own block, so pre-c99 compilers don't object.
9144
9145         Avoid the double-free (first in fts_read, second in fts_close) that
9146         would occur when an `active' directory is made inaccessible (e.g.,
9147         via chmod a-x) during a traversal.
9148         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9149         before returning.  Reproduce this failure by
9150         mkdir -p a/b; cd a; chmod a-x . b
9151         Reported by Stavros Passas.
9152
9153 2006-01-25  Jim Meyering  <jim@meyering.net>
9154
9155         * lib/fileblocks.c: Remove more useless parentheses.
9156         * lib/readutmp.h: Likewise.
9157
9158 2006-01-25  Bruno Haible  <bruno@clisp.org>
9159
9160         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
9161         warnings.
9162         Reported by Paul Eggert.
9163
9164 2006-01-25  Bruno Haible  <bruno@clisp.org>
9165
9166         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
9167         rid of a trap command. For Solaris sh.
9168         Reported by Mark D. Baushke <mdb@gnu.org>.
9169
9170 2006-01-24  Simon Josefsson  <jas@extundo.com>
9171
9172         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
9173         Bruno.
9174
9175 2006-01-24  Karl Berry  <karl@gnu.org>
9176
9177         * config/srclist.txt (argp-namefrob.h): sync lost.
9178
9179 2006-01-24  Jim Meyering  <jim@meyering.net>
9180
9181         * modules/openat (Files): Add lib/intprops.h.
9182         From Mark D. Baushke.
9183
9184 2006-01-24  Jim Meyering  <jim@meyering.net>
9185
9186         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
9187         Reported by Mark D. Baushke.
9188
9189 2006-01-24  Jim Meyering  <jim@meyering.net>
9190
9191         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
9192
9193 2006-01-24  Bruno Haible  <bruno@clisp.org>
9194
9195         * modules/strnlen (Maintainer): Change from glibc to all.
9196
9197 2006-01-24  Bruno Haible  <bruno@clisp.org>
9198
9199         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
9200         Patch by Paul Eggert.
9201
9202 2006-01-24  Bruno Haible  <bruno@clisp.org>
9203
9204         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
9205         already has it.
9206         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
9207         2005-11-26.
9208
9209         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
9210         'signed char' to avoid problems with the built-in _Bool type.
9211         Reported by Paul Eggert on 2005-11-26.
9212
9213 2006-01-24  Bruno Haible  <bruno@clisp.org>
9214
9215         * gnulib-tool (func_import): Avoid constructing complicated sed
9216         expressions inside backquote.
9217         Report and solution by Mark D. Baushke <mdb@gnu.org>.
9218
9219 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
9220
9221         These changes imported from libc.
9222         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
9223         test and two separate function calls.
9224         * lib/strndup.c (__strndup): Add libc_hidden_def.
9225
9226 2006-01-23  Simon Josefsson  <jas@extundo.com>
9227
9228         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
9229         Remove the test_*_SOURCES variable: automake infers it by default.
9230         * modules/tls-tests: Likewise.
9231
9232 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9233
9234         Work around porting bugs reported by Dieter in
9235         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
9236         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
9237         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
9238         Include "getopt.h" first, to check interface.
9239         (getenv): Declare only if defined HAVE_DECL_GETENV &&
9240         !HAVE_DECL_GETENV.
9241         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
9242         (__strndup): Revert to K&R-style function dfns, the glibc style.
9243         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
9244         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
9245         Include strnlen.h first, to get prototype properly.
9246         (strnlen): Renamed from __strnlen.
9247         Remove weak alias.
9248
9249 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9250
9251         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
9252
9253 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
9254
9255         * config/srclist.txt: Adjust to reflect glibc reorganization.
9256         This affects only comments.
9257
9258 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
9259
9260          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
9261          Reported by Bruce Korb <bkorb@gnu.org>.
9262
9263 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
9264
9265         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
9266         to pacify gcc -Wswitch-default.
9267
9268 2006-01-22  Bruno Haible  <bruno@clisp.org>
9269
9270         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
9271         temporary buffer for sprintf, take into account the precision also
9272         for 'd', 'i', 'u', 'o', 'x', 'X'.
9273
9274 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9275
9276         * modules/argp-tests: New module
9277         * tests/test-argp.c: New file
9278         * tests/test-argp-2.sh: New file
9279
9280 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
9281
9282         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
9283         (__argp_base_name): Removed
9284         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
9285         typo.
9286         (__argp_base_name): Provide macro definition or extern declaration
9287         depending on the configuration
9288
9289 2006-01-20  Simon Josefsson  <jas@extundo.com>
9290
9291         * modules/inet_ntop (Depends-on): Depend on sys_socket.
9292
9293 2006-01-20  Simon Josefsson  <jas@extundo.com>
9294
9295         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
9296
9297 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9298
9299         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
9300         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
9301         Suggested by Bruno Haible.
9302
9303 2006-01-20  Karl Berry  <karl@gnu.org>
9304
9305         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
9306         until changes propagate, I guess.
9307
9308 2006-01-19  Simon Josefsson  <jas@extundo.com>
9309
9310         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
9311
9312 2006-01-19  Simon Josefsson  <jas@extundo.com>
9313
9314         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
9315
9316 2006-01-19  Simon Josefsson  <jas@extundo.com>
9317
9318         * gnulib-tool: Set check_PROGRAMS.
9319
9320         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9321         modules/des-tests, modules/gc-arcfour-tests,
9322         modules/gc-arctwo-tests, modules/gc-des-tests,
9323         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9324         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9325         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9326         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9327         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9328         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
9329         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
9330         test_*_SOURCES.
9331
9332 2006-01-18  Simon Josefsson  <jas@extundo.com>
9333
9334         * modules/socklen (Depends-on): Depend on sys_socket.
9335
9336 2006-01-18  Simon Josefsson  <jas@extundo.com>
9337
9338         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
9339         modules/des-tests, modules/gc-arcfour-tests,
9340         modules/gc-arctwo-tests, modules/gc-des-tests,
9341         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
9342         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
9343         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
9344         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
9345         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
9346         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
9347         $(EXEEXT) to automake TESTS variable, for mingw32.
9348
9349 2006-01-17  Simon Josefsson  <jas@extundo.com>
9350
9351         * modules/socklen (Include): Need sys/socket.h.
9352
9353 2006-01-17  Bruno Haible  <bruno@clisp.org>
9354
9355         * modules/ssize_t (Include): Add <sys/types.h>.
9356
9357 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
9358
9359         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
9360         it's not portable and it doesn't work with cross-compiles.
9361         Problem reported by Bruno Haible.  Fix missing-$ typo in
9362         'test "gl_cv_ignore_unused_libraries" ...' that prevented
9363         -zignore from being used with Sun's C compiler.
9364
9365 2006-01-12  Simon Josefsson  <jas@extundo.com>
9366
9367         * lib/base64.c: Fix warning, reported by Bruno Haible
9368         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
9369
9370 2006-01-12  Bruno Haible  <bruno@clisp.org>
9371
9372         * modules/ldd: New file.
9373         * build-aux/ldd.sh.in: New file.
9374         * MODULES.html.sh (Support for building libraries and executables): Add
9375         ldd.
9376
9377 2006-01-12  Bruno Haible  <bruno@clisp.org>
9378
9379         * m4/ldd.m4: New file.
9380
9381 2006-01-12  Bruno Haible  <bruno@clisp.org>
9382
9383         * gnulib-tool (func_import, func_create_testdir): Don't go into an
9384         endless loop while replacing $auxdir with build-aux.
9385
9386 2006-01-11  Simon Josefsson  <jas@extundo.com>
9387
9388         * lib/stdint_.h (SIZE_MAX): Add missing (.
9389
9390 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
9391
9392         Sync from coreutils.
9393         * lib/md5.c: Fix commentary typos.
9394         (alignof, UNALIGNED_P): No need for a GCC-specific version.
9395         * lib/md5.h (__attribute__): Remove; unused.
9396         * lib/sha1.c: Fix commentary to match md5 better.
9397         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
9398         so that we don't need to worry about alignment.  All uses changed.
9399         This merges the 2005-10-28 md5 change into sha1.
9400
9401 2006-01-11  Jim Meyering  <jim@meyering.net>
9402
9403         Sync from coreutils.
9404         * lib/md5.c (OP): Fix spacing.
9405
9406 2006-01-11  Bruno Haible  <bruno@clisp.org>
9407
9408         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9409         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
9410         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
9411
9412 2006-01-11  Bruno Haible  <bruno@clisp.org>
9413
9414         Ensure automatic ordering between gl_LOCK and gl_ARGP.
9415         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
9416         the "early" section as well.
9417
9418 2006-01-11  Bruno Haible  <bruno@clisp.org>
9419
9420         Avoid "ar: no archive members specified" error on MacOS X.
9421         * gnulib-tool (func_modules_add_dummy): New function.
9422         (func_import, func_create_testdir): Invoke it.
9423
9424 2006-01-11  Bruno Haible  <bruno@clisp.org>
9425
9426         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
9427         with $auxdir in AC_CONFIG_FILES statements.
9428
9429 2006-01-11  Bruno Haible  <bruno@clisp.org>
9430
9431         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9432         Initialize also noinst_HEADERS to empty.
9433
9434 2006-01-11  Bruno Haible  <bruno@clisp.org>
9435
9436         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
9437         variables.
9438         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
9439         autoreconf.
9440
9441 2006-01-11  Bruno Haible  <bruno@clisp.org>
9442
9443         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
9444         overridable by the user.
9445         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9446
9447 2006-01-10  Simon Josefsson  <jas@extundo.com>
9448
9449         * modules/sys_socket: New file.
9450
9451 2006-01-10  Simon Josefsson  <jas@extundo.com>
9452
9453         * m4/sys_socket_h.m4: New file.
9454
9455 2006-01-10  Simon Josefsson  <jas@extundo.com>
9456
9457         * lib/socket_.h: New file.
9458
9459 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9460
9461         * modules/readutmp (Maintainer): Add myself.
9462
9463 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9464
9465         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
9466         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
9467         People who are still concerned with buggy memcmp implementations
9468         can invoke gl_FUNC_MEMCMP themselves.
9469
9470 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9471
9472         * lib/regex_internal.h (BITSET_WORD_BITS):
9473         Work around a bug in 64-bit PGC (before version 6.1-2), where the
9474         preprocessor mishandles large unsigned values as if they were signed.
9475         Problem reported by Claudio Fontana in
9476         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
9477
9478 2006-01-10  Jim Meyering  <jim@meyering.net>
9479
9480         Avoid the double-free (first in fts_read, second in fts_close) that
9481         would occur when an `active' directory is made inaccessible (e.g.,
9482         via chmod a-x) during a traversal.
9483         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9484         before returning.  Reproduce this failure by
9485         mkdir -p a/b; cd a; chmod a-x . b
9486         Reported by Stavros Passas.
9487
9488         Sync from coreutils.
9489         * lib/sha1.c: Tweak grammar in a comment.
9490
9491 2006-01-10  Jim Meyering  <jim@meyering.net>
9492
9493         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
9494         Patch by Joerg Sonnenberger.
9495
9496 2006-01-10  Bruno Haible  <bruno@clisp.org>
9497
9498         * modules/readutmp: Depend on module free.
9499         * modules/strtok_r: Depend on module restrict.
9500
9501 2006-01-10  Bruno Haible  <bruno@clisp.org>
9502
9503         * modules/gettext (configure.ac): Add an invocation of
9504         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
9505
9506 2006-01-10  Bruno Haible  <bruno@clisp.org>
9507
9508         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
9509         Reported by Werner Lemberg <wl@gnu.org>.
9510
9511 2006-01-10  Bruno Haible  <bruno@clisp.org>
9512
9513         * lib/localcharset.c: Update from GNU gettext.
9514
9515 2006-01-10  Bruno Haible  <bruno@clisp.org>
9516
9517         * lib/argp.h (__const): Remove macro. Use const instead.
9518         * lib/argp-fmtstream.h (__const): Likewise.
9519         * lib/glob_.h (__const): Remove macro.
9520         * lib/glob-libc.h: Use const instead of __const.
9521
9522 2006-01-10  Bruno Haible  <bruno@clisp.org>
9523
9524         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
9525         variable.
9526         Needed to avoid an automake error regarding the 'gettext' module.
9527
9528 2006-01-09  Simon Josefsson  <jas@extundo.com>
9529
9530         * modules/inet_ntop (Depends-on): Add restrict.
9531
9532 2006-01-09  Simon Josefsson  <jas@extundo.com>
9533
9534         * modules/gc-rijndael-tests (License): Put under LGPL.
9535
9536         * modules/gc-des-tests (License): Likewise.
9537
9538         * modules/gc-arcfour-tests (License): Likewise.
9539
9540         * modules/gc-arctwo-tests (License): Likewise.
9541
9542         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
9543
9544         * modules/gc-hmac-sha1-tests (Files): Likewise.
9545
9546         * modules/gc-hmac-md5-tests (License): Likewise.
9547
9548         * modules/gc-sha1-tests (License): Likewise.
9549
9550         * modules/gc-md5-tests (License): Likewise.
9551
9552         * modules/gc-md4-tests (License): Likewise.
9553
9554         * modules/gc-md2-tests (License): Likewise.
9555
9556         * modules/gc-tests (License): Likewise.
9557
9558         * modules/des-tests (License): Likewise.
9559
9560         * modules/md4-tests (License): Likewise.
9561
9562         * modules/md2-tests (License): Likewise.
9563
9564 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9565
9566         Sync from coreutils:
9567
9568         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
9569         * modules/lib-ignore: New file.
9570         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
9571         chdir-safer.m4, lchmod.m4.
9572         * modules/openat: Add mkdirat.c, openat-priv.h.
9573
9574 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9575
9576         Sync from coreutils.
9577         * m4/lib-ignore.m4: New file.
9578         * m4/lchmod.m4: New file.
9579
9580 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9581
9582         Sync from coreutils.
9583         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
9584         for write access: POSIX says that must fail.
9585         * lib/fts.c (diropen): Likewise.
9586         * lib/save-cwd.c (save_cwd): Likewise.
9587         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
9588         well, for minor improvements on hosts that lack O_DIRECTORY.
9589         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
9590         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
9591         Fall back on chown if open failed with EACCES.
9592
9593         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
9594         Report an error at compile-time if only a 1-second nominal clock
9595         resolution is found.
9596
9597         * lib/lchmod.h: New file.
9598         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
9599         (make_dir_parents): Use lchown rather than chown, and
9600         lchmod rather than chmod.
9601
9602         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
9603         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
9604         "proc" reported by n0dalus.
9605
9606         * lib/mountlist.c: Include <limits.h>.
9607         (dev_from_mount_options)
9608         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
9609         New function.  It no longer assumes "dev=" has the System V meaning
9610         on Linux (since it doesn't).  It also parses "dev=" more carefully.
9611         (read_file_system_list)
9612         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
9613         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
9614         dev= in that case.
9615
9616         * lib/posixtm.h (PDS_PRE_2000): New macro.
9617         * lib/posixtm.c (year): Arg is now syntax_bits rather than
9618         allow_century.  All usages changed.  Reject dates outside the range
9619         1969-1999 if PDS_PRE_2000 is used.
9620
9621 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
9622
9623         Sync from coreutils.
9624         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
9625         (Time of day items): Mention the possibility of leap seconds.
9626         Problem reported by Dr. David Alan Gilbert.
9627
9628 2006-01-09  Jim Meyering  <jim@meyering.net>
9629
9630         Sync from coreutils.
9631
9632         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
9633
9634         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
9635
9636         * lib/modechange.c (mode_compile): Reject an invalid mode string
9637         that starts with an octal digit.  From Andreas Gruenbacher.
9638
9639         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
9640         and dup to open_safer and dup_safer, respectively.
9641         (openat_permissive): Fix typo in comment.
9642
9643         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
9644         "gettext.h"; either no longer needed or are guaranteed by openat.h.
9645         (_): Remove; no longer needed.
9646         (openat): Renamed from rpl_openat; no need for rpl_openat
9647         since openat.h renames openat for us.
9648         Replace most of the body with a call to openat_permissive,
9649         to avoid duplicate code.
9650         Port to (probably hypothetical) environments were mode_t is
9651         wider than int.
9652         (openat_permissive): Require mode arg, so that we can check
9653         types better.  Put it just after flags.  Change cwd failure
9654         indicator from pointer-to-bool to pointer-to-errno-value.
9655         All callers changed.
9656         Invoke openat_save_fail and/or openat_restore_fail if
9657         cwd_errno is null, so that openat can call us.
9658         (openat_permissive, fdopendir, fstatat, unlinkat):
9659         Simplify errno handling to avoid some duplicate code,
9660         as it's OK to set errno on success.
9661         * lib/openat.h: Revamp code so that function macros depend on
9662         __OPENAT_PREFIX only, not also on AT_FDCWD.
9663         (openat_ro): Remove.  Caller changed to use openat_permissive.
9664         (openat_permissive): Now a macro, if not a function.
9665         (openat_restore_fail, openat_save_fail): Now always functions,
9666         since mkdirat needs them even if __OPENAT_PREFIX is defined.
9667
9668         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
9669         and openat.c.
9670         * lib/mkdirat.c: Include openat-priv.h.
9671         Remove definitions of macros defined therein.
9672         * lib/openat.c: Likewise.
9673
9674         * lib/mkdirat.c (mkdirat): New file and function.
9675         * lib/openat.h (mkdirat): Declare.
9676
9677         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
9678
9679         * lib/openat.h (openat_permissive): Declare.
9680         (openat_ro): Define.
9681
9682         * lib/openat.c (EXPECTED_ERRNO): New macro.
9683         (openat_permissive): New function -- used in remove.c rewrite.
9684         (all functions): Set errno just before returning, only if there
9685         was an actual failure.
9686         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
9687
9688         Emulate openat-family functions using Linux's procfs, if possible.
9689         Idea and some code based on Ulrich Drepper's glibc changes.
9690
9691         * lib/openat.c: (BUILD_PROC_NAME): New macro.
9692         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
9693         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
9694         before falling back on save_cwd and restore_cwd.
9695         (fdopendir, fstatat, unlinkat): Likewise.
9696
9697         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
9698         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
9699
9700         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
9701         as second argument to va_arg.  Otherwise, some versions of gcc
9702         warn that `if this code is reached, the program will abort'.
9703
9704 2006-01-09  Jim Meyering  <jim@meyering.net>
9705
9706         Sync from coreutils.
9707         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
9708         Require openat-priv.h.
9709
9710 2006-01-09  Bruno Haible  <bruno@clisp.org>
9711
9712         * modules/strnlen (Include): Use strnlen.h.
9713
9714 2006-01-09  Bruno Haible  <bruno@clisp.org>
9715
9716         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
9717
9718 2006-01-09  Bruno Haible  <bruno@clisp.org>
9719
9720         * lib/sysexit_.h (EX_OK): New macro.
9721         Suggested by Martin Lambers <marlam@marlam.de>.
9722
9723 2006-01-09  Bruno Haible  <bruno@clisp.org>
9724
9725         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
9726         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
9727
9728 2006-01-09  Bruno Haible  <bruno@clisp.org>
9729
9730         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
9731         numbers.
9732
9733 2006-01-09  Bruno Haible  <bruno@clisp.org>
9734
9735         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
9736         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
9737         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
9738         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
9739
9740 2006-01-09  Bruno Haible  <bruno@clisp.org>
9741
9742         * build-aux/javacomp.sh.in: New file, moved from lib/.
9743         * modules/javacomp-script (Files): Update.
9744         (configure.ac): Add AC_CONFIG_FILES invocation.
9745         (EXTRA_DIST): Remove variable.
9746
9747         * build-aux/javaexec.sh.in: New file, moved from lib/.
9748         * modules/javaexec (Files): Update.
9749         (configure.ac): Add AC_CONFIG_FILES invocation.
9750         (EXTRA_DIST): Remove javaexec.sh.in.
9751
9752         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
9753         * modules/csharpcomp-script (Files): Update.
9754         (configure.ac): Add AC_CONFIG_FILES invocation.
9755         (EXTRA_DIST): Remove variable.
9756
9757         * build-aux/csharpexec.sh.in: New file, moved from lib/.
9758         * modules/csharpexec (Files): Update.
9759         (configure.ac): Add AC_CONFIG_FILES invocation.
9760         (EXTRA_DIST): Remove csharpexec.sh.in.
9761
9762 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9763
9764         Sync from coreutils.
9765
9766         Add POSIX ACL support
9767         * lib/acl.h (copy_acl, set_acl): Add declarations.
9768         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
9769         systems other than Linux.
9770         (chmod_or_fchmod): New function: use fchmod when possible,
9771         and chmod otherwise.
9772         (file_has_acl): Add a POSIX ACL implementation, with a
9773         Linux-specific subcase.
9774         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
9775         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
9776         acls are unsupported.
9777         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
9778         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
9779         are unsupported.
9780
9781 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
9782
9783         Sync from coreutils.
9784         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
9785
9786 2006-01-07  Bruno Haible  <bruno@clisp.org>
9787
9788         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
9789         gl_EARLY.
9790
9791 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9792
9793         * lib/strftime.c (tzname): Don't declare if it is already #defined.
9794         Problem reported for Mingw by Mark Junker.
9795
9796 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
9797
9798         * README: Gnulib normally doesn't generate a tarball.
9799
9800 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
9801
9802         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
9803         long int, not int, for nanosecond counts, so that people who are
9804         used to POSIX struct timespec won't be surprised.  Reported by Jim
9805         Meyering.
9806
9807 2005-12-28  Bruno Haible  <bruno@clisp.org>
9808
9809         * build-aux/config.rpath: Update from GNU gettext.
9810
9811 2005-12-16  Jim Meyering  <jim@meyering.net>
9812
9813         * modules/fprintftime: New module.
9814         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
9815
9816 2005-12-16  Jim Meyering  <jim@meyering.net>
9817
9818         * m4/fprintftime.m4: New file.
9819
9820 2005-12-16  Jim Meyering  <jim@meyering.net>
9821
9822         * lib/fprintftime.c, lib/fprintftime.h: New files.
9823
9824 2005-12-15  Simon Josefsson  <jas@extundo.com>
9825
9826         * modules/socklen (configure.ac): Fix M4 macro name, to align with
9827         new m4/socklen.m4.
9828
9829 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9830
9831         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
9832         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
9833
9834 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
9835
9836         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
9837         * lib/argp-help.c (fill_in_uparams): Check if the constructed
9838         struct uparams is valid. Fall back to the default values if it is
9839         not.
9840
9841 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9842
9843         * modules/argp (Files): Add argp-pin.c
9844         (Depends-on): dirname
9845         (lib_SOURCES): Add argp-pin.c
9846
9847 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9848
9849         * m4/argp.m4:  Check if program_invocation_name and
9850         program_invocation_short_name are declared and define appropriate
9851         macros if they are not.
9852
9853 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
9854
9855         * lib/argp-help.c (__argp_base_name): New function
9856         (__argp_short_program_name): Rewrite using __argp_base_name
9857         * lib/argp-namefrob.h: Define program_invocation_name and
9858         program_invocation_short_name if requested
9859         (__argp_base_name): Add prototype
9860         * lib/argp-parse.c (argp_def): Use gettext wrappers
9861         (argp_default_parser): Use __argp_base_name
9862         * lib/argp-pin.c: New file. Defines program_invocation_name and
9863         program_invocation_short_name on systems that lack them.
9864
9865 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9866
9867         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
9868         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9869         porting problem reported by Georg Schwarz in
9870         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9871
9872 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
9873
9874         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
9875         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
9876         porting problem reported by Georg Schwarz in
9877         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
9878
9879 2005-12-05  Bruno Haible  <bruno@clisp.org>
9880
9881         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
9882         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
9883         Reported by Mark Junker <mjscod@gmx.de>.
9884
9885 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
9886
9887         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
9888         Use implementation from Albert Chin, with some
9889         comments/corrections by Stepan Kasal and myself.
9890
9891 2005-12-02  Bruno Haible  <bruno@clisp.org>
9892
9893         * gnulib-tool (func_import): Accept GPLed build tool modules when
9894         --lgpl is given.
9895         * modules/csharpcomp-script: New file.
9896         * modules/csharpcomp: Depend on it.
9897         * modules/javacomp-script: New file.
9898         * modules/javacomp: Depend on it.
9899         Suggested by Simon Josefsson.
9900
9901 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9902
9903         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
9904         statement, to work around an HP-UX 10.20 compiler bug reported by
9905         Peter O'Gorman.
9906
9907 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9908
9909         * modules/savedir (Depends-on): Add openat.
9910
9911 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
9912
9913         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
9914         (uintmax_t) [defined uintmax_t]: Do not declare.
9915         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
9916         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
9917         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
9918         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
9919         sake of portability to weird hosts that C allows (though we don't
9920         know of any practical examples).
9921
9922         * lib/savedir.h (fdsavedir): New decl.
9923         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
9924         contains most of the former guts of savedir.
9925         (savedir): Use savedirstream.
9926         Include "openat.h".
9927
9928 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9929
9930         * modules/obstack (Files): Add m4/ulonglong.m4.
9931         Problem reported by Davide Angelocola.
9932
9933 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
9934
9935         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
9936         coreutils no longer futzes with rounding modes.
9937
9938 2005-11-14  Jim Meyering  <jim@meyering.net>
9939
9940         * lib/mkstemp-safer.c: Include <config.h>, required for possible
9941         replacement of mkstemp.
9942
9943 2005-11-10  Simon Josefsson  <jas@extundo.com>
9944
9945         * lib/readline.c: Remove EOL.
9946
9947 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9948
9949         * modules/gethrxtime (Depends-on): Add gettime.
9950
9951 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9952
9953         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
9954         or gettimeofday; no longer needed.
9955
9956 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
9957
9958         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
9959         time business.
9960         (gethrxtime) [! (HAVE_NANOUPTIME
9961         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
9962         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
9963         our own approximation.
9964
9965 2005-11-08  Eric Blake  <ebb9@byu.net>
9966
9967         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9968
9969 2005-11-08  Eric Blake  <ebb9@byu.net>
9970
9971         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
9972
9973 2005-11-04  Bruno Haible  <bruno@clisp.org>
9974
9975         * gnulib-tool: Implement --update mode.
9976
9977 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9978
9979         Fix porting problem reported by Theodoros V. Kalamatianos.
9980         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
9981         Don't assume that futimes failing means we must fail.
9982
9983 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
9984
9985         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
9986         variables to suggest the intended function of the PATH_MAX check.
9987
9988 2005-10-30  Kean Johnston  <jkj@sco.com>
9989
9990         Trivial changes to support SCO systems.
9991         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
9992         as PATH_MAX.
9993         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
9994         where __ptr is null when no I/O is pending.
9995
9996 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
9997
9998         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
9999         leave errno alone.  Problem reported by Dmitry V. Levin.
10000
10001 2005-10-28  Simon Josefsson  <jas@extundo.com>
10002
10003         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
10004         Test more.
10005
10006         * tests/test-gc-md2.c, tests/test-md2.c: New files.
10007
10008         * modules/md2, modules/md2-tests: New files.
10009
10010 2005-10-28  Simon Josefsson  <jas@extundo.com>
10011
10012         * m4/inet_ntop.m4: More tests.
10013
10014         * m4/gc-md2.m4, md2.m4: New file.
10015
10016 2005-10-28  Simon Josefsson  <jas@extundo.com>
10017
10018         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
10019         "restrict" keywords, as per POSIX.  Protect the function
10020         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
10021         Don't use K&R prototypes.  Check the sprintf return values.
10022         Re-define EAFNOSUPPORT if not present.  Indent.
10023
10024         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
10025         suggested by Bruno Haible <bruno@clisp.org>.
10026
10027         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
10028
10029         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
10030
10031         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
10032         libgcrypt).
10033
10034         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
10035
10036         * lib/md2.h, lib/md2.c: New files.
10037
10038 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
10039
10040         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
10041         errno alone.  Problem reported by Frederic Jolliton.
10042
10043 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
10044
10045         * modules/verify (License): Change from GPL to LGPL.  This is a
10046         tiny module and there are apparently near-equivalents that are
10047         under the BSD license.
10048
10049 2005-10-24  Simon Josefsson  <jas@extundo.com>
10050
10051         * modules/sha1: Relicense to LGPL.
10052
10053 2005-10-24  Simon Josefsson  <jas@extundo.com>
10054
10055         * lib/md4.h: Shrink buffer size, now that we changed the type.
10056
10057 2005-10-23  Simon Josefsson  <jas@extundo.com>
10058
10059         * gnulib-tool (func_import): Fix --tests-base.
10060
10061 2005-10-22  Simon Josefsson  <jas@extundo.com>
10062
10063         * modules/arcfour (Depends-on): Need stdint.
10064
10065 2005-10-22  Simon Josefsson  <jas@extundo.com>
10066
10067         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
10068         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
10069
10070 2005-10-22  Simon Josefsson  <jas@extundo.com>
10071
10072         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
10073         suggested by Bruno Haible <bruno@clisp.org>.
10074
10075 2005-10-22  Simon Josefsson  <jas@extundo.com>
10076
10077         * lib/crc.h: Include stddef.h, for size_t.
10078
10079 2005-10-22  Simon Josefsson  <jas@extundo.com>
10080
10081         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
10082         arcfour_context struct (simplify test vector testing in GNU
10083         Shishi).
10084
10085 2005-10-21  Simon Josefsson  <jas@extundo.com>
10086
10087         * modules/des, modules/des-tests: New files.
10088
10089         * modules/gc-des, modules/gc-des-tests: New files.
10090
10091         * tests/test-des.c, tests/test-gc-des.c: New file.
10092
10093 2005-10-21  Simon Josefsson  <jas@extundo.com>
10094
10095         * modules/arctwo, modules/arctwo-tests: New files.
10096
10097         * tests/test-arctwo.c: New file.
10098
10099         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10100
10101         * tests/test-gc-arctwo.c: New file.
10102
10103 2005-10-21  Simon Josefsson  <jas@extundo.com>
10104
10105         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10106         Bruno Haible <bruno@clisp.org>.
10107
10108         * m4/gc-des.m4: New file.
10109
10110 2005-10-21  Simon Josefsson  <jas@extundo.com>
10111
10112         * m4/arctwo.m4: New file.
10113
10114         * m4/gc-arctwo.m4: New file.
10115
10116 2005-10-21  Simon Josefsson  <jas@extundo.com>
10117
10118         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10119         block.
10120
10121 2005-10-21  Simon Josefsson  <jas@extundo.com>
10122
10123         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10124         <bruno@clisp.org>.
10125
10126         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10127
10128         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10129         Bruno Haible <bruno@clisp.org>.
10130
10131         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10132         <bruno@clisp.org>.
10133
10134 2005-10-21  Simon Josefsson  <jas@extundo.com>
10135
10136         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10137
10138 2005-10-21  Simon Josefsson  <jas@extundo.com>
10139
10140         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10141
10142 2005-10-21  Simon Josefsson  <jas@extundo.com>
10143
10144         * lib/des.h, lib/des.c: New files.
10145
10146         * lib/gc-gnulib.c: Support DES.c
10147
10148 2005-10-21  Simon Josefsson  <jas@extundo.com>
10149
10150         * lib/arctwo.h, lib/arctwo.c: New files.
10151
10152         * lib/gc-gnulib.c: Support ARCTWO.
10153
10154 2005-10-21  Simon Josefsson  <jas@extundo.com>
10155
10156         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
10157         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10158
10159 2005-10-21  Simon Josefsson  <jas@extundo.com>
10160
10161         * gnulib-tool (func_import, func_create_testdir): Define automake
10162         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
10163         Makefile.am snippet),
10164         suggested by Bruno Haible <bruno@clisp.org>.
10165
10166         * modules/gc (Makefile.am): Use it.
10167
10168 2005-10-21  Bruno Haible  <bruno@clisp.org>
10169
10170         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
10171         patch.
10172
10173 2005-10-19  Simon Josefsson  <jas@extundo.com>
10174
10175         * tests/test-gc-rijndael.c: New file.
10176
10177         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
10178
10179 2005-10-19  Simon Josefsson  <jas@extundo.com>
10180
10181         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
10182         interface too.
10183
10184 2005-10-19  Simon Josefsson  <jas@extundo.com>
10185
10186         * tests/test-gc-arcfour.c: New file.
10187
10188         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
10189
10190 2005-10-19  Simon Josefsson  <jas@extundo.com>
10191
10192         * modules/gc-md4, modules/gc-md4-tests: New file.
10193
10194         * tests/test-gc-md4.c: New file.
10195
10196 2005-10-19  Simon Josefsson  <jas@extundo.com>
10197
10198         * m4/gc-md4.m4: New file.
10199
10200 2005-10-19  Simon Josefsson  <jas@extundo.com>
10201
10202         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
10203         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
10204         <kasal@ucw.cz>.
10205
10206 2005-10-19  Simon Josefsson  <jas@extundo.com>
10207
10208         * m4/gc-arcfour.m4: New file.
10209
10210         * m4/gc-rijndael.m4: New file.
10211
10212 2005-10-19  Simon Josefsson  <jas@extundo.com>
10213
10214         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
10215
10216 2005-10-19  Simon Josefsson  <jas@extundo.com>
10217
10218         * lib/gc-gnulib.c: Support ARCFOUR.
10219
10220 2005-10-19  Simon Josefsson  <jas@extundo.com>
10221
10222         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
10223         support.
10224
10225         * lib/gc.h: Add ECB enum type.
10226
10227         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
10228
10229 2005-10-18  Simon Josefsson  <jas@extundo.com>
10230
10231         * tests/test-md5.c: New file.
10232
10233         * modules/md5-tests: New file.
10234
10235 2005-10-18  Simon Josefsson  <jas@extundo.com>
10236
10237         * tests/test-md4.c: New file.
10238
10239         * modules/md4, modules/md4-tests: New files.
10240
10241 2005-10-18  Simon Josefsson  <jas@extundo.com>
10242
10243         * m4/md4.m4: New file.
10244
10245 2005-10-18  Simon Josefsson  <jas@extundo.com>
10246
10247         * lib/md4.h, lib/md4.c: New files, based on md5.?.
10248
10249 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
10250
10251         * gnulib-tool (func_create_testdir): Omit the second check whether
10252         BUILT_SOURCES in nonempty.
10253
10254 2005-10-17  Simon Josefsson  <jas@extundo.com>
10255
10256         * tests/test-rijndael.c: New file.
10257
10258 2005-10-17  Simon Josefsson  <jas@extundo.com>
10259
10260         * modules/sha1: Depend on stdint instead of md5.
10261
10262         * modules/md5: Depend on stdint, remove uint32_t.
10263
10264 2005-10-17  Simon Josefsson  <jas@extundo.com>
10265
10266         * modules/gc-sha1-tests: New file.
10267
10268         * tests/test-gc-sha1.c: New file.
10269
10270 2005-10-17  Simon Josefsson  <jas@extundo.com>
10271
10272         * m4/md5.m4: Remove call to uint32_t.m4.
10273
10274 2005-10-17  Simon Josefsson  <jas@extundo.com>
10275
10276         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
10277
10278         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
10279         md5.h.
10280
10281         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
10282
10283         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
10284
10285 2005-10-17  Simon Josefsson  <jas@extundo.com>
10286
10287         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
10288
10289 2005-10-17  Simon Josefsson  <jas@extundo.com>
10290
10291         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
10292
10293 2005-10-17  Simon Josefsson  <jas@extundo.com>
10294
10295         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
10296
10297         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
10298
10299 2005-10-17  Bruno Haible  <bruno@clisp.org>
10300
10301         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
10302         that it can also be used in a test.
10303
10304 2005-10-16  Bruno Haible  <bruno@clisp.org>
10305
10306         * gnulib-tool (func_emit_tests_Makefile_am): Also define
10307         TESTS_ENVIRONMENT, so that individual tests can augment it.
10308
10309         * gnulib-tool (func_create_testdir): Use an intermediate target for
10310         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
10311         macros, like $(ALLOCA_H), which cannot be passed through the command
10312         line.
10313
10314 2005-10-15  Simon Josefsson  <jas@extundo.com>
10315
10316         * modules/rijndael-tests: New file.
10317
10318         * modules/rijndael: New file.
10319
10320 2005-10-15  Simon Josefsson  <jas@extundo.com>
10321
10322         * m4/rijndael.m4: New file.
10323
10324 2005-10-15  Simon Josefsson  <jas@extundo.com>
10325
10326         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
10327
10328         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
10329
10330 2005-10-14  Simon Josefsson  <jas@extundo.com>
10331
10332         * tests/test-arcfour.c: New file.
10333
10334         * modules/arcfour, modules/arcfour-tests: New files.
10335
10336 2005-10-14  Simon Josefsson  <jas@extundo.com>
10337
10338         * m4/arcfour.m4: New file.
10339
10340 2005-10-14  Simon Josefsson  <jas@extundo.com>
10341
10342         * lib/arcfour.h, lib/arcfour.c: New files.
10343
10344 2005-10-14  Roland McGrath  <roland@redhat.com>
10345
10346         Import from libc.  [BZ #1331]
10347         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
10348         macro argument.
10349         Reported by Matej Vela <vela@debian.org>.
10350
10351 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10352
10353         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
10354         include <wchar.h>; no longer needed.
10355
10356 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
10357
10358         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
10359
10360 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
10361         and  Ulrich Drepper  <drepper@redhat.com>
10362
10363         Import from libc.
10364         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
10365         instead of inline stream orientation test and two separate
10366         function calls.  Pay no attention to USE_IN_LIBIO.
10367
10368 2005-10-13  Simon Josefsson  <jas@extundo.com>
10369
10370         * modules/gc-hmac-md5-tests: New file.
10371
10372         * tests/test-gc-hmac-sha1.c: New file.
10373
10374         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
10375
10376         * modules/gc-hmac-md5-tests: New file.
10377
10378         * tests/test-gc-md5.c: New file.
10379
10380         * modules/gc-md5-tests: New file.
10381
10382 2005-10-13  Simon Josefsson  <jas@extundo.com>
10383
10384         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
10385         Move memory allocation outside of loop.
10386
10387 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
10388
10389         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
10390         intermediate directory is in a read-only file system.  Problem
10391         reported by Eric Blake.
10392
10393 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
10394
10395         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
10396
10397 2005-10-12  Simon Josefsson  <jas@extundo.com>
10398
10399         * tests/test-hmac-sha1.c: New file.
10400
10401         * modules/hmac-sha1-tests: New file.
10402
10403         * modules/hmac-sha1: New file.
10404
10405 2005-10-12  Simon Josefsson  <jas@extundo.com>
10406
10407         * modules/gc-sha1: New file.
10408
10409 2005-10-12  Simon Josefsson  <jas@extundo.com>
10410
10411         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
10412
10413         * tests/test-gc-pbkdf2-sha1.c: New file.
10414
10415 2005-10-12  Simon Josefsson  <jas@extundo.com>
10416
10417         * modules/gc-md5, modules/gc-hmac-md5: New files.
10418
10419         * modules/gc (Files): Remove md5, memxor and hmac files.
10420
10421 2005-10-12  Simon Josefsson  <jas@extundo.com>
10422
10423         * m4/gc-pbkdf2-sha1.m4: New file.
10424
10425         * m4/gc-hmac-sha1.m4: New file.
10426
10427         * m4/gc-sha1: New file.
10428
10429         * m4/hmac-sha1.m4: New file.
10430
10431 2005-10-12  Simon Josefsson  <jas@extundo.com>
10432
10433         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
10434
10435         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
10436
10437 2005-10-12  Simon Josefsson  <jas@extundo.com>
10438
10439         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
10440         suggested by Bruno Haible <bruno@clisp.org>.
10441
10442 2005-10-12  Simon Josefsson  <jas@extundo.com>
10443
10444         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
10445
10446 2005-10-12  Simon Josefsson  <jas@extundo.com>
10447
10448         * lib/gc-pbkdf2-sha1.c: New file.
10449
10450         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
10451
10452 2005-10-12  Simon Josefsson  <jas@extundo.com>
10453
10454         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
10455
10456         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
10457
10458 2005-10-12  Simon Josefsson  <jas@extundo.com>
10459
10460         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
10461         GC_USE_HMAC_MD5, respectively.
10462
10463         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
10464         (gc_md5): Fix typo.
10465
10466         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
10467
10468         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
10469
10470         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
10471
10472 2005-10-12  Bruno Haible  <bruno@clisp.org>
10473
10474         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
10475         Reported by Stepan Kasal <kasal@ucw.cz>.
10476
10477 2005-10-11  Simon Josefsson  <jas@extundo.com>
10478
10479         * tests/test-crc.c: New file.
10480
10481         * modules/crc, modules/crc-tests: New files.
10482
10483 2005-10-11  Simon Josefsson  <jas@extundo.com>
10484
10485         * m4/crc.m4: New file.
10486
10487 2005-10-11  Simon Josefsson  <jas@extundo.com>
10488
10489         * lib/gc.h: Add gc_hash and gc_hash_buffer.
10490
10491         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
10492
10493         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
10494
10495 2005-10-11  Simon Josefsson  <jas@extundo.com>
10496
10497         * lib/crc.h, lib/crc.c: New files.
10498
10499         * lib/gc.h (gc_hash_buffer): Add doc.
10500
10501 2005-10-11  Bruno Haible  <bruno@clisp.org>
10502
10503         * modules/c-strcasestr: New file.
10504         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
10505
10506 2005-10-11  Bruno Haible  <bruno@clisp.org>
10507
10508         * modules/c-strcase: New file.
10509         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
10510
10511 2005-10-11  Bruno Haible  <bruno@clisp.org>
10512
10513         * lib/strcasecmp.c: Include limits.h.
10514         (strcasecmp): Avoid integer overflow on exotic platforms.
10515         * lib/strncasecmp.c: Include limits.h.
10516         (strncasecmp): Avoid integer overflow on exotic platforms.
10517         Reported by Paul Eggert.
10518
10519 2005-10-11  Bruno Haible  <bruno@clisp.org>
10520
10521         * lib/c-strcasestr.h: New file, from GNU gettext.
10522         * lib/c-strcasestr.c: New file, from GNU gettext.
10523
10524 2005-10-11  Bruno Haible  <bruno@clisp.org>
10525
10526         * lib/c-strcase.h: New file, from GNU gettext.
10527         * lib/c-strcasecmp.c: New file, from GNU gettext.
10528         * lib/c-strncasecmp.c: New file, from GNU gettext.
10529
10530 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
10531
10532         * modules/mempcpy (License): GPL -> LGPL.
10533         * modules/strchrnul (License): Likewise.
10534         * modules/sysexits (License): Likewise.
10535
10536 2005-10-08  Simon Josefsson  <jas@extundo.com>
10537
10538         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
10539
10540 2005-10-07  Simon Josefsson  <jas@extundo.com>
10541
10542         * m4/memxor.m4: Remove gl_C_RESTRICT call.
10543
10544 2005-10-06  Simon Josefsson  <jas@extundo.com>
10545
10546         * tests/test-hmac-md5.c: New file.
10547
10548         * modules/hmac-md5-tests: New file.
10549
10550         * modules/hmac-md5: New file.
10551
10552 2005-10-06  Simon Josefsson  <jas@extundo.com>
10553
10554         * m4/hmac-md5.m4: New file.
10555
10556         * m4/memxor.m4: Require gl_C_RESTRICT.
10557
10558 2005-10-06  Simon Josefsson  <jas@extundo.com>
10559
10560         * lib/memxor.c (memxor): Avoid casts and warnings.
10561
10562 2005-10-06  Simon Josefsson  <jas@extundo.com>
10563
10564         * lib/hmac-md5.c: New file.
10565
10566         * lib/hmac.h: New file.
10567
10568 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
10569
10570         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
10571         promotes to int, not unsigned int, to catch the AIX 5.3
10572         compiler bug.
10573
10574 2005-10-05  Simon Josefsson  <jas@extundo.com>
10575
10576         * modules/memxor: New file.
10577
10578         * modules/iconv (Files): Move config.rpath to havelib, it is used
10579         there.
10580
10581         * modules/havelib (Files): Add config.rpath.
10582
10583 2005-10-05  Simon Josefsson  <jas@extundo.com>
10584
10585         * m4/memxor.m4: New file.
10586
10587 2005-10-05  Simon Josefsson  <jas@extundo.com>
10588
10589         * lib/memxor.c (memxor): Fix compiler error.
10590
10591         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
10592         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
10593
10594         * lib/memxor.h, lib/memxor.c: New files.
10595
10596         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
10597         we assume all systems have it, suggested by Jim Meyering
10598         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
10599         any systems lack sys/socket.h; mingw32 is known to lack it, but we
10600         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
10601         same reasons.
10602
10603 2005-10-05  Simon Josefsson  <jas@extundo.com>
10604
10605         * config/srclist.txt: Add glibc bug 1423 for md5.h.
10606
10607 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
10608
10609         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
10610         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
10611         needed, since the source code now assumes these .h files.
10612
10613 2005-10-05  Derek Price  <derek@ximbiot.com>
10614
10615         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
10616
10617 2005-10-05  Bruno Haible  <bruno@clisp.org>
10618
10619         * modules/stdint (License): Change to LGPL.
10620
10621 2005-10-04  Simon Josefsson  <jas@extundo.com>
10622
10623         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
10624         D. Baushke" <mdb@gnu.org>.
10625
10626 2005-10-04  Bruno Haible  <bruno@clisp.org>
10627
10628         * lib/verify.h (verify_true): Provide alternative definition for C++.
10629
10630 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
10631
10632         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
10633         (SSIZE_MAX): New macro, if not already defined.
10634         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
10635         than 2 GiB.
10636
10637 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10638
10639         Sync from coreutils.
10640         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
10641         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
10642         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
10643         ULLONG_MAX doesn't work with 2.7.2.1.
10644
10645 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10646
10647         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
10648         From Ben Pfaff.
10649
10650         * modules/exclude (Depends-on): Depend on verify.
10651         * modules/strtoimax (Depends-on): Likewise.
10652         * modules/utimecmp (Depends-on): Likewise.
10653
10654 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
10655
10656         * lib/exclude.c: Include verify.h.
10657         (verify): Remove.  All callers changed to use verify.h's version.
10658         * lib/strtoimax.c: Likewise.
10659         * lib/utimecmp.c: Likewis.e
10660
10661         Sync from coreutils.
10662         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
10663         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
10664         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
10665         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
10666         bother returning ENOSYS if settimeofday or stime fails; just let
10667         them return whatever errno they want to return.
10668         * lib/utimens.c: Include unistd.h, for dup2.
10669         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
10670         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
10671
10672 2005-10-02  Jim Meyering  <jim@meyering.net>
10673
10674         Sync from coreutils.
10675         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
10676         from glibc-2.2.5 that fails for read-only files.
10677
10678 2005-10-02  Jim Meyering  <jim@meyering.net>
10679
10680         Sync from coreutils.
10681         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
10682         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
10683         `#if HAVE_CONFIG_H'.
10684         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
10685         Remove AT_FDCWD test.
10686         Do not consume the fd unless successful.
10687         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
10688         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
10689         block, so that we don't even try to compile it if settimeofday is
10690         available.  This works around a compilation failure on OSF1 V5.1,
10691         due to stime requiring a `long int*' while tv_sec is `int'.
10692
10693 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
10694
10695         Sync from coreutils.
10696         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
10697         against `yes', rather than just testing for nonempty.
10698
10699 2005-10-01  Simon Josefsson  <jas@extundo.com>
10700
10701         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
10702         and Darwin.
10703
10704         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
10705         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
10706         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
10707         freeaddrinfo and gai_strerror are declared by the POSIX headers.
10708         Check if struct addrinfo is declared.
10709
10710 2005-10-01  Simon Josefsson  <jas@extundo.com>
10711
10712         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
10713         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
10714         AI_* and EAI_* definitions.  Protect function declarations.
10715
10716 2005-10-01  Jim Meyering  <jim@meyering.net>
10717
10718         Sync from coreutils.
10719
10720         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
10721         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
10722         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
10723         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10724         in the inet and nsl libraries.  Required on Solaris 5.7.
10725
10726 2005-10-01  Jim Meyering  <jim@meyering.net>
10727
10728         Sync from coreutils.
10729         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
10730         in the inet and nsl libraries.  Required on Solaris 5.7.
10731
10732 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
10733
10734         * lib/getdelim.c (getdelim): Remove unused variables.
10735
10736 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
10737
10738         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
10739         so that the code works even with ancient cpp.  Portability problem
10740         with GCC 2.7.2.1 reported by Thomas M.Ott.
10741
10742 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
10743
10744         * modules/regex (Depends-on): Add strcase.
10745
10746         * modules/gethostname (Licence): Change from GPL to LGPL, since
10747         gethostname.c is a trivial implementation of a standard library
10748         function.
10749         * modules/poll (License): Change from GPL to LGPL, since it's
10750         derived from LGPL code.
10751
10752 2005-09-27  Jim Meyering  <jim@meyering.net>
10753
10754         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
10755         HAVE_CONFIG_H.
10756
10757         * lib/intprops.h (signed_type_or_expr__): Define.
10758         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
10759         for unsigned types.
10760
10761 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
10762
10763         * lib/verify.h (verify_expr): Remove, replacing with:
10764         (verify_true): New macro that returns true instead of void.
10765         (verify_type__): Remove.
10766         (verify): Use verify_true rather than verify_type__.
10767
10768 2005-09-26  Bruno Haible  <bruno@clisp.org>
10769
10770         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
10771         is necessary.
10772         (lib_SOURCES): Remove mbchar.c.
10773         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
10774         (Files): Add m4/mbrtowc.m4.
10775         * modules/mbiter: Likewise.
10776         * modules/mbuiter: Likewise.
10777
10778 2005-09-26  Bruno Haible  <bruno@clisp.org>
10779
10780         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
10781         compile mbchar.c if they are not both present.
10782         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
10783         * m4/mbiter.m4 (gl_MBITER): Likewise.
10784         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
10785         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
10786         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
10787
10788 2005-09-25  Jim Meyering  <jim@meyering.net>
10789
10790         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
10791         also uses socklen_t.
10792
10793 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
10794
10795         * lib/utimens.c (ENOSYS): Define if not already defined.
10796         (futimens): Support having a null PATH if the file descriptor
10797         is nonnegative.
10798
10799         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
10800         Remove.
10801         (__attribute): Define to empty unless GCC 3.1 or later.
10802         This works around a core dump on OpenBSD 3.4, which has GCC
10803         2.95.3, which dumps core when given __attribute__(()).  It also
10804         simplifies other tests, since we really don't want to bother with
10805         worrying about which ancient version of GCC supported what.
10806         Original problem reported by Yoann Vandoorselaere, with part of
10807         the fix suggested by Derek Price.
10808
10809 2005-09-24  Jim Meyering  <jim@meyering.net>
10810
10811         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
10812         so we can once again use a positive bitfield width of 1 -- now we
10813         don't have to explain why we were using a bitfield width of 2.
10814
10815 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10816
10817         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
10818         and similarly for the other external symbols.  Problem reported
10819         by James Gallager.
10820
10821         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
10822         bug reported by Jim Meyering.
10823
10824         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
10825         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
10826         not needed, since socklen is a prerequisite module.
10827
10828 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
10829
10830         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
10831         Problem reported by Eric Blake.
10832         (getaddrinfo): Initialize se so that it's not garbage.
10833         Redo internal storage allocation so that it doesn't make unportable
10834         assumptions about alignment.
10835         Fix a memory leak.
10836
10837         * lib/utimens.c (futimens): Use futimesat if available.
10838         Prefer it to futimes since it doesn't have the futimes bug.
10839
10840         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
10841         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
10842         Instead, declare a function that returns a pointer to an array,
10843         and use verify_type__ to declare the size of the array.
10844         Problem and germ of a solution reported by Bruno Haible.
10845         (verify_type__): Use 2, not 1, for bitfield size, to avoid
10846         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
10847
10848 2005-09-23  Jim Meyering  <jim@meyering.net>
10849
10850         Sync from coreutils.
10851         Correct build failure (socklen_t not defined) on at least
10852         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
10853         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
10854
10855 2005-09-23  Jim Meyering  <jim@meyering.net>
10856
10857         * modules/getaddrinfo (Depends-on): Add socklen.
10858
10859 2005-09-23  Bruno Haible  <bruno@clisp.org>
10860
10861         * tests/test-verify.c: New file.
10862
10863 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10864
10865         Sync from coreutils.
10866
10867         * modules/argmatch (Depends-on): Add verify.
10868         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
10869         unistd-safer.
10870         * modules/save-cwd (Depends-on): Likewise.
10871
10872         * modules/openat (Files): Add lib/openat-die.c.
10873         (Depends-on): Remove error, exitfail.
10874         Add dirname.
10875
10876         * modules/verify: New file.
10877         * MODULES.html.sh (Diagnostics <assert.h>): New section,
10878         with "verify" module.
10879
10880 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10881
10882         Sync from coreutils.
10883
10884         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
10885         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
10886         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
10887         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
10888         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
10889         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
10890         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
10891         Don't bother checking for string.h, stdlib.h, unistd.h.
10892         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
10893         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
10894         module's job.
10895         * m4/jm-macros.m4 (gl_MACROS): Likewise.
10896         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
10897
10898         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
10899         (gl_GETDATE): Use it.
10900
10901         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
10902
10903 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10904
10905         Sync from coreutils.
10906
10907         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
10908         stat-time.h.
10909         * lib/argmatch.h: Include verify.h
10910         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
10911         (ARGMATCH_ASSERT): Remove; unused.
10912         * lib/canonicalize.c: Assume STDC_HEADERS.
10913         * lib/exclude.c: Include "strcase.h".
10914         * lib/regex_internal.h [!defined _LIBC]: Likewise.
10915         * lib/getusershell.c: Include stdio--.h rather than stdio.h
10916         and stdio-safer.h.
10917         (getusershell): Call fopen, not fopen_safer.
10918         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
10919         Do not include unistd-safer.h.
10920         (save_cwd): Don't call fd_safer; no longer needed
10921         now that we include fcntl--.h.
10922
10923         * lib/getdate.y (relative_time): New type.
10924         (RELATIVE_TIME_0): New constant.
10925         (parser_control): Use relative_time instead of doing it ourselves.
10926         (%union): Add new relative_time rel member.
10927         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
10928         Now typeless.
10929         (relunit, relunit_snumber): Now of type rel.
10930         (zone, rel, relunit, get_date): Adjust to above changes.
10931
10932         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
10933         Do not include unistd-safer.h.
10934         (getloadavg): Don't call fd_safer; no longer needed
10935         now that we include fcntl--.h.
10936
10937         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
10938         (make_dir_parents): Treat ENOSYS like EEXIST.
10939
10940         Improve quality of diagnostics on restore_cwd failure.
10941         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
10942         (make_dir_parents): Last arg is now int * (for errno), not bool *.
10943         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
10944         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
10945         each time through the loop.  Do not diagnose restore_cwd failure;
10946         that is the caller's job (and perhaps the caller does not care).
10947
10948         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
10949         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
10950         If the file already exists but is not a directory, don't bother
10951         to try to make its parents.
10952         Close potential file descriptor leak if we can't chdir("/") (!).
10953         Don't always return true if chdir($PWD) fails; return true only
10954         if the requested action was done successfully (except for the
10955         chdir($PWD)).
10956         Don't log final directory unless we actually made it.
10957         Refactor to avoid duplicate code to fix up permissions.
10958         Don't attempt to fix up parent permissions if chdir($PWD) fails.
10959
10960         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
10961         to make it a bit faster and (I hope) clearer.
10962         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
10963         Fix bug in formats like %2N.
10964
10965         * lib/verify.h: New file.
10966
10967 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
10968
10969         Sync from coreutils.
10970         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
10971
10972 2005-09-22  Jim Meyering  <jim@meyering.net>
10973
10974         Sync from coreutils.
10975
10976         * m4/lstat.m4 (gl_FUNC_LSTAT):
10977         Use AC_LIBSOURCES to require lstat.c and lstat.h.
10978         Remove obsolete comment.
10979         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
10980         * m4/xstrtod.m4: Likewise.
10981
10982         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
10983
10984 2005-09-22  Jim Meyering  <jim@meyering.net>
10985
10986         Sync from coreutils.
10987
10988         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
10989
10990         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
10991         the .tm_year member, since otherwise gcc-4.0 would now warn about
10992         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
10993
10994         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
10995         order to avoid an unsuppressible warning from gcc on 64-bit systems.
10996
10997         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
10998         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
10999         when run in a time zone for which daylight savings time is in effect
11000         for the starting date.
11001
11002         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
11003         stop us from restricting permissions of just-created absolute-named
11004         directories.
11005         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
11006         to restore initial working directory.
11007         * lib/mkdir-p.c (make_dir_parents): New parameter:
11008         different_working_dir, to tell caller if/when we change the working
11009         directory and are unable to return to the initial one.
11010         * lib/mkdir-p.h (make_dir_parents): Update prototype.
11011         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
11012         `return false'.  This fixes a bug introduced on 2004-07-30.
11013
11014         * lib/openat.c (fdopendir): Be sure to close the supplied
11015         file descriptor before returning.  This makes our replacement
11016         implementation a little closer to Solaris's, where fdopendir
11017         ties the file descriptor to the returned DIR* pointer.
11018         * lib/openat.c (unlinkat): New function.
11019         * lib/openat.h (unlinkat): Add prototype.
11020         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
11021         (openat_restore_fail): Rename from openat_restore_die.
11022         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
11023
11024         Provide an alternative to exiting immediately upon save_cwd or
11025         restore_cwd failure.  Now, an application can arrange e.g.,
11026         to perform a longjump in that case.
11027         * lib/openat.c: Include dirname.h.
11028         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
11029         (rpl_openat, fdopendir, fstatat): Call openat_save_die
11030         and openat_restore_die rather than calling error directly.
11031         Don't include "error.h" or "exitfail.h"; they're no longer needed.
11032
11033         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
11034         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
11035         define.
11036
11037         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
11038         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
11039                             int utc, int nanoseconds);
11040         Background:
11041         date should not have to allocate a megabyte of virtual memory to
11042         handle a format argument like +%1048575T.  When implemented with
11043         strftime, it must allocate such a buffer, use strftime to fill it
11044         in, print it, then free it.
11045         With fprintftime, it simply prints everything and exits.
11046         With no need for memory allocation, that's one fewer way to fail.
11047         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
11048         optional field width, not before, so we accept %9:z, not %:9z.
11049         (my_strftime): Be sure to use L_('x') for literals.
11050
11051         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
11052         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
11053         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
11054         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
11055         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
11056         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
11057         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
11058         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
11059         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
11060         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
11061         * lib/xgethostname.c, lib/xreadlink.c:
11062         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
11063
11064         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
11065         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
11066         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
11067         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11068         and don't include <sys/file.h>).
11069
11070 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
11071
11072         Sync from coreutils.
11073
11074         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
11075         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
11076         [!LDAV_DONE]: Avoid unused variable warning.
11077
11078 2005-09-21  Bruno Haible  <bruno@clisp.org>
11079
11080         * lib/unicodeio.h (unicode_to_mb): New declaration.
11081
11082 2005-09-20  Derek Price  <derek@ximbiot.com>
11083
11084         * lib/getaddrinfo.c: Don't include <netdb.h> included from
11085         getaddrinfo.h.
11086
11087 2005-09-20  Bruno Haible  <bruno@clisp.org>
11088
11089         * gnulib-tool: Remove trailing slashes from the values specified for
11090         --source-base, --m4-base, --tests-base, --aux-dir.
11091         Suggested by Simon Josefsson <jas@extundo.com>.
11092
11093 2005-09-20  Bruno Haible  <bruno@clisp.org>
11094
11095         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11096         func_modules_to_filelist, func_import, func_create_testdir): Make all
11097         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11098         change when gnulib-tool is invoked in a different locale.
11099
11100 2005-09-19  Simon Josefsson  <jas@extundo.com>
11101
11102         * m4/socklen.m4: Fix typo.
11103
11104 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11105
11106         Use a consistent style for including <config.h>.
11107         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11108         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11109         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11110         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11111         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11112         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11113         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11114         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11115         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11116         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11117         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11118         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11119         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11120         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11121         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11122         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11123         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11124         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11125         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11126         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11127         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11128         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11129         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11130         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11131         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11132         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11133         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11134         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11135         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11136         lib/xstrtoumax.c, lib/yesno.c:
11137         Standardize inclusion of config.h.
11138         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11139         lib/inttostr.h:  Removed inclusion of config.h from header files.
11140         * lib/inttostr.c:  Adjusted in-tree users.
11141         * lib/timespec.h: Remove superfluous warning to include config.h.
11142         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11143         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11144         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11145         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11146         config.h with HAVE_CONFIG_H.
11147
11148 2005-09-19  Jim Meyering  <jim@meyering.net>
11149
11150         * modules/pathmax (License): Change to LGPL.
11151
11152 2005-09-19  Derek Price  <derek@ximbiot.com>
11153
11154         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
11155
11156 2005-09-19  Bruno Haible  <bruno@clisp.org>
11157
11158         * gnulib-tool (import): Provide default for --tests-base.
11159
11160 2005-09-19  Bruno Haible  <bruno@clisp.org>
11161
11162         * doc/quote.texi: New file, extracted from gnulib.texi.
11163         * doc/ctime.texi: New file, extracted from gnulib.texi.
11164         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
11165         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
11166         * doc/gnulib.texi: Include them.
11167
11168 2005-09-18  Bruno Haible  <bruno@clisp.org>
11169
11170         Portability fix.
11171         * gnulib-tool (func_readlink): New function.
11172         (func_ln_if_changed): Use it.
11173
11174 2005-09-18  Bruno Haible  <bruno@clisp.org>
11175
11176         * gnulib-tool: Support --with-tests also with --import.
11177         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
11178         (func_import): Use variables $testsbase and $inctests. Emit a
11179         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
11180         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
11181         SUBDIRS += $testsdir.
11182         (func_create_testdir): Update.
11183
11184 2005-09-18  Bruno Haible  <bruno@clisp.org>
11185
11186         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
11187         instead of $dry_run.
11188         (func_cp_if_changed, func_mv_if_changed): Remove functions.
11189         (func_ln_if_changed): Don't handle dry-run here.
11190         (func_import): In dry-run mode, detect more precisely which actions
11191         would be performed, and don't use "...ing" verbs.
11192
11193 2005-09-18  Bruno Haible  <bruno@clisp.org>
11194
11195         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
11196         (func_import): Use join on two temporary files instead of three nested
11197         loops, in order to determine which files are new or old.
11198
11199 2005-09-18  Bruno Haible  <bruno@clisp.org>
11200
11201         * gnulib-tool (func_import): Comment out code that spits out the
11202         new files with --dry-run.
11203
11204 2005-09-18  Bruno Haible  <bruno@clisp.org>
11205
11206         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
11207
11208 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11209
11210         * lib/stat-time.h: New file.
11211         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
11212         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
11213         in a different way.
11214         (timespec_cmp): New function.
11215         * lib/utimecmp.c: Include stat-time.h.
11216         (SYSCALL_RESOLUTION): Depend on whether various struct stat
11217         members exist, not on the obsolescent ST_MTIM_NSEC.
11218         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
11219
11220 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11221
11222         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
11223
11224 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
11225
11226         * MODULES.html.sh (File system functions): Add stat-time.
11227         * modules/stat-time: New file.
11228         * modules/timespec (Files): Remove m4/st_mtim.m4; this
11229         is now done in a different way, by the stat-time module.
11230         * modules/utimecmp (Depends-on): Add stat-time.
11231
11232 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
11233
11234         * m4/st_mtim.m4: Remove.  Superseded by...
11235         * m4/stat-time.m4: New file.
11236         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
11237         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
11238
11239 2005-09-15  Derek Price  <derek@ximbiot.com>
11240
11241         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
11242
11243 2005-09-15  Derek Price  <derek@ximbiot.com>
11244
11245         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
11246         * lib/regex_internal.c: Ditto, using this...
11247         (__GNUC_PREREQ): ...new macro.
11248         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
11249         using...
11250         (__GNUC_PREREQ): ...this new macro.
11251
11252         * lib/strstr.h: Include string.h. Define strstr as a macro here.
11253
11254 2005-09-15  Derek Price  <derek@ximbiot.com>
11255             Paul Eggert  <eggert@cs.ucla.edu>
11256
11257         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
11258         changes, consolidating in...
11259         * lib/regex_internal.h: ...this file.
11260
11261 2005-09-13  Jim Meyering  <jim@meyering.net>
11262
11263         * lib/canon-host.c: Filter through gnu indent and reword comments
11264         slightly.
11265         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
11266
11267 2005-09-13  Derek Price  <derek@ximbiot.com>
11268
11269         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
11270         failure.
11271         Reported by Jim Meyering  <jim@meyering.net>.
11272
11273 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11274
11275         * lib/base64.c: Typo.
11276         (base64_encode): Put b64str in initialized data section.
11277
11278 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
11279
11280         Merge glibc and coreutils changes into gnulib, plus a few
11281         extra fixes.
11282         * lib/md5.c: Use #error rather than a string.
11283         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
11284         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
11285         (__attribute__): Define to empty for non recent-GCC.
11286         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
11287         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
11288         Renamed from their non-__ counterparts, with new macros replacing
11289         them if not _LIBC.  Add __THROW attribute.
11290         (rol): Remove.
11291         (struct md5_ctx): Align buffer if using GCC.
11292         * lib/sha1.h (struct sha1_ctx): Likewise.
11293         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
11294         The old name was backwards.
11295         (NOTSWAP): Remove; not used.
11296         (rol): New macro, moved here from md5.h.
11297         (sha1_process_block): Remove a FIXME that doesn't make sense.
11298
11299 2005-09-12  Derek Price  <derek@ximbiot.com>
11300
11301         Return usable errors from canon-host.
11302         * lib/canon-host.h: New file.
11303         * lib/canon-host.c (canon_host): Wrap...
11304         (canon_host_r): ...this new function, which now relies exclusively on
11305         getaddrinfo.
11306         (ch_strerror): New function.
11307         (last_cherror): New global.
11308         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
11309         interface.
11310         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
11311         void *.
11312         (freeaddrinfo): Free ai->ai_canonname when set.
11313
11314 2005-09-12  Derek Price  <derek@ximbiot.com>
11315
11316         Make canon-host require getaddrinfo.
11317         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
11318         AC_LIBSOURCE canon-host.h.  Call...
11319         (gl_PREREQ_CANON_HOST): ...this new function, which requires
11320         gl_GETADDRINFO.
11321         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
11322
11323 2005-09-12  Derek Price  <derek@ximbiot.com>
11324
11325         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
11326         LGPL.
11327         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
11328
11329 2005-09-12  Derek Price  <derek@ximbiot.com>
11330
11331         * lib/gai_strerror.c: Include config.h when available.  Include
11332         getaddrinfo.h before other headers to test interface.
11333         Reported by Larry Jones <lawrence.jones@ugs.com>.
11334
11335 2005-09-12  Derek Price  <derek@ximbiot.com>
11336             Paul Eggert  <eggert@cs.ucla.edu>
11337
11338         * modules/glob (Files): Add glob-libc.h.
11339
11340 2005-09-12  Derek Price  <derek@ximbiot.com>
11341             Paul Eggert  <eggert@cs.ucla.edu>
11342
11343         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
11344         glob_.h, glob-libc.h.
11345         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
11346
11347 2005-09-12  Derek Price  <derek@ximbiot.com>
11348             Paul Eggert  <eggert@cs.ucla.edu>
11349
11350         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
11351         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
11352         protecting things that should be done only in gnulib contexts.
11353         * lib/glob_.h: New file, containing only the glob things needed for
11354         gnulib.
11355         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
11356         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
11357         (glob, globfree, glob_pattern_p): Now defined simply in terms of
11358         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
11359         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
11360         and to respect the namespace rules better.
11361
11362 2005-09-08  Simon Josefsson  <jas@extundo.com>
11363
11364         * modules/socklen: New file.
11365
11366 2005-09-08  Simon Josefsson  <jas@extundo.com>
11367
11368         * m4/socklen.m4: New file.
11369
11370 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11371
11372         * modules/utimens (Files): Add m4/utimbuf.m4, since
11373         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
11374         Reported by Sergey Poznyakoff.
11375
11376 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11377
11378         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
11379         definitions, since that's the preferred style in glibc.
11380         Fix a minor spacing issue, and update copyright notice to match
11381         glibc's.
11382
11383 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
11384
11385         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
11386
11387 2005-09-06  Simon Josefsson  <jas@extundo.com>
11388
11389         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
11390         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
11391
11392 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11393
11394         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
11395         warning.
11396
11397 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
11398
11399         * config/srclist.txt: Add glibc bug 1302.
11400
11401 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
11402
11403         Change bitset word type from unsigned int to unsigned long int,
11404         as this has better performance on typical 64-bit hosts.
11405         Port bitset code to hosts with unusual word sizes.
11406         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
11407         (build_collating_symbol):
11408         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
11409         argument is a bitset.  This is merely a style issue, but it makes
11410         it clearer that an entire array is expected.
11411         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
11412         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
11413         Port to the case where bitset_word is not the same as unsigned int.
11414         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11415         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
11416         Likewise.
11417         * lib/regexec.c (check_dst_limits_calc_pos_1,
11418         check_subexp_matching_top):
11419         (build_trtable, group_nodes_into_DFAstates):
11420         Likewise.
11421         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
11422         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
11423         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
11424         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
11425         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
11426         * lib/regcomp.c (optimize_subexps, lower_subexp):
11427         Work even if bitset_word has holes in its bitwise representation.
11428         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
11429         * lib/regexec.c (check_dst_limits_calc_pos_1,
11430         check_subexp_matching_top):
11431         Likewise.
11432         * lib/regex_internal.c (re_string_reconstruct):
11433         Don't assume UCHAR_MAX == 255.
11434         * lib/regex_internal.h (bitset_set_all): Likewise.
11435         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
11436         All uses changed.
11437         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
11438         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
11439         All uses changed.
11440         (BITSET_WORD_MAX): New macro.
11441         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
11442         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
11443         (bitset_empty, bitset_copy):
11444         Prefer sizeof (bitset) to multiplying it out ourselves.
11445         (bitset_not_merge): Remove; unused.
11446         (bitset_contain): Return bool, not unsigned int with one bit on.
11447         All callers changed.
11448         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
11449         alignment than re_node_set; do this by defining a new internal
11450         type struct dests_alloc and using it to allocate memory.
11451
11452 2005-09-05  Bruno Haible  <bruno@clisp.org>
11453
11454         * gnulib-tool (func_import): Fix comparison in handling of symbolic
11455         links.
11456
11457 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
11458
11459         * modules/size_max (Makefile.am): Add size_max.h
11460
11461 2005-09-04  Derek Price  <derek@ximbiot.com>
11462
11463         * gnulib-tool (func_import): Fix reversed $symbolic logic.
11464
11465 2005-09-03  Simon Josefsson  <jas@extundo.com>
11466
11467         * gnulib-tool: Fix typo.
11468
11469 2005-09-03  Simon Josefsson  <jas@extundo.com>
11470
11471         * config/srclist.txt: Add glibc bug 1293.
11472
11473 2005-09-03  Derek Price  <derek@ximbiot.com>
11474
11475         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
11476         From Larry Jones <lawrence.jones@ugs.com>.
11477
11478 2005-09-02  Simon Josefsson  <jas@extundo.com>
11479
11480         * modules/socklen: New file.
11481
11482 2005-09-02  Simon Josefsson  <jas@extundo.com>
11483
11484         * modules/havelib: New module.
11485
11486         * modules/gettext, modules/iconv, modules/lock, modules/readline:
11487         Use havelib.
11488
11489 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11490
11491         Check for arithmetic overflow when calculating sizes, to prevent
11492         some buffer-overflow issues.  These patches are conservative, in the
11493         sense that when I couldn't determine whether an overflow was possible,
11494         I inserted a run-time check.
11495         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
11496         macros.
11497         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
11498         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
11499         (re_xnrealloc, re_x2nrealloc): New inline functions.
11500         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
11501         parse_bracket_exp):
11502         (build_equiv_class, build_charclass): Check for arithmetic overflow
11503         in size expression calculations.
11504         * lib/regex_internal.c (re_string_realloc_buffers):
11505         (build_wcs_upper_buffer, re_node_set_add_intersect):
11506         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
11507         (re_dfa_add_node, register_state): Likewise.
11508         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
11509         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
11510         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
11511         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
11512
11513 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
11514
11515         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
11516         m4/ulonglong.m4.  Problem reported by Martin Lambers.
11517
11518 2005-09-02  Bruno Haible  <bruno@clisp.org>
11519
11520         Support for lib vs. lib64 distinction on biarch platforms.
11521         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
11522         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
11523         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
11524
11525 2005-09-02  Bruno Haible  <bruno@clisp.org>
11526
11527         * gnulib-tool (import): In the other first-use case, provide defaults
11528         as well.
11529
11530 2005-09-02  Bruno Haible  <bruno@clisp.org>
11531
11532         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
11533         patches not yet found in the latest gettext release.
11534
11535 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11536
11537         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
11538         to avoid a collision with bits/local_lim.h in glibc.
11539         All uses changed.  Problem reported by Dmitry V. Levin in
11540         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
11541
11542         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
11543         bugs in int versus size_t comparisons.
11544         (re_string_context_at): Fix bug where the code assumed that
11545         Idx is signed.
11546
11547         Use bool where appropriate.
11548         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
11549         All callers changed.
11550         (calc_eclosure_iter): Likewise, for ROOT arg.
11551         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
11552         (build_charclass_op): Likewise, for NON_MATCH arg.
11553         * lib/regex_internal.c (re_string_allocate, re_string_construct):
11554         (re_string_construct_common): Likewise, for ICASE arg.
11555         * lib/regexec.c (re_search_2_stub, re_search_stub):
11556         Likewise, for RET_LEN arg.
11557         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
11558         (set_regs): Likewise, for FL_BACKTRACK arg.
11559         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
11560         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
11561         (calc_eclosure_iter, parse_bracket_exp):
11562         Use bool for internal variables that are booleans.
11563         * lib/regexec.c (re_search_internal, check_matching,
11564         proceed_next_node):
11565         (set_regs, build_sifted_states, sift_states_bkref):
11566         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
11567         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
11568         (find_collation_sequence_value):
11569         Likewise.
11570         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
11571         (re_node_set_compare):
11572         Return bool, not int. All callers changed.
11573         * lib/regexec.c (check_halt_node_context, check_dst_limits):
11574         (build_trtable, check_node_accept): Likewise.
11575         * lib/regex_internal.h: Include stdbool.h.
11576
11577         Fix bugs uncovered when converting to bool.
11578         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
11579         failure instead of charging ahead blindly.
11580         * lib/regex_internal.c (register_state): Likewise.
11581         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
11582         for freeing internal storage.
11583         (group_nodes_into_DFA_states): Use unsigned int, not int, for
11584         bitset pieces used as boolean, to avoid undefined behavior
11585         on hosts that do int overflow checking.
11586
11587 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
11588
11589         * config/srclist.txt: Add glibc bugs 1285-1287.
11590
11591 2005-09-01  Jim Meyering  <jim@meyering.net>
11592
11593         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
11594         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
11595         Require gl_STAT_MACROS, too.
11596
11597 2005-09-01  Bruno Haible  <bruno@clisp.org>
11598
11599         * gnulib-tool (import): In the first-use case, provide defaults.
11600
11601 2005-09-01  Bruno Haible  <bruno@clisp.org>
11602
11603         * gnulib-tool (func_import): Remove the .tmp files.
11604
11605 2005-09-01  Bruno Haible  <bruno@clisp.org>
11606
11607         * gnulib-tool (func_import): Fix handling of symbolic links.
11608
11609 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11610
11611         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
11612         old glibc regex code mishandles strings longer than 2**31 bytes.
11613         This patch fixes this when the regex code is used in gnulib
11614         (i.e., outside glibc).
11615
11616         This patch should not affect the use of the regex code inside
11617         glibc.  No doubt this problem also needs to be handled for glibc
11618         as well, but the result will be an incompatible change to the
11619         glibc ABI, and the old ABI will have to be supported too.  That
11620         can be the the subject for another patch.
11621
11622         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
11623         governing whether the rest of this patch is active.  By default,
11624         the macro is disabled and the patch has no effect.
11625         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
11626         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
11627         (struct re_pattern_buffer, re_search, re_search_2, re_match):
11628         (re_match_2, re_set_registers): Use the new types.
11629         * lib/regex_internal.h (Idx, re_hashval_t): New types.
11630         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
11631         New macros.
11632         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
11633         (re_string_context_at, bin_tree_t, re_dfastate_t):
11634         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
11635         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
11636         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
11637         (re_string_char_size_at, re_string_wchar_at):
11638         (re_string_elem_size_at):
11639         Use the new types and macros to port to 64-bit hosts.
11640         Use unsigned types for internal values, so that the code
11641         mostly works even for arrays larger than SSIZE_MAX.
11642         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
11643         (search_duplicated_node, calc_eclosure_iter, fetch_number):
11644         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
11645         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
11646         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
11647         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
11648         (calc_inveclosure, parse_dup_op, build_range_exp):
11649         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
11650         (fetch_number, create_token_tree, mark_opt_subexp):
11651         Likewise.
11652         * lib/regex_internal.c (re_string_construct_common,
11653         create_ci_newstate):
11654         (create_cd_newstate, re_string_allocate, re_string_construct):
11655         (re_string_realloc_buffers, build_wcs_upper_buffer):
11656         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
11657         (re_string_reconstruct, re_string_peek_byte_case):
11658         (re_string_fetch_byte_case, re_string_context_at):
11659         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
11660         (re_node_set_init_copy, re_node_set_add_intersect):
11661         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11662         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11663         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
11664         (re_acquire_state, re_acquire_state_context, register_state):
11665         Likewise.
11666         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
11667         search_cur_bkref_entry):
11668         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
11669         (re_search_internal, re_search_2_stub, re_search_stub)
11670         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
11671         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
11672         (update_cur_sifted_state, check_dst_limits):
11673         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11674         (check_subexp_limits, sift_states_bkref, merge_state_array):
11675         (check_subexp_matching_top, get_subexp, get_subexp_sub):
11676         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
11677         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
11678         (expand_bkref_cache, check_node_accept_bytes):
11679         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
11680         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
11681         (acquire_init_state_context, check_halt_node_context):
11682         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
11683         (sift_states_backward, clean_state_log_if_needed):
11684         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
11685         (find_recover_state, transit_state_sb, transit_state_mb):
11686         (transit_state_bkref, build_trtable, match_ctx_clean):
11687         Likewise.
11688         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
11689         to work around an assumption that REG_MISSING is negative.
11690
11691         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
11692         (seek_collating_symbol_entry) [defined _LIBC]:
11693         (lookup_collation_sequence_value) [defined _LIBC]:
11694         (build_range_exp, build_collating_symbol) [defined _LIBC]:
11695         Use prototypes rather than old-style function definitions.
11696         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
11697         (transit_state_sb) [0]:
11698         (find_collation_sequence_value) [defined _LIBC]: Likewise.
11699
11700         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
11701         rm_eo.
11702
11703         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
11704         (optimize_subexps, lower_subexp):
11705         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
11706         since the signed shift might overflow.  Use 1u<<31 instead.
11707         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
11708         Likewise.
11709         * lib/regexec.c (check_dst_limits_calc_pos_1,
11710         check_subexp_matching_top): Likewise.
11711
11712         * lib/regcomp.c (optimize_subexps, lower_subexp):
11713         Use CHAR_BIT rather than 8, for clarity.
11714         * lib/regexec.c (check_dst_limits_calc_pos_1):
11715         (check_subexp_matching_top): Likewise.
11716         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
11717         have to worry about portability issues when shifting it left.
11718         Remove no-longer-needed test for table_size > 0.
11719         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
11720         in a word, as the resulting behavior is undefined.
11721         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
11722         in one case, a <= should have been an <, and in another case the
11723         whole test was missing.
11724         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
11725         the standard name CHAR_BIT.
11726         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
11727         this is not true on one's complement and signed-magnitude hosts.
11728
11729         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
11730         next_last_offset.
11731         (struct re_dfa_t): Remove unused member states_alloc.
11732         * lib/regcomp.c (init_dfa): Don't initialize unused members.
11733
11734 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11735
11736         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
11737         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
11738         and large-file glibc and in 32-bit large-file Solaris.
11739
11740 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11741
11742         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
11743         lengths fit in regoff_t; this isn't true if regoff_t is the same
11744         width as size_t.
11745         * lib/regex.c (re_search_internal): 5th arg is LAST_START
11746         (= START + RANGE) instead of RANGE.  This avoids overflow
11747         problems when regoff_t is the same width as size_t.
11748         All callers changed.
11749         (re_search_2_stub): Check for overflow when adding the
11750         sizes of the two strings.
11751         (re_search_stub): Check for overflow when adding START
11752         to RANGE; if it occurs, substitute the extreme value.
11753
11754 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
11755
11756         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
11757
11758 2005-08-31  Jim Meyering  <jim@meyering.net>
11759
11760         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
11761         a pointer-to-const.
11762         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
11763         (register_state): Likewise.
11764         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
11765         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
11766         (group_nodes_into_DFAstates): Likewise.
11767
11768 2005-08-31  Jim Meyering  <jim@meyering.net>
11769
11770         * check-module: Add a FIXME comment.
11771
11772 2005-08-31  Eric Blake  <ebb9@byu.net>
11773
11774         * modules/unistd-safer (Files): Add unistd--.h.
11775         * modules/stdio-safer (Files): Add stdio--.h.
11776
11777 2005-08-31  Derek Price  <derek@ximbiot.com>
11778
11779         * lib/getdelim.c (getdelim): Return EOF on EOF.
11780         Reported by Larry Jones <lawrence.jones@ugs.com>.
11781
11782 2005-08-31  Bruno Haible  <bruno@clisp.org>
11783
11784         Avoid unnecessary diffs in the generated lib/Makefile.am.
11785         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
11786         the generated files.
11787         (func_import): Don't set cmd.
11788
11789 2005-08-31  Bruno Haible  <bruno@clisp.org>
11790
11791         * lib/strstr.c: Include <stddef.h>, for NULL.
11792         * lib/strcasestr.c: Likewise.
11793         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
11794
11795 2005-08-31  Bruno Haible  <bruno@clisp.org>
11796
11797         * gnulib-tool: New option --macro-prefix.
11798         (func_import): Use macro_prefix.
11799         (import): Handle option --macro-prefix.
11800
11801 2005-08-31  Bruno Haible  <bruno@clisp.org>
11802
11803         * gnulib-tool (import): Rename most ac_* variables to cached_*.
11804         Also use new variables cached_lgpl, cached_libtool.
11805
11806 2005-08-31  Bruno Haible  <bruno@clisp.org>
11807
11808         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
11809         always instantiating them.
11810
11811 2005-08-31  Bruno Haible  <bruno@clisp.org>
11812
11813         * gnulib-tool (func_import): Read the previous cached settings
11814         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
11815         earlier added by gnulib but are now dropped. Warn when a gnulib file
11816         overwrites a non-gnulib file.
11817
11818 2005-08-31  Bruno Haible  <bruno@clisp.org>
11819
11820         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
11821         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
11822         projects that don't keep autogenerated files in CVS. Put into
11823         actioncmd only the specified modules, not the transitive closure.
11824
11825 2005-08-31  Bruno Haible  <bruno@clisp.org>
11826
11827         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
11828         Create directories that shall be filled.
11829         (import): Don't look for gl_* macros in configure.ac. Recurse across
11830         all directories containing a gnulib-cache.m4 files, if meaningful.
11831
11832 2005-08-31  Bruno Haible  <bruno@clisp.org>
11833
11834         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
11835         (import): Set seen_libtool when we see gl_LIBTOOL.
11836
11837 2005-08-31  Bruno Haible  <bruno@clisp.org>
11838
11839         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
11840         declaration macro definitions from generated gnulib.m4.
11841
11842 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
11843
11844         * lib/iconvme.h: Add prototype for iconv_alloc.
11845
11846 2005-08-29  Simon Josefsson  <jas@extundo.com>
11847
11848         * lib/iconvme.c: Fix errno.
11849
11850 2005-08-29  Bruno Haible  <bruno@clisp.org>
11851
11852         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
11853         that it works when the directory contains spaces.
11854
11855 2005-08-29  Bruno Haible  <bruno@clisp.org>
11856
11857         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
11858
11859 2005-08-29  Bruno Haible  <bruno@clisp.org>
11860
11861         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
11862         Emit more advice.
11863
11864 2005-08-29  Bruno Haible  <bruno@clisp.org>
11865         and Stepan Kasal  <kasal@ucw.cz>
11866
11867         * check-module: If more parameters are given, check each of them
11868         separately; add more exceptions, as noted by Jim Meyering.
11869         (check_module): New procedure.
11870         (%exempt_header): Now contains all exceptions.
11871
11872 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
11873
11874         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
11875
11876 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
11877
11878         * lib/iconvme.c: Split iconv_string into iconv_alloc.
11879
11880 2005-08-28  Bruno Haible  <bruno@clisp.org>
11881
11882         * m4/gnulib-tool.m4: New file.
11883
11884 2005-08-27  Jim Meyering  <jim@meyering.net>
11885
11886         * modules/unistd-safer (Files): Add pipe-safer.c.
11887         * modules/fcntl-safer (Files): Add creat-safer.c.
11888
11889 2005-08-27  Jim Meyering  <jim@meyering.net>
11890
11891         * m4/stdlib-safer.m4: New file.  From coreutils.
11892         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
11893         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
11894         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
11895         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
11896         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
11897
11898 2005-08-27  Jim Meyering  <jim@meyering.net>
11899
11900         * lib/fopen-safer.c: Merge minor changes from coreutils.
11901         * lib/dup-safer.c: Likewise.
11902         * lib/fd-safer.c: Likewise.
11903
11904         Merge from coreutils.
11905         * lib/stdio--.h: New file.
11906         * lib/stdlib--.h: New file.
11907         * lib/mkstemp-safer.c: New file.
11908
11909         GNU tar needs these.
11910         * lib/pipe-safer.c: New file.
11911         * lib/creat-safer.c: New file.
11912         * lib/fcntl--.h (creat): Define to creat_safer.
11913         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
11914         * lib/unistd--.h (pipe): Define to pipe_safer.
11915         * lib/unistd-safer.h: Declare pipe_safer.
11916
11917 2005-08-26  Simon Josefsson  <jas@extundo.com>
11918
11919         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
11920         Haible <bruno@clisp.org>.
11921
11922 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
11923
11924         * lib/regex_internal.h: Remove all references to
11925         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
11926         or better.
11927         (bitset_not, bitset_merge, bitset_not_merge):
11928         (bitset_mask, re_string_allocate, re_string_construct):
11929         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
11930         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
11931         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
11932         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
11933         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
11934         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
11935         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
11936         (re_acquire_state_context):
11937         Remove unnecessary forward decls.
11938         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
11939         Put __attribute at function definition,
11940         now that the function decl has been removed.
11941         * lib/regex_internal.c (re_string_peek_byte_case):
11942         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
11943         Likewise.
11944
11945 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
11946
11947         * m4/regex.m4: Add AC_PREREQ(2.50).
11948         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
11949
11950 2005-08-25  Simon Josefsson  <jas@extundo.com>
11951
11952         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
11953         __fsetlocking.
11954
11955 2005-08-25  Simon Josefsson  <jas@extundo.com>
11956
11957         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
11958         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
11959         GLIBC specific code.
11960
11961 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11962
11963         Make regex safe for g++.  This fixes one real bug (an "err"
11964         that should have been "*err").  g++ problem reported by
11965         Sam Steingold.
11966         * lib/regex_internal.h (re_calloc): New macro, consistent with
11967         re_malloc etc.  All callers of calloc changed to use re_calloc.
11968         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
11969         not int.  All callers changed.
11970         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
11971         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
11972         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
11973         (find_recover_state): Change "err" to "*err"; this fixes what
11974         appears to be a real bug.
11975         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
11976         versus int.
11977
11978 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11979
11980         * modules/regex (Depends-on): Add malloc, since the code
11981         assumes that !malloc(0) means failure.
11982
11983 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11984
11985         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
11986
11987         alloca modernization/simplification for regex.
11988         * lib/regex.c: Remove portability cruft for alloca.  This no longer
11989         needs to be at the start of the file, and can be moved into
11990         regex_internal.h and simplified.
11991         * lib/regex_internal.h: Include <alloca.h>.
11992         (__libc_use_alloca) [!defined _LIBC]: New macro.
11993         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
11994         now works outside glibc.
11995
11996 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
11997
11998         * config/srclist.txt: Add glibc bugs 1241, 1245.
11999
12000 2005-08-25  Jim Meyering  <jim@meyering.net>
12001
12002         * lib/open-safer.c: Include <config.h>.
12003         Otherwise, we'd lose LARGEFILE support in any file using
12004         e.g. "fcntl--.h"
12005
12006 2005-08-25  Bruno Haible  <bruno@clisp.org>
12007
12008         * m4/minmax.m4: Require autoconf 2.52.
12009         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
12010         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
12011         alternatives of translit over the alphabet.
12012         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
12013
12014 2005-08-24  Simon Josefsson  <jas@extundo.com>
12015
12016         * tests/test-getpass.c: New file.
12017
12018 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12019
12020         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
12021         for GNU regex features.
12022
12023 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12024
12025         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
12026         * lib/regex.h (regerror): Likewise.
12027
12028         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
12029         requires this.  (The code never needed it.)
12030
12031         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
12032         All uses of recently-renamed identifiers changed to use the new,
12033         POSIX-compliant names.  The code will build and run just fine
12034         without these changes, but it's better to eat our own dog food
12035         and use the standard-conforming names.
12036
12037         * lib/regex.h: Fix a multitude of POSIX name space violations.
12038         These changes have an effect only for programs that define
12039         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
12040         do not change anything for programs compiled in the normal way.
12041         Also, there is no effect on the ABI.
12042
12043         (_REGEX_SOURCE): New macro.
12044         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
12045         defined and _GNU_SOURCE is not; this fixes a name space violation.
12046
12047         Rename the following macros to obey POSIX requirements.
12048         The old names are still visible as macros if _REGEX_SOURCE is defined.
12049         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
12050         RE_BACKSLASH_ESCAPE_IN_LISTS.
12051         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
12052         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
12053         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
12054         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
12055         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
12056         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
12057         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
12058         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
12059         (REG_INTERVALS): renamed from RE_INTERVALS.
12060         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
12061         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
12062         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
12063         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
12064         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
12065         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
12066         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
12067         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
12068         RE_UNMATCHED_RIGHT_PAREN_ORD.
12069         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
12070         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
12071         (REG_DEBUG): renamed from RE_DEBUG.
12072         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
12073         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
12074         unusual, since we can't clash with the POSIX REG_ICASE.
12075         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
12076         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
12077         (REG_NO_SUB): renamed from RE_NO_SUB.
12078         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
12079         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
12080         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
12081         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
12082         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
12083         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
12084         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
12085         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
12086         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
12087         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
12088         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
12089         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
12090         RE_SYNTAX_POSIX_MINIMAL_BASIC.
12091         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12092         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12093         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12094         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12095         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12096         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12097         (REG_FIXED): Renamed from REGS_FIXED.
12098         (REG_NREGS): Renamed from RE_NREGS.
12099
12100         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12101         of other REG_* macros, since POSIX says the user is allowed to
12102         #undef these macros selectively.
12103
12104         (reg_errcode_t): Update comment stating what other tables need
12105         to be consistent.
12106
12107         Rename the following enum values to obey POSIX requirements.
12108         The old names are still visible as macros.
12109         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12110         is not defined, since GNU is supposed to be a superset of POSIX as
12111         much as possible, and since we want reg_errcode_t to be a signed
12112         type for implementation consistency.
12113         (_REG_NOERROR): Renamed from REG_NOERROR.
12114         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12115         (_REG_BADPAT): Renamed from REG_BADPAT.
12116         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12117         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12118         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12119         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12120         (_REG_EBRACK): Renamed from REG_EBRACK.
12121         (_REG_EPAREN): Renamed from REG_EPAREN.
12122         (_REG_EBRACE): Renamed from REG_EBRACE.
12123         (_REG_BADBR): Renamed from REG_BADBR.
12124         (_REG_ERANGE): Renamed from REG_ERANGE.
12125         (_REG_ESPACE): Renamed from REG_ESPACE.
12126         (_REG_BADRPT): Renamed from REG_BADRPT.
12127         (_REG_EEND): Renamed from REG_EEND.
12128         (_REG_ESIZE): Renamed from REG_ESIZE.
12129         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12130         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12131         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12132         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12133         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12134
12135         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12136         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12137         changed.  But support the old name if the new one is not defined
12138         and if _REGEX_SOURCE.
12139
12140         Change the following member names in struct re_pattern_buffer.
12141         The old names are still supported if !_REGEX_SOURCE.
12142         The new names are always supported, regardless of _REGEX_SOURCE.
12143         (re_buffer): Renamed from buffer.
12144         (re_allocated): Renamed from allocated.
12145         (re_used): Renamed from used.
12146         (re_syntax): Renamed from syntax.
12147         (re_fastmap): Renamed from fastmap.
12148         (re_translate): Renamed from translate.
12149         (re_can_be_null): Renamed from can_be_null.
12150         (re_regs_allocated): Renamed from regs_allocated.
12151         (re_fastmap_accurate): Renamed from fastmap_accurate.
12152         (re_no_sub): Renamed from no_sub.
12153         (re_not_bol): Renamed from not_bol.
12154         (re_not_eol): Renamed from not_eol.
12155         (re_newline_anchor): Renamed from newline_anchor.
12156
12157         Change the following member names in struct re_registers.
12158         The old names are still supported if !_REGEX_SOURCE.
12159         The new names are always supported, regardless of _REGEX_SOURCE.
12160         (rm_num_regs): Renamed from num_regs.
12161         (rm_start): Renamed from start.
12162         (rm_end): Renamed from end.
12163
12164         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
12165         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
12166         Prepend __ to parameter names.
12167
12168         Undo yesterday's changes.
12169
12170 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12171
12172         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
12173         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
12174         lib/regex.c.
12175
12176 2005-08-24  Jim Meyering  <jim@meyering.net>
12177
12178         Sync from coreutils.
12179         * m4/fcntl-safer.m4: New file.
12180
12181         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
12182         and object files for this module.
12183
12184 2005-08-24  Jim Meyering  <jim@meyering.net>
12185
12186         Sync from coreutils.
12187         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
12188
12189 2005-08-24  Jim Meyering  <jim@meyering.net>
12190
12191         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
12192         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
12193
12194 2005-08-24  Jim Meyering  <jim@meyering.net>
12195
12196         * modules/fcntl-safer: New module.
12197         * modules/fts (Depends-on): Add fcntl-safer.
12198         * MODULES.html.sh (File descriptor based Input/Output):
12199         Add fcntl-safer.
12200
12201 2005-08-24  Bruno Haible  <bruno@clisp.org>
12202
12203         Support for unit test modules.
12204         * modules/README: Mention tests modules.
12205         * modules/TEMPLATE-TESTS: New file.
12206         * gnulib-tool: New options --extract-tests-module, --with-tests and
12207         --tests-base (unused for the moment).
12208         (testsbase, inctests): New variables.
12209         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
12210         (func_verify_module): Exclude TEMPLATE-TESTS.
12211         (func_verify_nontests_module, func_verify_tests_module): New functions.
12212         (func_get_dependencies): Add implicit dependency for tests modules.
12213         (func_get_tests_module): New function.
12214         (func_modules_transitive_closure): When --with-tests was specified,
12215         include the unit tests as well, unless explicitly avoided.
12216         (func_emit_lib_Makefile_am): Ignore the tests modules here.
12217         (func_emit_tests_Makefile_am): New function.
12218         (func_create_testdir): When --with-tests was specified, emit a
12219         tests/ directory.
12220         * MODULES.html.sh (Future developments): Update.
12221
12222 2005-08-24  Bruno Haible  <bruno@clisp.org>
12223
12224         * modules/tls-tests: New file.
12225         * tests/test-tls.c: New file, from GNU gettext.
12226
12227 2005-08-24  Bruno Haible  <bruno@clisp.org>
12228
12229         * modules/lock-tests: New file.
12230         * tests/test-lock.c: New file, from GNU gettext.
12231
12232 2005-08-24  Bruno Haible  <bruno@clisp.org>
12233
12234         * lib/lock.h: Add multiple inclusion guard.
12235         * lib/tls.h: Add multiple inclusion guard.
12236
12237 2005-08-24  Bruno Haible  <bruno@clisp.org>
12238
12239         * gnulib-tool: Add support for the --aux-dir option to
12240         --create-testdir, --create-megatestdir, --test, --megatest.
12241         (func_create_testdir, func_create_megatestdir): Optionally emit a
12242         AC_CONFIG_AUX_DIR directive.
12243         (create-testdir, create-megatestdir, test, megatest): Provide a
12244         default value for $auxdir.
12245
12246 2005-08-24  Bruno Haible  <bruno@clisp.org>
12247
12248         * gnulib-tool (import): Use compound statement instead of subshell
12249         where possible.
12250
12251 2005-08-24  Bruno Haible  <bruno@clisp.org>
12252
12253         * gnulib-tool (import): Change --aux-dir default to "build-aux".
12254
12255 2005-08-24  Bruno Haible  <bruno@clisp.org>
12256
12257         * gnulib-tool (func_version): Update.
12258
12259 2005-08-24  Bruno Haible  <bruno@clisp.org>
12260
12261         * gnulib-tool (func_import, func_create_testdir,
12262         func_create_megatestdir): Quote all autoconf macro arguments.
12263
12264 2005-08-24  Bruno Haible  <bruno@clisp.org>
12265
12266         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
12267         option --force, because --force causes the aclocal.m4 of each
12268         subdirectory to be newer than the corresponding config.h.in.
12269
12270 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12271
12272         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
12273         All contents moved to gl_REGEX.
12274         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
12275         assume that it does.
12276
12277 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12278
12279         * lib/regex.h (REG_NOSYS)
12280         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
12281         Define, since POSIX requires it as of 2001.
12282         (_REG_ENOSYS)
12283         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
12284         New private symbol, used to keep the enum signed in all cases.
12285         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
12286         Youngman in
12287         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
12288
12289         * lib/regex_internal.c (re_string_skip_chars, register_state):
12290         (calc_state_hash):
12291         Remove forward decls; no longer needed now that we use prototypes.
12292         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
12293         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
12294         (clean_state_log_if_needed): Likewise.
12295
12296 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
12297
12298         * config/srclist.txt: Add glibc bugs 1231-1233.
12299
12300 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12301
12302         Fix problems reported by Sam Steingold in
12303         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
12304         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
12305         assumed that reg_errcode_t is a signed type, which is not
12306         necessarily true if _XOPEN_SOURCE is not defined.
12307         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
12308         since some compilers warn about it otherwise.
12309
12310 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12311
12312         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
12313         (init_word_char, create_initial_state, duplicate_node_closure):
12314         (fetch_token, peek_token_bracket, build_range_exp):
12315         (build_collating_symbol): Remove forward decls; no longer needed
12316         now that we use prototypes.
12317
12318         * lib/regcomp.c:
12319         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
12320         (re_compile_fastmap_iter, regcomp, regerror, regfree):
12321         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
12322         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
12323         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
12324         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
12325         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
12326         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
12327         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
12328         (build_range_exp, build_collating_symbol, parse_bracket_exp):
12329         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
12330         (build_charclass, build_charclass_op, fetch_number, create_tree):
12331         (create_token_tree, mark_opt_subexp, duplicate_tree):
12332         Use prototypes rather than old-style definitions.
12333
12334         * lib/regex_internal.c:
12335         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
12336         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
12337         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12338         (re_string_reconstruct, re_string_peek_byte_case):
12339         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
12340         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12341         (re_node_set_init_copy, re_node_set_add_intersect):
12342         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12343         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12344         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12345         (re_acquire_state, re_acquire_state_context, register_state):
12346         (create_ci_newstate, create_cd_newstate, free_state):
12347         Likewise.
12348         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
12349         re_search_2):
12350         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
12351         (re_search_internal, prune_impossible_nodes):
12352         (acquire_init_state_context, check_matching, static):
12353         (check_halt_node_context, check_halt_state_context, proceed_next_node):
12354         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
12355         (update_regs, sift_states_backward, build_sifted_states):
12356         (clean_state_log_if_needed, merge_state_array):
12357         (update_cur_sifted_state, add_epsilon_src_nodes):
12358         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
12359         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
12360         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
12361         (find_recover_state, check_subexp_matching_top, transit_state_mb):
12362         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
12363         (check_arrival, check_arrival_add_next_nodes):
12364         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12365         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12366         (check_node_accept_bytes, check_node_accept, extend_buffers):
12367         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
12368         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
12369         (sift_ctx_init):
12370         Likewise.
12371
12372         * lib/regex_internal.h:
12373         (re_string_allocate, re_string_construct, re_string_reconstruct):
12374         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
12375         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
12376         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
12377         (re_string_context_at, re_string_peek_byte_case):
12378         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
12379         is defined, since we now use prototypes always.
12380
12381         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
12382         C89 or better.  All uses removed.
12383
12384 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
12385
12386         * config/srclist.txt: Add glibc bugs 1220-1227.
12387
12388 2005-08-20  Jim Meyering  <jim@meyering.net>
12389
12390         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
12391         of unused local, dfa.
12392
12393 2005-08-20  Bruno Haible  <bruno@clisp.org>
12394
12395         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
12396
12397 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12398
12399         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
12400         (re_node_set_insert_last, re_dfa_add_node):
12401         Rename local variables to avoid GCC shadowing warnings.
12402
12403 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12404
12405         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
12406         [defined lint]: Suppress bogus uninitialized-variable warnings.
12407
12408         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
12409         and let the caller return REG_ESPACE if out of space.  This
12410         removes an uninitialied-variable warning with GCC 4.0.1, and also
12411         avoids taking the address of a local variable.  All callers
12412         changed.
12413
12414 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
12415
12416         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
12417         $LIBCSRC/posix/regexec.c.
12418         Add glibc bug 1217 for regcomp.c.
12419
12420 2005-08-19  Jim Meyering  <jim@meyering.net>
12421
12422         * lib/regexec.c (proceed_next_node): Redo local variables to
12423         avoid GCC shadowing warnings.
12424
12425 2005-08-18  Bruno Haible  <bruno@clisp.org>
12426
12427         * lib/strstr.c (strstr): Fix return value in multibyte case.
12428         * lib/strcasestr.c (strcasestr): Likewise.
12429
12430 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
12431
12432         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
12433
12434 2005-08-17  Jim Meyering  <jim@meyering.net>
12435
12436         Make the %s format (seconds since the epoch) work for a negative
12437         number and when used with a zero-padded field width, e.g. %015s.
12438
12439         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
12440         label so that it precedes the code to set `digits'.  Otherwise,
12441         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
12442         print `00-22'.  Now, it prints `-0022', as it should.
12443
12444 2005-08-17  Bruno Haible  <bruno@clisp.org>
12445
12446         * modules/strstr (Files): Add m4/mbrtowc.m4.
12447         (Depends-on): Add mbuiter.
12448
12449 2005-08-17  Bruno Haible  <bruno@clisp.org>
12450
12451         * modules/strcasestr: New file.
12452         * MODULES.html.sh (String handling, based on ANSI C 89): Add
12453         strcasestr.
12454
12455 2005-08-17  Bruno Haible  <bruno@clisp.org>
12456
12457         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
12458
12459 2005-08-17  Bruno Haible  <bruno@clisp.org>
12460
12461         * modules/mbuiter: New file.
12462         * MODULES.html.sh (Extended multibyte and wide character utilities):
12463         Add mbuiter.
12464
12465 2005-08-17  Bruno Haible  <bruno@clisp.org>
12466
12467         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
12468         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
12469
12470 2005-08-17  Bruno Haible  <bruno@clisp.org>
12471
12472         * m4/strcasestr.m4: New file.
12473
12474 2005-08-17  Bruno Haible  <bruno@clisp.org>
12475
12476         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
12477         * lib/strstr.c: Completely rewritten, with multibyte locale support.
12478
12479 2005-08-17  Bruno Haible  <bruno@clisp.org>
12480
12481         * lib/strcasestr.h: New file.
12482         * lib/strcasestr.c: New file.
12483
12484 2005-08-17  Bruno Haible  <bruno@clisp.org>
12485
12486         * lib/strcasecmp.c: Use mbuiter.h.
12487
12488 2005-08-17  Bruno Haible  <bruno@clisp.org>
12489
12490         * lib/mbuiter.h: New file.
12491
12492 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
12493
12494         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
12495         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
12496         and gl_GETOPT are both invoked via different paths (as happens
12497         with GNU tar CVS because it uses both argp and getopt), the former
12498         wins.
12499
12500 2005-08-16  Bruno Haible  <bruno@clisp.org>
12501
12502         * modules/tls: New file.
12503         * MODULES.html.sh (Multithreading): Add tls.
12504
12505 2005-08-16  Bruno Haible  <bruno@clisp.org>
12506
12507         * modules/strnlen1: New file.
12508         * MODULES.html.sh (String handling): Add strnlen1.
12509
12510 2005-08-16  Bruno Haible  <bruno@clisp.org>
12511
12512         * modules/strcase (Files): Add m4/mbrtowc.m4.
12513         (Depends-on): Add strnlen1, mbchar.
12514
12515 2005-08-16  Bruno Haible  <bruno@clisp.org>
12516
12517         * modules/mbiter: New file.
12518         * MODULES.html.sh (Extended multibyte and wide character utilities):
12519         Add mbiter.
12520
12521 2005-08-16  Bruno Haible  <bruno@clisp.org>
12522
12523         * modules/mbfile: New file.
12524         * MODULES.html.sh (Extended multibyte and wide character utilities):
12525         Add mbfile.
12526
12527 2005-08-16  Bruno Haible  <bruno@clisp.org>
12528
12529         * modules/mbchar: New file.
12530         * MODULES.html.sh (Extended multibyte and wide character utilities):
12531         New section.
12532
12533 2005-08-16  Bruno Haible  <bruno@clisp.org>
12534
12535         * m4/tls.m4: New file, from GNU gettext.
12536
12537 2005-08-16  Bruno Haible  <bruno@clisp.org>
12538
12539         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
12540         always.
12541         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
12542
12543 2005-08-16  Bruno Haible  <bruno@clisp.org>
12544
12545         * m4/mbiter.m4: New file.
12546
12547 2005-08-16  Bruno Haible  <bruno@clisp.org>
12548
12549         * m4/mbfile.m4: New file.
12550
12551 2005-08-16  Bruno Haible  <bruno@clisp.org>
12552
12553         * m4/mbchar.m4: New file.
12554
12555 2005-08-16  Bruno Haible  <bruno@clisp.org>
12556
12557         * lib/tls.h: New file, from GNU gettext.
12558         * lib/tls.c: New file, from GNU gettext.
12559
12560 2005-08-16  Bruno Haible  <bruno@clisp.org>
12561
12562         * lib/strnlen1.h: New file.
12563         * lib/strnlen1.c: New file.
12564
12565 2005-08-16  Bruno Haible  <bruno@clisp.org>
12566
12567         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
12568         (mbi_init): Update.
12569         (mbi_avail, mbi_advance): Let the iteration end before the terminating
12570         NUL byte, not after it.
12571
12572 2005-08-16  Bruno Haible  <bruno@clisp.org>
12573
12574         * lib/strcase.h (strcasecmp): Add note in comments.
12575         * lib/strncasecmp.c: Use code from strcasecmp.c.
12576         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
12577         (strcasecmp): Work correctly in multibyte locales.
12578
12579 2005-08-16  Bruno Haible  <bruno@clisp.org>
12580
12581         * lib/mbiter.h: New file.
12582
12583 2005-08-16  Bruno Haible  <bruno@clisp.org>
12584
12585         * lib/mbfile.h: New file.
12586
12587 2005-08-16  Bruno Haible  <bruno@clisp.org>
12588
12589         * lib/mbchar.h: New file.
12590         * lib/mbchar.c: New file.
12591
12592 2005-08-16  Bruno Haible  <bruno@clisp.org>
12593
12594         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
12595         the valid ones. Makes the comparison operations transitive:
12596         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
12597         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
12598
12599 2005-08-15  Simon Josefsson  <jas@extundo.com>
12600
12601         * modules/ssize_t (License): Change to 'unlimited'.
12602
12603         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
12604
12605 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
12606
12607         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
12608         Add comments for each pending glibc patch.
12609
12610 2005-08-15  Bruno Haible  <bruno@clisp.org>
12611
12612         * lib/regex.h (__restrict_arr): Don't define to __restrict if
12613         __cplusplus is defined.
12614
12615 2005-08-14  Jim Meyering  <jim@meyering.net>
12616
12617         Sync from coreutils.
12618
12619         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
12620         Use the hash-table-based cycle-detection code not just when
12621         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
12622         Reported by James Youngman in
12623         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
12624         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
12625         FTS_TIGHT_CYCLE_CHECK.
12626         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
12627         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
12628         once again.
12629         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
12630         * lib/fts.c (fd_safer): Remove decl.
12631         Include fcntl--.h rather than unistd-safer.h
12632         (fts_safe_changedir): Don't call fd_safer; no longer needed
12633         now that we include fcntl--.h.
12634
12635 2005-08-12  Simon Josefsson  <jas@extundo.com>
12636
12637         * modules/getndelim2: Use ssize_t module.
12638         * modules/getnline: Likewise.
12639         * modules/safe-read: Likewise.
12640         * modules/xreadlink: Likewise.
12641
12642         * modules/ssize_t: New file.
12643
12644 2005-08-12  Simon Josefsson  <jas@extundo.com>
12645
12646         * m4/readline.m4: Look for termcap, curses or ncurses if required.
12647
12648 2005-08-12  Simon Josefsson  <jas@extundo.com>
12649
12650         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
12651         ssize_t.
12652
12653 2005-08-12  Simon Josefsson  <jas@extundo.com>
12654
12655         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
12656         readline, getdelim and check_version.
12657         (Support for systems lacking ISO C 99: Sizes of integer types):
12658         Add size_max.
12659
12660 2005-08-12  Bruno Haible  <bruno@clisp.org>
12661
12662         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
12663
12664 2005-08-11  Simon Josefsson  <jas@extundo.com>
12665
12666         * modules/readline: New file.
12667
12668         * modules/strnlen (Files): Add strnlen.h.
12669
12670 2005-08-11  Simon Josefsson  <jas@extundo.com>
12671
12672         * m4/readline.m4: New file.
12673
12674 2005-08-11  Simon Josefsson  <jas@extundo.com>
12675
12676         * lib/readline.h, readline.c: New file.
12677
12678 2005-08-11  Simon Josefsson  <jas@extundo.com>
12679
12680         * doc/gnulib.texi (Initial import, Finishing touches): Mention
12681         gl_AVOID.
12682
12683 2005-08-11  Bruno Haible  <bruno@clisp.org>
12684
12685         * lib/strnlen.h (strnlen): Change parameter name to match comment.
12686
12687 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
12688
12689         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
12690
12691 2005-08-10  Simon Josefsson  <jas@extundo.com>
12692
12693         * tests/test-iconvme.c: New file.
12694
12695 2005-08-10  Simon Josefsson  <jas@extundo.com>
12696
12697         * m4/strnlen.m4: New file.
12698
12699         * m4/strndup.m4: Don't check for strnlen declaration, done in
12700         strnlen.m4.
12701
12702 2005-08-10  Simon Josefsson  <jas@extundo.com>
12703
12704         * lib/strndup.c: Use strnlen.h.
12705
12706         * lib/strnlen.h: New file.
12707
12708 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
12709
12710         * README: Typos.
12711
12712 2005-08-02  Simon Josefsson  <jas@extundo.com>
12713
12714         * modules/readline: New file.
12715
12716 2005-08-02  Simon Josefsson  <jas@extundo.com>
12717
12718         * modules/getdelim: New file.
12719
12720         * modules/getline: Rewrite, don't use getndelim2.
12721
12722 2005-08-02  Simon Josefsson  <jas@extundo.com>
12723
12724         * m4/getline.m4: Separate out getdelim stuff into separate module.
12725
12726         * m4/getdelim.m4: New file.
12727
12728 2005-08-02  Simon Josefsson  <jas@extundo.com>
12729
12730         * lib/getline.h, getline.c: Rewrite.
12731
12732         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
12733
12734 2005-07-31  Bruno Haible  <bruno@clisp.org>
12735
12736         * lib/lock.h (gl_lock_initializer): New macro.
12737         (gl_lock_define_initialized): Use it.
12738         (gl_rwlock_initializer): New macro.
12739         (gl_rwlock_define_initialized): Use it.
12740         (gl_recursive_lock_initializer): New macro.
12741         (gl_recursive_lock_define_initialized): Use it.
12742
12743 2005-07-30  Karl Berry  <karl@gnu.org>
12744
12745         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
12746         Report from Ben Pfaff, regarding getopt.
12747
12748 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
12749
12750         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
12751         normal way.
12752         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
12753         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
12754         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
12755         (gl_GETOPT): Use the new macros.  Most of the implementation
12756         is moved to the new macros.  This is for programs like Emacs
12757         that don't want all the functionality of gl_GETOPT.
12758
12759 2005-07-26  Bruno Haible  <bruno@clisp.org>
12760
12761         * m4/lock.m4: Update from GNU gettext.
12762
12763 2005-07-26  Bruno Haible  <bruno@clisp.org>
12764
12765         * lib/lock.h: Update from GNU gettext.
12766         * lib/lock.c: Update from GNU gettext.
12767
12768 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
12769
12770         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
12771         obsolescent AC_TRY_RUN.  Include the default includes files, for
12772         'exit'.
12773
12774 2005-07-24  Bruno Haible  <bruno@clisp.org>
12775
12776         * modules/visibility: New file.
12777         * MODULES.html.sh (Misc): Add visibility.
12778
12779 2005-07-24  Bruno Haible  <bruno@clisp.org>
12780
12781         * m4/visibility.m4: New file.
12782
12783 2005-07-24  Bruno Haible  <bruno@clisp.org>
12784
12785         * doc/visibility.texi: New file.
12786
12787 2005-07-22  Bruno Haible  <bruno@clisp.org>
12788
12789         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
12790         $(ALLOCA_H), redundant through BUILT_SOURCES.
12791         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
12792         redundant through BUILT_SOURCES.
12793         * modules/byteswap (Makefile.am): Remove explicit dependency on
12794         $(BYTESWAP_H), redundant through BUILT_SOURCES.
12795         * modules/fnmatch (Makefile.am): Remove explicit dependency on
12796         $(FNMATCH_H), redundant through BUILT_SOURCES.
12797         * modules/getopt (Makefile.am): Remove explicit dependency on
12798         $(GETOPT_H), redundant through BUILT_SOURCES.
12799         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
12800         redundant through BUILT_SOURCES.
12801         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
12802         redundant through BUILT_SOURCES.
12803         * modules/stdbool (Makefile.am): Remove explicit dependency on
12804         $(STDBOOL_H), redundant through BUILT_SOURCES.
12805         * modules/stdint (Makefile.am): Remove explicit dependency on
12806         $(STDINT_H), redundant through BUILT_SOURCES.
12807         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
12808         Remove explicit dependency on $(SYSEXITS_H).
12809         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
12810
12811 2005-07-18  Simon Josefsson  <jas@extundo.com>
12812
12813         * lib/check-version.c (check_version): Accept identical versions too.
12814
12815 2005-07-18  Bruno Haible  <bruno@clisp.org>
12816
12817         * modules/lock: New file.
12818         * MODULES.html.sh (Multithreading): New section.
12819
12820 2005-07-18  Bruno Haible  <bruno@clisp.org>
12821
12822         * m4/lock.m4: New file, from GNU gettext.
12823
12824 2005-07-18  Bruno Haible  <bruno@clisp.org>
12825
12826         * lib/lock.h: New file, from GNU gettext.
12827         * lib/lock.c: New file, from GNU gettext.
12828
12829 2005-07-18  Bruno Haible  <bruno@clisp.org>
12830
12831         * lib/lock.h (gl_once_t): New type.
12832         (gl_once_define, gl_once): New macros.
12833         * lib/lock.c (fresh_once): New variable.
12834         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
12835         functions.
12836
12837 2005-07-16  Simon Josefsson  <jas@extundo.com>
12838
12839         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
12840         workaround, suggested by Bruno.
12841
12842 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12843
12844         * modules/xalloc (Depends-on): Add xalloc-die.
12845         * modules/xvasprintf (Depends-on): Add xalloc-die.
12846
12847 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
12848
12849         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
12850         with a minor change.
12851
12852 2005-07-15  Bruno Haible  <bruno@clisp.org>
12853
12854         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
12855         When using lib/poll.c, define poll as rpl_poll.
12856
12857 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
12858
12859         * modules/argp (Depends-on): Remove unlocked-io.
12860
12861 2005-07-14  Derek Price  <derek@ximbiot.com>
12862
12863         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
12864         for glob symlink bug.
12865
12866 2005-07-14  Bruno Haible  <bruno@clisp.org>
12867
12868         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
12869         Instead, test for *_unlocked function declarations directly.
12870
12871 2005-07-11  Simon Josefsson  <jas@extundo.com>
12872
12873         * modules/size_max: New file.
12874
12875         * modules/xsize: Depend on size_max module for size_max.m4.
12876
12877 2005-07-11  Simon Josefsson  <jas@extundo.com>
12878
12879         * lib/size_max.h: New file.
12880
12881 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
12882
12883         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
12884         copyright symbol and the year.
12885         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
12886         (version_etc_va): Use parameterized copyright notice.
12887         Reword to conform to the current GNU coding standards.
12888
12889 2005-07-11  Karl Berry  <karl@gnu.org>
12890
12891         * doc/gnulib.texi (Quoting): new node.
12892         (Initial import): more info, from Patrice.
12893
12894 2005-07-11  Bruno Haible  <bruno@clisp.org>
12895
12896         * gnulib-tool (func_usage): Document option --avoid.
12897         (Command line options): Handle --avoid.
12898         (func_acceptable): New function.
12899         (func_modules_transitive_closure): Use it.
12900
12901 2005-07-11  Bruno Haible  <bruno@clisp.org>
12902
12903         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
12904         Reported by Jim Meyering.
12905
12906 2005-07-10  Bruno Haible  <bruno@clisp.org>
12907
12908         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
12909         Needed when size_t is smaller than 'unsigned int'.
12910         Reported by Paul Eggert.
12911
12912 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12913
12914         * modules/argp (Depends-on): Add unlocked-io
12915
12916 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
12917
12918         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
12919         block of defines.
12920
12921 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
12922
12923         * config/srclist.txt: Comment out regcomp.c, since we have a porting
12924         fix now.
12925
12926 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
12927         and Paul Eggert  <eggert@cs.ucla.edu>
12928
12929         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
12930         in wint_t, not wchar_t.  Remove now-unnecessary cast.
12931
12932 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12933
12934         * modules/regex (Files): Add lib/regex_internal.c,
12935         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
12936         (Depends-on): Add extensions.
12937         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
12938
12939 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12940
12941         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
12942         pathconf.
12943         * m4/same.m4 (gl_SAME): Likewise.
12944         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
12945
12946         * m4/regex.m4: Adjust to new libc regex implementation.
12947         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
12948         all the .c and .h parts of (the new) regex.
12949         Quote the m4 stuff better.
12950         Check for RE_ICASE bug of old gnulib.
12951         Check for REG_STARTEND of recent libc.
12952         Rename local variables from jm_* to gl_*.
12953         Quote operand of "test -f".
12954         Say "recent enough" version of libc, not "version 2".
12955         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
12956         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
12957         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
12958         Remove check for btowc, isascii.
12959         Require AM_LANGINFO_CODESET.
12960
12961 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12962
12963         * lib/regex.c, regex.h: Sync from libc.
12964         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
12965         * lib/regexec.c:
12966         New files, synced from libc, except that regex_internal.h
12967         currently has a small porting fix.
12968
12969 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
12970
12971         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
12972         regex_internal.c, regexec.c.
12973         Add regex_internal.h too, but as a comment, since the libc version
12974         is currently broken in gnulib mode.
12975
12976 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
12977
12978         Support programs like Emacs that use gnulib but not gettext.
12979         * MODULES.html.sh (Internationalization functions): Add gettext-h.
12980         * modules/gettext-h: New file.
12981         * modules/gettext (Files): Remove lib/gettext.h.
12982         (Depends-on): Add gettext-h.
12983         (Makefile.am): Remove lib_SOURCES.
12984         * modules/argmatch, modules/c-stack, modules/closeout:
12985         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
12986         * modules/execute, modules/file-type, modules/getaddrinfo:
12987         * modules/getopt, modules/human, modules/javacomp:
12988         * modules/javaexec, modules/mkdir-p, modules/obstack:
12989         * modules/openat, modules/pagealign_alloc, modules/pipe:
12990         * modules/quotearg, modules/regex, modules/rpmatch:
12991         * modules/unicodeio, modules/userspec, modules/version-etc:
12992         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
12993         * modules/xsetenv:
12994         Depend on gettext-h, not gettext.
12995
12996 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
12997
12998         * gnulib-tool (func_import): Add support for 'public domain' license.
12999         * modules/alloca, modules/atexit, modules/memmove:
13000         Now public domain, not GPL.
13001         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
13002         * modules/realloc, modules/strerror, modules/strtod:
13003         Now LGPL, not GPL.
13004
13005 2005-07-05  Bruno Haible  <bruno@clisp.org>
13006
13007         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
13008         autoconf CVS. Needed for mingw.
13009
13010 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13011
13012         Remove the dependency of the strftime module on the tzset module.
13013         * modules/strftime (Depends-on): Remove dependency on tzset.
13014
13015 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13016
13017         Remove the dependency of the strftime module on the tzset module.
13018         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
13019         gl_FUNC_TZSET_CLOBBER.
13020
13021 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13022
13023         Remove the dependency of the strftime module on the tzset module.
13024         * lib/strftime.c (my_strftime)
13025         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
13026         Copy the input structure, to work around some of the bug with
13027         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
13028         Solaris releases, you should also use the tzset module, but we won't
13029         require it as a dependency any more since we don't want LGPLed code
13030         to depend on GPLed code.
13031
13032 2005-07-02  Jim Meyering  <jim@meyering.net>
13033
13034         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
13035         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
13036         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
13037         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
13038
13039 2005-07-02  Jim Meyering  <jim@meyering.net>
13040
13041         * lib/backupfile.c (backup_args): Change a `0' to NULL.
13042
13043 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13044
13045         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
13046         declares only 'struct timespec;' (!).
13047
13048 2005-07-01  Jim Meyering  <jim@meyering.net>
13049
13050         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
13051         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
13052         * lib/save-cwd.c, tempname.c:
13053         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
13054         and don't include <sys/file.h>).
13055
13056 2005-06-29  Jim Meyering  <jim@meyering.net>
13057
13058         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
13059         type name.  Use the variable name instead.
13060         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
13061         Likewise.
13062
13063 2005-06-28  Simon Josefsson  <jas@extundo.com>
13064
13065         * modules/check-version (Files): Add check-version.m4.
13066
13067 2005-06-28  Simon Josefsson  <jas@extundo.com>
13068
13069         * m4/check-version.m4: New file, suggested by Jim Meyering
13070         <jim@meyering.net>.
13071
13072 2005-06-28  Simon Josefsson  <jas@extundo.com>
13073
13074         * lib/check-version.h, lib/check-version.c: New files.
13075
13076 2005-06-28  Simon Josefsson  <jas@extundo.com>
13077
13078         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
13079         collision with global variable.  Better indentation.  Don't
13080         increment buffer pointer beyond buffer end.  Based on comments
13081         from Paul Eggert <eggert@cs.ucla.edu>.
13082
13083         * lib/base64.h: Indent.
13084
13085 2005-06-28  Simon Josefsson  <jas@extundo.com>
13086
13087         * doc/gnulib.texi (Library version handling): New section.
13088
13089 2005-06-28  Jim Meyering  <jim@meyering.net>
13090
13091         * check-module (find_included_lib_files): Hard-code another
13092         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13093         but modules/fts-lgpl (correctly) does not list those files.
13094
13095         * modules/canonicalize (Files): Add lib/pathmax.h.
13096
13097 2005-06-25  Simon Josefsson  <jas@extundo.com>
13098
13099         * modules/check-version: New file.
13100
13101 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13102
13103         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13104         initializer of struct addrinfo, as an indication that we don't
13105         care how many members the structure has.
13106
13107 2005-06-24  Derek Price  <derek@ximbiot.com>
13108         and Bruno Haible  <bruno@clisp.org>
13109
13110         Remove stat module & update lstat.
13111         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13112         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13113         * m4/stat.m4: Remove this file.
13114
13115 2005-06-24  Derek Price  <derek@ximbiot.com>
13116         and Bruno Haible  <bruno@clisp.org>
13117
13118         Remove stat module & update lstat.
13119         * lib/stat.c: Remove this file...
13120         (slash_aware_lstat): ...moving this content and its support...
13121         * lib/lstat.c (rpl_lstat): ...into here.
13122         * lib/lstat.h: New file.
13123
13124 2005-06-24  Derek Price  <derek@ximbiot.com>
13125         and Bruno Haible  <bruno@clisp.org>
13126
13127         Remove stat module & update lstat.
13128         * config/srclist.txt (libc sources): Remove stat.
13129
13130 2005-06-24  Derek Price  <derek@ximbiot.com>
13131         and Bruno Haible  <bruno@clisp.org>
13132
13133         Remove stat module & update lstat.
13134         * MODULES.html.sh (stat): Remove.
13135         * MODULES.html: Regenerated.
13136         * modules/lstat (Description): Correct function name.
13137         (Files): Add "lstat.h".
13138         (Depends-on): Remove stat, add xalloc, stat-macros.
13139         * modules/stat: Remove this file.
13140         (Include): Add "lstat.h", remove <sys/stat.h>.
13141
13142 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13143
13144         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13145         (ranged_convert): Don't save conversion in a temporary struct.
13146         This causes a warning with GCC 4.0.0, and anyway in the typical
13147         case it's not worth the extra 100 bytes or so of code.
13148         (ranged_convert, __mktime_internal): When calling a function via a
13149         pointer P, use P () rather than (*P) (), as we now assume C89 or
13150         better.
13151
13152 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13153
13154         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
13155         "who -r" failed to give output.  Problem reported by Tim Waugh.
13156
13157         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
13158         (xcalloc): Use it to avoid needless tests.
13159         Problem reported by Jim Meyering.
13160
13161 2005-06-20  Derek Price  <derek@ximbiot.com>
13162
13163         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
13164         unnecessary for Autoconfs > 2.59c.
13165
13166 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13167
13168         * lib/argp.h (__option_is_short): Check upper limit of
13169         __key. Isprint() requires its argument to have the value
13170         of an unsigned char or EOF.
13171
13172 2005-06-16  Jim Meyering  <jim@meyering.net>
13173
13174         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
13175         when either N or S is zero.
13176
13177 2005-06-16  Derek Price  <derek@ximbiot.com>
13178
13179         * m4/bison.m4: Declare YACC & YFLAGS precious.
13180
13181 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13182
13183         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
13184         multibyte string or pattern, fall back on unibyte matching.
13185         Problem reported by James Youngman.
13186
13187 2005-06-08  Bruno Haible  <bruno@clisp.org>
13188
13189         * modules/csharpcomp: New file.
13190         * MODULES.html.sh (C#): Add csharpcomp.
13191
13192 2005-06-08  Bruno Haible  <bruno@clisp.org>
13193
13194         * m4/csharpcomp.m4: New file, from GNU gettext.
13195
13196 2005-06-08  Bruno Haible  <bruno@clisp.org>
13197
13198         * lib/csharpcomp.h: New file, from GNU gettext.
13199         * lib/csharpcomp.c: New file, from GNU gettext.
13200         * lib/csharpcomp.sh.in: New file, from GNU gettext.
13201
13202 2005-06-08  Bruno Haible  <bruno@clisp.org>
13203
13204         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
13205         warning on mingw.
13206
13207 2005-06-07  Derek Price  <derek@ximbiot.com>
13208
13209         Sync from CVS.
13210         * lib/glob_.h: Indent nested #ifdef.
13211
13212 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13213
13214         Sync from coreutils.
13215         Use "file name" when talking about file names, instead of "filename"
13216         or "path", as per the GNU coding standards.
13217         * lib/mkdir-p.c: Renamed from makepath.c.
13218         (make_dir_parents): Renamed from make_path.  All callers changed.
13219         * lib/mkdir-p.h: Likewise.  All includers changed.
13220         * lib/filenamecat.c: Renamed from path-concat.c.
13221         (file_name_concat): Renamed from path_concat.  All callers changed.
13222         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
13223         * lib/filenamecat.h: Likewise.  All includers changed.
13224         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
13225         in comments or local variable names.
13226         * lib/basename.c: Likewise.
13227         * lib/canonicalize.c, canonicalize.h: Likewise.
13228         * lib/dirname.c, dirname.h: Likewise.
13229         * lib/euidaccess.c: Likewise.
13230         * lib/exclude.c: Likewise
13231         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
13232         * lib/fsusage.c, fsuage.h: Likewise.
13233         * lib/fts.c, fts_.h: Likewise.
13234         * lib/getcwd.c: Likewise.
13235         * lib/getloadavg.c: Likewise.
13236         * lib/mkstemp.c: Likewise.
13237         * lib/mountlist.c, mountlist.h: Likewise.
13238         * lib/openat.c, openat.h: Likewise.
13239         * lib/readlink-stub.c: Likewise.
13240         * lib/readutmp.c, readutmp.h: Likewise.
13241         * lib/rename.c: Likewise.
13242         * lib/rmdir.c: Likewise.
13243         * lib/same.c: Likewise.
13244         * lib/savedir.c: Likewise.
13245         * lib/stripslash.c: Likewise.
13246         * lib/tempname.c: Likewise.
13247         * lib/xreadlink.c: Likewise.
13248         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
13249         All uses changed.
13250         * lib/exclude.h: Likewise.
13251
13252         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
13253         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13254         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
13255         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13256         * lib/pathmax.h: Include <limits.h> unconditionally, since other
13257         files have been getting away with it for years (MORE/BSD 4.3
13258         is extinct now).
13259         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
13260         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
13261
13262         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
13263         Define to 256, not 255, as per modern POSIX.
13264
13265 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13266
13267         Sync from coreutils.
13268         Use "file name" when talking about file names, instead of "filename"
13269         or "path", as per the GNU coding standards.
13270         * MODULES.html.sh: mkdir-p renamed from makepath.
13271         filenamecat renamed from path-concat.
13272         * modules/filenamecat: Renamed from modules/path-concat.
13273         (Files): filenamecat.h and filenamecat.c renamed from
13274         path-concat.h and path-concat.c.
13275         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
13276         (Include): filenamecat.h, not path-concat.h.
13277         * modules/mkdir-p: Renamed from modules/makepath.
13278         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
13279         makepath.c.
13280         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
13281         (Include): mkdir-p.h, not makepath.h.
13282
13283 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13284
13285         Sync from coreutils.
13286         * m4/mkdir-p.m4: Renamed from makepath.m4.
13287         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
13288         Rename files from makepath.c to mkdir-p.c, and from
13289         makepath.h to mkdir-p.h.
13290         * m4/filenamecat.m4: Renamed from path-concat.m4.
13291         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
13292         Rename files from path-concat.c to filenamecat.c,
13293         and from path-concat.h to filenamecat.h.
13294         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
13295         "file name" in local variables or comments.
13296         * m4/rename.m4: Likewise.
13297
13298 2005-06-01  Bruno Haible  <bruno@clisp.org>
13299
13300         * modules/csharpexec: New file.
13301         * MODULES.html.sh (C#): New section.
13302
13303 2005-06-01  Bruno Haible  <bruno@clisp.org>
13304
13305         * m4/csharp.m4: New file, from GNU gettext.
13306         * m4/csharpexec.m4: New file, from GNU gettext.
13307
13308 2005-06-01  Bruno Haible  <bruno@clisp.org>
13309
13310         * lib/csharpexec.h: New file, from GNU gettext.
13311         * lib/csharpexec.c: New file, from GNU gettext.
13312         * lib/csharpexec.sh.in: New file, from GNU gettext.
13313
13314 2005-05-31  Derek Price  <derek@ximbiot.com>
13315             Paul Eggert  <eggert@cs.ucla.edu>
13316
13317         Sync from cvs.
13318         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13319
13320 2005-05-31  Derek Price  <derek@ximbiot.com>
13321             Paul Eggert  <eggert@cs.ucla.edu>
13322
13323         Sync from cvs.
13324         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
13325
13326 2005-05-29  Derek Price  <derek@ximbiot.com>
13327
13328         * config/srclist.txt (glob_.h, glob.c): Add these files.
13329
13330 2005-05-29  Derek Price  <derek@ximbiot.com>
13331
13332         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
13333         * modules/glob: New file.
13334         * modules/getlogin_r: Add link to POSIX spec in description.
13335
13336 2005-05-29  Derek Price  <derek@ximbiot.com>
13337             Paul Eggert  <eggert@cs.ucla.edu>
13338
13339         * m4/glob.m4: New file.
13340
13341 2005-05-29  Derek Price  <derek@ximbiot.com>
13342             Paul Eggert  <eggert@cs.ucla.edu>
13343
13344         * lib/glob_.h, lib/glob.c: New files.
13345
13346 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13347
13348         * modules/fts (Files): Remove m4/inttypes-pri.m4.
13349         * modules/fts-lgpl (Depends-on): Remove gettext.
13350
13351 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13352
13353         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
13354         and don't require gt_INTTYPES_PRI.
13355
13356 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13357
13358         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
13359
13360         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
13361         the configuration hassle isn't worth it.
13362         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
13363         (LONGEST_MODIFIER, PRIuMAX): Remove.
13364
13365 2005-05-27  Bruno Haible  <bruno@clisp.org>
13366
13367         * lib/getlogin_r.h: Remove second include of <stddef.h>.
13368
13369 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13370
13371         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
13372         _POSIX_PTHREAD_SEMANTICS for Solaris.
13373
13374 2005-05-25  Derek Price  <derek@ximbiot.com>
13375
13376         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
13377
13378 2005-05-25  Derek Price  <derek@ximbiot.com>
13379             Paul Eggert  <eggert@cs.ucla.edu>
13380
13381         * modules/getlogin_r, m4/getlogin_r.m4: New files.
13382         * lib/getlogin_r.c, getlogin_r.h: New files.
13383
13384 2005-05-25  Bruno Haible  <bruno@clisp.org>
13385             Derek Price  <derek@ximbiot.com>
13386
13387         * lib/getlogin_r.h: Simplify API documentation.
13388
13389 2005-05-23  Derek Price  <derek@ximbiot.com>
13390
13391         * modules/minmax (Files): Add m4/minmax.m4.
13392         (configure.ac): Add gl_MINMAX.
13393
13394 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
13395
13396         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
13397         so that unistd-safer.h (GPL'ed code) need not be included.
13398
13399 2005-05-22  Bruno Haible  <bruno@clisp.org>
13400
13401         * m4/minmax.m4: New file.
13402         Based on a patch by Derek Price <derek@ximbiot.com>.
13403
13404 2005-05-22  Bruno Haible  <bruno@clisp.org>
13405
13406         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
13407         (INT64_MIN): Fix definition.
13408         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
13409
13410         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
13411         NEED_SIGNED_INT_TYPES.
13412
13413         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
13414         HAVE_SYSTEM_INTTYPES.
13415
13416 2005-05-22  Bruno Haible  <bruno@clisp.org>
13417
13418         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
13419         Also include <sys/param.h> if it defines MIN, MAX.
13420         Based on a patch by Derek Price <derek@ximbiot.com>.
13421
13422 2005-05-21  Jim Meyering  <jim@meyering.net>
13423
13424         * modules/fts (Files): Add m4/inttypes-pri.m4.
13425         (Depends-on): Add lstat and remove gettext.  Alphabetize.
13426
13427 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13428
13429         New fts module.
13430         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
13431         (setup_dir, free_dir): New functions.
13432         (enter_dir, leave_dir): Define trivial
13433         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
13434         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
13435         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
13436         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
13437         Move to fts-cycle.c.
13438         (fts_open): Use setup_dir.
13439         (fts_close): Use free_dir.
13440         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
13441         This adds a label and some gotos, but the alternatives were messier.
13442         Check for memory allocation failure when entering a dir.
13443         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
13444         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
13445         (FTS): New member fts_cycle, that is a union that contains the
13446         old active_dir_ht and cycle_state.  All uses changed to mention
13447         fts_cycle.ht and fts_cycle.state.
13448         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
13449         fts.c, with the following changes:
13450         (setup_dir, free_dir): New functions.
13451         (enter_dir): Now returns bool.  Return true if successful, false
13452         if memory exhausted.  All callers changed.
13453         Do not bother partly cleaning up on
13454         memory allocation failure; that is free_dir's job.
13455         However, free ad if hash_insert fails, to avoid memory leak.
13456         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
13457         fts->fts_options to see which union member to use.
13458
13459 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13460
13461         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
13462         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
13463
13464 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
13465
13466         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
13467
13468 2005-05-20  Jim Meyering  <jim@meyering.net>
13469
13470         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
13471         Now a macro, to pacify GCC.
13472
13473 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13474
13475         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
13476         of -1.
13477
13478 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
13479
13480         * lib/chown.c (rpl_chown): Return -1 on failure.
13481
13482 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13483
13484         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
13485         Don't check for stddef.h.
13486         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
13487         don't use its results.
13488         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
13489         since we include them unconditionally.  Don't require
13490         AM_STDBOOL_H, since stdbool is a prerequisite.
13491         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
13492         since we assume C89 or better.
13493         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
13494         as we don't use their results.
13495         Don't check for fchdir, memmove, memset, strrchr, as we use
13496         them unconditionally.
13497         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
13498         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
13499
13500 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
13501
13502         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
13503         Include <stddef.h> unconditionally, since we assume C89 now.
13504         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
13505         * lib/fts.c: Include fts_.h first, to check interface.
13506         Do not include intprops.h; no longer needed.
13507         Include cycle-check.h and hash.h, since fts_.h no longer does.
13508         Remove unnecessary casts of closedir to void.
13509         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
13510         decide whether to decrement nlinks.
13511         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
13512         (FTS): Use struct hash_table * instead of Hash_table, so that
13513         we no longer need to include hash.h here.
13514
13515 2005-05-18  Jim Meyering  <jim@meyering.net>
13516
13517         * modules/dirfd (License): Change to LGPL.  Most of the code
13518         is already in the public domain.
13519
13520 2005-05-18  Jim Meyering  <jim@meyering.net>
13521
13522         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
13523         Reported by Yoann Vandoorselaere.
13524
13525 2005-05-17  Jim Meyering  <jim@meyering.net>
13526
13527         * m4/fts.m4: New file, from coreutils.
13528
13529 2005-05-17  Jim Meyering  <jim@meyering.net>
13530
13531         * lib/fts.c, lib/fts_.h: New files, from coreutils.
13532
13533 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13534
13535         Sync from coreutils.
13536         * m4/unlinkdir.m4: New file.
13537
13538 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13539
13540         Sync from coreutils.
13541         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
13542         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
13543         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
13544         White space changes only.
13545         * lib/makepath.c (make_path): Port to hosts where leading "//" is
13546         special.
13547         * lib/yesno.c: Include getline.h, not ctype.h.
13548         (yesno): Don't remove leading white space; POSIX doesn't allow it.
13549         Use getline to remove arbitrary restriction on response length.
13550
13551 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
13552
13553         * config/srclist-update: Spell out "Street" in FSF postal
13554         mail address; this is the style the FSF seems to prefer.
13555
13556         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
13557         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
13558         this updates FSF postal mail address.
13559
13560         Sync from coreutils.
13561         * modules/unlinkdir: New file.
13562         * modules/yesno (Depends-on): Add getline.
13563         * MODULES.html.sh (File system functions): Add unlinkdir.
13564
13565 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13566
13567         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
13568         lib/strsep.h:
13569         Change the initial comment to refer to GPL, not LGPL.
13570         gnulib-tool will change it to LGPL as needed.
13571
13572         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
13573         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
13574         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
13575         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
13576         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
13577         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
13578         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
13579         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
13580         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
13581         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
13582         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
13583         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
13584         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
13585         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
13586         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
13587         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
13588         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
13589         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
13590         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
13591         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
13592         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
13593         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
13594         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
13595         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
13596         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
13597         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
13598         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
13599         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
13600         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
13601         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
13602         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
13603         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
13604         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
13605         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
13606         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
13607         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
13608         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
13609         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
13610         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
13611         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
13612         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
13613         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
13614         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
13615         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
13616         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
13617         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
13618         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
13619         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
13620         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
13621         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
13622         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
13623         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
13624         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
13625         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
13626         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
13627         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
13628         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
13629         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
13630         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
13631         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
13632         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
13633         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
13634         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
13635         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
13636         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
13637         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
13638         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
13639         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
13640         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
13641         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
13642         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
13643         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
13644         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
13645         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
13646         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
13647         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
13648         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
13649         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
13650         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
13651         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
13652         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
13653         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
13654         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
13655         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
13656         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
13657         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
13658         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
13659         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
13660         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
13661         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
13662         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
13663         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
13664         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
13665         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
13666         lib/yesno.c, lib/yesno.h:
13667         Update FSF postal mail address.
13668
13669 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13670
13671         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
13672         tests/test-memmem.c, tests/test-stpncpy.c:
13673         Update FSF postal mail address.
13674
13675 2005-05-13  Bruno Haible  <bruno@clisp.org>
13676
13677         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
13678         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
13679         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
13680         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
13681         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
13682         Add support for 64-bit integers in the MSVC compiler.
13683
13684 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
13685
13686         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
13687
13688 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
13689
13690         * gnulib-tool (func_import): Sort and uniquify recommended includes.
13691
13692 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
13693
13694         * doc/getdate.texi (General date syntax): Don't say that date
13695         date --iso-8601=ns generates acceptable dates; it doesn't yet.
13696         Problem reported by Nic Ferrier.
13697
13698 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13699
13700         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
13701         specified in ai_socktype. Fix invalid ai_protocol
13702         check. ai_protocol is usually set to 0 or depending on
13703         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
13704         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
13705         ai_socktype / ai_protocol in the returned addrinfo structure.
13706
13707 2005-05-10  Simon Josefsson  <jas@extundo.com>
13708
13709         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
13710         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13711
13712 2005-05-10  Karl Berry  <karl@gnu.org>
13713
13714         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
13715         (from http://www.gnu.org/licenses).
13716         * doc/COPYING.LIB: also rename to COPYING.LESSER.
13717         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
13718         fdl.texi suffices.
13719
13720 2005-05-10  Karl Berry  <karl@gnu.org>
13721
13722         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
13723         (COPYING.DOC): remove.
13724
13725         * config/srclist-update: new FSF address.
13726
13727 2005-05-10  Derek Price  <derek@ximbiot.com>
13728
13729         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
13730         possible.
13731
13732 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13733             Bruno Haible  <bruno@clisp.org>
13734
13735         * modules/inet_ntop: New file.
13736         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13737         inet_ntop.
13738
13739 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13740             Bruno Haible  <bruno@clisp.org>
13741
13742         * m4/inet_ntop.m4: New file.
13743
13744 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13745             Bruno Haible  <bruno@clisp.org>
13746
13747         * lib/inet_ntop.h: New file.
13748         * lib/inet_ntop.c: New file, from glibc with modifications.
13749
13750 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
13751
13752         * modules/time_r (License): Change to LGPL.
13753         * modules/extensions (License): Change to LGPL.  Actually,
13754         the license is more permissive than that, but currently gnulib-tool
13755         doesn't know how to handle more-permissive licenses.
13756
13757         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
13758         Problem reported by Dave Love.
13759
13760 2005-05-08  Jim Meyering  <jim@meyering.net>
13761
13762         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
13763         blank.
13764
13765 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
13766
13767         * modules/argmatch (Depends-on): Add stdbool.
13768         * modules/backupfile (Depends-on): Likewise.
13769         * modules/chdir-long (Depends-on): Likewise.
13770         * modules/closeout (Depends-on): Likewise.
13771         * modules/cycle-check (Depends-on): Likewise.
13772         * modules/dirname (Depends-on): Likewise.
13773         * modules/fnmatch (Depends-on): Likewise.
13774         * modules/fsusage (Depends-on): Likewise.
13775         * modules/fwriteerror (Depends-on): Likewise.
13776         * modules/getcwd (Depends-on): Likewise.
13777         * modules/getloadavg (Depends-on): Likewise.
13778         * modules/hard-locale (Depends-on): Likewise.
13779         * modules/makepath (Depends-on): Likewise.
13780         * modules/mountlist (Depends-on): Likewise.
13781         * modules/nanosleep (Depends-on): Likewise.
13782         * modules/posixtm (Depends-on): Likewise.
13783         * modules/quotearg (Depends-on): Likewise.
13784         * modules/readtokens (Depends-on): Likewise.
13785         * modules/readtokens0 (Depends-on): Likewise.
13786         * modules/readutmp (Depends-on): Likewise.
13787         * modules/save-cwd (Depends-on): Likewise.
13788         * modules/strftime (Depends-on): Likewise.
13789         * modules/userspec (Depends-on): Likewise.
13790         * modules/utimecmp (Depends-on): Likewise.
13791         * modules/xgetcwd (Depends-on): Likewise.
13792         * modules/xnanosleep (Depends-on): Likewise.
13793         * modules/xstrtod (Depends-on): Likewise.
13794         * modules/yesno (Depends-on): Likewise.
13795
13796 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
13797
13798         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
13799         needless checks.
13800
13801 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13802
13803         Merge from coreutils.  Among other things,
13804         add bulletproofing for cases where stdin, stdout, or stderr are closed.
13805         * lib/fd-safer.c: New file.
13806         * lib/fcntl-safer.h, open-safer.c: Remove.
13807         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
13808         * lib/dup-safer.c: Include unistd-safer.h first.
13809         Don't include errno.h.
13810         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
13811         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
13812         * lib/file-type.c: Rely on file-type.h change.
13813         * lib/getloadavg.c: Include unistd-safer.h.
13814         (getloadavg): Use safer open.
13815         * lib/getusershell.c: Include "stdio-safer.h".
13816         (getusershell): Use safer fopen.
13817         * lib/long-options.c (long_options): Use NULL rather than 0.
13818         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
13819         'free'.
13820         * lib/modechange.c: Likewise.
13821         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
13822         (MODE_DONE): New constant.
13823         (struct mode_change): Remove 'next' member.
13824         (make_node_op_equals): New function; like the old one of the
13825         same name, except it allocates an array.
13826         (mode_compile, mode_create_from_ref): Use it.
13827         (mode_compile): Allocate result as an array, not a linked list.
13828         Parse octal string ourself, so that we catch mistakes like "+0".
13829         (mode_adjust): Arg is an array, not a linked list.
13830         * lib/modechange.c: Include stat-macros.h, xalloc.h.
13831         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
13832         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
13833         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
13834         Remove.  This is now stat-macros.h's job.
13835         (talloc): Remove.  All callers replaced by xalloc, so that
13836         our invokers don't have to worry about reporting memory failures.
13837         (make_node_op_equals): Remove.
13838         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13839         New constants.
13840         (struct mode_change): Moved here from modechange.h.
13841         (mode_append_entry): Remove.
13842         (mode_compile): Remove MASKED_OPS arg, since it encouraged
13843         apps to have incorrect behavior.  Use simpler algorithm for head
13844         and tail.  Don't futz with umask; that's now the job of mode_adjust.
13845         Detect more invalid usages rather than having somewhat-random behavior.
13846         Don't insert an "a=" action, as that leads to incorrect behavior.
13847         (mode_compile, mode_create_from_ref): Return NULL on error instead
13848         of an enum, since now there's only one way to have an error.  All
13849         callers changed.
13850         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
13851         at the correct time.  Simplify calculation of "+u" and its ilk.
13852         Don't mishandle "+X".
13853         (mode_free): Remove "register" and localize decls.
13854         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
13855         (struct mode_change): Move to modechange.c; callers don't
13856         need to see this stuff.
13857         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
13858         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
13859         (mode_change, mode_adjust): Reflect the new signatures noted above.
13860         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
13861         that might redefine system include files.
13862         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
13863         (my_usleep): Use NULL rather than (void *) 0.
13864         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
13865         Use siginterrupt to specify that system calls should be interrupted.
13866         (rpl_nanosleep): Move initialization of suspended closer to call of
13867         my_usleep.
13868         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
13869         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
13870         (desirable_utmp_entry): New function.
13871         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
13872         using x2nrealloc, to simplify logic.
13873         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
13874         size calculation.  Do not assume utmp file is a regular file.
13875         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
13876         (READ_UTMP_CHECK_PIDS): New constant.
13877         * lib/save-cwd.c: Include unistd-safer.h.
13878         (save_cwd): Use fd_safer.
13879         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
13880         [!_LIBC] Include "stat-macros.h" instead.
13881         * lib/unistd-safer.h (fd_safer): New decl.
13882
13883 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13884
13885         * modules/getloadavg (Depends-on): Add unistd-safer.
13886         * modules/getusershell (Depends-on): Add stdio-safer.
13887         * modules/lstat (Depends-on): Remove xalloc.
13888         * modules/mkstemp (Depends-on): Add stat-macros.
13889         * modules/modechange (Depends-on): Remove xstrtol.
13890         Add stat-macros, xalloc.
13891         * modules/save-cwd (Depends-on): Add unistd-safer.
13892         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
13893         * modules/unistd-safer (Files): Add lib/fd-safer.c
13894         (Makefile.am): Remove lib_SOURCES.
13895
13896         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
13897         Remove fcntl-safer; unistd-safer supersedes it.
13898
13899 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13900
13901         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
13902         AC_HEADER_STAT.
13903         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
13904         (gl_PREREQ_CHOWN): Remove.
13905         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
13906         it.  Don't require AC_HEADER_STAT.
13907         (gl_PREREQ_LSTAT): Remove.
13908         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
13909         Don't require AC_HEADER_STAT.
13910         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
13911         (gl_PREREQ_RMDIR): Remove.
13912         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
13913         mention stat-macros.h or AC_HEADER_STAT, since we'll make
13914         the stat-macros module a prerequisite.
13915         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
13916         * m4/filemode.m4 (gl_FILEMODE): Likewise.
13917         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
13918         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
13919         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
13920         variable names.
13921         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
13922         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
13923         variable prefixes.
13924         * m4/fcntl-safer.m4: Remove.
13925         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
13926         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
13927         Invoke gl_PREREQ_FD_SAFER.
13928         (gl_PREREQ_FD_SAFER): New macro.
13929         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
13930         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
13931         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
13932         Remove duplicate call to AC_LIBOBJ(readutmp).
13933         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
13934
13935         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
13936         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
13937
13938 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13939
13940         * MODULES.html.sh (Misc): Add byteswap.
13941
13942 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13943
13944         * modules/getcwd (Depends-on): Add extensions.
13945         * modules/openat (Depends-on): Likewise.
13946
13947 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13948
13949         * modules/byteswap: New file.
13950
13951 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13952
13953         * m4/byteswap.m4: New file.
13954
13955 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
13956
13957         * lib/byteswap_.h: New file.
13958
13959 2005-04-25  Karl Berry  <karl@gnu.org>
13960
13961         * m4/gettext.m4: Update from GNU gettext 0.14.4.
13962
13963 2005-04-25  Albert Chin  <china@thewrittenword.com>
13964
13965         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
13966         Toolkit C bug.
13967
13968 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
13969
13970         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
13971         (func_ln_if_changed) Remove forcibly for no error message
13972         in case file does not exist.
13973
13974 2005-04-19  Simon Josefsson  <jas@extundo.com>
13975
13976         * gnulib-tool (Options): Make --symlink mean --symbolic.
13977
13978 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
13979
13980         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
13981
13982 2005-04-16  Simon Josefsson  <jas@extundo.com>
13983
13984         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
13985
13986 2005-04-15  Simon Josefsson  <jas@extundo.com>
13987
13988         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
13989
13990 2005-04-15  Simon Josefsson  <jas@extundo.com>
13991
13992         * gnulib-tool: Rename --symlink to --symbolic.
13993
13994 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
13995
13996         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
13997         symbolic links to files instead of copying/moving.  Add --aux-dir,
13998         specifying directory relative --dir where auxiliary build tools
13999         are placed.
14000
14001 2005-04-14  Bruno Haible  <bruno@clisp.org>
14002
14003         * modules/allocsa (License): Change to LGPL.
14004         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14005
14006 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14007
14008         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
14009         that "UTC +1 second" continues to work.  Problem reported
14010         by Dmitry V. Levin.
14011         (relunit_snumber): New rule.
14012         (relunit): Use it.
14013
14014 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
14015
14016         * lib/getdate.y (universal_time_zone_table): New constant.
14017         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
14018         universal_time_zone_table.
14019         (lookup_zone): Prefer universal_time_zone_table to
14020         local_time_zone_table, so that "GMT" time stamps are allowed in
14021         London during the summer.  Problem reported by Ian Abbott.
14022
14023 2005-04-12  Jim Meyering  <jim@meyering.net>
14024
14025         * lib/human.c (humblock): Set *options even when returning due to
14026         xstrtoumax conversion failure.  Thanks to a used-uninitialized
14027         warning from gcc-4.
14028
14029 2005-04-09  Jim Meyering  <jim@meyering.net>
14030
14031         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
14032         -Wuninitialized: initialize tm0.tm_year.
14033
14034 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14035
14036         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
14037         count, since there's no maximum.  All uses changed.
14038         Add member dsts_seen.
14039         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
14040         not being INT_MAX.
14041         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
14042         Use pc_rels_seen to decide whther a date is absolute.
14043
14044         * lib/getdate.y (number): Don't overwrite year.
14045         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
14046         check.
14047
14048 2005-04-02  Simon Josefsson  <jas@extundo.com>
14049
14050         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
14051         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
14052
14053 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
14054
14055         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
14056         where no absolute path name can be longer than PATH_MAX.
14057
14058 2005-03-27  Jim Meyering  <jim@meyering.net>
14059
14060         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
14061
14062 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
14063
14064         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
14065         "one's complement" -> "ones' complement" in comment, as per Knuth.
14066         "value of type" -> "type or expression" in comment.
14067         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
14068
14069 2005-03-26  Jim Meyering  <jim@meyering.net>
14070
14071         Comment nits.
14072         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
14073         Correct typos: s/or/of/.
14074
14075 2005-03-26  Jim Meyering  <jim@meyering.net>
14076
14077         * modules/check-include-files: Move to ../ and rename to...
14078         * check-module: ...this.
14079
14080 2005-03-25  Jim Meyering  <jim@meyering.net>
14081
14082         * modules/xvasprintf (Files): Add xalloc.h.
14083
14084 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14085
14086         * modules/gettext (Files): config/config.rpath ->
14087         build-aux/config.rpath
14088         * modules/iconv (Files): Likewise.
14089         Problem reported by Oskar Liljeblad.
14090
14091 2005-03-23  Jim Meyering  <jim@meyering.net>
14092
14093         * modules/check-include-files: New script to check for
14094         missing dependencies, multiple includes, etc.
14095
14096         * modules/c-strtold (Depends-on): Add xalloc.
14097         * modules/c-strtod (Depends-on): Add xalloc.
14098         * modules/hash (Depends-on): Add xalloc.
14099         (Files): Remove lib/xalloc.h.
14100
14101         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14102         * modules/userspec (Files): Add lib/inttostr.h.
14103
14104 2005-03-23  Jim Meyering  <jim@meyering.net>
14105
14106         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14107
14108 2005-03-22  Jim Meyering  <jim@meyering.net>
14109
14110         * modules/stat-macros: New module.
14111         * modules/canonicalize, modules/euidaccess, modules/file-type,
14112         * modules/filemode, modules/lchown, modules/makepath,
14113         * modules/rmdir, modules/stat: Depend on new stat-macros module
14114         rather than listing lib/stat-macros.h manually.
14115         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14116
14117 2005-03-22  Jim Meyering  <jim@meyering.net>
14118
14119         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14120
14121 2005-03-22  Bruno Haible  <bruno@clisp.org>
14122
14123         * config/srclist.txt: Replace target directory 'config' with
14124         'build-aux'.
14125         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14126         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14127         ../build-aux/.
14128
14129 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14130
14131         * modules/chdir-long (Depends-on): Add mempcpy.
14132
14133         * modules/acl, modules/backupfile, modules/c-strtod,
14134         modules/c-strtold, modules/canon-host, modules/canonicalize,
14135         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14136         modules/exclude, modules/exitfail, modules/file-type,
14137         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14138         modules/getdate, modules/getline, modules/getpagesize,
14139         modules/getpass, modules/getugroups, modules/group-member,
14140         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14141         modules/inttostr, modules/long-options, modules/makepath,
14142         modules/md5, modules/memcasecmp, modules/memcoll,
14143         modules/modechange, modules/mountlist, modules/path-concat,
14144         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14145         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14146         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14147         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14148         modules/strftime, modules/strndup, modules/strverscmp,
14149         modules/timespec, modules/unlocked-io, modules/userspec,
14150         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14151         modules/yesno:
14152         Remove lib_SOURCES line from Makefile.am section, as this is now
14153         done automatically by the corresponding Autoconf macro.
14154
14155 2005-03-21  Jim Meyering  <jim@meyering.net>
14156
14157         Changes imported from coreutils.
14158
14159         * lib/cycle-check.c: Don't include xalloc.h.
14160
14161         * lib/path-concat.c: Don't include assert.h.
14162         (path_concat): Remove assertion that would have triggered
14163         for ABASE starting with more than one slash.
14164         Reported by Andreas Schwab.
14165
14166         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
14167         properly when ABASE is an absolute file name.
14168         Correct the description of this function.
14169         Include <assert.h>.
14170         Add an assertion and a test driver.
14171         This fixes a bug introduced on 2004-07-02.
14172         Andreas Schwab reported the resulting failure of cp --parents:
14173         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
14174
14175 2005-03-21  Jim Meyering  <jim@meyering.net>
14176
14177         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
14178         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
14179
14180 2005-03-21  Jim Meyering  <jim@meyering.net>
14181         and  Paul Eggert  <eggert@cs.ucla.edu>
14182
14183         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
14184         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
14185         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
14186         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
14187         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
14188         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
14189         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
14190         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
14191         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
14192         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
14193         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
14194         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
14195         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
14196         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
14197         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
14198         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
14199         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
14200         for these modules.
14201
14202 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
14203
14204         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
14205         (which shouldn't happen), generate nothing instead of returning 0
14206         immediately, so that nstrftime (NULL, ...) doesn't return 0.
14207
14208 2005-03-16  Bruno Haible  <bruno@clisp.org>
14209
14210         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
14211         HAVE_LONGLONG_64BIT.
14212
14213 2005-03-16  Bruno Haible  <bruno@clisp.org>
14214
14215         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
14216         HAVE_LONGLONG_64BIT.
14217
14218 2005-03-16  Bruno Haible  <bruno@clisp.org>
14219
14220         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
14221         HAVE_LONGLONG_64BIT.
14222
14223 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14224
14225         * lib/strftime.c (my_strftime): Prepend space to format so that we can
14226         reliably distinguish strftime failure from empty output on POSIX
14227         hosts.
14228
14229 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
14230
14231         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
14232         (iconv_string): Don't guess a size-zero buffer, as that might cause
14233         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
14234         result would be 'too large', where 'too large' is (heuristically)
14235         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
14236         overflow concerns.  This will prevent some unwanted malloc failures
14237         when the inputs are very large.
14238
14239 2005-03-15  Karl Berry  <karl@gnu.org>
14240
14241         * config/srclist.txt (config.rpath): from gettext.
14242         * config/config.rpath: update.
14243
14244 2005-03-15  Bruno Haible  <bruno@clisp.org>
14245
14246         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
14247         to 'negate'.
14248
14249         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
14250         variable.
14251
14252         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
14253         results.
14254
14255 2005-03-14  Simon Josefsson  <jas@extundo.com>
14256
14257         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
14258         <fx@gnu.org>.
14259
14260 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
14261
14262         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
14263         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
14264         intprops.h.
14265         * lib/strtol.c: Likewise.
14266
14267 2005-03-14  Jim Meyering  <jim@meyering.net>
14268
14269         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
14270         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
14271         to be nonzero so that we (and caller) can detect the difference
14272         between a valid zero-length expansion and an error return, even
14273         when the underlying strftime fails before writing anything into
14274         that location.
14275
14276 2005-03-14  Bruno Haible  <bruno@clisp.org>
14277
14278         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
14279         Update from GNU gettext 0.14.3.
14280
14281 2005-03-10  Jim Meyering  <jim@meyering.net>
14282
14283         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
14284
14285 2005-03-10  Jim Meyering  <jim@meyering.net>
14286
14287         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
14288         so that this module works on systems without fchdir.
14289
14290 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
14291
14292         Factor int-properties macros into a single file, except for
14293         glibc-related files.
14294         * lib/intprops.h: New file.
14295         * lib/getloadavg.c: Include it instead of limits.h.
14296         (INT_STRLEN_BOUND): Remove.
14297         * lib/human.c: Include intprops.h.
14298         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
14299         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
14300         302/1000.
14301         * lib/inttostr.h: Include intprops.h instead of limits.h.
14302         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
14303         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
14304         for consistency with intprops.h.
14305         (time_t_is_integer, twos_complement_arithmetic): Use them.
14306         * lib/sig2str.h: Include <signal.h>, intprops.h.
14307         (INT_STRLEN_BOUND): Remove.
14308         * lib/strftime.c (TYPE_SIGNED): Remove.
14309         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
14310         * lib/strtol.c: Adjust comments to match intprops.h.
14311         * lib/userspec.c: Include intprops.h.
14312         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
14313         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
14314         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
14315         instead of rolling our own expressions.
14316         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
14317
14318         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
14319         instead of int.
14320         (my_strftime): Do not mishandle years close to INT_MAX, by doing
14321         the right thing even if adding 1900 would overflow.  Similarly
14322         for tm_mon + 1 and tm_yday + 1.
14323         Make %Y always equivalent to %C%y, and similarly for %G and %g.
14324         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
14325         (DO_SIGNED_NUMBER): New macro.
14326         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
14327
14328 2005-03-07  Bruno Haible  <bruno@clisp.org>
14329
14330         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
14331
14332 2005-03-07  Bruno Haible  <bruno@clisp.org>
14333
14334         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
14335
14336 2005-03-04  Derek R. Price  <derek@ximbiot.com>
14337
14338         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
14339         (func_import): Only replace files via --import when they have actually
14340         changed.
14341
14342 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14343
14344         * m4/mmap-anon.m4: New file.
14345         * m4/pagealign_alloc.m4: New file.
14346
14347 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14348             Bruno Haible  <bruno@clisp.org>
14349
14350         * modules/pagealign_alloc: New file.
14351         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
14352
14353 2005-03-03  Derek R. Price  <derek@ximbiot.com>
14354             Bruno Haible  <bruno@clisp.org>
14355
14356         * lib/pagealign_alloc.h: New file.
14357         * lib/pagealign_alloc.c: New file.
14358
14359 2005-03-03  Bruno Haible  <bruno@clisp.org>
14360
14361         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
14362         Use an all-permissive copyright notice, recommended by RMS.
14363
14364 2005-03-02  Bruno Haible  <bruno@clisp.org>
14365
14366         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
14367         of AIX, the replacement has to be done only after <string.h> is
14368         included, therefore not in config.h. stpncpy.h does the replacement,
14369         and stpncpy.c uses it.
14370
14371 2005-03-02  Bruno Haible  <bruno@clisp.org>
14372
14373         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
14374         stpncpy.c uses it.
14375
14376 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14377
14378         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
14379         The workaround isn't strictly needed for POSIX conformance, and
14380         it's too much of a pain to configure and maintain.  We'll ask
14381         people to fix their kernels instead.
14382         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
14383         (NANOSLEEP_BUG_WORKAROUND): Remove.
14384         (xnanosleep): Remove the workaround.
14385
14386 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14387
14388         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
14389         Reported by Derek Price.
14390         (Include): Add "timespec.h".
14391
14392         * modules/xnanosleep (Depends-on): Remove gethrxtime.
14393
14394 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
14395
14396         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
14397         to detect nanosleep bug.
14398
14399 2005-03-01  Bruno Haible  <bruno@clisp.org>
14400
14401         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
14402
14403 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
14404
14405         * modules/gethrxtime: New file.
14406         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
14407         (Depends-on): Add gethrxtime.
14408         (configure.ac): Add gl_XNANOSLEEP.
14409         (Makefile.am): Remove lib_SOURCES line.
14410
14411 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14412
14413         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
14414         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
14415
14416 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
14417
14418         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
14419         * lib/timespec.h (gettime): Return void, since it always
14420         succeeds now.  All uses changed.
14421         * lib/gettime.c (gettime) Likewise.
14422         [HAVE_NANOTIME]: Prefer nanotime.
14423         Assume gettimeofday succeeds, as POSIX requires.
14424         Assime time () succeeds, since other code already does.
14425         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
14426         (timespec_subtract): Remove.
14427         (NANOSLEEP_BUG_WORKAROUND): New constant.
14428         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
14429         things considerably.  Use it only on GNU/Linux hosts, since the
14430         workaround shouldn't be needed elsewhere.
14431
14432 2005-02-24  Bruno Haible  <bruno@clisp.org>
14433
14434         * modules/gettext (Files): Add m4/glibc2.m4.
14435
14436 2005-02-24  Bruno Haible  <bruno@clisp.org>
14437
14438         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
14439         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
14440         * m4/progtest.m4:
14441         Update from GNU gettext 0.14.2.
14442         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
14443
14444 2005-02-24  Bruno Haible  <bruno@clisp.org>
14445
14446         * lib/localcharset.c: Update from GNU gettext 0.14.2.
14447         * lib/config.charset: Update from GNU gettext 0.14.2.
14448
14449 2005-02-24  Bruno Haible  <bruno@clisp.org>
14450
14451         * lib/gettext.h: Update from GNU gettext 0.14.2.
14452
14453 2005-02-23  Simon Josefsson  <jas@extundo.com>
14454
14455         * m4/iconvme.m4: New file.
14456
14457 2005-02-23  Jim Meyering  <jim@meyering.net>
14458
14459         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
14460         change.
14461         Thanks to Bruno Haible for catching it.
14462
14463 2005-02-22  Simon Josefsson  <jas@extundo.com>
14464
14465         * modules/iconvme: New file.
14466
14467         * MODULES.html.sh: Add iconvme.
14468
14469 2005-02-22  Simon Josefsson  <jas@extundo.com>
14470
14471         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
14472
14473 2005-02-22  Simon Josefsson  <jas@extundo.com>
14474
14475         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
14476
14477 2005-02-22  Jim Meyering  <jim@meyering.net>
14478
14479         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
14480         s/ifndef/ifdef/.
14481
14482 2005-02-20  Neil Conway  <neilc@samurai.com>
14483
14484         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
14485         returned by OSX/Darwin if the specified buffer is not large
14486         enough for the hostname.
14487
14488 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14489
14490         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
14491         pass it to _help, otherwise the latter coredumps trying to
14492         dereference state.root_argp.
14493
14494 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14495
14496         * modules/chdir-long (Depends-on): Add memrchr.
14497         * modules/memrchr (Files): Add lib/memrchr.h.
14498         (Include): "memrchr.h".
14499
14500 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14501
14502         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
14503
14504 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14505
14506         * lib/memrchr.h: New file.
14507         * lib/chdir-long.c: Include it.
14508         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
14509         Don't bother including stddef.h.
14510
14511 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14512
14513         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
14514         inclusion.
14515         Include <sys/types.h>, for dev_t.
14516         (ME_DUMMY, ME_REMOTE): Move from here....
14517         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
14518         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
14519         Dmitry V. Levin.
14520         Include mountlist.h first, to test the interface.
14521
14522 2005-01-29  Bruno Haible  <bruno@clisp.org>
14523
14524         * lib/progname.c (program_name): Initialize.
14525         Needed when linking statically on MacOS X.
14526
14527 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14528
14529         Sync from coreutils.
14530         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
14531         (Depends-on): Add c-strtod.
14532         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
14533
14534 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14535
14536         Sync from coreutils.
14537         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
14538
14539         Remove files that are specific to coreutils.
14540         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
14541
14542 2005-01-28  Bruno Haible  <bruno@clisp.org>
14543
14544         * modules/javacomp: New file.
14545         * MODULES.html.sh (Java): Add javacomp.
14546
14547 2005-01-28  Bruno Haible  <bruno@clisp.org>
14548
14549         * m4/javacomp.m4: New file, from GNU gettext.
14550
14551 2005-01-28  Bruno Haible  <bruno@clisp.org>
14552
14553         * lib/javacomp.sh.in: New file, from GNU gettext.
14554         * lib/javacomp.h: New file, from GNU gettext.
14555         * lib/javacomp.c: New file, from GNU gettext.
14556
14557 2005-01-26  Simon Josefsson  <jas@extundo.com>
14558
14559         * lib/gai_strerror.c: Use GPL in header.
14560
14561 2005-01-26  Bruno Haible  <bruno@clisp.org>
14562
14563         * modules/javaexec: New file.
14564         * MODULES.html.sh (Java): Add javaexec.
14565
14566 2005-01-26  Bruno Haible  <bruno@clisp.org>
14567
14568         * m4/javaexec.m4: New file, from GNU gettext.
14569
14570 2005-01-26  Bruno Haible  <bruno@clisp.org>
14571
14572         * lib/javaexec.sh.in: New file, from GNU gettext.
14573         * lib/javaexec.h: New file, from GNU gettext.
14574         * lib/javaexec.c: New file, from GNU gettext.
14575
14576 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14577
14578         * modules/lchown (Depends-on): Remove lchown.h
14579
14580 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14581
14582         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
14583         must be defined if the header file was not found, in order
14584         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
14585
14586 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14587
14588         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
14589         initializers for struct pentry_state.
14590         (__argp_error): Check return value of __asprintf
14591         (__argp_failure): Translate error message
14592
14593         * lib/argp-parse.c: Removed braces around the expansion of N_()
14594
14595 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14596
14597         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
14598         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
14599         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
14600         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
14601         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
14602         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
14603         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
14604         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
14605         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
14606         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
14607         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
14608         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
14609         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
14610         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
14611         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
14612         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
14613         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
14614         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
14615         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
14616         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
14617         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
14618         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
14619         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
14620         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
14621         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
14622         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
14623         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
14624         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
14625         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
14626         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
14627         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
14628         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
14629         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
14630         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
14631         xstrtol.m4, xstrtoumax.m4, yesno.m4:
14632         Use an all-permissive copyright notice, recommended by RMS.
14633
14634 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
14635
14636         * modules/chdir-long (Depends-on): Remove mempcpy.
14637
14638 2005-01-21  Jim Meyering  <jim@meyering.net>
14639
14640         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
14641         same value as for Solaris 9.
14642
14643         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
14644         component length.  This included changing the parameter to be
14645         of type `char *' rather than `char const *'.
14646         * lib/chdir-long.h (chdir_long): Update prototype.
14647
14648         * lib/openat.c (fdopendir, fstatat): New functions.
14649         * lib/openat.h: Include headers required for use of DIR and struct
14650         stat.
14651         [AT_SYMLINK_NOFOLLOW]: Define.
14652         (fdopendir, fstatat): Add prototypes.
14653
14654 2005-01-21  Bruno Haible  <bruno@clisp.org>
14655
14656         * modules/classpath: New file.
14657         * MODULES.html.sh (Java): Add classpath.
14658
14659 2005-01-21  Bruno Haible  <bruno@clisp.org>
14660
14661         * lib/classpath.h: New file, from GNU gettext.
14662         * lib/classpath.c: New file, from GNU gettext.
14663
14664 2005-01-20  Simon Josefsson  <jas@extundo.com>
14665
14666         * modules/version-etc-fsf: New file.
14667
14668 2005-01-20  Simon Josefsson  <jas@extundo.com>
14669
14670         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
14671         * lib/version-etc.c: Remove version_etc_copyright.
14672         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
14673         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
14674
14675 2005-01-20  Simon Josefsson  <jas@extundo.com>
14676
14677         * lib/base64.h (isbase64): Add.
14678
14679         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
14680         using a unsigned prototype, don't inline.
14681         (base64_decode): Use it.
14682
14683 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14684
14685         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
14686         it.
14687
14688 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14689
14690         * lib/save-cwd.c (save_cwd): Remove code to support the case
14691         where fchdir is missing or flaky.
14692
14693 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14694
14695         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
14696
14697 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
14698
14699         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
14700         AC_LIBSOURCES now does this.
14701         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
14702         with new ullong_max module.
14703
14704 2005-01-19  Bruno Haible  <bruno@clisp.org>
14705
14706         * modules/sh-quote: New file.
14707         * MODULES.html.sh (Executing programs): Add sh-quote.
14708
14709 2005-01-19  Bruno Haible  <bruno@clisp.org>
14710
14711         * lib/sh-quote.h: New file, from GNU gettext.
14712         * lib/sh-quote.c: New file, from GNU gettext.
14713
14714 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14715
14716         Merge from coreutils.
14717         * m4/ullong_max.m4: New file.
14718         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
14719         (gl_MACROS): Assume localeconv exists.
14720
14721 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14722
14723         Merge changes from coreutils, as described below in several
14724         changelogs dated today.
14725
14726         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
14727         (O_DIRECTORY): Remove; not needed here, since "." must be
14728         a directory.  All uses removed.
14729         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
14730         universal on Suns, and we also need to test for IRIX.
14731         Revamp code to use 'if' rather than '#if'.
14732         Avoid unnecessary comparison of cwd->desc to 0.
14733
14734         * lib/utimens.c (futimens): Robustify the previous patch, by checking
14735         for known valid error numbers rather than observed invalid ones.
14736
14737 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
14738
14739         * modules/ullong_max: New file.
14740
14741         * modules/chdir-long, modules/openat: New files.
14742         * modules/save-cwd (Depends-on): Depend on chdir-long.
14743         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
14744
14745 2005-01-18  Jim Meyering  <jim@meyering.net>
14746
14747         Merge from coreutils.
14748         * m4/chdir-long.m4, m4/openat.m4: New files.
14749         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
14750         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
14751         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
14752         is sane and DOES follow symlinks.  Besides, testing 20 different
14753         systems found no broken chown implementations.
14754         Prompted by a change in rsync's copy of this macro.
14755         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
14756
14757         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
14758
14759         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
14760         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
14761         NULL-means-set-to-current-time semantics.
14762         Remove temporary file immediately, rather than waiting
14763         for configure's at-exit trap code to do it.
14764
14765 2005-01-18  Jim Meyering  <jim@meyering.net>
14766
14767         * lib/version-etc.c (version_etc_copyright): Update copyright date.
14768
14769         * lib/utimens.c (futimens): Account for the fact that futimes
14770         can also fail with errno == ENOSYS or errno == ENOENT.
14771         Patch from Dmitry V. Levin.
14772
14773         Change the name of the robust chdir function from chdir to chdir_long.
14774         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
14775         (restore_cwd): Use chdir_long, not chdir.
14776         * lib/chdir-long.c: Renamed from chdir.c.
14777         * lib/chdir-long.h: Renamed from chdir.h.
14778         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
14779         Hurd.
14780
14781 2005-01-18  Bruno Haible  <bruno@clisp.org>
14782
14783         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
14784         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
14785         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
14786         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
14787         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
14788         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
14789         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
14790         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
14791         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
14792         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
14793         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
14794         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
14795         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
14796         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
14797         Use an all-permissive copyright notice, recommended by RMS.
14798
14799 2005-01-18  Bob Proulx  <bob@proulx.com>
14800
14801         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
14802         simplify offsetof() macro construct to avoid compile failure with
14803         native HP-UX 11.0 ANSI C compiler.
14804
14805 2005-01-17  Bruno Haible  <bruno@clisp.org>
14806
14807         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
14808         redundant because stpncpy.m4 takes care of it.
14809
14810 2005-01-17  Bruno Haible  <bruno@clisp.org>
14811
14812         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
14813
14814 2005-01-17  Bruno Haible  <bruno@clisp.org>
14815
14816         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
14817         used.
14818
14819 2005-01-17  Bruno Haible  <bruno@clisp.org>
14820
14821         * lib/fwriteerror.h (fwriteerror): Change specification to include
14822         fclose.
14823         * lib/fwriteerror.c: Include <stdbool.h>.
14824         (fwriteerror): At the end, close the file stream. Record whether
14825         stdout was already closed.
14826
14827 2005-01-17  Bruno Haible  <bruno@clisp.org>
14828
14829         * lib/execute.c (environ): Declare if needed.
14830         * lib/pipe.c (environ): Likewise.
14831         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
14832
14833 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14834
14835         * modules/argp: Depend on vsnprintf
14836
14837 2005-01-10  Jim Meyering  <jim@meyering.net>
14838
14839         * modules/closeout (Depends-on): Add atexit.
14840
14841 2005-01-06  Bruno Haible  <bruno@clisp.org>
14842
14843         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
14844
14845 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
14846
14847         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
14848         definitions to be after all include files, to avoid collisions.
14849         Problem reported by Bob Proulx.
14850
14851 2005-01-04  Jim Meyering  <jim@meyering.net>
14852
14853         Changes imported from coreutils.
14854         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
14855         as the mkstemp template, use a temporary directory and an
14856         8.3-friendly template to avoid trouble on systems like DJGPP.
14857         Reported by Juan M. Guerrero via Stepan Kasal.
14858         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
14859         close. Remove the temporary directory right away, rather than waiting
14860         for configure's at-exit trap code to do it.
14861         Suggestion from Stepan Kasal.
14862
14863 2005-01-01  Simon Josefsson  <jas@extundo.com>
14864
14865         * gnulib-tool: Print #include directives when --import'ing.
14866
14867 2004-12-28  Simon Josefsson  <jas@extundo.com>
14868
14869         * tests/test-base64.c: Include required header files.  Remove
14870         unused variables.
14871
14872 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14873
14874         * modules/error (Depends-on): Remove gettext.
14875
14876 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
14877
14878         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
14879         not needed.  This removes a dependency on the gettext module.
14880         [defined _LIBC]: Do not include <libintl.h>; not needed.
14881
14882 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14883
14884         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
14885         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
14886
14887 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
14888
14889         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
14890         HAVE_DECL_STRTOLD.
14891
14892 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14893
14894         * modules/getdate (Depends-on): Remove alloca-opt.
14895
14896 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14897
14898         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
14899
14900 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
14901
14902         * lib/argp-parse.c: Include <stddef.h>.
14903         (alignof, alignto): New macros.
14904         (parser_init): Don't assume that void * is aligned sufficiently
14905         for struct option.
14906
14907         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
14908         need to extend the stack.
14909         (YYINITDEPTH): New macro, so that the initial stack isn't overly
14910         large.
14911
14912 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14913
14914         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
14915
14916 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14917
14918         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
14919         (2004-10-24) change.  Apparently this was a false alarm.
14920
14921         * modules/getdate: Depend on alloca-opt, not alloca.
14922
14923 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
14924
14925         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
14926         Remove now-obsolete comment about AIX.
14927         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
14928         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
14929         (YYMAXDEPTH): New macro.
14930
14931 2004-12-18  Simon Josefsson  <jas@extundo.com>
14932
14933         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
14934
14935 2004-12-18  Bruno Haible  <bruno@clisp.org>
14936
14937         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
14938
14939 2004-12-18  Bruno Haible  <bruno@clisp.org>
14940
14941         * lib/fatal-signal.c (fatal_signals): Make non-const.
14942         (init_fatal_signals): New function.
14943         (uninstall_handlers, install_handlers): Ignore signals that were set to
14944         SIG_IGN.
14945         (at_fatal_signal): Call init_fatal_signals.
14946         (init_fatal_signal_set): Likewise. Ignore signals that were set to
14947         SIG_IGN.
14948         Reported by Paul Eggert.
14949
14950 2004-12-18  Bruno Haible  <bruno@clisp.org>
14951
14952         * doc/alloca.texi: New file.
14953         * doc/alloca-opt.texi: New file.
14954
14955 2004-12-17  Jim Meyering  <jim@meyering.net>
14956
14957         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
14958         Otherwise, install-sh could exit with improper exit status when
14959         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
14960
14961 2004-12-16  Simon Josefsson  <jas@extundo.com>
14962
14963         * tests/test-base64.c: Add license.
14964
14965 2004-12-15  Stepan Kasal  <address@hidden>
14966
14967         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
14968
14969 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
14970
14971         * modules/getcwd (Files): Add m4/d-ino.m4.
14972         Suggested by Mark D. Baushke.
14973
14974 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14975
14976         * lib/getdate.y (textint): New member "negative".
14977         (time_zone_hhmm): New function.
14978         Expect 14 shift-reduce conflicts, not 13.
14979         (o_colon_minutes): New rule.
14980         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
14981         (yylex): Set the "negative" member of signed numbers.
14982
14983 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14984
14985         * doc/getdate.texi (Time of day items, Time zone items):
14986         Describe new formats +00:00, UTC+00:00.
14987
14988 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14989
14990         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
14991         spurious "-l"s.  Problem reported by Stepan Kasal.
14992
14993 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14994
14995         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
14996         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
14997
14998 2004-12-04  Simon Josefsson  <jas@extundo.com>
14999
15000         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
15001         Vandoorselaere <yoann@prelude-ids.org>.
15002
15003 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15004
15005         Changes imported from coreutils.
15006         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
15007         exist.
15008         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
15009
15010 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15011
15012         Changes imported from coreutils.
15013         * lib/hard-locale.c: Assume <locale.h> exists.
15014         Include "strdup.h".
15015         (GLIBC_VERSION): New macro.
15016         (hard_locale): Assume setlocale exists.
15017         Rewrite to avoid #ifdef.
15018         Use strdup rather than malloc + strcpy.
15019         * lib/human.c: Assume <locale.h> exists.
15020         (human_readable): Assume localeconv exists.
15021
15022 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15023
15024         * modules/hard-locale (Depends-on): Add strdup.
15025
15026 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
15027
15028         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
15029         convert T2, not T.  (Imported from libc.)
15030
15031 2004-11-30  Simon Josefsson  <jas@extundo.com>
15032
15033         * modules/restrict (License): Change to LGPL.
15034
15035 2004-11-30  Simon Josefsson  <jas@extundo.com>
15036
15037         * m4/restrict.m4: Add copyright and copying conditions.
15038
15039 2004-11-30  Simon Josefsson  <jas@extundo.com>
15040
15041         * m4/base64.m4: New file.
15042
15043 2004-11-30  Simon Josefsson  <jas@extundo.com>
15044
15045         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
15046         base64.
15047
15048         * tests/test-base64.c: New file.
15049
15050         * modules/base64: New file.
15051
15052 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15053
15054         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
15055         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
15056
15057         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
15058
15059 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15060
15061         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
15062         (__getcwd.c): Don't restore errno; glibc doesn't.
15063         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
15064         first, falling back to our code only if its results look suspicious.
15065         Ensure that the resulting buffer is only as large as necessary.
15066
15067         * lib/readutmp.c: Include readutmp.h first.
15068         Include <errno.h>, since readutmp.h no longer does that.
15069         * lib/readutmp.h: Don't include <errno.h>,
15070         <sys/param.h>, <time.h>; not needed to establish interface.
15071         (errno): Remove decl.
15072         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
15073         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
15074         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
15075
15076 2004-11-28  Simon Josefsson  <jas@extundo.com>
15077
15078         * lib/base64.h, base64.c: New file.
15079
15080 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15081
15082         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
15083
15084 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15085
15086         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
15087         (Depends-on): Remove pathmax, same.  Add mempcpy.
15088         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
15089         (Makefile.am): Append getcwd.h to lib_SOURCES.
15090         (Include): Add getcwd.h.
15091         (Maintainer): Change from Jim Meyering to "all, glibc",
15092         since getdate now uses intended-for-glibc code.
15093         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15094         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15095
15096 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15097
15098         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15099         HP's ANSI C compiler.
15100         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15101         Declaring int functions causes warnings on some modern systems and
15102         shouldn't be needed to compile on ancient ones.
15103         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15104         defined.
15105
15106         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15107         with the following changes.
15108         (__set_errno): Parenthesize properly.
15109         Include <stdbool.h>.
15110         (MIN, MAX, MATCHING_INO): New macros.
15111         (__getcwd): Define with prototype, not K&R form.
15112         Use heuristics to allocate default buffer on stack if possible.
15113         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15114         behavior, and to avoid the PATH_MAX limit when computing
15115         ../../../../...
15116         Use MATCHING_INO to compare inode number to file.
15117         Check for arithmetic overflow in size calculations.
15118         Fix bug in reallocation of dot array that caused getcwd to fail
15119         on directories nested deeper than 75.
15120         Be more careful about saving errno on error.
15121         Do not use realloc; use only free+malloc, as this is a bit
15122         more flexible and avoids a needless copy operation.
15123         Do not inspect st_dev and st_ino for symbolic links; POSIX
15124         doesn't specify the latter.
15125         Check for closedir errors.
15126         Avoid needless casts.
15127         Use "#ifdef weak_alias" around weak_alias, to be like other
15128         glibc code.
15129         The following changes to getcwd.c have effect only when used in
15130         gnulib; they have no effect inside glibc proper.
15131         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15132         as alloca isn't used.
15133         (alloca, __alloca): Likewise.
15134         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15135         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15136         unconditionally, as gnulib assumes C89 or better.
15137         Do not include <sys/param.h>.
15138         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15139         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15140         better.
15141         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15142         Include <dirent.h> in a way that is compatible with modern Autoconf.
15143         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15144         New macros, if not already defined.
15145         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15146         Use "_LIBC", not "defined _LIBC", for consistency.
15147         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15148         a mempcpy module.
15149         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15150         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15151         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15152         credit only to Jim Meyering and adjust the copyright dates.
15153         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15154         <stdlib.h>, <unistd.h>, "pathmax.h".
15155         Instead, include "xgetcwd.h" (first) and "getcwd.h".
15156         (INITIAL_BUFFER_SIZE): Remove.
15157         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
15158
15159 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15160
15161         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
15162         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
15163         Use the _ONCE methods, for efficiency.
15164         Check for fcntl.h.  In test program, include <errno.h>
15165         and <fcntl.h> if available.  Remove old K&R cruft from
15166         test program.  Check for common errors in GNU/Linux,
15167         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
15168         don't do AC_LIBOBJ, as that's getcwd.m4's job.
15169         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
15170         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
15171         name accordingly.
15172         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
15173         accommodate new getcwd.c.
15174         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
15175         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
15176         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
15177         that's all we need now.
15178
15179 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15180
15181         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
15182         argp-parse.c depends on getopt internals, that means we should
15183         always use our getopt, to be on the safe side.
15184         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
15185         order not to spoil the result of an eventual previous invocation
15186         of gl_GETOPT_SUBSTITUTE.
15187
15188 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15189
15190         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
15191         redefinition warnings. To avoid them, include the defines
15192         in `#if !defined __need_getopt ... #endif'. The only place
15193         where __getopt_argv_const is used is in definitions
15194         of getopt_long and getopt_long_only below, which are as well
15195         protected by `#ifndef __need_getopt'.
15196         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
15197         __need_getopt after including <stdio.h> and <unistd.h> These
15198         headers might have defined it.
15199
15200 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15201
15202         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
15203
15204 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
15205
15206         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
15207         (futimens): New function, which uses futimes if available.
15208         (futimens, utimens): Support timespec==NULL, with same semantics
15209         as utime and utimens.
15210         * lib/utimens.h (futimens): New decl.
15211
15212 2004-11-23  Jim Meyering  <jim@meyering.net>
15213
15214         * lib/getopt_.h: Remove trailing blanks.
15215
15216 2004-11-23  Jim Meyering  <jim@meyering.net>
15217
15218         * lib/__fpending.c: Add comment.
15219
15220 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
15221
15222         * modules/canonicalize (Depends-on): Add xreadlink.
15223         Problem reported by James Youngman.
15224
15225 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15226
15227         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
15228         New macros.
15229         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
15230         optopt): Use them instead of invoking ## directly; otherwise, the
15231         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
15232
15233 2004-11-19  Bruno Haible  <bruno@clisp.org>
15234
15235         * lib/strtok_r.c: Move comments from here...
15236         * lib/strtok_r.h: ... to here.
15237
15238 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15239
15240         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
15241         implementations that mishandle size_t overflow.
15242
15243 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15244
15245         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
15246         might fail.  Problem reported by Yoann Vandoorselaere.
15247         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
15248         implementations that mishandle size_t overflow.
15249
15250 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15251
15252         * modules/canon-host (Depends-on): Add strdup.
15253
15254 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15255
15256         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
15257
15258 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15259
15260         * lib/canon-host.c: Include "strdup.h".
15261         (canon_host): Use getaddrinfo if available, so that IPv6 works.
15262         Use strdup instead of malloc/strcpy to duplicate strings.
15263
15264         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
15265         (human_space_before_unit): New constant.
15266         * lib/human.c (human_readable): Support it.
15267
15268         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
15269         (xgetcwd): Set errno correctly when failing.
15270         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
15271         the failure is actually due to a PATH_MAX problem.
15272
15273         Further getopt changes to make it more likely that glibc will
15274         buy the changes back.
15275         * lib/getopt.c (POSIXLY_CORRECT): New constant.
15276         (getopt): Use it, so to preserve glibc semantic
15277         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
15278         when compiling for libc.
15279         * lib/getopt_.h (__getopt_argv_const): Bring it back.
15280         (getopt_long, getopt_long_only): Use it.
15281
15282         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15283         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
15284         (getopt): Argv is now char * const *, as per standard.
15285         (_getopt_internal_r, _getopt_internal): Argv is now char **,
15286         not char *__getopt_argv_const *.
15287         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15288         _getopt_long_only_r): Likewise.
15289         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
15290         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15291         _getopt_long_r, _getopt_long_only_r): Likewise.
15292         * lib/getopt_.h (__getopt_argv_const): Remove.
15293         (getopt): Argv is now char * const *, as per standard.
15294
15295         * lib/getdate.y (tORDINAL): New token.
15296         (day, relunit): Allow it for relative times.
15297         (relative_time_table): Use tORDINAL for ordinals.
15298
15299 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15300
15301         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
15302         Document that "second" isn't allowed as an ordinal number.
15303
15304 2004-11-16  Jim Meyering  <jim@meyering.net>
15305
15306         * modules/closeout (Depends-on): Add fpending.
15307
15308 2004-11-15  Jim Meyering  <jim@meyering.net>
15309
15310         * lib/closeout.c: Include "__fpending.h" once again.
15311         Include <stdbool.h>.
15312         (close_stdout): Don't fail just because stdout was closed initially,
15313         since some programs don't write to stdout in the normal course of
15314         operation (other than --version and --help), and we don't want this
15315         function to make e.g. `touch file >&-' fail.
15316         But do fail if it was closed and someone has tried to write to it.
15317         E.g., `printf foo >&-' must fail.
15318
15319 2004-11-13  Jim Meyering  <jim@meyering.net>
15320
15321         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
15322
15323 2004-11-12  Simon Josefsson  <jas@extundo.com>
15324
15325         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
15326         small doc fix is still pending.
15327
15328 2004-11-11  Simon Josefsson  <jas@extundo.com>
15329
15330         * modules/strtok_r: New file.
15331
15332         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15333         strtok_r.
15334
15335 2004-11-11  Simon Josefsson  <jas@extundo.com>
15336
15337         * m4/strtok_r.m4: New file.
15338
15339         * m4/getopt.m4: Replace opterr.
15340
15341 2004-11-11  Simon Josefsson  <jas@extundo.com>
15342
15343         * lib/strtok_r.h, strtok_r.c: New file.
15344
15345 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15346
15347         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
15348         of replacing opterr, getopt, etc.  This should handle the
15349         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
15350
15351 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
15352
15353         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
15354         we can stop lying to compilers about the constness of argv when we
15355         are compiled outside glibc.
15356         (getopt, getopt_long, getopt_long_only): Use it.
15357         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
15358         _getopt_internal, getopt): Likewise.
15359         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
15360         _getopt_long_only_r): Likewise.
15361         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
15362         _getopt_long_r, _getopt_long_only_r): Likewise.
15363
15364         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
15365         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
15366         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
15367         the other external symbols.
15368         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
15369         declaration, since the above renaming now works around collisions.
15370
15371 2004-11-11  Jim Meyering  <jim@meyering.net>
15372
15373         * lib/linebreak.c: Remove trailing blanks.
15374         * lib/alloca_.h: Likewise.
15375         * lib/acosl.c: Likewise.
15376         * lib/euidaccess.c: Likewise.
15377         * lib/allocsa.h: Likewise.
15378
15379 2004-11-10  Simon Josefsson  <jas@extundo.com>
15380
15381         * m4/getaddrinfo.m4: New file.
15382
15383 2004-11-10  Simon Josefsson  <jas@extundo.com>
15384
15385         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
15386
15387 2004-11-10  Simon Josefsson  <jas@extundo.com>
15388
15389         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
15390         getaddrinfo.
15391
15392         * modules/getaddrinfo: New file.
15393
15394 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15395
15396         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
15397
15398 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
15399
15400         * lib/mktime.c (SHR): New macro, which is a portable
15401         substitute for >> that should work even on Crays.
15402         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
15403         Problem reported by Mark D. Baushke in
15404         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
15405         * lib/getdate.y (SHR): Likewise.
15406         (tm_diff): Use it.
15407         * lib/strftime.c (SHR): Likewise.
15408         (tm_diff): Use it.
15409         * lib/quotearg.c (struct quoting_options): Use unsigned int for
15410         quote_these_too, so that right shifts are well defined.  All uses
15411         changed.
15412
15413 2004-11-10  Jim Meyering  <jim@meyering.net>
15414
15415         Ensure that no close failure goes unreported.
15416         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
15417         return early when it seems there's nothing to flush.
15418         Don't include __fpending.h.
15419
15420 2004-11-10  Jim Meyering  <jim@meyering.net>
15421
15422         * modules/closeout (Depends-on): Remove fpending.
15423
15424 2004-11-10  Jim Meyering  <jim@meyering.net>
15425
15426         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
15427
15428 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15429
15430         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
15431         gl_FUNC_STRFTIME.
15432         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
15433         and AC_REQUIRE when possible, to avoid duplicate checks.
15434         Check for <wchar.h>.
15435
15436 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15437
15438         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
15439
15440 2004-11-09  Bruno Haible  <bruno@clisp.org>
15441
15442         * m4/sockpfaf.m4: New file.
15443
15444 2004-11-05  Bruno Haible  <bruno@clisp.org>
15445
15446         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
15447         Reported by Mark D. Baushke <mdb@cvshome.org>.
15448
15449 2004-11-04  Bruno Haible  <bruno@clisp.org>
15450
15451         2004-09-11  Bruno Haible  <bruno@clisp.org>
15452                 * allocsa.valgrind: New file.
15453         2004-02-06  Bruno Haible  <bruno@clisp.org>
15454                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
15455                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
15456                 Reported by Christopher Seip <chris.seip@hp.com>.
15457
15458 2004-11-04  Bruno Haible  <bruno@clisp.org>
15459
15460         * modules/allocsa (Files): Add lib/allocsa.valgrind.
15461         (Makefile.am): Distribute it.
15462
15463 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
15464
15465         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
15466         with errno == ERANGE if the buffer is too small.
15467         Problem reported by Mark D. Baushke.
15468
15469 2004-11-03  Albert Chin  <china@thewrittenword.com>
15470             Paul Eggert  <eggert@cs.ucla.edu>
15471
15472         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
15473         equivalent, substitute $ac_type for equivalent type rather than
15474         blindly using uint32_t *always* which won't work if uint32_t is not
15475         available.  Define _UINT32_T to work around typedef of uint32_t if
15476         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
15477         2.5.1.
15478
15479 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15480
15481         * m4/jm-macros.m4: Sync from coreutils.
15482         (gl_MACROS): Check for mbrlen, for pathchk.
15483         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
15484
15485 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15486
15487         * lib/xreadlink.c (MAXSIZE): New macro.
15488         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
15489         size does not exceed MAXSIZE.  Avoid cast.
15490         As suggested by Mark D. Baushke in
15491         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
15492         if readlink fails with buffer size just under MAXSIZE, try again
15493         with MAXSIZE.
15494
15495 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
15496
15497         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
15498
15499 2004-11-02  Derek R. Price  <derek@ximbiot.com>
15500         and  Paul Eggert  <eggert@cs.ucla.edu>
15501
15502         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
15503         (get_date): Overparenthesize to avoid GCC warning.
15504
15505 2004-11-02  Bruno Haible  <bruno@clisp.org>
15506
15507         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
15508         returns void.
15509
15510 2004-11-02  Bruno Haible  <bruno@clisp.org>
15511
15512         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
15513         function returns void.
15514
15515 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15516
15517         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
15518         fflush_unlocked, flockfile, funlockfile, funlockfile,
15519         fputs_unlocked, putc_unlocked.
15520
15521 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
15522
15523         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15524         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
15525         already declared.
15526
15527 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15528
15529         * modules/getdate (Files): Add doc/getdate.texi.
15530         (Depends-on): Add setenv, xalloc.
15531
15532 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15533
15534         * lib/getdate.y: Add support for TZ="foo" within a date string.
15535         Fix some bugs near time_t boundaries.  Reject dates with
15536         out-of-range components, e.g., "Sept 31".
15537         Include <stdlib.h>, "setenv.h", "xalloc.h".
15538         (ISDIGIT_LOCALE): Remove; unused.
15539         Note that the TZ and time functions used here are not reentrant.
15540         (mktime_ok, get_tz): New functions.
15541         (TZBUFSIZE): New constant.
15542         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
15543         This requires that we sometimes generate our own TZ="XXX..." setting.
15544
15545 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
15546
15547         * doc/getdate.texi: New file, from coreutils with modifications for
15548         the new TZ parsing.
15549
15550 2004-10-27  Derek R. Price  <derek@ximbiot.com>
15551
15552         * lib/mktime.c (not_equal_tm): Remove redundant check.
15553
15554 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15555
15556         * modules/regex (lib_SOURCES): Add regex.c.
15557         Reported by James Youngman in
15558         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
15559
15560 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
15561
15562         * lib/getdate.y: Use Bison 1.875 features, and some minor
15563         code cleanups.  This change does not affect semantics.
15564         Don't include <stdlib.h>; no longer needed.
15565         Don't include unlocked-io.h; only the "#if TEST" code uses
15566         stdio, and performance isn't crucial there.
15567         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
15568         Bison 1.875 features as described below.
15569         All uses of "PC." replaced by "pc->".
15570         (YYSTYPE): Add a forward declaration.
15571         (yylex, yyerror): Use full prototypes in forward decls.
15572         Use "%pure-parser" rather than obsolescent "%pure_parser".
15573         Use %parse-param and %lex-param instead of obsolescent
15574         YYPARSE_PARAM and YYLEX_PARAM.
15575         (meridian_table, month_and_day_table, time_units_table,
15576         relative_time_table, time_zone_table, military_table,
15577         lookup_zone, lookup_word, get_date):
15578         Use NULL instead of 0 where appropriate.
15579         (to_hour): Avoid abort (), to avoid a dependency on
15580         stdlib.h.
15581         (yyerror, yylex): Now accepts parser_control * arg.
15582         (main) [TEST]: Use '\0' rather than 0 for char.
15583
15584 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15585
15586         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
15587
15588 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
15589
15590         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
15591         It's now the caller's responsibility to handle the case where
15592         !HAVE_GETPAGESIZE && !defined getpagesize.
15593
15594         * lib/mktime.c (leapyear): Arg is long int, not int.
15595
15596 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
15597
15598         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
15599
15600 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
15601
15602         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
15603         missing.  Problem reported by James Youngman.
15604
15605 2004-10-16  Simon Josefsson  <jas@extundo.com>
15606
15607         * gnulib-tool: Fix comments.  Fix parse problem.
15608         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
15609
15610 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
15611
15612         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
15613         implementation of getopt_long.  Problem reported by Alexander Taler in:
15614         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
15615
15616 2004-10-15  Bruno Haible  <bruno@clisp.org>
15617
15618         * gnulib-tool: Untabify. Initialize supplied_libname.
15619         (func_usage): More homogenous output.
15620         (func_modules_transitive_closure, func_modules_to_filelist,
15621         func_emit_lib_Makefile_am): New functions.
15622         (func_import): New function, extracted from big case statement. Use
15623         func_get_license, func_modules_transitive_closure,
15624         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
15625         opt_lgpl. Don't use test -a, as it's not portable.
15626         (func_create_testdir): Use func_modules_transitive_closure,
15627         func_modules_to_filelist, func_emit_lib_Makefile_am.
15628
15629 2004-10-15  Bruno Haible  <bruno@clisp.org>
15630
15631         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
15632
15633 2004-10-15  Bruno Haible  <bruno@clisp.org>
15634
15635         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
15636         the portions belonging to each module.
15637         Suggested by Derek Robert Price <derek@ximbiot.com>.
15638
15639 2004-10-12  Simon Josefsson  <jas@extundo.com>
15640
15641         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
15642         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
15643         to real functions.
15644
15645 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15646
15647         * modules/vsnprintf: New file.
15648
15649 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15650
15651         * m4/vsnprintf.m4: New file.
15652
15653 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15654
15655         * lib/vsnprintf.h: New file.
15656         * lib/vsnprintf.c: New file.
15657
15658 2004-10-11  Bruno Haible  <bruno@clisp.org>
15659
15660         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
15661         vsnprintf.
15662
15663 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
15664
15665         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
15666
15667 2004-10-07  Bruno Haible  <bruno@clisp.org>
15668
15669         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
15670         fits into the provided buffer.
15671
15672 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
15673
15674         * lib/diacrit.c, diacrit.h: Add GPL notice.
15675
15676         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
15677         notice.
15678         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
15679         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
15680         This avoids a potential constant-folding bug.
15681
15682 2004-10-05  Bruno Haible  <bruno@clisp.org>
15683
15684         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
15685         for the declaration of strsep.
15686
15687 2004-10-05  Bruno Haible  <bruno@clisp.org>
15688
15689         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
15690
15691 2004-10-04  Simon Josefsson  <jas@extundo.com>
15692
15693         * modules/memmem: New file.
15694         * tests/test-memmem.c: New file.
15695         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
15696
15697 2004-10-04  Simon Josefsson  <jas@extundo.com>
15698
15699         * m4/memmem.m4: New file.
15700
15701 2004-10-04  Simon Josefsson  <jas@extundo.com>
15702
15703         * lib/memmem.h: New file.
15704         * lib/memmem.c: New file, taken from glibc.
15705
15706 2004-10-04  Simon Josefsson  <jas@extundo.com>
15707
15708         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
15709         '#ifdef USE_UNLOCKED_IO'.
15710
15711 2004-10-04  Simon Josefsson  <jas@extundo.com>
15712
15713         * config/srclist.txt: Add memmem from glibc.
15714
15715 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15716
15717         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
15718
15719         * modules/argmatch, modules/argp, modules/closeout, modules/error,
15720         modules/exclude, modules/getdate, modules/getline,
15721         modules/getndelim2, modules/getpass, modules/getpass-gnu,
15722         modules/getusershell, modules/linebuffer, modules/md5,
15723         modules/mountlist, modules/posixtm, modules/readtokens,
15724         modules/readutmp, modules/regex, modules/sha1,
15725         modules/version-etc, modules/yesno:
15726         Remove dependency on unlocked-io.
15727
15728 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15729
15730         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
15731
15732         * m4/unlocked-io.m4: Add copyright notice.
15733         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
15734
15735 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15736
15737         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
15738         * lib/xmalloc.c (xmemdup): Likewise.
15739         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
15740         XFREE): Remove these long-obsolescent macros.
15741         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
15742         * lib/xstrdup.c: Remove.
15743
15744         * lib/regex.c (re_comp): Cast gettext return value to char *,
15745         Problem reported by Martin Neitzel via Mark D. Baushke.
15746
15747 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
15748
15749         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
15750         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
15751         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
15752         regex.c, sha1.c, version-etc.c, yesno.c:
15753         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
15754         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
15755         the includer's responsibility.
15756
15757         Sync from coreutils.
15758
15759         * lib/modechange.c (mode_compile): Don't decrement a pointer that
15760         points to the start of a string, as the C Standard says the
15761         resulting behavior is undefined.
15762
15763         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
15764         simple -> simple_backups, numbered_existing ->
15765         numbered_existing_backups, numbered -> numbered_backups
15766         to avoid shadowing problems.  All uses changed.
15767         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
15768         * lib/backupfile.c (check_extension, numbered_backup):
15769         Rename locals to avoid shadowing 'basename'.
15770         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
15771         once.
15772
15773         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
15774         * lib/.cvsignore: Add getopt.h.
15775
15776 2004-10-04  Bruno Haible  <bruno@clisp.org>
15777
15778         * modules/README: New file.
15779         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
15780         not a module.
15781
15782 2004-10-02  Jim Meyering  <jim@meyering.net>
15783
15784         * lib/dirfd.h, getpagesize.h: Add copyright notice.
15785
15786 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15787
15788         * modules/strsep: New file.
15789
15790 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15791
15792         * m4/strsep.m4: New file.
15793
15794 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
15795
15796         * lib/strsep.h: New file.
15797         * lib/strsep.c: New file.
15798
15799 2004-10-01  Simon Josefsson  <jas@extundo.com>
15800
15801         * lib/snprintf.c (snprintf): Handle size==0.
15802
15803 2004-10-01  Simon Josefsson  <jas@extundo.com>
15804             Bruno Haible  <bruno@clisp.org>
15805
15806         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
15807         (snprintf): Declare 'args'.
15808
15809 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
15810
15811         * lib/snprintf.c: Remove comments as to why each header is needed.
15812
15813 2004-10-01  Bruno Haible  <bruno@clisp.org>
15814
15815         * MODULES.html.sh: Add strsep.
15816
15817 2004-09-30  Simon Josefsson  <jas@extundo.com>
15818
15819         * modules/snprintf: New file.
15820
15821 2004-09-30  Simon Josefsson  <jas@extundo.com>
15822
15823         * m4/snprintf.m4: New file.
15824
15825 2004-09-30  Simon Josefsson  <jas@extundo.com>
15826
15827         * lib/snprintf.h, lib/snprintf.c: New files.
15828
15829 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15830
15831         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
15832         (hol_entry_help): Never translate an empty string.
15833         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
15834         * lib/argp.h (OPTION_NO_TRANS): New option.
15835
15836 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15837
15838         * modules/argp (Maintainer): Replace Simon Josefsson
15839         by Sergey Poznyakoff.
15840
15841 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15842
15843         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
15844         changes merged back into glibc.
15845
15846 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
15847
15848         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
15849
15850 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
15851
15852         * lib/xvasprintf.c: Include xalloc.h.
15853         (xvasprintf): Use xalloc_die, not xmalloc_die.
15854
15855 2004-09-29  Bruno Haible  <bruno@clisp.org>
15856
15857         * modules/alloca-opt: New file, derived from modules/alloca.
15858         * modules/allocsa: Depend on alloca-opt instead of alloca.
15859         * modules/setenv: Likewise.
15860         * modules/vasnprintf: Likewise.
15861         * MODULES.html.sh: Add alloca-opt.
15862
15863 2004-09-28  Simon Josefsson  <jas@extundo.com>
15864
15865         * gnulib-tool: New parameter --lgpl, to asseert that modules are
15866         LGPL, and to replace license template from GPL to LGPL.
15867
15868 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15869
15870         * modules/dummy: Change license to LGPL.
15871
15872 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
15873
15874         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
15875
15876 2004-09-24  Simon Josefsson  <jas@extundo.com>
15877
15878         * modules/minmax (License): Change from GPL to LGPL.
15879
15880 2004-09-23  Simon Josefsson  <jas@extundo.com>
15881
15882         * gnulib-tool (--import): Typo.
15883
15884 2004-09-23  Simon Josefsson  <jas@extundo.com>
15885
15886         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
15887
15888 2004-09-22  Bruno Haible  <bruno@clisp.org>
15889
15890         * modules/*: Add 'License' field.
15891         * gnulib-tool: Accept --extract-license option.
15892         (func_get_license): New function.
15893
15894 2004-09-21  Bruno Haible  <bruno@clisp.org>
15895
15896         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
15897         Reported by Simon Josefsson.
15898
15899 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15900
15901         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
15902         gl_AC_TYPE_LONG_LONG.
15903
15904 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
15905
15906         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
15907
15908 2004-09-18  Simon Josefsson  <jas@extundo.com>
15909         and  Paul Eggert  <eggert@cs.ucla.edu>
15910
15911         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
15912         calls with autoreconf.  Define GL_LIB.
15913
15914 2004-09-14  Karl Berry  <karl@gnu.org>
15915
15916         * config/srclist.txt: unsync setenv.c, sigh.
15917
15918 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15919
15920         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
15921         Problem reported by Bruno Haible in:
15922         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
15923
15924 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
15925
15926         * config/srclist.txt: Comment out argp-pvh.c.
15927
15928 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
15929
15930         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
15931         in case some system header has #define'd it.  Problem reported by
15932         Soeren D. Schulze in
15933         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
15934
15935 2004-09-09  Karl Berry  <karl@gnu.org>
15936
15937         * regex.[ch]: delete from the root.  These were supposed to be
15938                 synced with emacs cvs, but this has not happened for about
15939                 a year, and anyway nothing else uses emacs regex.[ch].
15940                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
15941                 lib/regex[.ch] is untouched.
15942
15943 2004-09-09  Bruno Haible  <bruno@clisp.org>
15944
15945         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
15946
15947 2004-09-09  Bruno Haible  <bruno@clisp.org>
15948
15949         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
15950         modifications.
15951         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
15952
15953 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15954
15955         * modules/xvasprintf: New file.
15956         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
15957
15958 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
15959
15960         * lib/xvasprintf.h: New file.
15961         * lib/xvasprintf.c: New file.
15962         * lib/xasprintf.c: New file.
15963
15964 2004-09-08  Bruno Haible  <bruno@clisp.org>
15965
15966         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
15967
15968 2004-09-08  Bruno Haible  <bruno@clisp.org>
15969
15970         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
15971         length is > INT_MAX.
15972         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
15973         more.
15974
15975 2004-09-08  Bruno Haible  <bruno@clisp.org>
15976
15977         * lib/stdint_.h: New file, taken from GNU clisp.
15978
15979 2004-09-08  Bruno Haible  <bruno@clisp.org>
15980             Oskar Liljeblad  <oskar@osk.mine.nu>
15981
15982         * modules/stdint: New file.
15983         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
15984
15985 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
15986
15987         Import from coreutils.
15988         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
15989         strings on unbounded length.  alloca's performance benefits aren't
15990         that important here.
15991         (V_STRDUP): Remove.
15992         (parse_with_separator): New function, with most of the internals
15993         of the old parse_user_spec.  Allow user to omit both user and group,
15994         for compatibility with FreeBSD.
15995         Clone only the user name, not the entire spec.
15996         Do not set *uid, *gid unless entirely successful.
15997         Avoid memory leak in some failing cases.
15998         Fix regression for USER.GROUP reported by Dmitry V. Levin in
15999         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
16000         (parse_user_spec): Rewrite to use parse_with_separator.
16001
16002 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16003
16004         * modules/userspec: Don't depend on alloca.
16005
16006 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16007
16008         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
16009
16010 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16011
16012         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
16013         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
16014         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
16015
16016 2004-08-16  Simon Josefsson  <jas@extundo.com>
16017
16018         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
16019         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
16020         Add --dry-run for --import.
16021         Let user provided command line parameters override configure.ac
16022         settings.
16023
16024 2004-08-12  Simon Josefsson  <jas@extundo.com>
16025
16026         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
16027         as discussed with Paul Eggert in threads rooted at
16028         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
16029         and
16030         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
16031         Before, the test was empty, and relied on ELIDE_CODE in source
16032         code.)
16033         (gl_PREREQ_GETOPT): New macro.
16034         (gl_GETOPT): Use them.
16035
16036 2004-08-12  Simon Josefsson  <jas@extundo.com>
16037
16038         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
16039         * lib/getopt_.h: Renamed from getopt.h.
16040
16041 2004-08-12  Simon Josefsson  <jas@extundo.com>
16042
16043         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
16044         Change default library name from libfoo to libgnu.
16045         Now, if you have a configure.ac that says:
16046                 gl_SOURCE_BASE(gl)
16047                 gl_M4_BASE(gl/m4)
16048                 gl_MODULES(error getopt etcetera)
16049                 gl_INIT
16050         you can import all you need by running:
16051                 ../gnulib/gnulib-tool --import
16052
16053         * modules/getopt (Files): Rename getopt.h to getopt_.h.
16054         (Makefile.am): Rewrite, use logic from argz.
16055         (Include): Use <getopt.h> instead of "getopt.h".
16056
16057 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16058
16059         * modules/argp (Files): Add m4/unlocked-io.m4.
16060         (Depends-on): Add extensions.
16061
16062 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16063
16064         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
16065         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
16066         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
16067         Check for program_invocation_name, program_invocation_short_name,
16068         flockfile, funlockfile, features.h, _getopt_long_only_r.
16069
16070 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16071
16072         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
16073         its complicated substitute.
16074         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
16075         and program_invocation_name.
16076         (__argp_basename) [!_LIBC]: Remove; the only use was
16077         replaced by its body.
16078         (__argp_short_program_name): Change condition from
16079         !defined __argp_short_program_name to
16080         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
16081         to match argp-namefrob.h.
16082         (__argp_failure): Don't assume strerror_r returns char *.
16083         * lib/argp-parse.c (N_): Define unconditionally.
16084         (argp_default_options): Fill out initializers with 0 to avoid
16085         gcc warnings.
16086
16087 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16088
16089         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
16090         getopt1.c.
16091
16092 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16093
16094         Merge from coreutils.
16095
16096         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16097
16098         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16099         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16100
16101 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16102
16103         Merge from coreutils.
16104
16105         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16106         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16107         for Reliant Unix 5.43.
16108
16109         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16110         (union fooround): Use uintmax_t, not long int.
16111         The rest is a merge from libc:
16112         [defined _LIBC]: Include <shlib-compat.h>.
16113         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16114
16115         * lib/settime.c (settime): Recode to avoid warning with
16116         Sun Forte C 6U2.
16117
16118         * lib/strverscmp.c: Convert to UTF-8.
16119
16120 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16121
16122         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16123         m4/uintmax_t.m4.
16124
16125 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16126
16127         * modules/xalloc-die: New file.
16128         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16129
16130         * modules/md5 (Files): Add m4/uint32_t.m4.
16131         * modules/sha1: Renamed from modules/sha.
16132         (Files):
16133         Rename lib/sha.h to lib/sha1.h.
16134         Rename lib/sha.c to lib/sha1.c.
16135         Rename m4/sha.m4 to m4/sha1.m4.
16136         (lib_SOURCES): Likewise.
16137         (configure.ac): Rename gl_SHA to gl_SHA1.
16138         (Include): sha.h -> sha1.h.
16139
16140 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16141
16142         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16143         * m4/sha1.m4: Renamed from sha.m4.
16144         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16145
16146 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16147
16148         * lib/obstack.h (obstack_empty_p):
16149         Don't assume that chunk->contents is suitably aligned.
16150         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16151         Likewise. Problem reported by Benno in
16152         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16153
16154         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
16155         readable.  This could be improved further but it'd take some work.
16156
16157 2004-08-08  Simon Josefsson  <jas@extundo.com>
16158
16159         * modules/xgethostname (Depends-on): Remove exit and error (not
16160         used).
16161
16162         * modules/getpass-gnu: Add getpass.h.
16163         (Depends-on): Add stdbool.
16164         * modules/getpass: Add getpass.h.
16165
16166 2004-08-08  Simon Josefsson  <jas@extundo.com>
16167
16168         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
16169         Check getpass declaration.
16170
16171 2004-08-08  Simon Josefsson  <jas@extundo.com>
16172
16173         * lib/xgethostname.c: Don't include error.h (not used).
16174
16175         * lib/getpass.h: Add.
16176         * lib/getpass.c: Include getpass.h first.
16177
16178 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
16179
16180         * lib/xalloc-die.c: New file.
16181         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
16182         All uses removed.
16183         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
16184         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
16185         xalloc-die.c.
16186         (_, N_, xalloc_die): Move to xalloc-die.c.
16187         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
16188         so that we needn't mess with xalloc_msg_memory_exhausted.
16189
16190         * lib/sha1.h: Renamed from sha.h.
16191         (SHA1_H): Renamed from _SHA_H.
16192         (sha1_ctx): Renamed from sha_ctx.
16193         (sha1_init_ctx): Renamed from sha_init_ctx.
16194         (sha1_process_block): Renamed from sha_process_block.
16195         (sha1_process_bytes): Renamed from sha_process_bytes.
16196         (sha1_finish_ctx): Renamed from sha_finish_ctx.
16197         (sha1_read_ctx): Renamed from sha_read_ctx.
16198         (sha1_stream): Renamed from sha_stream.
16199         (sha1_buffer): Renamed from sha_buffer.
16200         * lib/sha1.c: Likewise; renamed from sha.c.
16201         Do not include <sys/types.h>.
16202         Include <stddef.h> rather than <stdlib.h>.
16203
16204 2004-08-08  Bruno Haible  <bruno@clisp.org>
16205
16206         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
16207         FILESYSTEM_PREFIX_LEN.
16208         * lib/progreloc.c: Likewise.
16209         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
16210
16211 2004-08-06  Simon Josefsson  <jas@extundo.com>
16212
16213         * modules/progname (Depends-on): Don't depend on stdbool.
16214
16215 2004-08-06  Simon Josefsson  <jas@extundo.com>
16216
16217         * modules/getsubopt: New file.
16218         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16219         getsubopt.
16220
16221 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16222
16223         More merge from coreutils.
16224
16225         * m4/utimens.m4, m4/utimecmp.m4: New files.
16226         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
16227         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
16228         prereq.m4, sha.m4: Import changes from coreutils.
16229
16230 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16231
16232         More merge from coreutils.
16233         * modules/raise, modules/readtokens0, modules/utimens:
16234         * modules/utimecmp, module/xnanosleep: New files.
16235         * modules/strftime: Add lib/strftime.h.
16236         Change include from <time.h> to "strftime.h".
16237         * modules/yesno: Add lib/yesno.h.
16238         * modules/backupfile: Remove lib/addext.c.
16239         * modules/euidaccess: Add stat-macros.h.
16240         * modules/canonicalize, modules/euidaccess,
16241         modules/filemode, modules/lchown, modules/makepath,
16242         modules/rmdir, modules/stat: Likewise.
16243
16244 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
16245
16246         Merge from tar.
16247         * lib/argp-help.c (make_hol, hol_append): Don't assume that
16248         SIZE_MAX is a valid preprocessor constant.
16249         (__argp_basename): Change from "#ifndef _LIBC"
16250         to "#ifndef __argp_short_program_name", so that
16251         we don't compile these functions for tar.
16252
16253         More merges from coreutils.
16254         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
16255         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
16256         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
16257         * lib/addext.c: Remove; no longer needed.
16258         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
16259         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
16260         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
16261         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
16262         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
16263         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
16264         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
16265         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
16266         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
16267         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
16268         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
16269         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
16270         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
16271         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
16272         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
16273         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
16274         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
16275         Import changes from coreutils.
16276
16277 2004-08-05  Simon Josefsson  <jas@extundo.com>
16278
16279         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
16280
16281 2004-08-05  Simon Josefsson  <jas@extundo.com>
16282
16283         * m4/getsubopt.m4: New file.
16284
16285 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16286
16287         Merge from coreutils.
16288
16289         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
16290         * m4/getcwd-path-max.m4: New files.
16291
16292         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
16293         FILESYSTEM_PREFIX_LEN ->
16294         FILE_SYSTEM_PREFIX_LEN.
16295         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
16296         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
16297         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
16298         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
16299
16300         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
16301         prerequisite modules now handle the DOS stuff.
16302         Don't check for unistd.h.
16303
16304 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16305
16306         Merge from coreutils.
16307
16308         * lib/.gdb-history: Remove; this doesn't belong here.
16309
16310         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
16311         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
16312         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
16313         * lib/getcwd.c: New files.
16314
16315         * lib/dirname.h: Include <stdbool.h>.
16316         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
16317         for consistency with POSIX terminology.  All uses changed.
16318         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
16319         (strip_trailing_slashes): Use bool for booleans.
16320         * lib/stripslash.c (strip_trailing_slashes): Likewise.
16321
16322         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
16323         sometimes returns a positive errno value even when it succeeds.
16324         (print_errno_message) [!LIBC]: Fall back on strerror if
16325         __strerror_r fails.
16326
16327         * lib/path-concat.c (mempcpy): Don't define if a system header defines
16328         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
16329         (longest_relative_suffix): New function.
16330         (path_concat): Use it.  Assume first argument is not NULL.
16331         Port to DOS.  Omit redundant separators.
16332         Report an error instead of returning NULL.
16333         Use mempcpy instead of memcpy.
16334         (xpath_concat): Remove: not declared or used.
16335
16336         * lib/same.h: Include <stdbool.h>
16337         (same_name): Return bool, not int.
16338         * lib/same.c (same_name): Likewise.
16339         (errno): Don't declare; we assume C89 or better now.
16340
16341         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
16342         if not already defined.
16343
16344         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
16345         * lib/dup-safer.c (errno): Likewise.
16346
16347 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
16348
16349         Merge from coreutils.
16350         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
16351         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
16352         * modules/path-concat: Don't depend on strdup.
16353
16354 2004-08-03  Simon Josefsson  <jas@extundo.com>
16355
16356         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
16357         * lib/progname.h: Don't include stdbool.h.
16358
16359 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16360
16361         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
16362         * MODULES.html.sh (func_all_modules): Remove fatal.
16363
16364 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16365
16366         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
16367
16368 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
16369
16370         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
16371         working.
16372
16373 2004-08-02  Simon Josefsson  <jas@extundo.com>
16374
16375         * lib/getsubopt.h: New file, with comments from Bruno Haible.
16376         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
16377         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
16378
16379 2004-08-01  Simon Josefsson  <jas@extundo.com>
16380
16381         * lib/xgetdomainname.c: Include stdlib.h, for free().
16382
16383 2004-07-19  Bruno Haible  <bruno@clisp.org>
16384
16385         * MODULES.html.sh (func_all_modules): Add dummy.
16386
16387 2004-07-16  Simon Josefsson  <jas@extundo.com>
16388
16389         * modules/dummy: New file.
16390
16391 2004-07-16  Simon Josefsson  <jas@extundo.com>
16392
16393         * lib/dummy.c: New file.
16394
16395 2004-07-16  Bruno Haible  <bruno@clisp.org>
16396
16397         * lib/backupfile.h: Add extern "C" for C++.
16398         * lib/closeout.h: Likewise.
16399         * lib/copy-file.h: Likewise.
16400         * lib/findprog.h: Likewise.
16401         * lib/full-write.h: Likewise.
16402         * lib/pathname.h: Likewise.
16403         * lib/progname.h: Likewise.
16404         * lib/stpcpy.h: Likewise.
16405         * lib/stpncpy.h: Likewise.
16406         * lib/strcase.h: Likewise.
16407         * lib/strstr.h: Likewise.
16408         * lib/xalloc.h: Likewise.
16409
16410         * lib/mbswidth.h: Add extern "C" for C++.
16411         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
16412
16413 2004-07-13  Robert Millan  <robertmh@gnu.org>
16414
16415         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
16416
16417 2004-07-09  Simon Josefsson  <jas@extundo.com>
16418
16419         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
16420         failed without this.)
16421
16422 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16423
16424         * modules/chown (Files): Add lib/fchown-stub.c, since
16425         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
16426
16427 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
16428
16429         * lib/fchown-stub.c: New file.
16430
16431 2004-06-24  Jim Meyering  <jim@meyering.net>
16432
16433         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
16434
16435 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16436
16437         * modules/argz: Omit "#include".
16438
16439         * MODULES.html.sh (func_all_modules): Add calloc, to match
16440         2004-06-01 addition of calloc module.
16441
16442 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16443
16444         * m4/argz.m4: New file, which is autoupdated from libtool.
16445
16446 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16447
16448         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
16449         libtool.
16450
16451 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
16452
16453         * config/srclist-update: Don't insist on "USA." before the
16454         close-comment, as libtool omits the period and puts the */ on a
16455         separate line.
16456         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
16457         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
16458
16459 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
16460
16461         * modules/argz: New file.
16462         * MODULES.html.sh (func_all_modules): Add argz.
16463
16464 2004-06-12  Jim Meyering  <jim@meyering.net>
16465         and  Paul Eggert  <eggert@cs.ucla.edu>
16466
16467         * modules/hash (Files): Add lib/xalloc.h.
16468         * modules/pipe (Depends-on): Add wait-process.
16469         * modules/stat (Depends-on): Add xalloc.
16470         * modules/userspec (Files): Add lib/userspec.h.
16471         * modules/xstrto
16472
16473         Upgrade from gettext-0.13.
16474         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
16475         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
16476         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
16477
16478 2004-06-10  Jim Meyering  <jim@meyering.net>
16479
16480         * lib/calloc.c: New file.
16481
16482 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
16483
16484         * lib/getdate.y (yylex): Allow space between sign and number.
16485         Problem reported by Dan Jacobson.
16486
16487 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16488
16489         Merge from coreutils CVS.
16490
16491         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
16492         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
16493         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
16494         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
16495         xstrtol.m4: Fix copyright date and/or serial number.
16496
16497         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
16498         See if we need an fchown replacement.
16499         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
16500         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
16501         and use the replacement function if we detect either defect.
16502
16503         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
16504         gl_UTIMECMP.
16505
16506 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
16507         and  Jim Meyering  <jim@meyering.net>
16508
16509         Merge from coreutils CVS.
16510
16511         * lib/stat-macros.h: New file, with contents from file-type.h
16512         and coreutils' system.h.
16513         * lib/file-type.c: Include "stat-macros.h".
16514         * lib/file-type.h (file_type): Move all macro definitions to new file,
16515         stat-macros.h.
16516
16517         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
16518         Wrap old code with this conditional.
16519         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
16520         function that does not dereference symlinks.
16521         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
16522
16523         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
16524         dependency problems.
16525         (xreadlink): Accept new arg SIZE, for efficiency.
16526         All decls and uses changed.
16527         * lib/xreadlink.h: Include <stddef.h>, for size_t.
16528
16529         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
16530         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
16531
16532         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
16533         sysexits.h.
16534
16535 2004-06-01  Jim Meyering  <jim@meyering.net>
16536
16537         * m4/calloc.m4: New file.
16538
16539 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
16540
16541         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
16542         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
16543         Also, fix a typo in a diagnostic.
16544
16545 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16546
16547         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
16548         or AC_FUNC_REALLOC.
16549
16550 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
16551
16552         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
16553         macros to be defined.
16554         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
16555         the allocator returns NULL because the requested size is zero.
16556
16557 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
16558
16559         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
16560         var.  Add comment explaining why libc still defines it.  This
16561         merges the following patch from glibc:
16562         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
16563
16564 2004-05-20  Andreas Schwab  <schwab@suse.de>
16565
16566         * m4/free.m4: Replace free if it not known to work, not the other
16567         way round.
16568
16569 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
16570
16571         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
16572         present in glibc since revision 1.1 of this file.
16573         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
16574         obstack_alignment_mask, obstack_alloc, obstack_base,
16575         obstack_blank, obstack_blank_fast, obstack_chunk_size,
16576         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
16577         obstack_grow0, obstack_init, obstack_int_grow,
16578         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
16579         obstack_next_free, obstack_object_size, obstack_ptr_grow,
16580         obstack_ptr_grow_fast, obstack_room): Remove declarations of
16581         nonexistent functions.
16582
16583 2004-05-18  Karl Berry  <karl@gnu.org>
16584
16585         * config/srclist.txt: break link for vasnprintf.c.
16586
16587 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16588
16589         Port obstack to the AS/400, where pointers are 16 bytes wide and
16590         you cannot cast an integer to a valid pointer.  This patch is
16591         currently waiting to be integrated into glibc; see
16592         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
16593
16594         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
16595         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
16596         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
16597         (struct obstack): temp member is now a union of a pointer and
16598         an integer, instead of an integer.  All integer uses changed.
16599         This does not affect the physical layout of struct obstack,
16600         except on hosts (like the AS/400) where the size or alignment of
16601         void * is greater than that of ptrdiff_t.
16602         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
16603         __STDC__)]: Store temporary in pointer member of union, not
16604         integer member.
16605         * lib/obstack.c: Include <stddef.h>, for offsetof.
16606         (struct fooalign): Remove; it doesn't need a name.
16607         (union fooround): Change double to long double, and add void *.
16608         (DEFAULT_ALIGNMENT): Use offsetof to compute.
16609         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
16610         not a macro.  Hence the values are always int; so remove all
16611         casts-to-int in uses.
16612
16613 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
16614
16615         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
16616         we can get this patch merged into glibc.
16617
16618 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16619             Paul Eggert  <eggert@cs.ucla.edu>
16620
16621         * m4/argp: Depend on alloca.
16622
16623 2004-05-17  Derek R. Price  <derek@ximbiot.com>
16624             Paul Eggert  <eggert@cs.ucla.edu>
16625
16626         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
16627         freecoding.
16628
16629 2004-05-17  Bruno Haible  <bruno@clisp.org>
16630
16631         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
16632         precision that consists of a '.' followed by an empty digit string.
16633         Patch by Tor Lillqvist <tml@iki.fi>.
16634
16635 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16636
16637         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
16638         for backward compatibility with older code.  We need our own
16639         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
16640         it under some other name, and our alloca.h will define it.
16641
16642 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
16643             Derek Price  <derek@ximbiot.com>
16644
16645         * lib/alloca.c: Include <alloca.h>, to get our interface.
16646         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
16647         include <alloca.h> first.  Use C89 prototype for alloca; this
16648         requires including <stddef.h> for size_t.  Use extern "C" if C++.
16649         Use #elif for simplicity, since we can assume C89 now.
16650         Don't try to source the system alloca.h since it will not be found
16651         and to prevent recursively including its replacement.
16652         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
16653         * lib/regex.c: Likewise.
16654
16655 2004-05-16  Derek Price  <derek@ximbiot.com>
16656             Paul Eggert  <eggert@cs.ucla.edu>
16657
16658         getline cleanup.  This changes the getndelim2 API: both order of
16659         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
16660         no delimiter).
16661
16662         * lib/getline.c: Don't include stddef.h or stdio.h, since our
16663         interface does that.
16664         (getline): Always use getdelim, so that we don't have two
16665         copies of this code.
16666         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
16667         if available.
16668         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
16669         (GETNDELIM2_MAXIMUM): New macro.
16670         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
16671         instead of the old practice of delim2==0.  All callers changed.
16672         Return -1 on overflow, instead of returning junk.
16673         Do not set *linesize unless allocation succeeds.
16674         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
16675         that we include sys/types.h.
16676         * lib/getnline.h: Likewise.
16677         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
16678         (getndelim2): Reorder arguments.
16679         * lib/getnline.c (getnline, getndelim):
16680         Don't discard the NMAX argument.
16681         (getnline): Invoke getndelim, to avoid code duplication.
16682         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
16683         of (size_t) -1 by callers of the getnline family.
16684
16685 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16686
16687         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
16688         Check for gettimeofday.
16689         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
16690         Check for settimeofday, stime.
16691
16692 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
16693
16694         * lib/nanosleep.c (suspended): Change its type from int to
16695         sig_atomic_t volatile.
16696         (first_call): Make it private to rpl_nanosleep, and have it
16697         be zero initially as that's a bit faster.
16698         (my_usleep): Round up fractional times instead of truncating them,
16699         as this is the usual meaning for 'sleep'.
16700
16701         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
16702         doesn't work.
16703         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
16704         (ENOSYS): Define if not defined.
16705         (settime): Fall back on stime if it exists and settimeofday fails.
16706         But don't bother with fallbacks if a method fails with errno == EPERM.
16707
16708 2004-05-11  Jim Meyering  <jim@meyering.net>
16709
16710         Prior to this change, the save_cwd caller required read access to the
16711         current directory on most systems (ones with the fchdir function).
16712
16713         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
16714         fails, try write-only, and finally, resort to using xgetcwd.
16715
16716 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
16717
16718         * lib/obstack.c, obstack.h: Import changes from libc.
16719
16720 2004-04-28  Bruno Haible  <bruno@clisp.org>
16721
16722         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
16723         also implicitly appends .exe to executables.
16724         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
16725         accepts Windows pathnames.
16726         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16727         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16728         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
16729         Treat Cygwin like Windows, since it now accepts Windows pathnames.
16730         Reported by Derek Robert Price <derek@ximbiot.com>.
16731
16732 2004-04-21  Karl Berry  <karl@gnu.org>
16733
16734         * config/srclist.txt (localcharset.c): break sync.
16735
16736 2004-04-20  Paul Eggert  <eggert@twinsun.com>
16737
16738         * m4/host-os.m4: Add a copyright notice.
16739
16740 2004-04-20  Jim Meyering  <jim@meyering.net>
16741
16742         Change UTILS_ to gl_ in AC_DEFINE'd names.
16743         Change utils_- and jm_-prefixed variables, too.
16744         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
16745         UTILS_FUNC_MKDIR_TRAILING_SLASH.
16746         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
16747
16748         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
16749         Don't emit trailing blanks.
16750         Also rename jm_-prefixed variables to have gl_ prefix.
16751
16752         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
16753         Also rename jm_-prefixed variables to have gl_ prefix.
16754
16755         * m4/jm-macros.m4: Reflect the renamings.
16756         * m4/prereq.m4: Likewise.
16757
16758 2004-04-20  Jim Meyering  <jim@meyering.net>
16759
16760         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
16761         memory.
16762
16763 2004-04-20  Jim Meyering  <jim@meyering.net>
16764             Bruno Haible  <bruno@clisp.org>
16765
16766         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
16767         memory when realloc fails.
16768
16769 2004-04-19  Jim Meyering  <jim@meyering.net>
16770
16771         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
16772         now that readutmp.c may call `free (0)'.
16773
16774 2004-04-19  Bruno Haible  <bruno@clisp.org>
16775
16776         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
16777         * m4/inttypes_h.m4: Likewise.
16778         * m4/stdint_h.m4: Likewise.
16779         * m4/intmax_t.m4: Likewise.
16780         * m4/uintmax_t.m4: Likewise.
16781
16782 2004-04-18  Jim Meyering  <jim@meyering.net>
16783
16784         * m4/prereq.m4: Don't forbid jm_ prefix.
16785
16786         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
16787         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
16788         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
16789         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
16790         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
16791         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
16792         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
16793         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
16794         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
16795         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
16796         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
16797         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
16798         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
16799         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
16800         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
16801         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
16802         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
16803         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
16804         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
16805
16806 2004-04-18  Jim Meyering  <jim@meyering.net>
16807
16808         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
16809         failure, don't leak memory and do call END_UTMP_ENT.
16810
16811 2004-04-16  Jim Meyering  <jim@meyering.net>
16812
16813         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
16814         coreutils' stat program.
16815         (gl_PREREQ): Don't require jm_PREREQ_STAT.
16816
16817 2004-04-11  Paul Eggert  <eggert@twinsun.com>
16818
16819         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
16820         C89.
16821         (CHAR_BIT): Remove, since we assume C89.
16822         Include <stdint.h> if available, as per current Autoconf CVS advice.
16823
16824 2004-03-31  Jim Meyering  <jim@meyering.net>
16825
16826         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
16827         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
16828         * m4/xalloc.m4: Likewise.
16829
16830 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16831
16832         Merge from coreutils.
16833
16834         * m4/inttostr.m4: New file.
16835         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
16836         Require AM_STDBOOL_H and gl_TIMESPEC instead.
16837         Require gl_CLOCK_TIME.
16838         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
16839
16840 2004-03-30  Paul Eggert  <eggert@twinsun.com>
16841
16842         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
16843         not bool, to be more consistent with Unix conventions.
16844         Suggested by Bruno Haible.
16845
16846         Merge from coreutils.
16847
16848         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
16849         * lib/umaxtostr.c: New files.
16850
16851         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
16852         the usual <time.h> dance.
16853         (get_date): Change signature to support fractional time stamps.
16854         All callers changed.
16855         * lib/getdate.y: Include "getdate.h" first, as we can now
16856         assume C89 and don't need to worry about 'const'.
16857         Similarly, include "unlocked-io.h" near start, not in middle.
16858         Include <limits.h>.
16859         (textint.value): Use long int rather than int.
16860         (textint.digits): Use size_t rather than int.
16861         (BILLION, LOG10_BILLION): New constants.
16862         (parser_control): New member rel_ns.  Members day_ordinal,
16863         time_zone, month, day, hour, minutes, rel_year, rel_month,
16864         rel_day, rel_hour, rel_minutes, rel_seconds
16865         are now long int, not int.  Member seconds is now struct timespec,
16866         not int.  New member timespec_seen.  Members dates_seen, days_seen,
16867         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
16868         not int.
16869         (%union.intval): Now long int, not int.
16870         New member timespec.
16871         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
16872         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
16873         (spec): Now is a timespec or an item list.
16874         (timespec, items): New nonterminals.
16875         (time, rel, relunit, number, get_date):
16876         Add support for fractional seconds.
16877         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
16878         (gmtime, localtime, mktime): Remove decls; not needed with C89.
16879         (to_hour): First arg is now long int, not int.
16880         (to_year): Returns long int, not int.
16881         Don't treat year -70 like 70.
16882         (tm_diff): Returns long int, not int.
16883         (lookup_word): Use bool instead of int when appropriate.
16884         (yylex): Use size_t for count, not int.
16885         Detect overflow when parsing large integer constants.
16886         Add support for fractions.
16887         (get_date): Make pointers 'const' if possible.
16888         Use more-portable code to detect integer overflow.
16889         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
16890         Don't use ctime; it's not reliable if the year has >4 digits.
16891
16892         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
16893         This is for compatibility with BSD.
16894
16895         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
16896         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
16897         From coreutils' system.h.
16898
16899         * lib/userspec.c: Don't include "posixver.h".
16900         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
16901         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
16902         compatible extension.  Simplify code by removing a boolean int
16903         that was always nonzero if a string was nonnull.
16904
16905 2004-03-30  Jim Meyering  <jim@meyering.net>
16906
16907         Merge from coreutils.
16908
16909         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
16910         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
16911         on some systems one must include <grp.h> before it.
16912         Reported by Christian Krackowizer.
16913
16914 2004-03-30  Jim Meyering  <jim@meyering.net>
16915
16916         Merge from coreutils.
16917
16918         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
16919
16920         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
16921         an empty input stream.
16922
16923         * lib/readtokens.c: Include <stdbool.h>.
16924         (readtoken): Use `size_t' rather than int/long.
16925         All callers adjusted.
16926         Use `bool' rather than `int' where appropriate.
16927         Use memset rather than an explicit loop.
16928         Use x2nrealloc rather than xrealloc.
16929         Allow the use of `\0' as a delimiter.
16930         (readtokens): Likewise.
16931         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
16932
16933 2004-03-30  Jim Meyering  <jim@meyering.net>
16934
16935         * m4/realloc.m4: Remove file, since now it does no more than
16936         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
16937         the `configure.ac' section of module/realloc.
16938         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
16939
16940 2004-03-30  Bruno Haible  <bruno@clisp.org>
16941
16942         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
16943         nonnull.
16944
16945 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16946
16947         Merge changes to getloadavg.c from coreutils and Emacs.
16948
16949         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
16950         Define to an expression, not to the empty string.
16951         Include cloexec.h and xalloc.h.
16952         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
16953         Use set_cloexec_flag rather than rolling our own.
16954         * lib/cloexec.c, lib/cloexec.h: New files.
16955
16956 2004-03-29  Paul Eggert  <eggert@twinsun.com>
16957
16958         * m4/cloexec.m4: New file.
16959
16960 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16961
16962         * lib/getopt.h: Sync with libc CVS.
16963
16964 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16965             Bruno Haible  <bruno@clisp.org>
16966
16967         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
16968         mbswidth.
16969
16970 2004-03-18  Paul Eggert  <eggert@twinsun.com>
16971             Bruno Haible  <bruno@clisp.org>
16972
16973         * lib/mbswidth.h: Include <wchar.h> only if
16974         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
16975         <wchar.h>.
16976         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
16977
16978 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16979
16980         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
16981         Sync with libc CVS.
16982         * lib/getopt_int.h: New file, also synced from libc.
16983
16984 2004-03-09  Paul Eggert  <eggert@twinsun.com>
16985
16986         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
16987         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
16988         Bring back getopt.c, getopt.h, getopt1.c.
16989
16990 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16991
16992         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
16993         All uses changed.  Check for sa_sigaction member; this fixes
16994         a bug first reported by Jason Andrade in
16995         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
16996
16997 2004-03-07  Paul Eggert  <eggert@twinsun.com>
16998
16999         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
17000         '#if' expressions.  Unlike the code it replaces, it does not
17001         depend on (defined _SC_PAGESIZE).  However, it does depend on
17002         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
17003         first reported by Jason Andrade in
17004         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17005
17006 2004-02-25  Simon Josefsson  <jas@extundo.com>
17007
17008         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
17009
17010 2004-02-25  Simon Josefsson  <jas@extundo.com>
17011
17012         * lib/strdup.h: New file.
17013         * lib/strdup.c: Include it.
17014         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
17015         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
17016
17017 2004-02-23  Karl Berry  <karl@gnu.org>
17018
17019         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
17020         (from fencepost.gnu.org:/gd/gnuorg).
17021
17022 2004-02-23  Karl Berry  <karl@gnu.org>
17023
17024         * config/srclistvars.sh (GNUORG) [karl]: redefine.
17025         * config/srclist.txt: add maintain/standards documents.
17026
17027 2004-02-18  Bruno Haible  <bruno@clisp.org>
17028
17029         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
17030         Reported by Derek Robert Price <derek@ximbiot.com>.
17031
17032 2004-02-16  Karl Berry  <karl@gnu.org>
17033
17034         * config/mkinstalldirs, install-sh: update from automake.
17035
17036 2004-02-06  Karl Berry  <karl@gnu.org>
17037
17038         * m4/po.m4: update from gettext 0.14.1.
17039
17040 2004-02-06  Karl Berry  <karl@gnu.org>
17041
17042         * lib/config.charset: update from gettext 0.14.1.
17043
17044 2004-02-05  Paul Eggert  <eggert@twinsun.com>
17045
17046         Add comments and code, prompted by suggestions from Bruno Haible
17047         for sh-quote.
17048         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
17049         describing the enum quoting_style values.
17050         * lib/quotearg.c (quotearg_alloc): New function.
17051         (quotearg_buffer_restyled): Treat lone { and } as special.
17052         Treat = as special.  Work around bug with older shells
17053         that "see" a '\' that is really the 2nd byte of a multibyte char.
17054         Quote empty string with shell_quoting_style.
17055
17056 2004-02-03  Bruno Haible  <bruno@clisp.org>
17057
17058         * m4/pipe.m4: New file, from GNU gettext.
17059
17060 2004-02-03  Bruno Haible  <bruno@clisp.org>
17061
17062         * lib/pipe.h: New file, from GNU gettext.
17063         * lib/pipe.c: New file, from GNU gettext.
17064
17065 2004-01-27  Bruno Haible  <bruno@clisp.org>
17066
17067         * m4/execute.m4: New file, from GNU gettext.
17068
17069 2004-01-27  Bruno Haible  <bruno@clisp.org>
17070
17071         * lib/execute.h: New file, from GNU gettext.
17072         * lib/execute.c: New file, from GNU gettext.
17073         * lib/w32spawn.h: New file, from GNU gettext.
17074
17075 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17076
17077         Merge from diffutils.
17078
17079         * lib/file-type.c (file_type): Add typed memory objects.
17080         * lib/file-type.h (S_TYPEISTMO): New macro.
17081
17082         * lib/c-stack.h (c_stack_action): Remove argv argument.
17083         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
17084         (die): Don't calculate message unless segv_action returns.
17085         (get_stack_location, min_address_from_argv, max_address_from_argv,
17086         volatile stack_base, volatile_stack_size): Remove.
17087         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
17088         that every segmentation violation is a stack overflow.  (Ouch!)
17089         See Debian bug 136249 (still outstanding) for more info about why
17090         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
17091
17092 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17093
17094         Exit-status fix from coreutils.
17095
17096         Use exit_failure consistently in place of EXIT_FAILURE,
17097         so that program exit statuses are consistent on failure.
17098
17099         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17100         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17101         * lib/argmatch.h: Comment fix to match the above.
17102         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17103         Now a macro referring to exit_failure, instead of a separate
17104         variable.  Include "exitfail.h" to get it.
17105         * lib/xstrtol.h: Include "exitfail.h".
17106         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17107
17108         * lib/long-options.c (parse_long_options): Use prototype
17109         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17110         for clarity.
17111
17112 2004-01-21  Jim Meyering  <jim@meyering.net>
17113
17114         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17115         so as not to conflict with a different-sized __mktime_internal
17116         function in GNU libc.
17117         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17118         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17119
17120 2004-01-20  Karl Berry  <karl@gnu.org>
17121
17122         * config/config.guess: update from config.
17123
17124         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17125
17126 2004-01-20  Bruno Haible  <bruno@clisp.org>
17127
17128         Safer stack allocation.
17129         * lib/setenv.c: Include allocsa.h.
17130         (alloca): Remove fallback definition.
17131         (freea): Remove macro.
17132         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17133         instead of freea.
17134
17135 2004-01-20  Bruno Haible  <bruno@clisp.org>
17136
17137         * m4/eealloc.m4: New file, from GNU gettext.
17138
17139 2004-01-20  Bruno Haible  <bruno@clisp.org>
17140
17141         * m4/allocsa.m4: New file, from GNU gettext.
17142
17143 2004-01-20  Bruno Haible  <bruno@clisp.org>
17144
17145         * lib/xallocsa.h: New file, from GNU gettext.
17146         * lib/xallocsa.c: New file, from GNU gettext.
17147
17148 2004-01-20  Bruno Haible  <bruno@clisp.org>
17149
17150         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17151
17152 2004-01-20  Bruno Haible  <bruno@clisp.org>
17153
17154         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
17155         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
17156         specially.
17157
17158 2004-01-20  Bruno Haible  <bruno@clisp.org>
17159
17160         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
17161         patch.
17162
17163 2004-01-20  Bruno Haible  <bruno@clisp.org>
17164
17165         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
17166
17167 2004-01-20  Bruno Haible  <bruno@clisp.org>
17168
17169         * lib/eealloc.h: New file.
17170
17171 2004-01-20  Bruno Haible  <bruno@clisp.org>
17172
17173         * lib/binary-io.h: Avoid warnings on Cygwin.
17174
17175 2004-01-20  Bruno Haible  <bruno@clisp.org>
17176
17177         * lib/allocsa.h: New file, from GNU gettext.
17178         * lib/allocsa.c: New file, from GNU gettext.
17179
17180 2004-01-18  Karl Berry  <karl@gnu.org>
17181
17182         * doc/gpl.texi, doc/lgpl.texi: new files.
17183
17184 2004-01-18  Karl Berry  <karl@gnu.org>
17185
17186         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
17187         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
17188
17189 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17190
17191         Merge from coreutils.
17192
17193         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
17194         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
17195         (gl_DEFAULT_POSIX2_VERSION): Move
17196         the documentation from 'configure' into 'config.hin',
17197         so that 'configure --help' isn't burdened by it and
17198         we don't have to worry about its formatting there.
17199         Reword the documentation so that it's more succinct
17200         and can be run together into a single paragraph.
17201         * m4/same.m4 (gl_SAME): Check for pathconf.
17202
17203 2004-01-15  Paul Eggert  <eggert@twinsun.com>
17204
17205         Merge from coreutils.
17206
17207         * lib/posixver.c: Include posixver.h.
17208
17209         * lib/same.c: Include <stdbool.h>, <limits.h>.
17210         (_POSIX_NAME_MAX): Define if not defined.
17211         (MIN): New macro.
17212         (same_name): If file names are silently truncated, report
17213         that the file names are the same if they are the same after
17214         the silent truncation.
17215
17216         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
17217         conversion function.
17218         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
17219         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
17220         longer needed.
17221
17222 2004-01-15  Jim Meyering  <jim@meyering.net>
17223
17224         Merge from coreutils.
17225
17226         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
17227         if no library is required.
17228         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
17229         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
17230         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
17231         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
17232         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
17233         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
17234         value, $ac_cv_search_crypt, if it's "none required".
17235         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
17236         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
17237         not gl_FUNC_GETLOADAVG.
17238         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
17239         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
17240
17241 2004-01-15  Jim Meyering  <jim@meyering.net>
17242
17243         Merge from coreutils.
17244
17245         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
17246         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
17247         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
17248
17249         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
17250         optional configure-time default.
17251
17252         * lib/version-etc.c (version_etc_copyright): Update copyright date.
17253
17254         * lib/xreadlink.c (xreadlink): Correct outdated comment.
17255
17256 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
17257
17258         Merge from coreutils.
17259
17260         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
17261         value, $ac_cv_search_nanosleep, if it's "none required".
17262
17263 2004-01-14  Paul Eggert  <eggert@twinsun.com>
17264
17265         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
17266         with like-named macro in fnmatch.c.
17267         (EXT): Use an internal constant instead.
17268
17269         Merge fnmatch patches from glibc.
17270         * lib/fnmatch.c (mbsinit): Remove define.
17271         Add libc_hidden_ver (__fnmatch, fnmatch).
17272         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
17273         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
17274
17275 2004-01-14  Karl Berry  <karl@gnu.org>
17276
17277         * config/install-sh: update from automake.
17278
17279 2004-01-13  Karl Berry  <karl@gnu.org>
17280
17281         * config/install-sh: update from automake.
17282
17283 2004-01-09  Karl Berry  <karl@gnu.org>
17284
17285         * config/install-sh: update from automake.
17286
17287 2004-01-05  Karl Berry  <karl@gnu.org>
17288
17289         * config/config.{sub,guess}: update from config.
17290
17291 2003-12-31  Karl Berry  <karl@gnu.org>
17292
17293         * config/depcomp: update from automake.
17294
17295 2003-12-14  Karl Berry  <karl@gnu.org>
17296
17297         * lib/config.charset: update from gettext-runtime.
17298
17299 2003-12-03  Paul Eggert  <eggert@twinsun.com>
17300
17301         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
17302         Bug reported by Alfred M. Szmidt.
17303
17304 2003-12-03  Bruno Haible  <bruno@clisp.org>
17305
17306         * m4/gettext.m4: Upgrade from gettext-0.13.
17307         * m4/po.m4: Upgrade from gettext-0.13.
17308         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
17309         * m4/intmax.m4: New file, from gettext-0.13.
17310         * m4/printf-posix.m4: New file, from gettext-0.13.
17311
17312 2003-11-29  Karl Berry  <karl@gnu.org>
17313
17314         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
17315
17316 2003-11-25  Paul Eggert  <eggert@twinsun.com>
17317             Bruno Haible  <bruno@clisp.org>
17318
17319         * lib/printf-parse.h: Don't include sys/types.h.
17320         (ARG_NONE): New macro.
17321         (char_directive): Change type of *arg_index fields to size_t.
17322         * lib/printf-parse.c: Don't include sys/types.h.
17323         (SSIZE_MAX): Remove macro.
17324         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
17325         Remove unnecessary overflow check.
17326         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
17327         fields.
17328
17329 2003-11-25  Bruno Haible  <bruno@clisp.org>
17330
17331         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
17332
17333 2003-11-25  Bruno Haible  <bruno@clisp.org>
17334
17335         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
17336         gt_TYPE_SSIZE_T.
17337
17338 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17339
17340         * modules/alloca: Remove dependency on xalloc.
17341
17342 2003-11-24  Paul Eggert  <eggert@twinsun.com>
17343
17344         * lib/alloca.c: Remove dependency on xalloc module.
17345         (xalloc_die): Remove.
17346         (memory_full) [!defined emacs]: New macro.
17347         [!defined emacs]: Don't include xalloc.h.
17348         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
17349         address arithmetic overflows.  Change datatypes a bit to avoid
17350         unnecessary casts.
17351
17352 2003-11-22  Jim Meyering  <jim@meyering.net>
17353
17354         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
17355         s/size/size_t/.
17356
17357 2003-11-21  Karl Berry  <karl@gnu.org>
17358
17359         * config/config.{sub,guess}: update from config.
17360
17361 2003-11-18  Karl Berry  <karl@gnu.org>
17362
17363         * config/config.{sub,guess}: update from config.
17364
17365         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
17366
17367 2003-11-17  Paul Eggert  <eggert@twinsun.com>
17368
17369         * README: Mention that S+T cannot overflow if S is the size of
17370         an existing object and T is sufficiently small.
17371
17372 2003-11-17  Jim Meyering  <jim@meyering.net>
17373
17374         On systems without utime and without a utimes function capable of
17375         dealing with a NULL struct utimbuf* argument, this utime replacement
17376         could -- in unusual circumstances -- leak a file descriptor.
17377         * lib/utime.c: Include <unistd.h> and <errno.h>.
17378         (utime_null): Be sure to close `fd' and to preserve errno.
17379         Reported by Geoff Collyer via Arnold Robbins.
17380
17381 2003-11-17  Bruno Haible  <bruno@clisp.org>
17382
17383         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
17384         (Depends-on): Add xsize.
17385
17386 2003-11-17  Bruno Haible  <bruno@clisp.org>
17387
17388         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
17389
17390 2003-11-17  Bruno Haible  <bruno@clisp.org>
17391
17392         * lib/vasnprintf.c (alloca): Remove fallback definition.
17393         (freea): Remove definition.
17394         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
17395         Reported by Paul Eggert.
17396
17397 2003-11-16  Paul Eggert  <eggert@twinsun.com>
17398             Bruno Haible  <bruno@clisp.org>
17399
17400         Protect against address arithmetic overflow.
17401         * lib/printf-args.h: Include stddef.h.
17402         (arguments): Change type of field 'count' to size_t.
17403         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
17404         'unsigned int' where appropriate.
17405         * lib/printf-parse.h: Include sys/types.h.
17406         (char_directive): Change type of *arg_index fields to ssize_t.
17407         (char_directives): Change type of fields 'count', max_*_length to
17408         size_t.
17409         * lib/printf-parse.c: Include sys/types.h and xsize.h.
17410         (SSIZE_MAX): Define fallback value.
17411         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
17412         instead of 'int' where appropriate. Check a_allocated, d_allocated
17413         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
17414         * lib/vasnprintf.c: Include xsize.h.
17415         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
17416         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
17417         overflow. Avoid wraparound when converting a width or precision from
17418         decimal to binary.
17419
17420 2003-11-16  Bruno Haible  <bruno@clisp.org>
17421
17422         Update from GNU gettext.
17423         * lib/printf-parse.c: Generalize to it can be compiled for wide
17424         strings.
17425         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
17426         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
17427         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
17428         SNPRINTF): New macros.
17429         Don't include <alloca.h> if the file is used inside libintl.
17430         (local_wcslen): New function, for Solaris 2.5.1.
17431         (VASNPRINTF): Use it instead of wcslen.
17432
17433 2003-11-16  Bruno Haible  <bruno@clisp.org>
17434
17435         * lib/xsize.h (xmax): New function.
17436         (xsum, xsum3, xsum4): Declare as "pure" functions.
17437
17438 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17439
17440         * modules/xalloc (Files): Undo latest change, since xalloc.h
17441         no longer needs SIZE_MAX or PTRDIFF_MAX.
17442
17443 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17444
17445         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
17446         gl_PTRDIFF_MAX.
17447
17448 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17449
17450         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
17451         "return", to pacify some unknown compiler.  Problem reported
17452         by Joerg Schilling.
17453
17454 2003-11-12  Paul Eggert  <eggert@twinsun.com>
17455
17456         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
17457         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
17458         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
17459         heuristic is just as accurate as far as we know, and it removes a
17460         dependency on size_max.m4 and ptrdiff_max.m4.
17461
17462 2003-11-11  Bruno Haible  <bruno@clisp.org>
17463
17464         * modules/xsize (Files): Add m4/size_max.m4.
17465         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
17466
17467 2003-11-11  Bruno Haible  <bruno@clisp.org>
17468
17469         * m4/size_max.m4: New file.
17470         * m4/ptrdiff_max.m4: New file.
17471         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
17472         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
17473         (gl_XALLOC): Invoke it.
17474
17475 2003-11-11  Bruno Haible  <bruno@clisp.org>
17476
17477         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
17478         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
17479         defined.
17480
17481 2003-11-10  Paul Eggert  <eggert@twinsun.com>
17482
17483         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
17484         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
17485         rejected some allocations of exactly SIZE_MAX - 2 bytes.
17486         From Bruno Haible.
17487         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
17488         not (size_t) -1, since it's defined here.
17489
17490 2003-11-09  Karl Berry  <karl@gnu.org>
17491
17492         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
17493
17494 2003-11-06  Paul Eggert  <eggert@twinsun.com>
17495
17496         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
17497         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
17498         Reject sizes of exactly SIZE_MAX bytes.
17499         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
17500         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
17501
17502 2003-11-05  Bruno Haible  <bruno@clisp.org>
17503
17504         * lib/xsize.h: Include limits.h, to avoid a possible collision with
17505         SIZE_MAX defined in <limits.h> on Solaris.
17506
17507 2003-11-04  Jim Meyering  <jim@meyering.net>
17508
17509         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
17510         variable names, rather than @VAR@.
17511         * modules/poll: Likewise.
17512
17513 2003-11-04  Bruno Haible  <bruno@clisp.org>
17514
17515         * modules/xsize: New file.
17516         * modules/linebreak: Depend on xsize.
17517         * MODULES.html.sh (func_all_modules): Add xsize.
17518
17519 2003-11-04  Bruno Haible  <bruno@clisp.org>
17520
17521         * m4/xsize.m4: New file.
17522
17523 2003-11-04  Bruno Haible  <bruno@clisp.org>
17524
17525         * lib/xsize.h: New file.
17526         * lib/linebreak.c: Include xsize.h.
17527         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
17528         argument for overflow.
17529         Suggested by Paul Eggert.
17530
17531 2003-11-03  Karl Berry  <karl@gnu.org>
17532
17533         * config/config.{guess,sub}: update from config.
17534
17535 2003-11-03  Jim Meyering  <jim@meyering.net>
17536
17537         * modules/userspec (lib_SOURCES): Add userspec.h.
17538         (Include): Add "userspec.h".
17539         Improve description.
17540
17541 2003-11-03  Jim Meyering  <jim@meyering.net>
17542
17543         * lib/userspec.c: Include "userspec.h".
17544         * lib/userspec.h: New file.
17545
17546 2003-11-03  Bruno Haible  <bruno@clisp.org>
17547
17548         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
17549
17550 2003-11-03  Bruno Haible  <bruno@clisp.org>
17551
17552         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
17553         available, to avoid (extremely rare) race condition.
17554         Suggested by Paul Eggert.
17555
17556 2003-11-02  Karl Berry  <karl@gnu.org>
17557
17558         * config/srclist.txt (vasprintf.c): sync broken, sigh.
17559
17560 2003-10-31  Paul Eggert  <eggert@twinsun.com>
17561
17562         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
17563         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
17564         (read_filesystem_list): Set and use me_type_malloced.
17565         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
17566         whatever the type happens to be), for brevity and consistency.
17567         Check for size calculation overflow on Alphas running OSF/1.
17568
17569 2003-10-31  Jim Meyering  <jim@meyering.net>
17570
17571         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
17572
17573         * lib/linebuffer.c: Include <string.h> for declaration of memset.
17574
17575 2003-10-30  Paul Eggert  <eggert@twinsun.com>
17576             Bruno Haible  <bruno@clisp.org>
17577
17578         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
17579         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
17580
17581 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
17582
17583         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
17584         netbsd*-gnu*.  Suggested by Robert Millan.
17585
17586 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17587
17588         * modules/group-member: Depend on stdbool.
17589
17590 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17591
17592         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
17593
17594 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17595
17596         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
17597         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
17598         after the 'gnu' in these cases.  This fixes some bugs in the
17599         previous change, and is based on suggestions by Robert Millan.
17600
17601 2003-10-29  Paul Eggert  <eggert@twinsun.com>
17602
17603         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
17604         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
17605         no longer needed.
17606         * lib/quotearg.c (quotearg_n_options): Use it.
17607         * lib/group-member.c: Include <stdbool.h>.
17608         (free_group_info): Arg is now const *; don't free arg.
17609         (get_group_info): Now returns bool and accepts struct group_info *,
17610         rather than returning a malloc'ed struct group_info *.
17611         All uses changed.  Check for overflow in internal size calculation.
17612
17613         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
17614         rather than xmalloc/xrealloc.
17615         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
17616         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
17617         conformance bug: the old code used a pointer after freeing the
17618         storage that it addressed.
17619         * lib/hash.c (hash_initialize): Simplify the code by using
17620         xalloc_oversized rather than doing it by hand.
17621         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
17622         the buffer preserved.  Use free and xmalloc instead.
17623         * lib/quotearg.c (quotearg_n_options): Likewise.
17624         Use a simpler test for size overflow.  Don't use xalloc_oversized
17625         because unsigned int might be wider than size_t (!); this suggests
17626         that we should switch from unsigned int to size_t for slot numbers.
17627
17628 2003-10-28  Paul Eggert  <eggert@twinsun.com>
17629
17630         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
17631         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
17632         NetBSD kernels.  Requested by Richard Stallman.
17633
17634 2003-10-27  Paul Eggert  <eggert@twinsun.com>
17635
17636         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
17637         to allocate the returned structure.  Do not allocate a subarray,
17638         as x2nrealloc will do that.
17639         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
17640         instead of xnrealloc.
17641         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
17642
17643 2003-10-27  Bruno Haible  <bruno@clisp.org>
17644
17645         * lib/stdbool_.h: Better support for BeOS.
17646
17647 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17648
17649         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
17650         now uses inline.
17651
17652 2003-10-26  Paul Eggert  <eggert@twinsun.com>
17653
17654         * lib/xalloc.h (xalloc_oversized): New static inline function, for
17655         callers that want to do their own size-overflow checking.  Include
17656         <stdbool.h>, since xalloc_oversized returns bool.
17657         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
17658         to use xalloc_oversized.
17659
17660         Add two functions x2realloc, x2nrealloc, for programs that grow
17661         arrays dynamically by doubling their sizes.
17662         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
17663         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
17664         New functions.
17665
17666         Port to C99 semantics for 'inline' of external functions.
17667         Bug reported by Bruno Haible.
17668         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
17669         with the old contents of xnmalloc.
17670         (xnmalloc, xmalloc): Use it.
17671         (xnrealloc_inline): New static inline function,
17672         with the old contents of xnrealloc.
17673         (xnrealloc, xrealloc): Use it.
17674
17675         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
17676         that.
17677
17678 2003-10-26  Karl Berry  <karl@gnu.org>
17679
17680         * config/srclist.txt (COPYING.DOC): no longer available from
17681         /gd/gnuorg; don't know where the ultimate source is.
17682
17683 2003-10-25  Paul Eggert  <eggert@twinsun.com>
17684
17685         Fix several address-calculation bugs in the hash modules,
17686         plus some minor code cleanup.
17687
17688         * lib/hash.h: Include <stdbool.h>, for bool.
17689         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
17690         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
17691         hash_get_n_entries, hash_get_max_bucket_length,
17692         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
17693         hash_rehash): Use size_t rather than unsigned.
17694         * lib/hash.c (struct hash_table, hash_get_n_buckets,
17695         hash_get_n_buckets_used, hash_get_n_entries,
17696         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
17697         hash_get_entries, hash_do_for_each, hash_string, is_prime,
17698         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
17699         Likewise.
17700         (SIZE_MAX): Define if not defined.
17701         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
17702         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
17703         hash_print):
17704         Use const * when possible.
17705         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
17706         (check_tuning): Fix bug: if tuning parameters were very close to
17707         0 or 1, rounding errors could have caused subscript violations.
17708         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
17709         (hash_initialize): Add 'fail:' label
17710         to free table and return NULL, and use it to simplify code.
17711         Use calloc rather than clearing the storage ourself.
17712         (hash_initialize, hash_rehash): Check for arithmetic overflow in
17713         buffer size calculations.
17714         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
17715         Include <stddef.h>, for size_t.
17716         * lib/hash-pjw.c (hash_pjw): Likewise.
17717         Switch to method described by Bruno Haible.
17718         Include <limits.h>, for CHAR_BIT.
17719         (SIZE_BITS): New macro.
17720
17721 2003-10-23  Paul Eggert  <eggert@twinsun.com>
17722
17723         * m4/getline.m4 (AM_FUNC_GETLINE):
17724         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
17725         hosts.  Problem reported by Derek Robert Price in
17726         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
17727         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
17728         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
17729
17730 2003-10-21  Paul Eggert  <eggert@twinsun.com>
17731
17732         * lib/getndelim2.c (getndelim2): When size calculation overflows,
17733         ceiling the allocation at NMAX bytes rather than silently
17734         discarding input bytes before NMAX is reached.  This makes
17735         a difference only if NMAX exceeds SIZE_MAX / 2.
17736
17737         * lib/obstack.c: Merge from glibc.
17738         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
17739         Add libc_hidden_def (_obstack_newchunk).
17740         (_obstack_free) [! defined _LIBC]: Remove.
17741         [defined _LIBC]: Make a strong alias from obstack_free, rather than
17742         a clone of the function body.
17743         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
17744         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
17745
17746         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
17747         glibc.
17748         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
17749         arg to memcpy.
17750
17751         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
17752         (obstack_ptr_grow_fast, obstack_int_grow_fast):
17753         Don't use lvalue casts, as GCC plans to remove support for them
17754         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
17755         was also present in the non-GCC version, indicating that this
17756         code had always been buggy and had never been widely used.
17757         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
17758         Use the fast variant of each macro, rather than copying the
17759         definiens of the fast variant; that way, we'll be more likely to
17760         catch future bugs in the fast variants.
17761
17762 2003-10-20  Bruno Haible  <bruno@clisp.org>
17763
17764         * modules/wait-process: New file.
17765         * MODULES.html.sh (func_all_modules): Add wait-process.
17766
17767 2003-10-20  Bruno Haible  <bruno@clisp.org>
17768
17769         * m4/wait-process.m4: New file.
17770
17771 2003-10-20  Bruno Haible  <bruno@clisp.org>
17772
17773         * lib/wait-process.h: New file, from GNU gettext.
17774         * lib/wait-process.c: New file, from GNU gettext.
17775
17776 2003-10-19  Jim Meyering  <jim@meyering.net>
17777
17778         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
17779         HPUX 10.20.
17780
17781 2003-10-18  Karl Berry  <karl@gnu.org>
17782
17783         * config/config.guess: update from config.
17784
17785 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17786
17787         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
17788         (getgroups): First arg is int, not size_t.
17789         Don't let 'free' mangle errno.
17790
17791 2003-10-16  Paul Eggert  <eggert@twinsun.com>
17792
17793         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
17794
17795 2003-10-16  Karl Berry  <karl@gnu.org>
17796
17797         * config/config.{guess,sub}: update from config.
17798
17799 2003-10-16  Jim Meyering  <jim@meyering.net>
17800
17801         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
17802         memcpy.
17803
17804 2003-10-15  Paul Eggert  <eggert@twinsun.com>
17805
17806         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
17807         (SIZE_MAX): Remove.
17808         (new_exclude, add_exclude_file): Initial size no longer needs to
17809         be a power of 2.
17810         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
17811         our own address arithmetic overflow checking.
17812
17813         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
17814         (fnmatch): Do not alloca more than 2000 wide characters;
17815         instead, use malloc for large buffers.
17816         Check for address arithmetic overflow, and return -1
17817         with errno set to ENOMEM in that case.
17818         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
17819         (NEW_PATTERN): Do not alloca more than 8000 bytes;
17820         instead, return -1.  Check for address arithmetic overflow.
17821
17822 2003-10-14  Paul Eggert  <eggert@twinsun.com>
17823
17824         Handle invalid suffixes and overflow independently, so that
17825         callers can treat them independently as needed.  Fix some bugs in
17826         suffix handling, e.g., "100k@" was not diagnosed as an invalid
17827         suffix for a human-readable blocksize.  The major caller-visible
17828         change is the addition of a new
17829         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
17830         that both overflow and suffix chars were found.
17831
17832         * lib/human.c (humblock): Don't check separately for invalid suffix
17833         char; that is xstrtoumax's job (now that its bug is fixed).
17834         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
17835         INTMAX_MAX]: New macros.
17836         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
17837         TYPE_MAXIMUM): New macros.
17838         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
17839         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
17840         if overflow occurs, as it's what __strtol does and it's more useful
17841         in practice.
17842         (__xstrtol): If __strtol reports some error other than ERANGE,
17843         reflect it to the caller as LONGINT_INVALID.  If it reports
17844         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
17845         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
17846         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
17847         value.
17848         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
17849         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
17850         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
17851         [defined UINTMAX_MAX]: New macros.
17852
17853 2003-10-14  Bruno Haible  <bruno@clisp.org>
17854
17855         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
17856
17857 2003-10-14  Bruno Haible  <bruno@clisp.org>
17858
17859         * m4/sig_atomic_t: New file, from GNU gettext.
17860         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
17861
17862 2003-10-14  Bruno Haible  <bruno@clisp.org>
17863
17864         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
17865         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
17866         Also use volatile where needed.
17867
17868 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17869
17870         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
17871         Change maintainer from Bruno Haible to 'all'.
17872
17873 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17874
17875         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
17876
17877 2003-10-12  Paul Eggert  <eggert@twinsun.com>
17878
17879         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
17880         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
17881         and define in terms of the other primitives.
17882         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
17883         (SIZE_MAX): Define if not already defined.
17884         (array_size_overflow): New function.
17885         (xalloc_die): Abort instead of exiting if 'error' returns.
17886         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
17887         (xmalloc, xrealloc): Use them.
17888         (xcalloc): Check for address arithmetic overflow.
17889         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
17890         a bit faster than strcpy.
17891
17892 2003-10-10  Simon Josefsson  <jas@extundo.com>
17893
17894         * modules/argp (Depends-on): Add restrict and strcase.
17895
17896 2003-10-10  Simon Josefsson  <jas@extundo.com>
17897
17898         * m4/argp.m4: Add AC_C_INLINE.
17899
17900 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17901
17902         Merge getpass from libc, plus a few fixes.
17903
17904         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
17905         Include <stdbool.h>.
17906         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
17907         __fsetlocking to empty.
17908         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
17909         do include <bits/libc-lock.h>.
17910         Do not include <fcntl.h>; not needed.
17911         [_LIBC]: Include <wchar.h>.
17912         (NOTCANCEL_MODE): New macro.
17913         (flockfile, funlockfile) [_LIBC]: New macros.
17914         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
17915         [!_LIBC]: New macros.
17916         (call_fclose): New function.
17917         (getpass): Use it.  Save tty stream separately; this simplifies the
17918         code and makes it more reliable if stdin happens to equal stdout.
17919         Invoke __fsetlocking on tty.
17920         Handle thread cancellation if needed.
17921         Namespace cleanup (use __tcgetattr, __getline).
17922         Use bool for Booleans.
17923         [USE_IN_LIBIO]: Handle wide streams.
17924         [!_LIBC]: Unconditionally do the fseek, since we don't know what
17925         stream might go where.
17926
17927         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
17928         doesn't have to include <stdio.h> before us.
17929         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
17930         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
17931         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
17932         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
17933         if not declared, so that we can use getpass.c code from libc without
17934         rewriting it.
17935         (flockfile, ftrylockfile, funlockfile): New macros.
17936
17937 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17938
17939         * modules/getpass: Depend on stdbool.
17940
17941 2003-10-08  Paul Eggert  <eggert@twinsun.com>
17942
17943         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
17944
17945 2003-10-07  Karl Berry  <karl@gnu.org>
17946
17947         * config/config.{guess,sub}: update from config.
17948
17949 2003-10-06  Jim Meyering  <jim@meyering.net>
17950             Bruno Haible  <bruno@clisp.org>
17951
17952         This lets translators provide better translations for the
17953         "Written by ..." part of --version output.
17954         * lib/version-etc.h: Include stdarg.h.
17955         (version_etc_copyright): Declare as readonly.
17956         (version_etc): Make this function variadic with a NULL-terminated list
17957         of author name strings.
17958         (version_etc_va): New declaration.
17959         * lib/version-etc.c: Include stdarg.h, stdlib.h.
17960         (version_etc_copyright): Declare as readonly.
17961         (version_etc_va): New function. Provide a different translatable string
17962         for each possible number of authors < 10. Abbreviate when there are 10
17963         authors or more.
17964         (version_etc): Make this function variadic. Call version_etc_va.
17965         Suggestion from Gary V. Vaughan.
17966
17967         * lib/long-options.h (parse_long_options): Change prototype: the
17968         authors string is moved to the end and becomes variadic.
17969         * lib/long-options.c: Include stdarg.h.
17970         (parse_long_options): Make this function variadic, too.
17971         Call version_etc_va, not version_etc.
17972
17973 2003-10-06  Bruno Haible  <bruno@clisp.org>
17974
17975         * modules/version-etc-2: Remove file.
17976         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
17977
17978 2003-10-06  Bruno Haible  <bruno@clisp.org>
17979
17980         * modules/fatal-signal: New file.
17981         * MODULES.html.sh (func_all_modules): Add fatal-signal.
17982
17983 2003-10-06  Bruno Haible  <bruno@clisp.org>
17984
17985         * m4/fatal-signal.m4: New file.
17986         * m4/signalblocking.m4: New file, from GNU gettext.
17987
17988 2003-10-06  Bruno Haible  <bruno@clisp.org>
17989
17990         * lib/version-etc-2.h: Remove file.
17991         * lib/version-etc-2.c: Remove file.
17992
17993 2003-10-06  Bruno Haible  <bruno@clisp.org>
17994
17995         * lib/fatal-signal.h: New file, from GNU gettext.
17996         * lib/fatal-signal.c: New file, from GNU gettext.
17997
17998 2003-10-05  Paul Eggert  <eggert@twinsun.com>
17999
18000         * README: Rework advice for preventing empty .o files.
18001         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
18002         not <sys/types.h>.
18003
18004 2003-10-04  Karl Berry  <karl@gnu.org>
18005
18006         * lib/argp*: update from libc.
18007
18008 2003-10-04  Karl Berry  <karl@gnu.org>
18009
18010         * config/config.{guess,sub}: update from config.
18011
18012 2003-10-02  Bruno Haible  <bruno@clisp.org>
18013
18014         * modules/lchown (Include): Add lchown.h.
18015         * modules/time_r (Include): Use "..." syntax.
18016         * modules/xgetdomainname (Include): Add xgetdomainname.h.
18017
18018 2003-10-01  Simon Josefsson  <jas@extundo.com>
18019
18020         * MODULES.html.sh (func_all_modules): Move gethostname from section
18021         'based on' to section 'lacking' POSIX:2001.
18022
18023 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
18024
18025         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
18026         to output mode on the same stream.
18027
18028 2003-09-29  Paul Eggert  <eggert@twinsun.com>
18029
18030         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
18031         Fix arg typo in previous patch.
18032
18033 2003-09-28  Jim Meyering  <jim@meyering.net>
18034
18035         * lib/error.c: Correct cpp indentation.
18036
18037 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18038
18039         * modules/free: New file.
18040
18041 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18042
18043         * m4/free.m4: New file.
18044
18045 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18046
18047         * lib/minmax.h (MIN, MAX)
18048         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
18049         Omit the special code that used __typeof__, since we worry that
18050         it could be more trouble than it's worth.  See:
18051         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
18052         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
18053
18054         * lib/free.c: New file.
18055
18056 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
18057
18058         Trivial fixes to Makefile.am parts of module listings.
18059         * modules/strstr: Append strstr.h to lib_SOURCES.
18060         * modules/strcase: Likewise, for strcase.h.
18061
18062 2003-09-27  Karl Berry  <karl@gnu.org>
18063
18064         * config/mkinstalldirs: update from automake.
18065
18066 2003-09-26  Paul Eggert  <eggert@twinsun.com>
18067
18068         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
18069         (error_tail): Do not loop, reallocating temporary buffer, since
18070         the output cannot contain more wide characters than the input
18071         contains bytes, the size must be big enough already.  This avoids
18072         one potential size overflow calculation.  Check for size overflow
18073         when calculating temporary buffer size.  Free temporary buffer
18074         when done, if it was allocated with malloc; this plugs a memory
18075         leak.  Remove casts from void * to pointers, that are no longer
18076         needed now that we're assuming C89 or better.
18077
18078         Merge error changes from glibc.
18079
18080         * lib/error.c, error.h: Update copyright notice header to match glibc.
18081         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
18082         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
18083         Disable cancellation while printing error.
18084         * lib/error.h: Prepend __ to parameter names.
18085
18086 2003-09-26  Jim Meyering  <jim@meyering.net>
18087
18088         * lib/error.c (error_tail): Move some declarations
18089         into inner scope where the local variables are used.
18090
18091 2003-09-26  Bruno Haible  <bruno@clisp.org>
18092
18093         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18094         stpncpy().
18095         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18096
18097 2003-09-26  Bruno Haible  <bruno@clisp.org>
18098
18099         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18100         (stpncpy): Define as alias for gnu_stpncpy.
18101         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18102
18103 2003-09-25  Simon Josefsson  <jas@extundo.com>
18104
18105         * lib/xgetdomainname.h: New file.
18106         * lib/xgetdomainname.c: New file.
18107
18108 2003-09-25  Simon Josefsson  <jas@extundo.com>
18109             Bruno Haible  <bruno@clisp.org>
18110
18111         * modules/getdomainname: New file.
18112         * modules/xgetdomainname: New file.
18113         * MODULES.html.sh (func_all_modules): Add getdomainname,
18114         xgetdomainname.
18115
18116 2003-09-25  Simon Josefsson  <jas@extundo.com>
18117             Bruno Haible  <bruno@clisp.org>
18118
18119         * m4/getdomainname.m4: New file.
18120
18121 2003-09-25  Simon Josefsson  <jas@extundo.com>
18122             Bruno Haible  <bruno@clisp.org>
18123
18124         * lib/getdomainname.h: New file.
18125         * lib/getdomainname.c: New file.
18126
18127 2003-09-25  Karl Berry  <karl@gnu.org>
18128
18129         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18130
18131 2003-09-25  Karl Berry  <karl@gnu.org>
18132
18133         * config/install-sh: update from automake.
18134
18135 2003-09-25  Bruno Haible  <bruno@clisp.org>
18136
18137         * modules/version-etc-2: New file, from modules/version-etc with
18138         modifications.
18139         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18140
18141 2003-09-25  Bruno Haible  <bruno@clisp.org>
18142
18143         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18144         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18145
18146 2003-09-24  Simon Josefsson  <jas@extundo.com>
18147
18148         * modules/xgethostname: Add xgethostname.h.
18149
18150 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18151
18152         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18153         the buffer associated with the argument.  Bug reported by
18154         Simon Josefsson.
18155
18156 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18157
18158         * README: Document assumptions that 'int' is at least 32 bits
18159         wide, that integer arithmetic is 2's complement without overflow,
18160         that there are no holes in integer values, that adding sizes of
18161         two nonoverlapping objects can't overflow, and that all-bits-zero
18162         yields scalar zero.  Fix spelling and capitalization typos.
18163
18164 2003-09-19  Karl Berry  <karl@gnu.org>
18165
18166         * lib/argp.h: update from libc.
18167
18168 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18169
18170         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
18171         to avoid spurious warnings like "AC_RUN_IFELSE was called before
18172         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
18173
18174 2003-09-17  Paul Eggert  <eggert@twinsun.com>
18175
18176         * gnulib-tool: Use "test -h", not "test -L", for portability
18177         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
18178         (tags_regexp): Remove, since \| doesn't conform to POSIX.
18179         (sed_extract_prog): Issue s commands one-by-one, rather than
18180         using \| in one s command.
18181
18182 2003-09-16  Paul Eggert  <eggert@twinsun.com>
18183
18184         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
18185         input error, instead of returning NULL the next time we are called
18186         (and therefore losing track of errno).
18187
18188 2003-09-16  Bruno Haible  <bruno@clisp.org>
18189
18190         * gnulib-tool (func_create_testdir): Warn about duplicated
18191         dependencies.
18192
18193 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18194
18195         * modules/argmatch, modules/fatal, modules/obstack,
18196         modules/xalloc, modules/xgethostname: Sort dependencies by
18197         importance, not alphabetically.
18198
18199 2003-09-15  Paul Eggert  <eggert@twinsun.com>
18200
18201         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
18202         fails, so that the caller gets the proper errno.
18203
18204         * lib/readutmp.c (read_utmp): Likewise.
18205         Check for fstat error.  Close stream and free storage
18206         when failing.
18207
18208 2003-09-14  Karl Berry  <karl@gnu.org>
18209
18210         * config/srclist.txt (strdup.c): disable for c89 changes.
18211
18212 2003-09-14  Jim Meyering  <jim@meyering.net>
18213
18214         * lib/getloadavg.c: Correct cpp indentation.
18215         * lib/strdup.c: Likewise.
18216         * lib/vasnprintf.c: Likewise.
18217
18218 2003-09-14  Bruno Haible  <bruno@clisp.org>
18219
18220         * modules/fwriteerror: New file.
18221         * MODULES.html.sh (func_all_modules): Add fwriteerror.
18222
18223 2003-09-14  Bruno Haible  <bruno@clisp.org>
18224
18225         * lib/fwriteerror.h: New file.
18226         * lib/fwriteerror.c: New file.
18227
18228 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18229
18230         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
18231         modules/xgethostname, modules/xalloc: Depend on exit.
18232
18233 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18234
18235         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
18236
18237         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
18238         and AC_MINIX, too, so that their extensions are available.
18239
18240         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
18241         This macro has been superseded by gl_BACKUPFILE.
18242
18243         More patches to assume C89 or better.
18244
18245         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
18246
18247         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
18248         unconditionally.
18249         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
18250         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
18251         Include <string.h>, <stdlib.h> unconditionally.
18252         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
18253         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
18254         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
18255         headers or for string.h.
18256         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
18257         or strtoul.
18258
18259         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
18260         headers.
18261         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
18262         * m4/userspec.m4 (gl_USERSPEC): Likewise.
18263         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
18264         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
18265         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
18266         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
18267         memcpy, memset.
18268         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
18269         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
18270         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
18271         strtol.
18272         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
18273         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
18274         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
18275         strtoul.
18276
18277 2003-09-12  Paul Eggert  <eggert@twinsun.com>
18278
18279         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
18280         * lib/obstack.c [!defined _LIBC]: Likewise.
18281         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
18282         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
18283         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
18284
18285         More changes to assume C89 or better.
18286
18287         * lib/error.c (error_tail): Assume vprintf.
18288
18289         * lib/argmatch.c (getenv): Remove decl.
18290         * lib/progreloc.c (get_full_program_name): Define via prototype.
18291         * lib/setenv.c (clearenv): Likewise.
18292         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
18293         needed.
18294         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
18295         (malloc, memcpy): Remove decls.
18296         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
18297         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
18298         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18299         (memcpy): Remove macro.
18300         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
18301         (__P): Remove.  All uses removed.
18302         (PTR): Remove.  All uses changed to void *.
18303         (CHAR_BIT, NULL): Remove.
18304         (spaces, zeros, memset_space, memset_zero)
18305         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
18306         Remove.
18307         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
18308         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
18309         Define with prototype.
18310         Remove now-unnecessary prototype decl.
18311         (extra_args_spec): Assume ANSI C.  All uses changed.
18312         (extra_args_spec_iso): Remove.
18313         (my_strftime, emacs_strftimeu): Define via prototype.
18314         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
18315         unconditionally.
18316         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
18317         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
18318         (strtoul, strtol): Remove decls.
18319         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
18320         LONG_MAX): Remove.
18321         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
18322         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
18323         (LOCALE_PARAM_PROTO): New macro.
18324         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
18325         (INTERNAL (strtol), strtol): Define with a prototype.
18326         (PARAMS): Remove.  All uses removed.
18327         * lib/tempname.c: Include <string.h> unconditionally.
18328         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
18329         * lib/xgethostname.c (main): Define with a prototype.
18330         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
18331         Include <stdlib.h> unconditionally.
18332         (calloc, malloc, realloc, free): Remove decls.
18333         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
18334         Include <stdlib.h> unconditionally.  Sort include file names.
18335         (strtod): Remove.
18336         (xstrtod): Define with a prototype.
18337         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
18338         (strtol, strtoul): Remove decls.
18339
18340 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18341
18342         More patches to assume C89 or better.
18343         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
18344         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
18345         string.h, memchr, STDC_HEADERS.
18346
18347 2003-09-11  Paul Eggert  <eggert@twinsun.com>
18348
18349         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
18350         Include <stdlib.h>, <string.h> unconditionally.
18351         Remove now-unnecessary cast to char *.
18352         * lib/strnlen.c: Include <string.h> unconditionally.
18353         * lib/yesno.c (yesno): Define with a prototype.
18354
18355 2003-09-11  Bruno Haible  <bruno@clisp.org>
18356
18357         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
18358
18359 2003-09-10  Jim Meyering  <jim@meyering.net>
18360
18361         * lib/error.c: Correct indentation of cpp directives.
18362
18363 2003-09-10  Bruno Haible  <bruno@clisp.org>
18364
18365         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
18366         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
18367         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
18368         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
18369         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
18370         <stdlib.h> and <string.h> checks.
18371         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
18372         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
18373
18374 2003-09-10  Bruno Haible  <bruno@clisp.org>
18375
18376         * lib/strcspn.c: Include <string.h> unconditionally.
18377         * lib/strpbrk.c: Include <string.h> unconditionally.
18378         * lib/strstr.c: Include <string.h> unconditionally.
18379         * lib/unicodeio.c: Include <string.h> unconditionally.
18380         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
18381         * lib/unsetenv.c: Likewise.
18382         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
18383         * lib/yesno.c: Include <stdlib.h> unconditionally.
18384         (rpmatch): Add prototype.
18385
18386 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18387
18388         More patches to assume C89 or better.
18389         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
18390         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
18391         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
18392         or for string.h.
18393         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
18394         stdlib.h.
18395         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
18396         C headers.
18397         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
18398         string.h.
18399         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
18400         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
18401         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
18402         or for string.h.
18403         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
18404         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
18405         C headers.
18406         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
18407         memcpy.
18408         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
18409         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
18410         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
18411         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
18412         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
18413         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
18414         string.h, free.
18415         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
18416         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
18417         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
18418         C headers, or for string.h.
18419         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
18420         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
18421         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
18422         headers, memory.h, stdlib.h, string.h, strings.h.
18423         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
18424         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
18425         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
18426         strchr.
18427         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
18428         headers, memory.h, string.h.
18429         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
18430         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
18431         free.
18432         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
18433         headers.
18434         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
18435         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
18436         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
18437         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
18438         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
18439
18440 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18441
18442         More K&R removal.
18443
18444         * lib/acosl.c (main): Use a prototype.
18445         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
18446         tanl.c: Likewise.
18447
18448         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
18449
18450         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
18451         (getopt, etopt_long, getopt_long_only, _getopt_internal)
18452         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
18453         with a prototype.
18454         * lib/getopt.c (const): Remove macro.
18455         Include <string.h> unconditionally.
18456         (my_index): Remove; all uses changed to strchr.
18457         (strlen): Remove decl.
18458         (exchange): Remove forward decl; no longer needed.
18459         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
18460         Define with prototype.
18461         * lib/getopt1.c (const): Remove macro.
18462         (getopt_long, getopt_long_only, main): Define with prototype.
18463
18464         * lib/getugroups.c: Include <string.h> unconditionally.
18465
18466         * lib/getusershell.c: Include <stdlib.h> unconditionally.
18467         (getusershell, setusershell, endusershell, readname, main):
18468         Define with prototypes.
18469
18470         * lib/group-member.c: Include group-member.h first.
18471         Include <stdlib.h> unconditionally.
18472
18473         * lib/hard-locale.c: Include hard-locale.h first.
18474         Include <stdlib.h>, <string.h> unconditionally.
18475
18476         * lib/hash.c (free, malloc): Remove decls.
18477         Include <stdlib.h> unconditionally.
18478
18479         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
18480         (getenv): Do not declare.
18481
18482         * lib/idcache.c: Include <string.h> unconditionally.
18483
18484         * lib/long-options.c: Include long-options.h first, to test interface.
18485         Include <stdlib.h> unconditionally.
18486
18487         * lib/makepath.c: Include makepath.h first, to test interface.
18488         Include <stdlib.h> and <string.h> unconditionally.
18489
18490         * lib/linebuffer.c: Include <stdlib.h>.
18491         (free): Remove decl.
18492
18493         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
18494         stddef.h. rpl_malloc returns void *, not char *.
18495         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
18496         prototype.
18497
18498         * lib/md5.h: Include <limits.h> unconditionally.
18499         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
18500         (__P): Remove; all uses removed.
18501         * lib/md5.c: Include "md5.h" first.
18502         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
18503         md5_buffer, md5_process_bytes, md5_process_block):
18504         Define with prototypes.
18505         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
18506         * lib/sha.c: Include "sha.h" first.
18507         Include <stdlib.h>, <string.h> unconditionally.
18508
18509         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
18510         * lib/memcmp.c (__ptr_t): Likewise.
18511         * lib/memrchr.c (__ptr_t): Likewise.
18512         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
18513         Include <string.h> unconditionally.
18514         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
18515         * lib/memchr.c: Include <stdlib.h> unconditionally.
18516         * lib/memchr.c (LONG_MAX): Remove.
18517         * lib/memrchr.c (LONG_MAX): Likewise.
18518         * lib/memchr.c (__memchr): Define via a prototype.
18519         * lib/memrchr.c (__memrchr): Likewise.
18520         * lib/memcmp.c (__P): Remove, and remove all uses.
18521         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
18522         Remove forward decls; no longer needed.
18523         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
18524         Use types required by C89 in prototype.
18525
18526         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
18527         * lib/savedir.c: Likewise.
18528         * lib/mkdir.c (free): Remove decl.
18529         * lib/rmdir.c (rmdir): Define with a prototype.
18530         * lib/savedir.c: Include savedir.h first, to test interface.
18531
18532         * lib/mktime.c (STDC_HEADERS): Remove.
18533         Include <stdlib.h>, <string.h> unconditionally.
18534
18535         * lib/modechange.c: Include <stdlib.h> unconditionally.
18536         (malloc): Remove decl.
18537
18538         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
18539         (free): Remove decl.
18540
18541         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
18542         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
18543         (This type really should be intptr_t, but that's a C99ism.)
18544         (_obstack_memcpy): Remove: all uses changed to memcpy.
18545         Include <string.h> unconditionally.
18546         (struct obstack): Assume __STDC__ for types of members
18547         chunkfun, freefun, extra_arg.
18548         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
18549         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
18550         obstack_begin, obstack_specify_allocation,
18551         obstack_specify_allocation_with_arg, obstack_chunkfun,
18552         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
18553         Remove unprototyped decls and the macros that use them.
18554         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
18555         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
18556         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
18557         (defined __STDC__ && __STDC__)]:
18558         Remove nonprototyped code.
18559         Include <stdlib.h> unconditionally.
18560         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
18561         _obstack_allocated_p, _obstack_free, obstack_free,
18562         _obstack_memory_used, print_and_abort):
18563         Define using prototypes.
18564         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
18565         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
18566         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
18567         obstack_next_free, obstack_object_size, obstack_room) [0]:
18568         Remove unused, unprototyped code.
18569
18570         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
18571
18572         * lib/physmem.c (physmem_total, physmem_available, main): Define
18573         with prototypes.
18574
18575         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
18576         (main): Define with a prototype.
18577
18578         * lib/posixver.c (getenv): Remove decl.
18579
18580         * lib/putenv.c (malloc): Returns void *, not char *.
18581         Include <string.h> unconditionally.
18582         (strchr, memcpy, NULL): Do not define.
18583
18584         * lib/readtokens.c: Include readtokens.h first, to test interface.
18585         Include <stdlib.h>, <string.h> unconditionally.
18586         (init_tokenbuffer): Define with a prototype.
18587
18588         * lib/regex.c (PARAMS): Remove.  All uses removed.
18589         All uses of _RE_ARGS removed, too.
18590         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
18591         unconditionally.
18592         (bzero): Assume memset exists.
18593         (memcmp, memcpy, NULL): Remove.
18594         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
18595         char, or assignments to local vars of type signed char.
18596         (init_syntax_once, PREFIX(extract_number_and_incr),
18597         PREFIX(print_partial_compiled_pattern),
18598         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
18599         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
18600         PREFIX(regex_grow_registers), PREFIX(regex_compile),
18601         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
18602         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
18603         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
18604         wcs_compile_range, byte_compile_range, truncate_wchar,
18605         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
18606         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
18607         count_mbs_length, wcs_re_match_2_internal,
18608         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
18609         PREFIX(alt_match_null_string_p),
18610         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
18611         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
18612         regfree, PREFIX(extract_number)): Define with prototype.  Remove
18613         now-unnecessary declaration, if any.
18614         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
18615         regcomp, regexec):
18616         Remove now-unnecessary casts among pointer types.
18617         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
18618
18619         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
18620         (free): Remove decl.
18621
18622         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
18623
18624         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
18625         (free): Remove decl.
18626
18627         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
18628         * lib/xgetcwd.c: Likewise.
18629
18630         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
18631         (free): Remove decl.
18632
18633         * lib/strchrnul.c (strchrnul): Define with a prototype.
18634         Fix bug: c_in was not converted to char before searching.
18635
18636         The following changes are not K&R related:
18637
18638         * lib/group-member.h: Include <sys/types.h>, so that this file is
18639         self-contained.
18640         * lib/makepath.h: Likewise.
18641
18642         * lib/getusershell.c (readname, default_index, line_size, readname):
18643         Use size_t, not int, for sizes.
18644         (readname): If the size overflows, report an error instead of
18645         looping forever.
18646
18647 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18648
18649         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
18650         libc.
18651
18652 2003-09-09  Paul Eggert  <eggert@twinsun.com>
18653
18654         * README: New section: portability guidelines.
18655
18656 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18657
18658         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
18659         C89 spec.
18660
18661 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
18662
18663         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
18664
18665 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18666
18667         Assume C89 or better; remove K&R cruft.
18668         A few of these changes were first proposed by Derek Robert Price
18669         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
18670
18671         * lib/addext.c: Include <string.h> unconditionally.
18672         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
18673         Don't declare getenv or malloc.
18674
18675         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
18676         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
18677         (NULL): Remove.
18678         (find_stack_direction, alloca): Use prototypes.
18679
18680         * lib/atexit.c (atexit): Define using a prototype.
18681
18682         * lib/basename.c, dirname.c, stripslash.c:
18683         Include <string.h> unconditionally.
18684
18685         * lib/bcopy.c: Include <stddef.h>.
18686         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
18687
18688         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
18689
18690         * lib/error.h (error, error_at_line, error_print_progname)
18691         [! (defined (__STDC__) && __STDC__)]: Remove decls.
18692         * lib/error.c: Include error.h first, to check interface.
18693         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18694         (VA_START): Remove; all uses changeed to va_start.
18695         (exit, strerror): Remove decls.
18696         (error_print_progname): Prototype uncondionally.
18697         Don't include <errno.h>; no longer needed.
18698         (private_strerror): Remove.
18699         (error_tail): Always define.
18700         (error, error_at_line): Assume C89 or better; always use prototypes.
18701         * lib/fatal.c: Include "fatal.h" first, to test interface.
18702         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
18703         (VA_START): Remove; all uses changed to va_start.
18704         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
18705         this case.
18706         (exit): Remove decl.
18707         (fatal): Prototype unconditionally.  Assume va_start works.
18708         Abort at end, to pacify gcc.
18709
18710         * lib/euidaccess.c (main): Define with a prototype.
18711
18712         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
18713
18714         * lib/exitfail.c: Include <stdlib.h> unconditionally.
18715
18716         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
18717         prototypes.
18718         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
18719         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
18720         (getenv): Remove decl.
18721         (fnmatch): Define using a prototype.
18722         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
18723         (FCT): Define using a prototype.
18724
18725         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
18726
18727         * lib/gethostname.c: Include <stddef.h>.
18728         (gethostname): Define with prototype.  Length is size_t, not int.
18729
18730 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18731
18732         Assume C89 or better; remove K&R cruft.
18733         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
18734         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
18735         string.h, getenv, malloc.
18736         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
18737         headers.
18738         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
18739         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
18740         do not check for strerror.
18741         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
18742         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
18743         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
18744         do not check for doprnt or vprintf.
18745         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
18746         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
18747
18748 2003-09-08  Paul Eggert  <eggert@twinsun.com>
18749
18750         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
18751         getversion.c should have been removed then, but was accidentally
18752         preserved.
18753
18754         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
18755         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
18756
18757 2003-09-08  Karl Berry  <karl@gnu.org>
18758
18759         * config/config.sub, config.guess, srclistvars.sh: update from savannah
18760                 config, forget about prep.
18761
18762         * config/depcomp, missing: update from automake.
18763
18764 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18765
18766         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
18767         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18768
18769 2003-09-07  Paul Eggert  <eggert@twinsun.com>
18770
18771         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
18772         copy_tm_result.  Bug reported by Simon Josefsson in
18773         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
18774
18775 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18776
18777         * m4/time_r.m4: New file.
18778         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
18779         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
18780         is. Check for timegm declaration.
18781         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
18782         Do not check for gmtime_r.
18783         Replace mktime if __mktime_internal does not exist and if mktime
18784         hasn't been replaced already.
18785
18786 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18787
18788         * lib/time_r.c, lib/time_r.h: New files.
18789
18790         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
18791         __localtime_r.
18792         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
18793         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
18794
18795         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
18796         __gmtime_r.
18797         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
18798         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
18799         Include <time_r.h>.
18800
18801         * lib/timegm.c: Switch to glibc implementation, with the following
18802         changes:
18803         [defined HAVE_CONFIG_H]: Include <config.h>.
18804         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
18805         (__mktime_internal) [!defined _LIBC]: New decl.
18806         (__gmtime_r) [!defined _LIBC]: New macro and function.
18807         (timegm): Use a prototype, since gnulib assumes C89.
18808         Do not bother declaring tmp to be const, as it's not really usefu.
18809         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
18810         (timegm): Declare only if HAVE_DECL_TIMEGM.
18811
18812 2003-09-06  Paul Eggert  <eggert@twinsun.com>
18813
18814         * MODULES.html.sh (func_all_modules): Add time_r.
18815         * modules/time_r: New file.
18816         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
18817         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
18818
18819 2003-09-03  Paul Eggert  <eggert@twinsun.com>
18820
18821         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
18822         Bug reported by Lute Kamstra in
18823         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
18824
18825         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
18826         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
18827         course with correspondingly smaller numbers for tomorrow and
18828         yesterday.  From Tadayoshi Funaba.  Originally installed into
18829         sh-utils on 1999-08-07, but the patch got lost (I guess during the
18830         coreutils merge?).
18831
18832 2003-08-31  Simon Josefsson  <jas@extundo.com>
18833
18834         * modules/timegm: New file.
18835         * MODULES.html.sh (func_all_modules): Add timegm.
18836
18837 2003-08-31  Simon Josefsson  <jas@extundo.com>
18838
18839         * m4/timegm.m4: New file.
18840
18841 2003-08-31  Simon Josefsson  <jas@extundo.com>
18842
18843         * lib/timegm.h: New file.
18844         * lib/timegm.c: New file.  Based on
18845         wget-1.8.2/src/http.c:mktime_from_utc.
18846
18847 2003-08-31  Karl Berry  <karl@gnu.org>
18848
18849         * lib/argp.h: update from libc.
18850
18851 2003-08-28  Bruno Haible  <bruno@clisp.org>
18852
18853         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
18854         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
18855         followed by '#define fnmatch fnmatch_posix' gives an error.
18856
18857 2003-08-28  Bruno Haible  <bruno@clisp.org>
18858
18859         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
18860         warning on QNX, which defines O_BINARY to 000000.
18861
18862 2003-08-27  Jim Meyering  <jim@meyering.net>
18863
18864         * m4/mkstemp.m4: Require that the system mkstemp be able to create
18865         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
18866         would fail after 32.  Reported by Danny Levinson.  Details here:
18867         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
18868
18869 2003-08-24  Bruno Haible  <bruno@clisp.org>
18870
18871         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
18872         MSVC7 <stdio.h> is included later.
18873
18874 2003-08-22  Simon Josefsson  <jas@extundo.com>
18875
18876         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
18877
18878 2003-08-20  Karl Berry  <karl@gnu.org>
18879
18880         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
18881
18882 2003-08-20  Bruno Haible  <bruno@clisp.org>
18883
18884         * modules/progname: New file.
18885         * MODULES.html.sh (func_all_modules): Add progname.
18886
18887 2003-08-20  Bruno Haible  <bruno@clisp.org>
18888
18889         * lib/progname.h: New file, from GNU gettext.
18890         * lib/progname.c: New file, from GNU gettext.
18891         * lib/progreloc.c: New file, from GNU gettext.
18892
18893 2003-08-19  Jim Meyering  <jim@meyering.net>
18894
18895         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
18896         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
18897
18898 2003-08-19  Bruno Haible  <bruno@clisp.org>
18899
18900         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
18901         more.
18902
18903 2003-08-19  Bruno Haible  <bruno@clisp.org>
18904
18905         * lib/xstrdup.c: Assume <string.h> exists.
18906
18907 2003-08-18  Paul Eggert  <eggert@twinsun.com>
18908
18909         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
18910         in makefile rules.
18911
18912 2003-08-18  Jim Meyering  <jim@meyering.net>
18913
18914         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
18915         * m4/lib-ld.m4: Likewise.
18916
18917 2003-08-18  Jim Meyering  <jim@meyering.net>
18918
18919         * lib/setenv.h: Indent nested cpp directive.
18920         * lib/vasnprintf.c: Remove trailing blanks.
18921
18922 2003-08-17  Simon Josefsson  <jas@extundo.com>
18923
18924         * modules/xstrndup: New file.
18925         * MODULES.html.sh (func_all_modules): Add xstrndup.
18926
18927 2003-08-17  Simon Josefsson  <jas@extundo.com>
18928
18929         * modules/argp: Fix autoconf macro name. Add more dependencies.
18930
18931 2003-08-17  Simon Josefsson  <jas@extundo.com>
18932
18933         * m4/xstrndup.m4: New file.
18934
18935 2003-08-17  Simon Josefsson  <jas@extundo.com>
18936
18937         * m4/argp.m4: New file.
18938
18939 2003-08-17  Simon Josefsson  <jas@extundo.com>
18940             Bruno Haible  <bruno@clisp.org>
18941
18942         * lib/xstrndup.h: New file.
18943         * lib/xstrndup.c: New file.
18944
18945 2003-08-17  Bruno Haible  <bruno@clisp.org>
18946
18947         * modules/strndup (Files, Include): Add lib/strndup.h.
18948
18949 2003-08-17  Bruno Haible  <bruno@clisp.org>
18950
18951         * modules/euidaccess (Files): Add lib/euidaccess.h.
18952
18953 2003-08-17  Bruno Haible  <bruno@clisp.org>
18954
18955         * lib/strndup.h: New file.
18956
18957 2003-08-17  Bruno Haible  <bruno@clisp.org>
18958
18959         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
18960         like AC_GNU_SOURCE.
18961         * modules/extensions (configure.ac): Comment out the invocation of
18962         gl_USE_SYSTEM_EXTENSIONS.
18963
18964 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18965
18966         Merges from coreutils, etc.
18967         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
18968         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
18969         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
18970         fixing a typo.
18971         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
18972         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
18973
18974 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18975
18976         Document merge from coreutils.
18977         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
18978         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
18979         * modules/utime: Add m4/utimes-null.m4.
18980
18981 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18982
18983         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
18984         space, undoing this 2003-08-12 change:
18985         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18986
18987 2003-08-16  Paul Eggert  <eggert@twinsun.com>
18988
18989         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
18990         strtoul.c from libc, undoing this 2003-08-12 change:
18991         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
18992
18993 2003-08-16  Jim Meyering  <jim@meyering.net>
18994
18995         Merges from coreutils.
18996         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
18997         prefix.  Adjust cache variables similarly.  Create 500 rather than
18998         just 300 files, to exercise bug on Darwin6.5, too.
18999         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
19000         $missing_dir.
19001         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
19002         AM_SYS_POSIX_TERMIOS.
19003         Reported by mkc@mathdogs.com.
19004         Also change use of $am_cv_sys_posix_termios
19005         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
19006         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
19007         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
19008         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
19009         in /proc/mounts until it finds one with matching device number.  This
19010         is unnecessary when the FILE argument *is* a mount point.  No stat call
19011         is necessary in that case.  So, disable the statvfs-testing code on
19012         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
19013         as RedHat bug# 84846.
19014         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19015         to 1MB, so as not to render systems with no stack size limit (e.g.,
19016         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19017         Include <unistd.h>.  On some systems,
19018         it is required for the definition of _SC_PAGESIZE.
19019
19020 2003-08-16  Jim Meyering  <jim@meyering.net>
19021
19022         Merge from coreutils.
19023         * lib/xstrtoimax.c: #else #if -> #elif.
19024         * lib/xstrtoumax.c: Likewise.
19025
19026 2003-08-16  Jim Meyering  <jim@meyering.net>
19027
19028         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
19029         * m4/utimes.m4: Removed.
19030         * m4/utimes-null.m4: Renamed from utimes.m4.
19031
19032         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19033         to 1MB, so as not to render systems with no stack size limit (e.g.,
19034         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19035         Include <unistd.h>.  On some systems,
19036         it is required for the definition of _SC_PAGESIZE.
19037
19038 2003-08-16  Jim Meyering  <jim@meyering.net>
19039         and Paul Eggert  <eggert@cs.ucla.edu>
19040
19041         Merges from coreutils, etc.
19042
19043         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
19044         using the latest version from cvs.  This avoids problems with #line
19045         directives using a vendor (Sun) compiler.
19046         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
19047         Don't set GETGROUPS_LIB here; now it's
19048         done via getgroups.m4's wrapper function.
19049         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
19050         rather than just in sh-util/configure.in, so that the
19051         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
19052         same.
19053         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
19054         AC_FUNC_GETLOADAVG where to find getloadavg.c.
19055         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
19056         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
19057         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
19058         Remove code that is now done by the newly-required macros.
19059         Append $(EXEEXT) to DF_PROG.
19060         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
19061         Do not invoke or require the following here,
19062         since prereq.m4 or some gnulib .m4 now does this for us:
19063         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
19064         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
19065         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
19066         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
19067         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
19068         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
19069         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
19070         AC_FUNC_OBSTACK.
19071         Do not replace the following functions, as this is now the job
19072         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
19073         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
19074         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
19075         atexit getpass, strdup, getpagesize.
19076         Replace 'raise'.
19077         Do not check for the following functions, as this is now the job
19078         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
19079         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
19080         setregid.
19081         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
19082         Check for sys/sysctl.h.
19083         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
19084         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
19085         of checking for ssize_t ourselves.
19086
19087         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
19088         Require every macro that gnulib/modules/* suggests for us.
19089         (jm_PREREQ_ADDEXT): New macro.
19090         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
19091         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19092
19093         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19094         (gl_PHYSMEM): Use it.
19095         Also check for `table' function.
19096         Check for new headers and functions.
19097         Add check for sys/sysmp.h.
19098         With suggestions from Kaveh Ghazi.
19099         Ignore headers that are present but cannot be compiled.  This
19100         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19101         C 5.4.
19102
19103 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19104
19105         Document merge from coreutils.
19106         * modules/userspec: Depend on posixver.
19107         * modules/strftime: Depend on tzset.
19108
19109 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19110
19111         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19112         rather than tab, after '#' in shell-script copyright notices.
19113         Suggested by Bruno Haible.
19114
19115 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19116
19117         * config/srclist-update: Use three spaces, rather than tab, after '#'
19118         in shell-script copyright notices.  Suggested by Bruno Haible.
19119         Remove unnecessary parenthesization in regular expression.
19120
19121 2003-08-15  Jim Meyering  <jim@meyering.net>
19122
19123         Merge from coreutils.
19124         * lib/xgethostname.c: Include <stdlib.h>.
19125         (xghostname): Don't exit for anything other than memory-related
19126         failure; just return NULL.
19127         * lib/userspec.c: Include "posixver.h".
19128         (parse_user_spec): Accept `.' as a separator only
19129         in pre-POSIX-200112 mode.
19130         * lib/strtoimax.c: Use #elif rather than #else #if.
19131         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19132         Remove function, now that we can rely on a working tzset function.
19133         [!_LIBC]: Ensure that the required autoconf test has been run.
19134         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19135         Use underlying_strftime for %r.
19136         * lib/sha.c: Merge in some clean-up and optimization changes from
19137         glibc.
19138         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19139         Ensure that it is a multiple of 64.
19140         Rearrange loop exit tests so as to avoid performing an
19141         additional fread after encountering an error or EOF.
19142         * lib/realloc.c: Update copyright date.
19143
19144 2003-08-15  Jim Meyering  <jim@meyering.net>
19145         and Paul Eggert  <eggert@twinsun.com>
19146
19147         Merge from coreutils.
19148         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19149         member but strut utmpx does not.  Needed for AIX 4.3.3.
19150         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19151
19152 2003-08-15  Jim Meyering  <jim@meyering.net>
19153         and Paul Eggert  <eggert@cs.ucla.edu>
19154
19155         Merges from coreutils, etc.
19156         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
19157         Require gl_FUNC_TZSET_CLOBBER.
19158         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
19159         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
19160         members.
19161
19162 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19163
19164         Help the merge from coreutils.
19165         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
19166         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
19167         * m4/tzset.m4: Use it too.
19168
19169 2003-08-14  Paul Eggert  <eggert@twinsun.com>
19170
19171         * modules/tzset: New file.
19172
19173 2003-08-14  Jim Meyering  <jim@meyering.net>
19174
19175         Merges from coreutils.
19176         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
19177         variable names, rather than @FNMATCH_H@.
19178         * modules/alloca: Likewise for $(ALLOCA_H).
19179
19180         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
19181         the three copies of the literal target, `fnmatch.h'.
19182         * modules/alloca (alloca.h): Likewise.
19183
19184 2003-08-14  Jim Meyering  <jim@meyering.net>
19185
19186         Merge from coreutils.
19187         * m4/tzset.m4: New file.
19188         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
19189         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
19190         otherwise, AIX 5.1 systems would end up using the latter.
19191         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
19192         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
19193         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
19194         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
19195
19196 2003-08-14  Jim Meyering  <jim@meyering.net>
19197
19198         Merge from coreutils.
19199         * lib/obstack.h: Whitespace changes.
19200         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
19201         and xcalloc return values.
19202         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
19203         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
19204         hang on OSF/1 5.1 for DIR on both local and remote file systems.
19205         Reported by (and fix confirmed by) Nelson H. F. Beebe.
19206         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
19207         error from mntctl.
19208         Use mntctl's return value to drive the entry-processing loop, since
19209         we can't rely on the value of the vmt_length member in the last
19210         entry.  On some systems doing so could result in exhausting
19211         virtual memory.  Based in part on a patch from Mike Jetzer.
19212
19213 2003-08-14  Jim Meyering  <jim@meyering.net>
19214         and Paul Eggert  <eggert@twinsun.com>
19215
19216         Merges from coreutils, plus other fixes.
19217         * lib/physmem.c: Merge in portability changes from gcc/libiberty
19218         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
19219         for credits and details.  Thanks to Kaveh Ghazi for helping
19220         to keep these files in sync.
19221         (ARRAY_SIZE): Define it.
19222         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
19223         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
19224         (memcasecmp): Don't assume size_t fits in unsigned int.
19225         Remove casts and duplicate code.
19226         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
19227         (memcpy): Remove definition.
19228         Merge in some clean-up and optimization changes from glibc.
19229         [BLOCKSIZE]: Move definition to top of file.
19230         Ensure that it is a multiple of 64.
19231         Rearrange loop exit tests so as to avoid performing an
19232         additional fread after encountering an error or EOF.
19233         * lib/md5.h (md5_uintptr): Define.
19234         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
19235         return to the initial working directory.  Preserve errno
19236         for caller.
19237         * lib/idcache.c: Include "xalloc.h".
19238         (xmalloc, xrealloc): Remove decls.
19239         (getuser): Remove casts no longer required in C89.
19240         * lib/human.c: Include stdio.h, for sprintf.
19241         * lib/group-member.c: Include "xalloc.h".
19242         (xmalloc, xrealloc): Remove decls.
19243         (get_group_info): Remove casts no longer required in C89.
19244         * lib/getusershell.c (readname): Remove casts no longer required in
19245         C89.
19246         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
19247         * lib/getline.c: Whitespace fix, from coreutils.
19248
19249 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19250
19251         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
19252         Check for isascii.
19253
19254         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19255         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19256         Undo previous (whitespace-only) change.
19257
19258 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19259
19260         * lib/exclude.c: Include <ctype.h>
19261         (IN_CTYPE_DOMAIN): New macro.
19262         (is_space): New fn.
19263         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
19264         and empty lines.
19265
19266         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19267         Undo previous (whitespace-only) change.
19268
19269 2003-08-13  Paul Eggert  <eggert@twinsun.com>
19270
19271         * config/srclist-update: Change update back to the old behavior,
19272         leaving whitespace alone.  Use one 'sed' command rather than a
19273         pipeline.
19274         (fixlicense): Now a variable, not a function.
19275         (remove_trailing_blanks): Remove.
19276         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
19277         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19278         Undo previous (whitespace-only) change.
19279
19280 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19281
19282         Merge from coreutils.
19283         * modules/euidaccess: Add lib_SOURCES, include for new
19284         file euidaccess.h
19285
19286 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19287
19288         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
19289         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
19290         Normalize leading white space and remove trailing white space.
19291
19292         Merge from coreutils
19293         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
19294
19295         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
19296         0.12.1.  These files are now being upgraded automatically by
19297         ../config/srclist-update.
19298
19299 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19300
19301         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
19302         Normalize leading white space and remove trailing white space.
19303         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
19304         notice, as per ../config/srclist-update.
19305
19306         Merge from coreutils.
19307         * lib/euidaccess.h: New file.
19308         * lib/euidaccess.c: Include it.
19309         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
19310         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
19311         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
19312
19313 2003-08-12  Paul Eggert  <eggert@twinsun.com>
19314
19315         * config/srclist-update: Add copyright notice.
19316         (remove_id_lines, remove_trailing_blanks): New constants.
19317         (fixfile): Use them to normalize spacing a bit in copied files.
19318         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
19319         Normalize leading white space and remove trailing white space.
19320
19321         * config/texinfo.tex: Sync with texinfo.
19322
19323         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
19324         strtoul.c from libc, to merge coreutils whitespace changes.
19325
19326         * config/srclist.txt: Get the following m4 files from gettext:
19327         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
19328         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
19329         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
19330         wint_t.m4.
19331
19332 2003-08-12  Karl Berry  <karl@gnu.org>
19333
19334         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
19335         been made.
19336
19337 2003-08-11  Paul Eggert  <eggert@twinsun.com>
19338
19339         * modules/gnu-source, m4/gnu-source.m4:
19340         Remove; we're assuming Autoconf 2.54 or later now.
19341         Suggested by Bruno Haible.
19342         * MODULES.html.sh (func_all_modules): Remove gnu-source.
19343
19344 2003-08-11  Bruno Haible  <bruno@clisp.org>
19345
19346         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
19347
19348 2003-08-11  Bruno Haible  <bruno@clisp.org>
19349
19350         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
19351         (vasnprintf): Use it instead of wcslen.
19352
19353 2003-08-11  Bruno Haible  <bruno@clisp.org>
19354
19355         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
19356         value to ensure that _Bool promotes to int. Use #define for _Bool when
19357         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
19358
19359 2003-08-10  Karl Berry  <karl@gnu.org>
19360
19361         * lib/regex.h: update from libc (whitespace fix).
19362
19363 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19364
19365         Merge some files from coreutils.  These changes were
19366         originally made by Jim Meyering.
19367         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
19368         many older Unixes require this.
19369         * lib/alloca.c (alloca): Remove cast to argument of free;
19370         no longer needed in C89.
19371         * lib/alloca_.h, regex.h: Fix white space to match
19372         what GNU indent does.
19373
19374 2003-08-09  Paul Eggert  <eggert@twinsun.com>
19375
19376         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
19377         apparently Emacs's Unicode mode got confused before my 2003-08-05
19378         checkin.
19379
19380 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19381
19382         * m4/extensions.m4: New file.
19383         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
19384         Require gl_USE_SYSTEM_EXTENSIONS.
19385         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
19386         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
19387
19388 2003-08-08  Paul Eggert  <eggert@twinsun.com>
19389
19390         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
19391         * modules/extensions, modules/gnu-source: New files.
19392         * modules/timespec, modules/unlocked-io: Depend on extensions.
19393
19394 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19395
19396         * modules/restrict: New file.
19397         * MODULES.html.sh (func_all_modules): Add restrict.
19398         * modules/regex: Depend on restrict.
19399
19400 2003-08-07  Paul Eggert  <eggert@twinsun.com>
19401
19402         * m4/restrict.m4: New file.
19403         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
19404
19405 2003-08-07  Bruno Haible  <bruno@clisp.org>
19406
19407         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
19408         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
19409
19410 2003-08-07  Bruno Haible  <bruno@clisp.org>
19411
19412         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
19413         makes the module 'getndelim2' compatible with the module 'getline'.
19414
19415 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19416
19417         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
19418         byte with "\201" to avoid glitches when editing that source file
19419         with multi-gnome-terminal.
19420
19421 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19422
19423         * lib/bumpalloc.h: Remove.
19424
19425 2003-08-05  Paul Eggert  <eggert@twinsun.com>
19426
19427         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
19428         * modules/bumpalloc: Remove.
19429
19430 2003-08-04  Paul Eggert  <eggert@twinsun.com>
19431
19432         * lib/getloadavg.c: Change copyright notice and spacing to conform to
19433         GNU coding style.
19434
19435         Merge from coreutils.
19436         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
19437         1. From glibc.
19438         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
19439         from Karl Berry, implemented by Jim Meyering.
19440         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
19441         from Dmitry V. Levin.
19442         Remove anachronistic cast of xrealloc.
19443         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
19444         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
19445         type. Otherwise, it wouldn't compile with at least /bin/cc on
19446         ymp-cray-unicos9.0.2.X.
19447         Combine two mostly-identical uses of alloca into one.
19448         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
19449
19450 2003-08-04  Dave Love  <d.love@dl.ac.uk>
19451
19452         [From Emacs.]
19453
19454         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
19455         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
19456         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
19457         obsolete NLIST_NAME_UNION.
19458         [__GNU__]: Undef BSD and FSCALE.
19459         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
19460
19461 2003-08-03  Paul Eggert  <eggert@twinsun.com>
19462
19463         * lib/stdbool_.h (_Bool): Make it signed char, instead of
19464         an enum type, so that it's guaranteed to promote to int.  See:
19465         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
19466
19467 2003-08-03  Karl Berry  <karl@gnu.org>
19468
19469         * config/depcomp: update from automake.
19470
19471 2003-07-31  Paul Eggert  <eggert@twinsun.com>
19472
19473         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
19474         (strerror): Don't assume that a printable int fits in 14 bytes.
19475
19476 2003-07-31  Bruno Haible  <bruno@clisp.org>
19477
19478         * modules/getpass-gnu: New file.
19479         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
19480
19481 2003-07-31  Bruno Haible  <bruno@clisp.org>
19482
19483         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
19484
19485 2003-07-24  Karl Berry  <karl@gnu.org>
19486
19487         * config/missing: update from automake.
19488
19489 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
19490             Bruno Haible  <bruno@clisp.org>
19491
19492         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
19493         * lib/getline.c (getline, getdelim): Likewise.
19494         Remove _GNU_SOURCE define; now it's defined in config.h through
19495         m4/getline.m4.
19496
19497 2003-07-23  Karl Berry  <karl@gnu.org>
19498
19499         * config/config.sub: update from prep.
19500
19501 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19502
19503         * modules/xalloc (Depends-on): Add exitfail.
19504         * modules/xmemcoll: Likewise.
19505
19506 2003-07-22  Paul Eggert  <eggert@twinsun.com>
19507
19508         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
19509         over-parenthesization in macros.
19510
19511         Sync with coreutils.
19512
19513         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
19514         required by C99.
19515
19516         Use `exit_failure' for xalloc and xmemcoll instead of their own
19517         private exit-failure variables.
19518         * lib/xalloc.h (xalloc_exit_failure): Remove.
19519         * lib/xmalloc.c: Likewise.  Include exitfail.h.
19520         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
19521         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
19522         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
19523         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
19524
19525 2003-07-20  Jim Meyering  <jim@meyering.net>
19526
19527         * modules/closeout (Depends-on): Add exitfail.
19528         Suggestion from Bruno Haible.
19529
19530 2003-07-19  Karl Berry  <karl@gnu.org>
19531
19532         * config/config.sub: update from prep.
19533
19534 2003-07-18  Paul Eggert  <eggert@twinsun.com>
19535
19536         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
19537         Remove.
19538         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
19539         to test that it can stand by itself.  Include "exitfail.h".
19540         Clients should set exit_failure instead.
19541         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
19542
19543 2003-07-18  Bruno Haible  <bruno@clisp.org>
19544
19545         * modules/getndelim2: New file.
19546         * modules/getline: Share files with module getndelim2.
19547         * modules/getnline: Depend on getndelim2 instead of sharing files with
19548         it. Add getnline.c to lib_SOURCES.
19549         * MODULES.html.sh (func_all_modules): Add getndelim2.
19550
19551 2003-07-18  Bruno Haible  <bruno@clisp.org>
19552
19553         * m4/getndelim2.m4: New file.
19554         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
19555         invoke gl_PREREQ_GETNDELIM2.
19556         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
19557         gl_PREREQ_GETNDELIM2.
19558         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
19559         gl_GETNDELIM2.
19560
19561 2003-07-18  Bruno Haible  <bruno@clisp.org>
19562
19563         * lib/getndelim2.h: New file.
19564         * lib/getndelim2.c: Make into a module of its own. Include config.h,
19565         getndelim2.h.
19566         (getndelim2): Make non-static. Change return type to ssize_t.
19567         * lib/getline.h: Change argument names.
19568         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
19569         * lib/getnline.c: Include getndelim2.h.
19570
19571 2003-07-18  Andreas Schwab  <schwab@suse.de>
19572
19573         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
19574
19575 2003-07-17  Karl Berry  <karl@gnu.org>
19576
19577         * config/config.sub: update from prep.
19578
19579 2003-07-17  Bruno Haible  <bruno@clisp.org>
19580
19581         * modules/getnline: New file.
19582         * modules/getline: Add lib/getndelim2.c to source file list.
19583         * MODULES.html.sh (func_all_modules): Add getnline.
19584
19585 2003-07-17  Bruno Haible  <bruno@clisp.org>
19586
19587         * m4/getnline.m4: New file.
19588
19589 2003-07-17  Bruno Haible  <bruno@clisp.org>
19590
19591         * m4/Makefile.am.in: Remove file.
19592         * m4/Makefile.am: Remove file.
19593         * m4/Makefile.in: Remove file.
19594
19595 2003-07-17  Bruno Haible  <bruno@clisp.org>
19596
19597         * lib/getnline.h: New file.
19598         * lib/getnline.c: New file.
19599         * lib/getndelim2.c: New file, extracted from getline.c.
19600         (getndelim2): Renamed from getdelim2, with added nmax argument.
19601         * lib/getline.c: Include getndelim2.c.
19602         (getdelim2): Moved out to getndelim2.c.
19603         (getline, getdelim): Update.
19604
19605 2003-07-17  Bruno Haible  <bruno@clisp.org>
19606
19607         * lib/Makefile.am: Remove file.
19608         * lib/Makefile.in: Remove file.
19609
19610 2003-07-17  Bruno Haible  <bruno@clisp.org>
19611
19612         * configure.in: Remove file.
19613         * Makefile.in: Remove file.
19614
19615 2003-07-17  Bruno Haible  <bruno@clisp.org>
19616
19617         * MODULES.html.sh: Put the </BODY> right before </HTML>.
19618
19619 2003-07-16  Karl Berry  <karl@gnu.org>
19620
19621         * config/srclist-update: was running fixlicense twice, which caused
19622                 texinfo.tex to be nullified for some reason.  Simplify,
19623                 $gplsrc is no longer needed as far as I can see?
19624
19625 2003-07-16  Jim Meyering  <jim@meyering.net>
19626
19627         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
19628
19629 2003-07-15  Paul Eggert  <eggert@twinsun.com>
19630
19631         * config/srclist.txt: Get the following files from gettext-runtime/intl
19632         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
19633         ref-del.sin.  From Bruno Haible.
19634         * config/srclist-update (fixfile): Change grep pattern again, since the
19635         previous fix didn't work (there was another trailing $).  Use
19636         '[$]' to escape the $s.
19637
19638 2003-07-15  Karl Berry  <karl@gnu.org>
19639
19640         * lib/vasnprintf.c: update from gettext.
19641
19642 2003-07-15  Karl Berry  <karl@gnu.org>
19643
19644         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
19645         gets expanded when surrounded by '$'.
19646
19647 2003-07-15  Jim Meyering  <jim@meyering.net>
19648
19649         * modules/save-cwd: Don't depend on error.  From Derek Price.
19650
19651 2003-07-15  Jim Meyering  <jim@meyering.net>
19652
19653         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
19654
19655 2003-07-14  Simon Josefsson  <jas@extundo.com>
19656
19657         * modules/mempcpy: New file.
19658         * MODULES.html.sh (func_all_modules): Add mempcpy.
19659
19660 2003-07-14  Simon Josefsson  <jas@extundo.com>
19661
19662         * m4/mempcpy.m4: New file.
19663
19664 2003-07-14  Simon Josefsson  <jas@extundo.com>
19665
19666         * lib/mempcpy.h: New file.
19667         * lib/mempcpy.c: New file.
19668
19669 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19670
19671         * modules/getdate, modules/posixtm: Depend on mktime.
19672
19673 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19674
19675         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
19676         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
19677         unicodeio.c, unicodeio.h, unlocked-io.h:
19678         Switch from LGPL to GPL.
19679
19680 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19681
19682         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
19683         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
19684         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
19685         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
19686         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
19687         updated automatically by ../config/srclist-update.  This changes
19688         their license from LPGL to GPL.
19689
19690 2003-07-14  Paul Eggert  <eggert@twinsun.com>
19691
19692         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
19693         assumed to refer to the root of the most recent stable gettext version.
19694         * config/srclistvars.sh: Add defaults for eggert.
19695         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
19696         Match "This program" as well as "The program".  This is needed
19697         for gettext.
19698
19699 2003-07-14  Jim Meyering  <jim@meyering.net>
19700
19701         Don't emit diagnostics.  Let callers do that.
19702         * lib/save-cwd.c: Don't include "error.h".
19703         (save_cwd): Don't call error.  Ensure that errno is valid
19704         when returning nonzero.
19705
19706         * lib/save-cwd.h (restore_cwd): Update prototype.
19707         * lib/save-cwd.c (restore_cwd): Remove two parameters.
19708         Simplify.  Don't call error upon failure.  Let callers do that.
19709         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
19710         when auditing is enabled.  But don't bother updating the #if.
19711
19712 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
19713
19714         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
19715         it breaks C++ compilation.
19716         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
19717
19718 2003-07-10  Simon Josefsson  <jas@extundo.com>
19719
19720         * modules/strchrnul (Makefile.am): Add strchrnul.h.
19721
19722 2003-07-10  Jim Meyering  <jim@meyering.net>
19723
19724         * m4/clock_time.m4: Remove trailing blank.
19725         * m4/intmax_t.m4: Likewise.
19726
19727 2003-07-10  Jim Meyering  <jim@meyering.net>
19728
19729         * lib/vasnprintf.c: Remove trailing blanks.
19730         Make cpp indentation consistent.
19731
19732 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19733
19734         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
19735         posixver.c, strftime.c, strnlen.c, strverscmp.c:
19736         Switch from LGPL to GPL.
19737
19738 2003-07-09  Paul Eggert  <eggert@twinsun.com>
19739
19740         * config/srclist.txt: Sort sublists.  Add
19741         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
19742         that differ from gnulib for one reason or another; we'd like this list
19743         to be smaller but for now let's document what we have.
19744
19745 2003-07-08  Paul Eggert  <eggert@twinsun.com>
19746
19747         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
19748         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
19749         and sweeter "eval x=$x".
19750         * config/srclist.txt: Get lib/argp* from glibc.
19751
19752 2003-07-07  Paul Eggert  <eggert@twinsun.com>
19753
19754         * lib/mktime.c: Fix some boundary cases and remove need for floating
19755         point.
19756
19757         Issue a compile-time diagnostic if time_t is floating point, or if
19758         two's complement arithmetic is not in effect, or if arithmetic
19759         right shift does not propagate the sign.  These assumptions were
19760         all in the original code but they weren't checked.
19761
19762         (TIME_T_MIDPOINT, verify): New macros.
19763         (__isleap): Remove; it has integer overflow problems.
19764         (leapyear): New function, without those problems.
19765         (ydhms_tm_diff): Remove; splitting into two parts.
19766         (ydhms_diff): New function, containing the arithmetic part of
19767         the old ydhms_tm_diff function.  Issue a compile-time
19768         diagnostic if we are not using C99 integer division.
19769         Avoid casts when possible.
19770         (guess_time_tm): New function, containing the checking part of
19771         the old ydhms_tm_diff function.  Return the new value, rather than
19772         the difference between it and the old.  Accept a new argument T
19773         so that *T specifies the old value.  Check for overflow in the result.
19774
19775         (__mktime_internal): Use a time_t offset, not a long int offset.
19776         This undoes the 2003-06-04 change, which is no longer needed now
19777         that we have better overflow checking.
19778         (localtime_offset): Likewise.
19779
19780         (__mktime_internal): Avoid harmful overflow on hosts where time_t
19781         and long are 64-bit but int is only 32-bit.
19782         (ydhms_diff): Use long int to store year1 and yday1.
19783         Issue a compile-time diagnostic if long int is not wide enough.
19784
19785         (__mktime_internal): Use long int to store adjusted year and yday.
19786         Use plain C rather than preprocessor commands, if that doesn't
19787         affect efficiency.
19788         Check for overflow (and try to repair) after each probe
19789         rather than checking only at the very end.  This avoids some bugs
19790         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
19791         does not equal GMT offset at maximum time).
19792         Use integer to check for overflow rather than floating point; this
19793         is more portable to non-IEEE hosts, and is a tad faster.
19794         When we detect that we are oscillating between two values,
19795         don't check whether tm_isdst has the requested value, since
19796         we already know the answer.  When tm_isdst has the wrong value,
19797         use a different heuristic to find the right one, based on the
19798         extreme values actually observed in practice in tz2003a,
19799         rather than the (overly optimistic) "previous 3 calendar quarters".
19800
19801         (not_equal_tm, print_tm, check_result): Use "const T" rather than
19802         "T const" to accommodate glibc style.
19803         (check_result): Use less-confusing report format.  "long" -> "long int.
19804         (main): Likewise.
19805         Don't loop if the iteration overflows time_t.
19806         Allow a negative step in the iteration.
19807
19808 2003-07-06  Karl Berry  <karl@gnu.org>
19809
19810         * config/depcomp: update from automake.
19811         * config/config.sub: update from prep.
19812
19813 2003-07-03  Karl Berry  <karl@gnu.org>
19814
19815         * config/config.guess: update from prep.
19816
19817 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19818
19819         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
19820         xreadlink.c now includes it unconditionally.
19821
19822 2003-07-01  Paul Eggert  <eggert@twinsun.com>
19823
19824         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
19825         having it depend on HAVE_SYS_TYPES_H.
19826
19827 2003-07-01  Bruno Haible  <bruno@clisp.org>
19828
19829         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
19830         <sys/types.h> should be sufficient.
19831         Reported by Paul Eggert.
19832
19833 2003-06-26  Karl Berry  <karl@gnu.org>
19834
19835         * config/depcomp: update from automake.
19836
19837 2003-06-26  Bruno Haible  <bruno@clisp.org>
19838
19839         * modules/human: Depend on module stdbool.
19840
19841 2003-06-25  Bruno Haible  <bruno@clisp.org>
19842
19843         * modules/readlink: New file.
19844         * modules/xreadlink: Depend on it.
19845         * MODULES.html.sh (func_all_modules): Add readlink.
19846
19847 2003-06-25  Bruno Haible  <bruno@clisp.org>
19848
19849         * m4/readlink.m4: New file.
19850
19851 2003-06-25  Bruno Haible  <bruno@clisp.org>
19852
19853         * lib/readlink.c: New file.
19854
19855 2003-06-22  Karl Berry  <karl@gnu.org>
19856
19857         * config/srclist.txt: update mkinstalldirs from automake.
19858         * config/mkinstalldirs: update.
19859
19860 2003-06-22  Bruno Haible  <bruno@clisp.org>
19861
19862         Portability to mingw32.
19863         * m4/ssize_t.m4: New file, from GNU gettext.
19864         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
19865         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
19866
19867 2003-06-22  Bruno Haible  <bruno@clisp.org>
19868
19869         * modules/safe-read: Add m4/ssize_t.m4.
19870         * modules/xreadlink: Add m4/ssize_t.m4.
19871
19872 2003-06-20  Bruno Haible  <bruno@clisp.org>
19873
19874         Assume C89, so PARAMS isn't needed.
19875         * lib/unicodeio.h (PARAMS): Remove.
19876         * lib/unicodeio.c: Don't use PARAMS.
19877
19878 2003-06-18  Karl Berry  <karl@gnu.org>
19879
19880         * config/config.{guess,sub}: update from prep.
19881
19882 2003-06-18  Jim Meyering  <jim@meyering.net>
19883
19884         Merge changes from coreutils.
19885         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
19886         Remove explicit declarations of xmalloc and realloc.
19887         Include xalloc.h.
19888         (read_utmp): Remove anachronistic cast of xmalloc.
19889
19890 2003-06-17  Paul Eggert  <eggert@twinsun.com>
19891
19892         Assume C89, so PARAMS isn't needed.
19893         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
19894         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
19895         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
19896         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
19897         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
19898         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
19899         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
19900         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
19901         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
19902         lib/xstrtod.h, lib/xstrtol.h: Likewise.
19903         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
19904         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
19905         no longer needed. Anyway, config.h should always be included before any
19906         other file.
19907
19908 2003-06-11  Simon Josefsson  <jas@extundo.com>
19909
19910         * modules/sysexits: New file.
19911         * MODULES.html.sh (func_all_modules): Add sysexits.
19912
19913 2003-06-11  Simon Josefsson  <jas@extundo.com>
19914
19915         * lib/sysexit_.h: New file.
19916
19917 2003-06-11  Derek Price  <derek@ximbiot.com>
19918
19919         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
19920         necessary.
19921
19922 2003-06-11  Bruno Haible  <bruno@clisp.org>
19923
19924         * m4/sysexits.m4: New file.
19925
19926 2003-06-10  Simon Josefsson  <jas@extundo.com>
19927
19928         * lib/argp.h: New file, from glibc.
19929         * lib/argp-ba.c: New file, from glibc.
19930         * lib/argp-eexst.c: New file, from glibc.
19931         * lib/argp-fmtstream.c: New file, from glibc.
19932         * lib/argp-fmtstream.h: New file, from glibc.
19933         * lib/argp-fs-xinl.c: New file, from glibc.
19934         * lib/argp-help.c: New file, from glibc.
19935         * lib/argp-namefrob.h: New file, from glibc.
19936         * lib/argp-parse.c: New file, from glibc.
19937         * lib/argp-pv.c: New file, from glibc.
19938         * lib/argp-pvh.c: New file, from glibc.
19939         * lib/argp-xinl.c: New file, from glibc.
19940
19941 2003-06-10  Simon Josefsson  <jas@extundo.com>
19942
19943         * modules/strchrnul: New file.
19944
19945 2003-06-10  Simon Josefsson  <jas@extundo.com>
19946
19947         * modules/argp: New file.
19948
19949 2003-06-10  Simon Josefsson  <jas@extundo.com>
19950
19951         * m4/strchrnul.m4: New file.
19952
19953 2003-06-10  Simon Josefsson  <jas@extundo.com>
19954
19955         * lib/strchrnul.h: New file.
19956         * lib/strchrnul.c: New file.
19957
19958 2003-06-10  Bruno Haible  <bruno@clisp.org>
19959
19960         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
19961
19962 2003-06-07  Karl Berry  <karl@gnu.org>
19963
19964         * config/config.{guess,sub}: update from prep.
19965
19966 2003-06-07  Jim Meyering  <jim@meyering.net>
19967
19968         * modules/strtod: Use $(...) notation, not @...@ for
19969         AC_REPLACE'd variables.
19970         * modules/localcharset: Likewise.
19971
19972 2003-06-07  Jim Meyering  <jim@meyering.net>
19973
19974         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
19975         in place of my name in the copyright comment.
19976         Remove definition and uses of __P.
19977
19978         From coreutils.
19979         * lib/stat.c: Don't declare xmalloc explicitly.
19980         Instead, include "xalloc.h".
19981         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
19982         xrealloc, and xcalloc return values.
19983         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
19984         Improve comment.
19985         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
19986
19987 2003-06-07  Bruno Haible  <bruno@clisp.org>
19988
19989         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
19990         avoid AC_CONFIG_LINKS.
19991         * modules/fnmatch (Makefile.am): Use explicit creation rule for
19992         fnmatch.h, to avoid AC_CONFIG_LINKS.
19993         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
19994
19995 2003-06-07  Bruno Haible  <bruno@clisp.org>
19996
19997         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
19998         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
19999         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20000         directory.
20001         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
20002         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20003         directory.
20004
20005 2003-06-06  Jim Meyering  <jim@meyering.net>
20006
20007         Merge from coreutils.
20008         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
20009         Consolidate declarations and initializations of *_base* locals.
20010
20011         Merge from coreutils.
20012         This avoids a core dump on systems without GNU putenv,
20013         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
20014         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
20015         (unsetenv): New static function, from GNU libc.
20016         (rpl_putenv): Use it.
20017
20018         * lib/modechange.c: Remove trailing blanks.
20019
20020         Merge from coreutils.
20021         * lib/fsusage.c: Remove declaration of statfs.
20022         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
20023
20024         * lib/posixtm.c: Include <stdbool.h> unconditionally.
20025
20026 2003-06-06  Jim Meyering  <jim@meyering.net>
20027
20028         * lib/stdbool_.h: Renamed from stdbool.h.in.
20029
20030 2003-06-06  Jim Meyering  <jim@meyering.net>
20031             Bruno Haible  <bruno@clisp.org>
20032
20033         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
20034         Adjust Makefile.am snippet not to redirect directly to target.
20035         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
20036
20037 2003-06-05  Paul Eggert  <eggert@twinsun.com>
20038
20039         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
20040         mismatch, look in future quarters as well as past.  This fixes a
20041         bug when processing fall-backwards gaps immediately after a long
20042         period of daylight-saving time.
20043
20044         * lib/mktime.c: Assume freestanding C89 or better.
20045         (HAVE_LIMITS_H): Remove.  Assume it's 1.
20046         (__P): Remove; not used.
20047         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
20048         (mktime, not_equal_tm, print_tm, check_result,
20049         main): Use prototypes.  Use const * where appropriate.
20050         (main): Fix typo in testing code that uncovered by above changes.
20051         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
20052
20053 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20054
20055         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
20056         locale.h, localeconv.  This merges changes from coreutils.
20057
20058         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
20059         It can be removed after the next Autoconf is released.
20060         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
20061         needed.
20062
20063 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20064
20065         * lib/mktime.c: Fix Debian bug 177940
20066         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
20067         (localtime_offset): Now long int, not time_t, because we want it
20068         to be guaranteed to be signed.  All uses changed.
20069         (__mktime_internal): If overflow would occur when adding offset,
20070         don't add it.
20071
20072         Merge 'human' changes from coreutils.  Rewrite to support
20073         locale-specific notations like thousands separators.
20074         * lib/human.c: Simplify authorship notice.
20075         Include human.h immediately after config.h.
20076         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
20077         <limits.h>: Do not include, since human.h does.
20078         (SIZE_MAX, UINTMAX_MAX): New macros.
20079         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
20080         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
20081         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
20082         (power_letter): Renamed from suffixes.
20083         (generate_suffix_backwards): Remove.
20084         (adjust_value): Now takes int style (because of human.h changes)
20085         and long double value (for greater precision on some platforms).
20086         (group_number): New function.
20087         (human_readable): Use it.  Use integer options, not enum.
20088         Put the options before the sizes in the arg list.
20089         Support all the new options.
20090         The old human_readable function has been removed;
20091         use inttostr.h instead.
20092         (human_readable, default_block_size, humblock):
20093         Use uintmax_t, not int, for block sizes.
20094         (human_readable_inexact, block_size_types): Remove.
20095         (block_size_opts): New constant.
20096         (human_options): Renamed from human_block_size, with new signature
20097         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20098         * lib/human.h: Add copyright and authorship notice.
20099         Include <limits.h> and <stdbool.h> unconditionally.
20100         (PARAMS): Remove.  All uses removed.
20101         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20102         (enum human_inexact_style): Remove tag; now a nameless enum.
20103         (human_floor, human_ceiling, human_round_to_even): Now have
20104         values 2, 0, 1 rather than -1, 1, 0.
20105         (human_group_digits, human_suppress_point_zero, human_autoscale,
20106         human_base_1024, human_SI, human_B): New constants.
20107         (human_readable_inexact, human_block_size): Remove.
20108         (human_readable): Size args are now uintmax_t, not int.
20109         (human_options): New decl.
20110
20111         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20112         unnecessary now that we assume C89 or better.  This change
20113         imported from coreutils.
20114
20115         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20116         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20117         in the 2003-05-30 sync from glibc.
20118
20119         .h files should stand alone, but we shouldn't include <sys/types.h>
20120         if we can get away with just <stddef.h>.
20121
20122         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20123         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20124         rather than <sys/types.h>, as we merely need size_t.
20125         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20126         to get size_t.
20127         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20128         Include <stdio.h>, to get FILE.
20129         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20130         memcasecmp.h has included <stddef.h> and all we need is size_t.
20131         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20132         our interface, instead of including <sys/types.h>
20133
20134 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20135
20136         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20137         now, as glibc mktime is buggy on non-glibc systems.
20138
20139 2003-06-03  Karl Berry  <karl@gnu.org>
20140
20141         * config/config.sub: update from prep.
20142
20143 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20144
20145         [from coreutils]
20146         Fix some minor time-related bugs with POSIX time arguments.
20147         Some valid time stamps were being rejected (notably -1, and
20148         time stamps before 1900 on 64-bit hosts).  And some invalid
20149         time stamps were being accepted, e.g. September 31.
20150
20151         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20152         that we can return (time_t) -1 successfully.
20153         * lib/posixtm.c: Likewise.
20154         [HAVE_STDBOOL_H]: Include <stdbool.h>.
20155         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
20156         (t): Remove static var.
20157         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
20158         of static var.  All uses changed.
20159         (year): Do not reject years before 1900; they can occur with
20160         64-bit time_t.
20161         (posix_time_parse): Do not check for out-of-range components;
20162         that is now the caller's responsibility, since our checks were
20163         only approximations.
20164         (posixtime): Use mktime to check for out-of-range components,
20165         since it knows them exactly.
20166         If mktime returns (time_t) -1, check whether an error actually occurred
20167         by invoking localtime on -1.
20168         (main) [TEST_POSIXTIME]: Check for input data errors, and report
20169         posixtime failures better.
20170         Improve the test data (in comments only).
20171
20172 2003-06-02  Karl Berry  <karl@gnu.org>
20173
20174         * config/mkinstalldirs (version): new variable.
20175         (--version): new option.
20176         (usage): improve message.
20177
20178 2003-05-30  Karl Berry  <karl@gnu.org>
20179
20180         * lib/mktime.c: update from libc.
20181
20182 2003-05-30  Bruno Haible  <bruno@clisp.org>
20183
20184         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
20185         * config/config.rpath: Upgrade to gettext-0.12.1.
20186
20187 2003-05-30  Bruno Haible  <bruno@clisp.org>
20188
20189         * m4/gettext.m4: Upgrade to gettext-0.12.1.
20190         * m4/nls.m4: New file, from gettext-0.12.1.
20191         * m4/po.m4: New file, from gettext-0.12.1.
20192         * m4/progtest.m4: Upgrade to gettext-0.12.1.
20193
20194 2003-05-30  Bruno Haible  <bruno@clisp.org>
20195
20196         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
20197         * lib/localcharset.h: Likewise.
20198         * lib/localcharset.c: Likewise.
20199
20200 2003-05-29  Karl Berry  <karl@gnu.org>
20201
20202         * config/config.rpath: update from gettext.
20203
20204 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20205
20206         Assume the headers required for C89 freestanding compilers.
20207         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
20208         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
20209         * m4/human.m4 (gl_HUMAN): Likewise.
20210         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
20211         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
20212         * m4/userspec.m4 (gl_USERSPEC): Likewise.
20213         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
20214         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20215         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
20216
20217 2003-05-28  Paul Eggert  <eggert@twinsun.com>
20218
20219         Assume the headers required for C89 freestanding compilers.
20220         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
20221         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
20222         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
20223         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
20224         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
20225         define, since <limits.h> is guaranteed to do that.
20226         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
20227         * lib/exclude.c: Include <stdbool.h> unconditionally.
20228         * lib/tempname.c: Include <stddef.h> unconditionally.
20229         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
20230         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
20231         <stddef.h> does that.
20232         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
20233         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
20234         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
20235         needed.
20236         * lib/xstrtol.c: Likewise.
20237         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
20238         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
20239
20240         * lib/addext.c (addext): Use assignment rather than cast, to avoid
20241         warnings on some platforms.
20242
20243         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20244         arbitrarily.
20245
20246 2003-05-26  Jim Meyering  <jim@meyering.net>
20247
20248         Merge in a change from coreutils:
20249         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
20250         that is guaranteed to be `no'.  Use `no_such_member' to indicate
20251         that condition, rather than `-1' which is slightly misleading.
20252         Change the name of the cache variable to have the gl_ prefix.
20253         Prompted by a patch from Richard Dawe for DJGPP.
20254
20255 2003-05-24  Karl Berry  <karl@gnu.org>
20256
20257         * config/config.guess: update from prep.
20258
20259 2003-05-22  Karl Berry  <karl@gnu.org>
20260
20261         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
20262
20263 2003-05-20  Karl Berry  <karl@gnu.org>
20264
20265         * config/config.guess: update from prep.
20266
20267 2003-05-18  Karl Berry  <karl@gnu.org>
20268
20269         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
20270         might actually be set by the user.
20271
20272         * config/depcomp, install-sh, mdate-sh: update from automake.
20273
20274 2003-05-17  Bruno Haible  <bruno@clisp.org>
20275
20276         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
20277         invalid expansion for AC_EGREP_CPP.
20278         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
20279         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
20280         Suggested by Akim Demaille <akim@epita.fr> in
20281         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
20282
20283 2003-05-12  Jim Meyering  <jim@meyering.net>
20284
20285         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
20286         the space-padded-by-default conversion specifiers, %e, %k, %l.
20287
20288 2003-05-12  Bruno Haible  <bruno@clisp.org>
20289
20290         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
20291         the string is longer than 4 KB.
20292
20293 2003-05-11  Karl Berry  <karl@gnu.org>
20294
20295         * config/config.{guess,sub}: update from prep.
20296
20297 2003-05-09  Bruno Haible  <bruno@clisp.org>
20298
20299         * modules/error: Add m4/strerror_r.m4 to file list.
20300
20301 2003-05-03  Bruno Haible  <bruno@clisp.org>
20302
20303         Upgrade to Unicode-4.0.
20304         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
20305         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
20306         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
20307         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
20308         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
20309         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
20310         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
20311         Change width of U+E0100..U+E01EF from 1 to 0.
20312
20313 2003-04-25  Jim Meyering  <jim@meyering.net>
20314
20315         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
20316         of type size_t, not int.
20317
20318 2003-04-25  Bruno Haible  <bruno@clisp.org>
20319
20320         * lib/copy-file.c: Include <stddef.h>, for size_t.
20321
20322 2003-04-21  Paul Eggert  <eggert@twinsun.com>
20323
20324         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
20325         code which expansion is under static control.  Patch imported from
20326         Akim Demaille's patch to Bison; see
20327         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
20328
20329 2003-04-14  Bruno Haible  <bruno@clisp.org>
20330
20331         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
20332
20333 2003-04-11  Jim Meyering  <jim@meyering.net>
20334
20335         Merge changes from Coreutils.
20336
20337         2003-03-22  Jim Meyering  <jim@meyering.net>
20338
20339         * lib/strftime.c (widen): Cast alloca return value to proper type.
20340
20341         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
20342
20343         From GNU libc.
20344         * lib/strftime.c (my_strftime): Handle very large width
20345         specifications for numeric values correctly.  Improve checks for
20346         overflow.
20347
20348         2003-01-19  Jim Meyering  <jim@meyering.net>
20349
20350         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
20351         definitions.
20352         (nl_get_alt_digit) [! defined my_strftime]: Define.
20353         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
20354         _nl_get_alt_digit and _nl_get_walt_digit.
20355
20356         * lib/strftime.c (my_strftime): Merge in locale-related changes from
20357         libc. These changes have no effect outside of _LIBC.
20358
20359 2003-04-10  Bruno Haible  <bruno@clisp.org>
20360
20361         * modules/findprog: New file.
20362         * MODULES.html.sh (func_all_modules): Add it.
20363
20364 2003-04-10  Bruno Haible  <bruno@clisp.org>
20365
20366         * m4/findprog.m4: New file.
20367         * m4/eaccess.m4: New file.
20368
20369 2003-04-10  Bruno Haible  <bruno@clisp.org>
20370
20371         * lib/findprog.h: New file, from GNU gettext.
20372         * lib/findprog.c: New file, from GNU gettext.
20373
20374 2003-04-05  Jim Meyering  <jim@meyering.net>
20375
20376         Merge changes from Coreutils.
20377
20378         * lib/exclude.h (PARAMS): Remove definition and uses.
20379         * lib/exclude.c: Remove uses of `PARAMS'.
20380
20381         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
20382         Add test-cases for DOS filenames. Declare program_name.
20383         (main): Set up program_name.  Patch by Rich Dawe.
20384
20385         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20386         error from mntctl.
20387         Use mntctl's return value to drive the entry-processing loop, since
20388         we can't rely on the value of the vmt_length member in the last
20389         entry.  On some systems doing so could result in exhausting
20390         virtual memory.  Based in part on a patch from Mike Jetzer.
20391
20392 2003-04-04  Bruno Haible  <bruno@clisp.org>
20393
20394         * modules/linebreak: New file.
20395         * MODULES.html.sh (func_all_modules): Add it.
20396
20397 2003-04-04  Bruno Haible  <bruno@clisp.org>
20398
20399         * m4/linebreak.m4: New file.
20400
20401 2003-04-04  Bruno Haible  <bruno@clisp.org>
20402
20403         * lib/linebreak.h: New file, from GNU gettext.
20404         * lib/linebreak.c: New file, from GNU gettext with slight
20405         modifications.
20406         * lib/lbrkprop.h: New file, from GNU gettext.
20407
20408 2003-04-03  Bruno Haible  <bruno@clisp.org>
20409
20410         * modules/utf8-ucs4: New file.
20411         * modules/utf16-ucs4: New file.
20412         * modules/ucs4-utf8: New file.
20413         * modules/ucs4-utf16: New file.
20414         * MODULES.html.sh (func_all_modules): Add them.
20415
20416 2003-04-03  Bruno Haible  <bruno@clisp.org>
20417
20418         * m4/utf-ucs4.m4: New file.
20419         * m4/ucs4-utf.m4: New file.
20420
20421 2003-04-03  Bruno Haible  <bruno@clisp.org>
20422
20423         * lib/utf8-ucs4.h: New file, from GNU gettext.
20424         * lib/utf16-ucs4.h: New file, from GNU gettext.
20425         * lib/ucs4-utf8.h: New file, from GNU gettext.
20426         * lib/ucs4-utf16.h: New file, from GNU gettext.
20427
20428 2003-04-02  Bruno Haible  <bruno@clisp.org>
20429
20430         * modules/binary-io: New file.
20431         * MODULES.html.sh (func_all_modules): Add it.
20432
20433 2003-04-02  Bruno Haible  <bruno@clisp.org>
20434
20435         * lib/binary-io.h: New file, from GNU gettext.
20436
20437 2003-04-01  Bruno Haible  <bruno@clisp.org>
20438
20439         * modules/pathname: New file.
20440         * MODULES.html.sh (func_all_modules): Add it.
20441
20442 2003-04-01  Bruno Haible  <bruno@clisp.org>
20443
20444         * lib/pathname.h: New file, from GNU gettext.
20445         * lib/concatpath.c: New file, from GNU gettext.
20446
20447 2003-03-30  Bruno Haible  <bruno@clisp.org>
20448
20449         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
20450
20451 2003-03-30  Bruno Haible  <bruno@clisp.org>
20452
20453         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
20454         function chown() doesn't exist.
20455
20456 2003-03-28  Bruno Haible  <bruno@clisp.org>
20457
20458         * modules/copy-file: New file.
20459         * MODULES.html.sh (func_all_modules): Add it.
20460
20461 2003-03-28  Bruno Haible  <bruno@clisp.org>
20462
20463         * m4/copy-file.m4: New file.
20464
20465 2003-03-28  Bruno Haible  <bruno@clisp.org>
20466
20467         * lib/copy-file.h: New file, from GNU gettext.
20468         * lib/copy-file.c: New file, from GNU gettext.
20469
20470 2003-03-18  Jim Meyering  <jim@meyering.net>
20471
20472         * lib/quote.c (quote_n): Fix typo in comment.
20473
20474 2003-03-18  Bruno Haible  <bruno@clisp.org>
20475
20476         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
20477         checking.
20478         * m4/onceonly_2_57.m4: Likewise.
20479
20480 2003-03-17  Bruno Haible  <bruno@clisp.org>
20481
20482         * m4/onceonly.m4: Require autoconf 2.54 or newer.
20483         (m4_quote): Remove macro.
20484         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
20485
20486 2003-03-14  Jim Meyering  <jim@meyering.net>
20487
20488         Merge changes from Coreutils.
20489         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
20490         to be const, in order to avoid warnings.
20491         (obstack_room): Likewise.
20492         (obstack_empty_p): Likewise.
20493
20494 2003-03-14  Bruno Haible  <bruno@clisp.org>
20495
20496         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
20497         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
20498
20499 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20500
20501         Merge changes from Bison.
20502         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
20503         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
20504         when compiling Bison 1.875's `bitset bset = obstack_alloc
20505         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
20506         * lib/hash.c: Include <stdbool.h> unconditionally.
20507
20508 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20509
20510         * m4/onceonly.m4 (m4_quote): New macro.
20511         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
20512         Quote AC_FOREACH variable-expansions properly.
20513
20514 2003-03-13  Paul Eggert  <eggert@twinsun.com>
20515
20516         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
20517
20518 2003-03-09  Paul Eggert  <eggert@twinsun.com>
20519
20520         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
20521         Reported by Bruce Becker; see:
20522         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
20523
20524 2003-03-03  Paul Eggert  <eggert@twinsun.com>
20525             Bruno Haible  <bruno@clisp.org>
20526
20527         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
20528         Reported by John Hughes, see
20529         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
20530
20531 2003-02-20  Bruno Haible  <bruno@clisp.org>
20532
20533         * MODULES.html.sh (func_all_modules): Add poll.
20534
20535 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20536
20537         * modules/poll: New file.
20538
20539 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20540
20541         * lib/poll_.h: New file.
20542         * lib/poll.c: New file.
20543
20544 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
20545
20546         * m4/poll.m4: New file.
20547
20548 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20549
20550         * modules/mathl: New file.
20551
20552 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20553
20554         * lib/mathl.h: New file.
20555         * lib/acosl.c: New file.
20556         * lib/asinl.c: New file.
20557         * lib/atanl.c: New file.
20558         * lib/ceill.c: New file.
20559         * lib/cosl.c: New file.
20560         * lib/expl.c: New file.
20561         * lib/floorl.c: New file.
20562         * lib/frexpl.c: New file.
20563         * lib/ldexpl.c: New file.
20564         * lib/logl.c: New file.
20565         * lib/sincosl.c: New file.
20566         * lib/sinl.c: New file.
20567         * lib/sqrtl.c: New file.
20568         * lib/tanl.c: New file.
20569         * lib/trigl.c: New file.
20570         * lib/trigl.h: New file.
20571
20572 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
20573
20574         * m4/mathl.m4: New file.
20575
20576 2003-02-18  Bruno Haible  <bruno@clisp.org>
20577
20578         * MODULES.html.sh (func_all_modules): Add mathl.
20579
20580 2003-02-17  Bruno Haible  <bruno@clisp.org>
20581
20582         * modules/mkdtemp: New module.
20583         * MODULES.html.sh (func_all_modules): Add it.
20584
20585 2003-02-17  Bruno Haible  <bruno@clisp.org>
20586
20587         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
20588
20589 2003-02-17  Bruno Haible  <bruno@clisp.org>
20590
20591         * lib/mkdtemp.h: New file, from GNU gettext.
20592         * lib/mkdtemp.c: New file, from GNU gettext.
20593
20594 2003-02-02  Jim Meyering  <jim@meyering.net>
20595
20596         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
20597         e.g. glibc-2.2.93.
20598
20599 2003-01-31  Bruno Haible  <bruno@clisp.org>
20600
20601         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
20602         'rpl_rename'.
20603         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
20604         'rpl_strnlen'.
20605         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
20606         'rpl_strtod'.
20607         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
20608         'rpl_utime'.
20609
20610 2003-01-31  Bruno Haible  <bruno@clisp.org>
20611
20612         * lib/rename.c: #undef rename before defining rpl_rename.
20613         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
20614
20615 2003-01-30  Bruno Haible  <bruno@clisp.org>
20616
20617         * modules/vasnprintf, modules/vasprintf: New modules.
20618         * MODULES.html.sh (func_all_modules): Add them.
20619
20620 2003-01-30  Bruno Haible  <bruno@clisp.org>
20621
20622         * m4/signed.m4: New file, from GNU gettext.
20623         * m4/longdouble.m4: New file, from GNU gettext.
20624         * m4/wchar_t.m4: New file, from GNU gettext.
20625         * m4/wint_t.m4: New file, from GNU gettext.
20626         * m4/vasnprintf.m4: New file.
20627         * m4/vasprintf.m4: New file.
20628
20629 2003-01-30  Bruno Haible  <bruno@clisp.org>
20630
20631         * lib/printf-args.h: New file, from GNU gettext.
20632         * lib/printf-args.c: New file, from GNU gettext.
20633         * lib/printf-parse.h: New file, from GNU gettext.
20634         * lib/printf-parse.c: New file, from GNU gettext.
20635         * lib/vasnprintf.h: New file, from GNU gettext.
20636         * lib/vasnprintf.c: New file, from GNU gettext.
20637         * lib/asnprintf.c: New file, from GNU gettext.
20638         * lib/vasprintf.h: New file, from GNU gettext with modifications.
20639         * lib/vasprintf.c: New file, from GNU gettext.
20640         * lib/asprintf.c: New file, from GNU gettext.
20641
20642 2003-01-29  Bruno Haible  <bruno@clisp.org>
20643
20644         * modules/stpncpy: New module.
20645         * MODULES.html.sh (func_all_modules): Add it.
20646
20647 2003-01-29  Bruno Haible  <bruno@clisp.org>
20648
20649         * m4/stpncpy.m4: New file.
20650
20651 2003-01-29  Bruno Haible  <bruno@clisp.org>
20652
20653         * lib/stpncpy.h: New file, from GNU gettext with modifications.
20654         * lib/stpncpy.c: New file, from GNU gettext with modifications.
20655
20656 2003-01-28  Bruno Haible  <bruno@clisp.org>
20657
20658         * modules/c-ctype: New module.
20659         * MODULES.html.sh (func_all_modules): Add it.
20660
20661 2003-01-28  Bruno Haible  <bruno@clisp.org>
20662
20663         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
20664         Paul Eggert.
20665         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
20666         Paul Eggert.
20667
20668 2003-01-27  Bruno Haible  <bruno@clisp.org>
20669
20670         * modules/xsetenv: New module.
20671         * MODULES.html.sh (func_all_modules): Add it.
20672
20673 2003-01-27  Bruno Haible  <bruno@clisp.org>
20674
20675         * lib/xsetenv.h: New file, from GNU gettext.
20676         * lib/xsetenv.c: New file, from GNU gettext.
20677
20678 2003-01-23  Jim Meyering  <jim@meyering.net>
20679
20680         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
20681         from working on systems without dirfd (at least Irix and OSF1/Tru64).
20682
20683 2003-01-23  Bruno Haible  <bruno@clisp.org>
20684
20685         * modules/minmax: New module.
20686         * MODULES.html.sh (func_all_modules): Add it.
20687
20688 2003-01-23  Bruno Haible  <bruno@clisp.org>
20689
20690         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
20691         Eggert.
20692
20693 2003-01-22  Bruno Haible  <bruno@clisp.org>
20694
20695         * modules/exit: New module.
20696         * MODULES.html.sh (func_all_modules): Add it.
20697
20698 2003-01-22  Bruno Haible  <bruno@clisp.org>
20699
20700         * lib/exit.h: New file, from GNU gettext.
20701
20702 2003-01-19  Bruno Haible  <bruno@clisp.org>
20703
20704         * gnulib-tool: Recognize option --extract-maintainer.
20705         (func_get_maintainer): New function.
20706         * modules/*: Add Maintainer entry.
20707
20708 2003-01-16  Jim Meyering  <jim@meyering.net>
20709
20710         * m4/regex.m4: The `regex' struct is both input and output.
20711         Initialize it before each use.  Patch by Tim Waugh.
20712
20713 2003-01-16  Bruno Haible  <bruno@clisp.org>
20714
20715         * MODULES.html.sh: Add a table of contents. Add the module name as
20716         leftmost column. Add hyperlinks.
20717
20718 2003-01-15  Bruno Haible  <bruno@clisp.org>
20719
20720         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
20721
20722 2003-01-15  Bruno Haible  <bruno@clisp.org>
20723
20724         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
20725         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
20726         suffix.
20727
20728 2003-01-15  Bruno Haible  <bruno@clisp.org>
20729
20730         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
20731
20732 2003-01-15  Bruno Haible  <bruno@clisp.org>
20733
20734         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
20735         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
20736
20737 2003-01-14  Jim Meyering  <jim@meyering.net>
20738
20739         * lib/same.c (same_name): Tweak a comment.
20740
20741 2003-01-14  Bruno Haible  <bruno@clisp.org>
20742
20743         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
20744         when a string comparison is sufficient.
20745
20746 2003-01-14  Bruno Haible  <bruno@clisp.org>
20747
20748         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
20749         'unsigned int'.
20750
20751 2003-01-14  Bruno Haible  <bruno@clisp.org>
20752
20753         * lib/hash-pjw.c: Add comment about low quality of this function.
20754
20755 2003-01-13  Bruno Haible  <bruno@clisp.org>
20756
20757         * modules/stpcpy: Distribute lib/stpcpy.h.
20758         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
20759
20760 2003-01-13  Bruno Haible  <bruno@clisp.org>
20761
20762         * modules/*: Add a description.
20763         * modules/strpbrk: Fix Makefile.am snippet.
20764         * modules/strtoimax: Fix dependencies.
20765         * modules/strtoumax: Likewise.
20766
20767 2003-01-13  Bruno Haible  <bruno@clisp.org>
20768
20769         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
20770         * modules/alloca (Makefile.am): All object files depend on alloca.h.
20771         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
20772
20773 2003-01-13  Bruno Haible  <bruno@clisp.org>
20774
20775         * gnulib-tool (func_create_testdir): Store config/* files in the main
20776         directory.
20777         * config.rpath: Move to ...
20778         * config/config.rpath: ... here.
20779         * modules/gettext: Contains config/config.rpath, not config.rpath.
20780         * modules/iconv: Likewise.
20781
20782 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20783
20784         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20785         to avoid collisions with libcurses and libreadline.
20786
20787         * m4/getstr.m4: Remove.
20788         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
20789
20790 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20791
20792         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20793         to avoid collisions with libcurses and libreadline.
20794
20795         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
20796         * lib/getstr.h, getstr.c: Remove.
20797         * lib/getline.c: Include "getline.h", to check interface.
20798         Move body of old getstr.c here: this defines MIN_CHUNK and
20799         declares getdelim2, which is renamed from getstr.
20800         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
20801
20802         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
20803         All uses changed.
20804         * lib/linebuffer.h: Likewise.
20805         (readline): Remove backward-compatibility macro.
20806
20807 2003-01-12  Paul Eggert  <eggert@twinsun.com>
20808
20809         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
20810         to avoid collisions with libcurses and libreadline.
20811         * getstr: Remove.
20812         * MODULES.html.sh: Remove getstr.
20813         * modules/getline: Depend on unlocked-io, not getstr.
20814
20815 2003-01-12  Jim Meyering  <jim@meyering.net>
20816
20817         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
20818
20819 2003-01-10  Bruno Haible  <bruno@clisp.org>
20820
20821         * modules/alloca: Change Makefile.am requirements. Simplify Include
20822         requirements. Add lib/alloca_.h to file list.
20823
20824 2003-01-10  Bruno Haible  <bruno@clisp.org>
20825
20826         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
20827
20828 2003-01-10  Bruno Haible  <bruno@clisp.org>
20829
20830         * lib/alloca_.h: New file.
20831         * lib/getdate.y: Unconditionally include alloca.h.
20832         * lib/makepath.c: Likewise.
20833         * lib/setenv.c: Likewise.
20834         * lib/userspec.c: Likewise.
20835
20836 2003-01-09  Karl Berry  <karl@gnu.org>
20837
20838         * MODULES.html.sh: include `dirname $0` in PATH, to find
20839         gnulib-tool.
20840
20841 2003-01-09  Bruno Haible  <bruno@clisp.org>
20842
20843         * modules/stdbool: Change configure.ac, Makefile.am requirements.
20844         Simplify Include requirements. Add lib/stdbool.h.in to file list.
20845
20846 2003-01-09  Bruno Haible  <bruno@clisp.org>
20847
20848         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
20849
20850 2003-01-09  Bruno Haible  <bruno@clisp.org>
20851
20852         * lib/stdbool.h.in: New file.
20853
20854 2003-01-09  Bruno Haible  <bruno@clisp.org>
20855
20856         * gnulib-tool (func_all_modules): Ignore files ending in ~.
20857         * MODULES.html.sh: Likewise.
20858
20859 2003-01-08  Jim Meyering  <jim@meyering.net>
20860
20861         * lib/full-write.c: Undefine and define-away `const' after inclusion
20862         of errno.h, not before.  Suggestion from Bruno Haible.
20863
20864 2003-01-08  Bruno Haible  <bruno@clisp.org>
20865
20866         * modules/full-read: Depend on full-write.
20867
20868 2003-01-08  Bruno Haible  <bruno@clisp.org>
20869
20870         * lib/safe-read.c: Include specification header first, to ensure its
20871         selfcontainedness.
20872         * lib/full-write.c: Likewise.
20873
20874 2003-01-07  Jim Meyering  <jim@meyering.net>
20875
20876         * lib/full-write.c: Rework so that it may serve to define full_read,
20877         too.
20878         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
20879
20880 2003-01-07  Bruno Haible  <bruno@clisp.org>
20881
20882         * lib/strtoimax.c: Include <stdint.h> as an alternative to
20883         <inttypes.h>.
20884         * lib/xstrtol.h: Likewise.
20885         * lib/xstrtoimax.c: Likewise.
20886         * lib/xstrtoumax.c: Likewise.
20887         * lib/human.h: Likewise.
20888
20889         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
20890         on systems that have <inttypes.h> but not <stdint.h>.
20891
20892 2003-01-07  Bruno Haible  <bruno@clisp.org>
20893
20894         * MODULES.html.sh: Add copyright notice.
20895         (missed_files): Omit CVS directory entries.
20896         (func_module): Make it work with sed-3.02.
20897         * MODULES.txt: Remove file.
20898
20899 2003-01-06  Jim Meyering  <jim@meyering.net>
20900
20901         * lib/version-etc.c: Update year in translatable copyright string.
20902
20903 2003-01-03  Karl Berry  <karl@gnu.org>
20904
20905         * config/config.{guess,sub}: update from prep.
20906
20907 2003-01-02  Karl Berry  <karl@gnu.org>
20908
20909         * doc/COPYING.DOC: belatedly updated to 1.2.
20910
20911 2003-01-01  Karl Berry  <karl@gnu.org>
20912
20913         * gnulib-tool (func_verify_module): report module name $module in
20914         error message, not $1.
20915         * gnulib-tool (create-testdir): don't complain if destdir couldn't
20916         be created, only if it doesn't exist.
20917         * gnulib-tool (last_checkin_date): don't expand the $Date here.
20918
20919 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20920
20921         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
20922
20923 2002-12-31  Paul Eggert  <eggert@twinsun.com>
20924
20925         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
20926         memcmp if strcoll doesn't work.
20927
20928 2002-12-31  Bruno Haible  <bruno@clisp.org>
20929
20930         * lib/utime.c (utime_null): No need to call ftruncate if the file was
20931         nonempty.
20932
20933 2002-12-31  Bruno Haible  <bruno@clisp.org>
20934
20935         * lib/memcoll.c (STRCOLL): New macro.
20936         (memcoll): Use it.
20937
20938 2002-12-31  Bruno Haible  <bruno@clisp.org>
20939
20940         * lib/localcharset.h: New file.
20941         * lib/localcharset.c: Include it.
20942         * lib/unicodeio.c: Likewise.
20943
20944 2002-12-31  Bruno Haible  <bruno@clisp.org>
20945
20946         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
20947         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
20948
20949 2002-12-31  Bruno Haible  <bruno@clisp.org>
20950
20951         * lib/getline.h: Include <stddef.h>, for size_t.
20952
20953         * lib/unicodeio.h: Include <stddef.h>, for size_t.
20954         * lib/unicodeio.c: Don't include <stddef.h>.
20955
20956 2002-12-31  Bruno Haible  <bruno@clisp.org>
20957
20958         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
20959         HAVE_TM_ZONE.
20960
20961 2002-12-24  Karl Berry  <karl@gnu.org>
20962
20963         * config/config.guess: update from prep.
20964
20965 2002-12-24  Bruno Haible  <bruno@clisp.org>
20966
20967         General infrasructure.
20968         * m4/README: Rewritten.
20969         * m4/onceonly.m4: New file.
20970         * m4/onceonly_2_57.m4: New file.
20971
20972         Module atexit.
20973         * m4/atexit.m4: New file.
20974
20975         Module strtod.
20976         * m4/strtod.m4: New file.
20977
20978         Module strtol.
20979         * m4/strtol.m4: New file.
20980
20981         Module strtoul.
20982         * m4/strtoul.m4: New file.
20983
20984         Module memchr.
20985         * m4/memchr.m4: New file.
20986
20987         Module memcmp.
20988         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
20989         (jm_FUNC_MEMCMP): Invoke it.
20990
20991         Module memcpy.
20992         * m4/memcpy.m4: New file.
20993
20994         Module memmove.
20995         * m4/memmove.m4: New file.
20996
20997         Module memset.
20998         * m4/memset.m4: New file.
20999
21000         Module strcspn.
21001         * m4/strcspn.m4: New file.
21002
21003         Module strpbrk.
21004         * m4/strpbrk.m4: New file.
21005
21006         Module strstr.
21007         * m4/strstr.m4: New file.
21008
21009         Module strerror.
21010         * m4/strerror.m4: New file.
21011
21012         Module mktime.
21013         * m4/mktime.m4: Renamed from jm-mktime.m4.
21014         (gl_PREREQ_MKTIME): New macro.
21015         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
21016
21017         Module malloc.
21018         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
21019         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
21020         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
21021
21022         Module realloc.
21023         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
21024         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
21025         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
21026
21027         Module strftime.
21028         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
21029         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
21030         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
21031         gl_TM_GMTOFF.
21032         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
21033
21034         Module xalloc.
21035         * m4/xalloc.m4: New file.
21036
21037         Module alloca.
21038         * m4/alloca.m4: New file.
21039
21040         Module putenv.
21041         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
21042         (jm_FUNC_PUTENV): Invoke it.
21043
21044         Module setenv.
21045         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
21046         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
21047         when invoked twice.
21048         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
21049         gt_FUNC_SETENV.
21050
21051         Module memrchr.
21052         * m4/memrchr.m4: New file.
21053
21054         Module stpcpy.
21055         * m4/stpcpy.m4: New file.
21056
21057         Module strcase.
21058         * m4/strcase.m4: New file.
21059
21060         Module strdup.
21061         * m4/strdup.m4: New file.
21062
21063         Module strnlen.
21064         * m4/strnlen.m4: New file.
21065
21066         Module strndup.
21067         * m4/strndup.m4: New file.
21068
21069         Module xstrtod.
21070         * m4/xstrtod.m4: New file.
21071
21072         Module xstrtol.
21073         * m4/xstrtol.m4: New file.
21074
21075         Module getdate.
21076         * m4/getdate.m4: New file.
21077
21078         Module unlocked-io.
21079         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
21080         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
21081         * m4/jm-glibc-io.m4n: Remove file.
21082
21083         Module long-options.
21084         * m4/long-options.m4: New file.
21085
21086         Module md5.
21087         * m4/md5.m4: New file.
21088
21089         Module sha.
21090         * m4/sha.m4: New file.
21091
21092         Module getstr.
21093         * m4/getstr.m4: New file.
21094
21095         Module getline.
21096         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21097         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21098         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21099         simply getline. Infoke gl_PREREQ_GETLINE.
21100
21101         Module obstack.
21102         * m4/obstack.m4: New file.
21103
21104         Module hash.
21105         * m4/hash.m4: New file.
21106
21107         Module readtokens.
21108         * m4/readtokens.m4: New file.
21109
21110         Module strverscmp.
21111         * m4/strverscmp.m4: New file.
21112
21113         Module stdbool.
21114         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21115         OSF/1.
21116
21117         Module strtoll.
21118         * m4/strtoll.m4: New file.
21119
21120         Module strtoull.
21121         * m4/strtoull.m4: New file.
21122
21123         Module strtoimax.
21124         * m4/strtoimax.m4: New file.
21125
21126         Module strtoumax.
21127         * m4/strtoumax.m4: New file.
21128
21129         Module xstrtoimax.
21130         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21131         jm_AC_PREREQ_XSTRTOIMAX.
21132         Moved the strtol prerequisites to strtol.m4.
21133         Moved the strtoll prerequisites to strtoll.m4.
21134         Moved the strtoimax prerequisites to strtoimax.m4.
21135
21136         Module xstrtoumax.
21137         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21138         jm_AC_PREREQ_XSTRTOUMAX.
21139         Moved the strtoul prerequisites to strtoul.m4.
21140         Moved the strtoull prerequisites to strtoull.m4.
21141         Moved the strtoumax prerequisites to strtoumax.m4.
21142
21143         Module chown.
21144         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21145         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21146
21147         Module dup2.
21148         * m4/dup2.m4: New file.
21149
21150         Module ftruncate.
21151         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21152         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21153
21154         Module getgroups.
21155         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
21156         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
21157
21158         Module gettimeofday.
21159         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
21160         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
21161         gl_PREREQ_GETTIMEOFDAY.
21162
21163         Module mkdir.
21164         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
21165         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
21166
21167         Module mkstemp.
21168         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
21169         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
21170         jm_AC_TYPE_UINTMAX_T.
21171         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
21172
21173         Module stat.
21174         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
21175         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
21176
21177         Module lstat.
21178         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
21179         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
21180
21181         Module timespec.
21182         * m4/timespec.m4 (gl_TIMESPEC): New macro.
21183         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
21184         * m4/st_mtim.m4: Indentation.
21185
21186         Module nanosleep.
21187         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
21188         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
21189         gl_PREREQ_NANOSLEEP.
21190
21191         Module regex.
21192         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
21193         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
21194         (gl_REGEX): New macro.
21195
21196         Module rename.
21197         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
21198         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
21199
21200         Module rmdir.
21201         * m4/rmdir.m4: New file.
21202
21203         Module utime.
21204         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
21205         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
21206         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
21207
21208         Module dirname.
21209         * m4/dirname.m4: New file.
21210
21211         Module getopt.
21212         * m4/getopt.m4: New file.
21213
21214         Module unistd-safer.
21215         * m4/unistd-safer.m4: New file.
21216
21217         Module fnmatch.
21218         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
21219         declaration.
21220         (gl_PREREQ_FNMATCH_EXTRA): New macro.
21221         (gl_FUNC_FNMATCH_POSIX): New macro.
21222         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
21223         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
21224         simply fnmatch.
21225
21226         Module exclude.
21227         * m4/exclude.m4: New file.
21228
21229         Module human.
21230         * m4/human.m4: New file.
21231
21232         Module acl.
21233         * m4/acl.m4: Nop.
21234
21235         Module backupfile.
21236         * m4/backupfile.m4: New file.
21237         * m4/d-ino.m4: Indentation.
21238
21239         Module fsusage.
21240         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
21241         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
21242         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
21243
21244         Module dirfd.
21245         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
21246         requirements.
21247
21248         Module euidaccess.
21249         * m4/euidaccess.m4: New file.
21250
21251         Module file-type.
21252         * m4/file-type.m4: New file.
21253
21254         Module fileblocks.
21255         * m4/fileblocks.m4: New file.
21256
21257         Module filemode.
21258         * m4/filemode.m4: New file.
21259
21260         Module isdir.
21261         * m4/isdir.m4: New file.
21262
21263         Module lchown.
21264         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
21265         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
21266
21267         Module makepath.
21268         * m4/makepath.m4: New file.
21269
21270         Module modechange.
21271         * m4/modechange.m4: New file.
21272
21273         Module mountlist.
21274         * m4/mountlist.m4: New file.
21275         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
21276         Indentation.
21277
21278         Module path-concat.
21279         * m4/path-concat.m4: New file.
21280
21281         Module pathmax.
21282         * m4/pathmax.m4: New file.
21283
21284         Module same.
21285         * m4/same.m4: New file.
21286
21287         Module save-cwd.
21288         * m4/save-cwd.m4: New file.
21289
21290         Module savedir.
21291         * m4/savedir.m4: New file.
21292
21293         Module xgetcwd.
21294         * m4/xgetcwd.m4: New file.
21295         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
21296
21297         Module xreadlink.
21298         * m4/xreadlink.m4: New file.
21299
21300         Module safe-read.
21301         * m4/safe-read.m4: New file.
21302
21303         Module safe-write.
21304         * m4/safe-write.m4: New file.
21305
21306         Module closeout.
21307         * m4/closeout.m4: New file.
21308
21309         Module stdio-safer.
21310         * m4/stdio-safer.m4: New file.
21311
21312         Module getpass.
21313         * m4/getpass.m4: New file.
21314
21315         Module getugroups.
21316         * m4/getugroups.m4: New file.
21317
21318         Module group-member.
21319         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
21320         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
21321
21322         Module idcache.
21323         * m4/idcache.m4: New file.
21324
21325         Module userspec.
21326         * m4/userspec.m4: New file.
21327
21328         Module gettime.
21329         * m4/clock_time.m4: New file.
21330         * m4/gettime.m4: New file.
21331
21332         Module settime.
21333         * m4/settime.m4: New file.
21334
21335         Module posixtm.
21336         * m4/posixtm.m4: New file.
21337
21338         Module gethostname.
21339         * m4/gethostname.m4: New file.
21340
21341         Module canon-host.
21342         * m4/canon-host.m4: New file.
21343
21344         Module gettext.
21345         * m4/codeset.m4: New file, from gettext-0.11.5.
21346         * m4/gettext.m4: New file, from gettext-0.11.5.
21347         * m4/glibc21.m4: New file, from gettext-0.11.5.
21348         * m4/iconv.m4: New file, from gettext-0.11.5.
21349         * m4/intdiv0.m4: New file, from gettext-0.11.5.
21350         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
21351         * m4/inttypes.m4: New file, from gettext-0.11.5.
21352         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
21353         * m4/isc-posix.m4: New file, from gettext-0.11.5.
21354         * m4/lcmessage.m4: New file, from gettext-0.11.5.
21355         * m4/lib-ld.m4: New file, from gettext-0.11.5.
21356         * m4/lib-link.m4: New file, from gettext-0.11.5.
21357         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
21358         * m4/progtest.m4: New file, from gettext-0.11.5.
21359         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
21360         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
21361         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
21362
21363         Module localcharset.
21364         * m4/localcharset.m4: New file.
21365
21366         Module hard-locale.
21367         * m4/hard-locale.m4: New file.
21368
21369         Module mbswidth.
21370         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
21371         onceonly macros.
21372         * m4/mbrtowc.m4: Add comment.
21373
21374         Module memcasecmp.
21375         * m4/memcasecmp.m4: New file.
21376
21377         Module memcoll.
21378         * m4/memcoll.m4: New file.
21379
21380         Module unicodeio.
21381         * m4/unicodeio.m4: New file.
21382
21383         Module rpmatch.
21384         * m4/rpmatch.m4: New file.
21385
21386         Module yesno.
21387         * m4/yesno.m4: New file.
21388
21389         Module exitfail.
21390         * m4/exitfail.m4: New file.
21391
21392         Module c-stack.
21393         * m4/c-stack.m4 (gl_C_STACK): New macro.
21394         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
21395
21396         Module error.
21397         * m4/error.m4 (gl_ERROR): New macro.
21398         (jm_PREREQ_ERROR): Use onceonly macros.
21399
21400         Module fatal.
21401         * m4/fatal.m4: New file.
21402
21403         Module getloadavg.
21404         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
21405         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
21406
21407         Module getpagesize.
21408         * m4/getpagesize.m4: New file.
21409
21410         Module getusershell.
21411         * m4/getusershell.m4: New file.
21412
21413         Module physmem.
21414         * m4/physmem.m4: New file.
21415
21416         Module posixver.
21417         * m4/posixver.m4: New file.
21418
21419         Module quotearg.
21420         * m4/quotearg.m4: New file.
21421
21422         Module quote.
21423         * m4/quote.m4: New file.
21424
21425         Module readutmp.
21426         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
21427
21428         Module sig2str.
21429         * m4/sig2str.m4: New file.
21430
21431         Other.
21432         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
21433         ulonglong.m4.
21434         * m4/intmax_t.m4: New file.
21435         * m4/d-type.m4: Indentation.
21436         * m4/jm-macros.m4: Update.
21437         * m4/prereq.m4 (jm_PREREQ): Update.
21438         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
21439         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
21440         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
21441         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
21442         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
21443         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
21444         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
21445         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
21446         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
21447         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
21448         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
21449         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
21450         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
21451         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
21452         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
21453         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
21454         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
21455         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
21456         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
21457
21458 2002-12-24  Bruno Haible  <bruno@clisp.org>
21459
21460         * MODULES.txt: Update according to m4/ changes.
21461
21462         Module gettext.
21463         * config.rpath: New file, from gettext-0.11.5.
21464
21465         * modules/*: New module descriptions.
21466         * gnulib-tool: New file.
21467         * MODULES.html.sh: New file.
21468
21469 2002-12-21  Karl Berry  <karl@gnu.org>
21470
21471         * doc/fdl.texi: update to version 1.2.
21472
21473 2002-12-19  Karl Berry  <karl@gnu.org>
21474
21475         * config/config.guess: update from prep.
21476
21477 2002-12-18  Bruno Haible  <bruno@clisp.org>
21478
21479         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
21480         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
21481
21482 2002-12-17  Bruno Haible  <bruno@clisp.org>
21483
21484         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
21485         stdlib.h, string.h.
21486
21487 2002-12-17  Bruno Haible  <bruno@clisp.org>
21488
21489         * lib/canon-host.c (strdup): Remove unused declaration.
21490
21491         * lib/fsusage.c: Include full_read.h.
21492         (get_fs_usage): Use full_read instead of safe_read.
21493
21494         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
21495
21496 2002-12-12  Karl Berry  <karl@gnu.org>
21497
21498         * config/config.guess: update from prep.
21499
21500 2002-12-11  Bruno Haible  <bruno@clisp.org>
21501
21502         * m4/setenv.m4: New file, from gettext-0.11.5.
21503
21504 2002-12-11  Bruno Haible  <bruno@clisp.org>
21505
21506         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
21507         not unsetenv().
21508         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
21509         modifications:
21510
21511         2002-12-11  Bruno Haible  <bruno@clisp.org>
21512
21513                 * setenv.c (alloca): Fall back to malloc.
21514                 (freea): New macro.
21515                 (setenv): Use freea() to free memory allocated with alloca().
21516
21517         2002-11-13  Bruno Haible  <bruno@clisp.org>
21518
21519                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
21520                 function declarations.
21521                 * unsetenv.c (unsetenv): Likewise.
21522
21523         2002-03-04  Bruno Haible  <bruno@clisp.org>
21524
21525                 Portability to AIX 4.3.3.
21526                 * unsetenv.c: New file, extracted from setenv.c.
21527                 * setenv.c: Move the unsetenv() function to unsetenv.c.
21528
21529         2001-12-20  Bruno Haible  <bruno@clisp.org>
21530
21531                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
21532                 use malloc instead. For SunOS 4.
21533
21534         2001-12-11  Bruno Haible  <bruno@clisp.org>
21535
21536                 * setenv.c: Declare alloca.
21537                 (compar_fn_t): New typedef.
21538                 (KNOWN_VALUE, STORE_VALUE): Use it.
21539
21540         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
21541         setenv.h.
21542
21543 2002-12-10  Paul Eggert  <eggert@twinsun.com>
21544
21545         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
21546         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
21547         Choose values that are less likely to collide with system fnmatch
21548         options.
21549         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
21550         defined (e.g., a pure POSIX system).
21551         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
21552         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
21553
21554 2002-12-06  Paul Eggert  <eggert@twinsun.com>
21555
21556         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
21557         a pain in practice to deal with generated m4 files.  This change
21558         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
21559
21560         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
21561         and jm-glibc-io.m4, as they are no longer a special case.
21562         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
21563         kludge and the auto-generation stuff.  Check only whether the
21564         functions are declared, not whether they exist, since older hosts
21565         that don't declare the functions can't use the optimization anyway.
21566
21567 2002-12-06  Jim Meyering  <jim@meyering.net>
21568
21569         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
21570
21571         Merge in changes from libc's misc/error.c, in preparation
21572         for the merge of gnulib's changes back into libc.
21573
21574         * lib/error.c (_): Define only if not already defined.
21575         Move definition to follow all #include directives.
21576         Include unlocked-io.h only if !_LIBC.
21577         [_LIBC]: Include <libio/libioP.h>.
21578         [USE_IN_LIBIO]: Include <libio/iolibio.h>
21579         (fflush): Tweak definition to use INTUSE.
21580         (putc): Define.
21581
21582 2002-12-05  Paul Eggert  <eggert@twinsun.com>
21583
21584         * lib/alloca.c [defined emacs]: Include "lisp.h".
21585         (xalloc_die) [defined emacs]: New macro.
21586         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
21587         [! defined emacs]: Include <xalloc.h>.
21588         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
21589         (pointer): Typedef to POINTER_TYPE *.
21590         (malloc): Remove decl; we now always use xmalloc.
21591         (alloca): Use old-style definition, since Emacs needs this.
21592         Check for arithmetic overflow when computing combined size.
21593
21594 2002-12-04  Paul Eggert  <eggert@twinsun.com>
21595
21596         Do not generate unlocked-io.h automatically, since it's easier to
21597         maintain it by hand.
21598
21599         * lib/unlocked-io.h: New file, from GNU diffutils,
21600         but with proper copyright notice and attribution.
21601         * lib/gen-uio: Remove.
21602         * lib/Makefile.am: Add copyright notice.
21603         (libfetish_a_SOURCES): Add unlocked-io.h.
21604         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
21605         (DISTCLEANFILES, io_functions): Remove macros.
21606         (EXTRA_DIST): Remove gen_uio.
21607         (unlocked-io.h): Remove rule.
21608
21609 2002-12-04  Jim Meyering  <jim@meyering.net>
21610
21611         Reflect the fact that stat.c and lstat.c are no longer generated.
21612         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
21613         (DISTCLEANFILES): Likewise.
21614         (EXTRA_DIST): Likewise.
21615         (all_local): Don't depend on stat.c or lstat.c.
21616         (stat.c, lstat.c): Remove rules.
21617         (EXTRA_DIST): Remove xstat.in.
21618
21619         * lib/xstat.in: Remove file.  Contents moved into stat.c.
21620         * lib/stat.c: New file.  Contents mostly from xstat.in.
21621         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
21622         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
21623
21624         * lib/safe-read.c: Rework so that it may serve to define safe_write,
21625         too.
21626         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
21627
21628 2002-12-03  Jim Meyering  <jim@meyering.net>
21629
21630         * lib/safe-read.c, safe-write.c: Change variable names and comments,
21631         but not semantics, to minimize the differences between these two files.
21632         (safe_read): Change comment to mention SAFE_READ_ERROR.
21633
21634         * lib/safe-read.c (IS_EINTR): Define.
21635         (safe_read): Use IS_EINTR in place of in-function cpp directives.
21636
21637 2002-12-02  Jim Meyering  <jim@meyering.net>
21638
21639         * lib/safe-read.c (EINTR): Define.
21640         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
21641         (INT_MAX): Provide fallback.
21642         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
21643
21644         * lib/safe-read.h (SAFE_READ_ERROR): Define.
21645
21646 2002-12-02  Bruno Haible  <bruno@clisp.org>
21647
21648         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
21649         Define, taken from safe-read.c.
21650         (INT_MAX): Provide fallback.
21651         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
21652         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
21653
21654         * lib/safe-read.c (EINTR): Remove definition.
21655         (safe_read): Don't use EINTR if it is absent.
21656
21657 2002-12-01  Jim Meyering  <jim@meyering.net>
21658
21659         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
21660         zero.
21661         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
21662
21663 2002-11-27  Paul Eggert  <eggert@twinsun.com>
21664
21665         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
21666         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
21667         with `if (! (value < limit)) abort ();', for readability.
21668
21669 2002-11-26  Karl Berry  <karl@gnu.org>
21670
21671         * lib/strdup.c: copy from libc again, with jim's ok.
21672         * lib/.cppi-disable: re-add strdup.c
21673
21674 2002-11-25  Karl Berry  <karl@gnu.org>
21675
21676         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
21677         instead of "strtol.c".
21678
21679 2002-11-25  Karl Berry  <karl@gnu.org>
21680
21681         * config/install-sh: update from automake for variable quoting, $0 in
21682         error msgs, etc.
21683
21684         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
21685         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
21686         entry.
21687
21688 2002-11-25  Jim Meyering  <jim@meyering.net>
21689
21690         * lib/mktime.c: Sync from libc, now that it has the latest fix.
21691
21692 2002-11-24  Karl Berry  <karl@gnu.org>
21693
21694         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
21695         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
21696
21697 2002-11-24  Jim Meyering  <jim@meyering.net>
21698
21699         Update from coreutils:
21700
21701         * lib/mktime.c: Merge in changes from libc.
21702
21703         Avoid a link-time failure on some Linux systems.
21704         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
21705         (otherwise).
21706         (__mon_yday): Declare with the STATIC attribute.
21707         (__mktime_internal): Likewise.
21708         Based on a report from Greg Schafer.
21709
21710 2002-11-23  Jim Meyering  <jim@meyering.net>
21711
21712         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
21713         Use `unsigned', not `int', as type of index.
21714
21715         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
21716
21717         * lib/fsusage.c: Remove unneeded parentheses around operands of
21718         `defined'.
21719
21720 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21721
21722         * lib/quotearg.h: Allow multiple inclusion by surrounding with
21723         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
21724         so that we can be included first.
21725         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
21726         * lib/quotearg.c: Include quotearg.h immediately after config.h.
21727         No need to include stddef.h or sys/types.h any more.
21728         Surround local include files with "", not "<>".
21729         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
21730         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
21731         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
21732         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
21733         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
21734         (ISPRINT): Remove; no longer needed now that we assume C89.
21735
21736         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
21737         Preserve errno.
21738
21739         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
21740         quotearg_char): Use SIZE_MAX rather than
21741         (size_t) -1 when we are talking about "infinity".
21742
21743         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
21744
21745 2002-11-22  Paul Eggert  <eggert@twinsun.com>
21746
21747         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
21748         hint that one should use `if (! x) abort ();' rather than `assert
21749         (x);', and anyway it's one less thing to worry about configuring.
21750         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
21751         hash_rehash, hash_insert): Use abort rather than assert.
21752
21753 2002-11-22  Bruno Haible  <bruno@clisp.org>
21754
21755         * lib/safe-read.h: Assume C89. Add comments.
21756         (safe_read): Change return type to size_t.
21757         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
21758         byte counts > SSIZE_MAX correctly.
21759         * lib/safe-write.h: New file.
21760         * lib/safe-write.c: New file.
21761         * lib/full-read.h: New file.
21762         * lib/full-read.c: New file.
21763         * lib/full-write.h: Assume C89. Add comments.
21764         * lib/full-write.c: Include safe-write.h.
21765         (full_write): Rewritten to use safe_write.
21766         Suggested by Jim Meyering and Paul Eggert.
21767
21768 2002-11-21  Jim Meyering  <jim@meyering.net>
21769
21770         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
21771
21772         Merge in changes from the coreutils.
21773
21774         2002-09-25  Paul Eggert  <eggert@twinsun.com>
21775         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
21776         <stdint.h>.
21777         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
21778         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
21779         int.  Work more efficiently if X is the same width as uintmax_t.
21780         Do not compare X to -1, to avoid bogus compiler warning.
21781         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
21782         Don't assume that f_frsize and f_bsize are the same type.
21783
21784         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
21785         warning on FreeBSD.
21786
21787         * lib/makepath.c (make_path): Restore umask *before* creating the final
21788         component.
21789         (make_path): Minor reformatting.
21790
21791         * lib/xmalloc.c: Adjust to work with new autoconf macros,
21792         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
21793         HAVE_MALLOC/HAVE_REALLOC.
21794
21795         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
21796         dummy ones.  At least on GNU/Linux systems, `auto' means something
21797         else.
21798         From Michael Stone.
21799
21800 2002-11-21  Bruno Haible  <bruno@clisp.org>
21801
21802         Remove case insensitive option matching.
21803         * lib/argmatch.h (argcasematch): Remove declaration.
21804         (ARGCASEMATCH): Remove macro.
21805         (__xargmatch_internal): Remove case_sensitive argument.
21806         (XARGMATCH): Update.
21807         (XARGCASEMATCH): Remove macro.
21808         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
21809         case_sensitive argument.
21810         (argcasematch): Remove function.
21811         (__xargmatch_internal): Remove case_sensitive argument.
21812         (main): Use XARGMATCH instead of XARGCASEMATCH.
21813
21814         * lib/xmalloc.c: Change compile-time error message. Add comment about
21815         required autoconf version.
21816
21817 2002-11-20  Paul Eggert  <eggert@twinsun.com>
21818
21819         Merge argmatch cleanups from Bison.  Assume C89.
21820
21821         * lib/argmatch.c: Include config.h here, not in argmatch.h.
21822         Include stdlib.h, for EXIT_FAILURE.
21823         Always include <string.h>, since we assume C89.
21824         (EXIT_FAILURE): Remove pre-C89 bug workaround.
21825         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
21826         Include <stddef.h> instead, since it's all we need for size_t.
21827         (PARAMS): Remove.  All uses removed.
21828         (ARRAY_CARDINALITY): Do not bother to #undef.
21829         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
21830         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21831         Remove unnecessary parentheses.
21832         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
21833         Insert necessary parentheses.
21834         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
21835         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
21836
21837 2002-11-19  Bruno Haible  <bruno@clisp.org>
21838
21839         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
21840         * lib/mbswidth.h: Include <stddef.h>, for size_t.
21841
21842         * lib/mbswidth.h (PARAMS): Remove macro.
21843         (mbswidth, mbsnwidth): Use ANSI C function declarations.
21844         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
21845
21846         * lib/gcd.h (PARAMS): Remove macro.
21847         (gcd): Use ANSI C function declarations.
21848         * lib/gcd.c (gcd): Likewise.
21849
21850 2002-11-15  Bruno Haible  <bruno@clisp.org>
21851
21852         * lib/strcspn.c: Include <stddef.h>.
21853         (strcspn): Use ANSI C function declaration. Change return type to
21854         size_t. Use NULL.
21855         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
21856         (strpbrk): Use NULL.
21857         * lib/strpbrk.h (PARAMS): Remove macro.
21858         (strpbrk): Use ANSI C function declaration.
21859         * lib/strstr.c: Don't include <sys/types.h>.
21860         * lib/strstr.h (PARAMS): Remove macro.
21861         (strstr): Use ANSI C function declarations.
21862
21863 2002-11-14  Karl Berry  <karl@gnu.org>
21864
21865         * config/mkinstalldirs: `do' on separate line, instead of
21866         `for var; do'.
21867
21868 2002-11-06  Bruno Haible  <bruno@clisp.org>
21869
21870         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
21871         * lib/gcd.c (gcd): Likewise.
21872
21873 2002-11-05  Bruno Haible  <bruno@clisp.org>
21874
21875         * lib/gcd.h: New file, from gettext-0.11.5.
21876         * lib/gcd.c: New file, from gettext-0.11.5.
21877
21878 2002-11-05  Bruno Haible  <bruno@clisp.org>
21879
21880         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21881         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21882         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21883         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
21884
21885         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
21886         <libintl.h>.
21887         * lib/makepath.c: Include gettext.h instead of <locale.h> and
21888         <libintl.h>.
21889
21890         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
21891         * lib/human.c: Include gettext.h instead of <libintl.h>.
21892         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
21893         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
21894         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
21895         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
21896         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
21897         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
21898         (textdomain): Remove definition.
21899         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
21900
21901         * lib/long-options.c: Remove include of <libintl.h> and definition of
21902         _.
21903         * lib/same.c: Remove include of <libintl.h> and definition of _.
21904
21905 2002-11-04  Owen Taylor  <otaylor@redhat.com>
21906
21907         * lib/config.charset: A few additions for Solaris.
21908
21909 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21910
21911         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
21912         * lib/localcharset.c (locale_charset): Declare as extern "C".
21913
21914 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
21915
21916         * lib/config.charset: msdos in uk_UA uses CP1125.
21917
21918 2002-11-04  Bruno Haible  <bruno@clisp.org>
21919
21920         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
21921         * lib/strcase.h: New file, from GNU gettext-0.11.5.
21922         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
21923         * lib/strstr.h: New file, from GNU gettext-0.11.5.
21924         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
21925
21926 2002-11-04  Bruno Haible  <bruno@clisp.org>
21927
21928         * lib/localcharset.c (locale_charset): Don't return an empty string.
21929
21930 2002-11-04  Bruno Haible  <bruno@clisp.org>
21931
21932         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
21933         aliases.
21934
21935 2002-11-04  Bruno Haible  <bruno@clisp.org>
21936
21937         * lib/config.charset: Update for newest glibc. Add canonical names
21938         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
21939
21940 2002-11-04  Bruno Haible  <bruno@clisp.org>
21941
21942         * lib/config.charset: Add support for NetBSD.
21943
21944 2002-11-04  Bruno Haible  <bruno@clisp.org>
21945
21946         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
21947
21948 2002-11-01  Bruno Haible  <bruno@clisp.org>
21949
21950         * configure.in: Add AC_CONFIG_AUX_DIR call.
21951         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
21952         test/Makefile.
21953         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
21954
21955 2002-09-28  Karl Berry  <karl@gnu.org>
21956
21957         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
21958         installed automake until the next release, since changes have been
21959         made.
21960
21961 2002-09-25  Karl Berry  <karl@gnu.org>
21962
21963         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
21964         * lib/getopt*: copy from libc/posix.
21965         * lib/gettext.h: copy from gettext.
21966         * lib/.cppi-disable: add strdup.c, gettext.h.
21967
21968 2002-09-25  Karl Berry  <karl@gnu.org>
21969
21970         * config/srclist.txt: enable gettext.h check.
21971         * config/config.{guess,sub}: update from prep.
21972         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
21973                 from automake 1.6.3.
21974         See srclist*.
21975
21976 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
21977
21978         * regex.c (PATFETCH): Remove the translating fetch.
21979         (PATFETCH_RAW): Rename to PATFETCH.
21980         (set_image_of_range): New fun.
21981         (SET_RANGE_TABLE_WORK_AREA): Use it.
21982         (regex_compile): Don't translate the pattern chars so eagerly.
21983         Only do it when inserting an `exactn' bytecode or when handling
21984         a char-range.
21985         (mutually_exclusive_p): Avoid empty statement.
21986
21987 2002-07-06  Jim Meyering  <meyering@lucent.com>
21988
21989         * m4/README: Don't mention Makefile.am.in.
21990         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
21991
21992 2002-07-01  Jim Meyering  <meyering@lucent.com>
21993
21994         * lib/c-stack.c: Include sys/time.h.
21995         From Volker Borchert.
21996
21997 2002-06-26  Paul Eggert  <eggert@twinsun.com>
21998
21999         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
22000
22001 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22002
22003         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
22004         New macro.  Use it uniformly instead of
22005         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
22006         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
22007         reported by Vin Shelton.
22008
22009 2002-06-22  Paul Eggert  <eggert@twinsun.com>
22010
22011         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
22012         Do not assume SA_SIGINFO behavior.
22013         Bug reported by Jim Meyering on NetBSD 1.5.2.
22014
22015 2002-06-22  Jim Meyering  <meyering@lucent.com>
22016
22017         * m4/c-stack.m4: New file, from diffutils-2.8.2.
22018         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
22019
22020         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
22021         now that configure.ac uses AC_GNU_SOURCE.
22022         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
22023         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
22024
22025         Update to latest tools.  Suggestions from Paul Eggert.
22026         * m4/stdbool.m4: New file, from diffutils-2.8.2.
22027         * m4/gnu-source.m4: Update from diffutils-2.8.2.
22028         * m4/fnmatch.m4: Likewise.
22029         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
22030         to AC_HEADER_STDBOOL
22031
22032 2002-06-22  Jim Meyering  <meyering@lucent.com>
22033
22034         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
22035         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
22036
22037 2002-06-22  Jim Meyering  <meyering@lucent.com>
22038
22039         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
22040
22041         * lib/exitfail.c, exitfail.h: Likewise.
22042         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
22043
22044         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
22045         of fnmatch.h.
22046         (EXTRA_DIST): Add fnmatch_loop.c.
22047         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
22048
22049         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
22050         * lib/fnmatch.c: Update from diffutils-2.8.2.
22051         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
22052         * lib/fnmatch.h: Remove file.
22053
22054 2002-06-21  Jim Meyering  <meyering@lucent.com>
22055
22056         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
22057         * m4/mbrtowc.m4: Likewise.
22058
22059         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
22060         * m4/mbswidth.m4: Reflect name change:
22061         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
22062         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22063
22064         * m4/lib-link.m4: Update from gettext-0.11.2.
22065         * m4/gettext.m4: Likewise.
22066
22067         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
22068         From Alfred M. Szmidt.
22069
22070 2002-06-18  Paul Eggert  <eggert@twinsun.com>
22071
22072         * lib/file-type.h: Report an error if neither S_ISREG nor
22073         S_IFREG is defined, instead of using a test specific to glibc
22074         2.2.  This should be safe, since POSIX requires S_ISREG and
22075         Unix Version 7 had S_IFREG.  We don't need to check for
22076         <sys/types.h> since we don't use any symbols that it defines.
22077
22078 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
22079
22080         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
22081         $@-t, so that each temporary file name is unique and valid in the first
22082         8 characters, for operation under DOS.
22083
22084 2002-06-15  Paul Eggert  <eggert@twinsun.com>
22085
22086         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
22087
22088 2002-06-15  Jim Meyering  <meyering@lucent.com>
22089
22090         Work even with DJGPP 2.03, which lacks support for symlinks.
22091         From Richard Dawe.
22092         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22093         is defined.
22094         * lib/lchown.c (S_ISLNK): Likewise.
22095
22096 2002-06-15  Jim Meyering  <meyering@lucent.com>
22097
22098         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22099         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22100         have been included before this file.
22101
22102 2002-06-14  Jim Meyering  <meyering@lucent.com>
22103
22104         * lib/file-type.h: Use the version from diffutils-2.8.2.
22105         * lib/file-type.c: Likewise.
22106
22107 2002-06-07  Jim Meyering  <meyering@lucent.com>
22108
22109         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22110         They're needed at least for NetBSD 1.5.2.
22111         ($statxfs_includes): Include those same headers.
22112         ($statxfs_includes): Include sys/vfs.h if available.
22113         ($statxfs_includes): Likewise for sys/statvfs.h.
22114         Check for the following members in both structs statfs and statvfs:
22115         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22116
22117 2002-06-01  Jim Meyering  <meyering@lucent.com>
22118
22119         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22120         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22121
22122 2002-05-28  Jim Meyering  <meyering@lucent.com>
22123
22124         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22125         Reported by Volker Borchert.
22126
22127 2002-05-27  Jim Meyering  <meyering@lucent.com>
22128
22129         Fix a problem seen only on nonconforming systems whereby ls.c's
22130         use of localtime, and then of gettimeofday would cause trouble:
22131         the localtime call used to initialize rpl_gettimeofday's save
22132         mechanism would clobber ls's current local time information so
22133         that in any long listing the first file would always be listed
22134         with date 1970-01-01.  Analysis by Volker Borchert.
22135
22136         * lib/gettimeofday.c (localtime): Undefine.
22137         (rpl_localtime): New function.
22138
22139 2002-05-27  Jim Meyering  <meyering@lucent.com>
22140
22141         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22142         localtime.
22143
22144         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22145         use the replacement function; it wouldn't resolve at link time.
22146         Reported by Volker Borchert.
22147
22148 2002-05-22  Jim Meyering  <meyering@lucent.com>
22149
22150         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22151         file-type.h.
22152         * lib/file-type.h: New file.
22153         * lib/file-type.c (file_type): New file/function.  Extracted from
22154         diffutils.
22155
22156 2002-04-30  Jim Meyering  <meyering@lucent.com>
22157
22158         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
22159
22160 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22161
22162         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
22163
22164 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22165
22166         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
22167         Do not check for alloca.h (no longer used) or stdbool.h (was never
22168         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
22169
22170 2002-04-29  Paul Eggert  <eggert@twinsun.com>
22171
22172         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
22173
22174 2002-04-29  Jim Meyering  <meyering@lucent.com>
22175
22176         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
22177         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
22178         Use AC_FUNC_STRNLEN here instead.
22179
22180         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
22181         With autoconf-2.53a, it's part of AC_PROG_CC.
22182
22183 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22184
22185         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
22186         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
22187
22188 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22189
22190         * lib/sig2str.h, lib/sig2str.c: New files.
22191         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
22192
22193 2002-04-28  Paul Eggert  <eggert@twinsun.com>
22194
22195         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
22196         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
22197         of 127, since 64 is the largest conceivable number for ancient
22198         nonstandard hosts.
22199         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
22200
22201 2002-04-28  Jim Meyering  <meyering@lucent.com>
22202
22203         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
22204
22205 2002-04-24  Jim Meyering  <meyering@lucent.com>
22206
22207         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
22208         (jm_PREREQ): Use it.
22209
22210         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
22211         mach/mach.h fcntl.h.
22212         Check for this function: setlocale.
22213
22214 2002-04-24  Jim Meyering  <meyering@lucent.com>
22215
22216         * lib/gettext.h: New file, from Gettext.
22217         * lib/Makefile.am (INCLUDES): Remove -I../intl.
22218         (libfetish_a_SOURCES): Add gettext.h.
22219
22220 2002-04-16  Jim Meyering  <meyering@lucent.com>
22221
22222         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
22223         ut_pid, ut_id, ut_exit.
22224
22225 2002-04-16  Jim Meyering  <meyering@lucent.com>
22226
22227         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
22228         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
22229         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
22230
22231 2002-04-12  Jim Meyering  <meyering@lucent.com>
22232
22233         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
22234         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
22235         existence of the getmntinfo function.  Needed for Darwin 5.3.
22236
22237         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
22238         This is necessary at least on Darwin 5.3.
22239
22240         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
22241         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
22242         strnlen.o in the library, and that makes some versions of ranlib
22243         object.
22244
22245 2002-04-12  Jim Meyering  <meyering@lucent.com>
22246
22247         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
22248
22249 2002-04-09  Jim Meyering  <meyering@lucent.com>
22250
22251         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
22252         to be more precise.  Rather than saying we're checking whether the
22253         function `works', say what we're testing.
22254         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
22255         Reported by Bruno Haible.
22256
22257 2002-03-10  Jim Meyering  <meyering@lucent.com>
22258
22259         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
22260         Suggestion from Santiago Vila.
22261
22262 2002-03-08  Jim Meyering  <meyering@lucent.com>
22263
22264         * lib/rename.c: Mention that this wrapper is needed also on
22265         mips-dec-ultrix4.4 systems.
22266
22267 2002-03-02  Jim Meyering  <meyering@lucent.com>
22268
22269         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
22270         not HAVE_CLOCK_SETTIME.
22271
22272 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22273
22274         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
22275         Check for clock_settime.
22276
22277 2002-02-27  Paul Eggert  <eggert@twinsun.com>
22278
22279         * lib/nanosleep.h: Rename to....
22280         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
22281
22282         * lib/gettime.c: New file.
22283         * lib/settime.c: New file.
22284         * lib/stime.c: Remove.
22285
22286         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
22287         timespec.h.  Remove nanosleep.h.
22288
22289 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22290
22291         * m4/acl.m4: New file.
22292         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
22293         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
22294
22295 2002-02-25  Paul Eggert  <eggert@twinsun.com>
22296
22297         * lib/acl.c, lib/acl.h: New files.
22298         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
22299
22300 2002-02-24  Jim Meyering  <meyering@lucent.com>
22301
22302         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
22303         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
22304         cause trouble.  Reported by Nelson Beebe.
22305
22306 2002-02-23  Paul Eggert  <eggert@twinsun.com>
22307
22308         * lib/path-concat.c (xpath_concat): Reorder code to pacify
22309         compilers that don't know that xalloc_die never returns.
22310
22311 2002-02-20  Jim Meyering  <meyering@lucent.com>
22312
22313         * lib/getdate.c: Regenerate using bison-1.33.
22314
22315 2002-02-17  Jim Meyering  <meyering@lucent.com>
22316
22317         * config/config.guess (main): Don't use `head -1'; it's no longer
22318         portable. Use `sed 1q' instead.
22319
22320 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
22321
22322         * m4/codeset.m4: Upgrade to gettext-0.11.
22323         * m4/gettext.m4: Upgrade to gettext-0.11.
22324         * m4/glibc21.m4: Upgrade to gettext-0.11.
22325         * m4/iconv.m4: Upgrade to gettext-0.11.
22326         * m4/isc-posix.m4: Upgrade to gettext-0.11.
22327         * m4/lcmessage.m4: Upgrade to gettext-0.11.
22328         * m4/lib-ld.m4: New file, from gettext-0.11.
22329         * m4/lib-link.m4: New file, from gettext-0.11.
22330         * m4/lib-prefix.m4: New file, from gettext-0.11.
22331         * m4/progtest.m4: Upgrade to gettext-0.11.
22332
22333 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22334
22335         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
22336         (jm_PREREQ): Use it.
22337
22338 2002-02-15  Paul Eggert  <eggert@twinsun.com>
22339
22340         * lib/posixver.c, lib/posixver.h: New files.
22341         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22342
22343 2002-02-02  Paul Eggert  <eggert@twinsun.com>
22344             Bruno Haible  <bruno@clisp.org>
22345
22346         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
22347         (fwrite_success_callback): New declaration.
22348         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
22349         print_unicode_char. Call failure callback instead of error.
22350         (fwrite_success_callback): New function.
22351         (exit_failure_callback): New function.
22352         (fallback_failure_callback): New function.
22353         (print_unicode_char): Call unicode_to_mb.
22354
22355 2002-01-26  Jim Meyering  <meyering@lucent.com>
22356
22357         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
22358         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
22359
22360 2002-01-26  Jim Meyering  <meyering@lucent.com>
22361
22362         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
22363
22364 2002-01-22  Paul Eggert  <eggert@twinsun.com>
22365
22366         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
22367
22368 2002-01-22  Jim Meyering  <meyering@lucent.com>
22369
22370         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
22371         Otherwise, some versions of automake would omit the rule that makes
22372         Makefile from Makefile.in.
22373
22374 2002-01-21  Paul Eggert  <eggert@twinsun.com>
22375
22376         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
22377         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
22378         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
22379         (memcoll): Set errno to zero if there is no error.
22380
22381         * lib/quotearg.c (quotearg_buffer_restyled):
22382         Fix bug with quoting buffers containing NUL when backslashing escapes.
22383         This bug was exposed by the other changes in this patch.
22384         (quotearg_n_options): New arg ARGSIZE.
22385         All callers changed.
22386         (quoting_options_from_style): New function.
22387         (quotearg_n_style): Use it.
22388         (quotearg_n_style_mem): New function.
22389
22390         * lib/quotearg.h (quotearg_n_style_mem): New function.
22391
22392 2002-01-19  Jim Meyering  <meyering@lucent.com>
22393
22394         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
22395         Remove useless quotes: DF_PROG="df".
22396         * m4/strnlen.m4: New file.
22397
22398 2002-01-16  Paul Eggert  <eggert@twinsun.com>
22399
22400         * lib/backupfile.c (ISDIGIT): Comment fix.
22401         * lib/getdate.y (ISDIGIT): Likewise.
22402         * lib/posixtm.c (ISDIGIT, year): Likewise.
22403         * lib/strverscmp.c (ISDIGIT): Likewise.
22404         * lib/userspec.c (ISDIGIT): Likewise.
22405
22406 2002-01-16  Jim Meyering  <meyering@lucent.com>
22407
22408         * lib/getdate.y: Add three semicolons, each just before a closing
22409         brace. Bison (as of version 1.31) no longer papers over that mistake.
22410
22411 2002-01-05  Jim Meyering  <meyering@lucent.com>
22412
22413         * lib/version-etc.c (version_etc_copyright): Update copyright year.
22414
22415 2001-12-19  Paul Eggert  <eggert@twinsun.com>
22416
22417         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
22418         not silently exit merely because the output buffer happens to
22419         have nothing pending.
22420
22421 2001-12-18  Paul Eggert  <eggert@twinsun.com>
22422
22423         See the big note in ../ChangeLog.
22424         * lib/human.c (suffixes): Prefer K to k for 1024.
22425         (generate_suffix_backwards): New function.
22426         (human_readable_inexact): Use it.
22427         * lib/xstrtol.c (__xstrtol): If there is no number but there
22428         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
22429         Accept 'K' as well as 'k'.
22430
22431 2001-12-15  Jim Meyering  <meyering@lucent.com>
22432
22433         * lib/regex.h (__restrict_arr): Update from libc.
22434
22435         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
22436         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
22437         (STREQ): Define.
22438
22439 2001-12-14  Jim Meyering  <meyering@lucent.com>
22440
22441         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
22442         Suggestion from Bruno Haible.
22443
22444 2001-12-10  Jim Meyering  <meyering@lucent.com>
22445
22446         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
22447         xrealloc, Instead, include "xalloc.h".
22448         (initbuffer): Don't cast xmalloc return value to char*.
22449         (readline): Reword comment.
22450         Don't cast xrealloc return value to char*
22451         Return NULL, not 0.
22452
22453 2001-12-09  Jim Meyering  <meyering@lucent.com>
22454
22455         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
22456         about `signed and unsigned type in conditional expression'.
22457         * lib/posixtm.c (posix_time_parse): Likewise.
22458
22459         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
22460
22461         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
22462         to avoid a pedantic warning.
22463
22464         * lib/getstr.c: Don't include assert.h.
22465         (getstr): Remove warning-evoking assertions.
22466         Return -1 if offset parameter is out of bounds.
22467         Change the type of a local from int to size_t.
22468
22469         * lib/strftime.c (my_strftime_localtime_r): Include this function
22470         definition in the `#if ! HAVE_TM_GMTOFF' block.
22471
22472         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
22473         Include xalloc.h instead.
22474
22475 2001-12-02  Jim Meyering  <meyering@lucent.com>
22476
22477         * lib/tempname.c: Don't declare getenv, thus reverting the change of
22478         2001-11-18.  It's no longer necessary, now that stdlib.h is always
22479         included.
22480
22481         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
22482         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
22483
22484 2001-11-30  Akim Demaille  <akim@epita.fr>
22485
22486         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
22487         before being defined.
22488
22489 2001-11-27  Paul Eggert  <eggert@twinsun.com>
22490
22491         * lib/quotearg.h (quotearg_n, quotearg_n_style):
22492         First arg is int, not unsigned.
22493         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
22494         (SIZE_MAX, UINT_MAX): New macros.
22495         (quotearg_n_options): Abort if N is negative.
22496         Avoid overflow check on hosts where size_t is 64 bits and int
22497         is 32 bits, as overflow is impossible there.
22498         Fix off-by-one typo that caused unnecessary reallocation.
22499
22500 2001-11-27  Jim Meyering  <meyering@lucent.com>
22501
22502         * lib/tempname.c: Merge with version from libc.
22503         * lib/regex.c: Likewise.
22504
22505         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
22506         systems for which STDC_HEADERS is 0, it was not included, resulting in
22507         a warning about an integer-to-pointer conversion problem with getenv.
22508         Reported by Volker Borchert.
22509
22510 2001-11-26  Jim Meyering  <meyering@lucent.com>
22511
22512         * lib/gtod.h: Remove file.
22513         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
22514         * lib/gettimeofday.c: Don't include gtod.h.
22515         (GTOD_init): Remove function.
22516         (rpl_gettimeofday): Do its job here instead, rather than aborting.
22517         Suggestion from Volker Borchert.
22518
22519 2001-11-23  Jim Meyering  <meyering@lucent.com>
22520
22521         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
22522         it.
22523         * lib/hash.c (struct hash_table): Define it here instead.
22524
22525 2001-11-22  Jim Meyering  <meyering@lucent.com>
22526
22527         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
22528
22529 2001-11-20  Jim Meyering  <meyering@lucent.com>
22530
22531         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
22532         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
22533
22534 2001-11-19  Jim Meyering  <meyering@lucent.com>
22535
22536         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
22537         directory.  Use "conftestXXXXXX" as the template.
22538         Suggestion from Paul Eggert.
22539
22540         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
22541         immediately, so the test doesn't mistakenly hit the max-open-files
22542         limit.
22543
22544 2001-11-18  Paul Eggert  <eggert@twinsun.com>
22545
22546         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
22547         (TEMPORARIES): New macro.
22548         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
22549         removes an artificial limitation (e.g. HP-UX 10.20, where
22550         TMP_MAX is 17576).
22551
22552 2001-11-18  Jim Meyering  <meyering@lucent.com>
22553
22554         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
22555
22556 2001-11-18  Jim Meyering  <meyering@lucent.com>
22557
22558         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
22559         on SunOS 4.
22560
22561         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
22562         files will be created before anything else.
22563
22564 2001-11-17  Paul Eggert  <eggert@twinsun.com>
22565
22566         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
22567         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
22568
22569 2001-11-17  Jim Meyering  <meyering@lucent.com>
22570
22571         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
22572         Prompted by a report from Bob Proulx.
22573
22574         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
22575         Instead, require UTILS_FUNC_MKSTEMP.
22576
22577 2001-11-17  Jim Meyering  <meyering@lucent.com>
22578
22579         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
22580         Now, that's done as part of AC_FUNC_STRTOD.
22581
22582 2001-11-17  Jim Meyering  <meyering@lucent.com>
22583
22584         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
22585         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
22586         rather than group writable.  Patch by Juan F. Codagnone.
22587
22588         * lib/readtokens.c: Remove explicit declarations of xmalloc and
22589         xrealloc, Instead, include "xalloc.h".
22590
22591         * lib/mountlist.c: Include unlocked-io.h after all system headers.
22592         Remove explicit declarations of xmalloc, xrealloc,
22593         and xstrdup.  Instead, include "xalloc.h".
22594
22595         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
22596         unlocked-io.h.
22597         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
22598         Likewise.
22599         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
22600
22601         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
22602         Reported by Padraig Brady.
22603
22604         * lib/mkstemp.c: #undef mkstemp.
22605         Include config.h.
22606         (rpl_mkstemp): Rename from mkstemp.
22607         Protoize.
22608
22609 2001-11-16  Jim Meyering  <meyering@lucent.com>
22610
22611         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
22612         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
22613         determine the amount of total physical memory, use pstat_getstatic.
22614         HPUX-11 doesn't define _SC_PHYS_PAGES.
22615         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
22616         If sysconf couldn't be used to determine the amount of available
22617         physical memory, use both pstat_getstatic and pstat_getdynamic.
22618         Based on a patch from Bob Proulx.
22619
22620 2001-11-10  Jim Meyering  <meyering@lucent.com>
22621
22622         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
22623         (jm_PREREQ): Use it.
22624
22625 2001-11-09  Jim Meyering  <meyering@lucent.com>
22626
22627         * m4/jm-macros.m4: Require autoconf-2.52f.
22628         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
22629         Use these AC_-prefixed names, not the AM_-prefixed ones.
22630
22631         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
22632
22633 2001-11-05  Jim Meyering  <meyering@lucent.com>
22634
22635         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
22636
22637 2001-11-04  Jim Meyering  <meyering@lucent.com>
22638
22639         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
22640         $DEFS.
22641
22642 2001-11-03  Jim Meyering  <meyering@lucent.com>
22643
22644         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
22645         of AC_DEFUN.
22646
22647         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
22648         know the name of the variable in the macro definition.
22649
22650 2001-11-03  Jim Meyering  <meyering@lucent.com>
22651
22652         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
22653         in argmatch_to_argument call.
22654
22655         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
22656         argument.
22657
22658         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
22659         e.g., a fault due to an attempt to free a NULL pointer.
22660
22661 2001-11-01  Jim Meyering  <meyering@lucent.com>
22662
22663         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
22664         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
22665
22666 2001-11-01  Jim Meyering  <meyering@lucent.com>
22667
22668         * lib/dirfd.c, lib/dirfd.h: New files.
22669         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
22670
22671         * lib/hash.c (hash_print) [TESTING]: Clean up.
22672
22673 2001-10-22  Paul Eggert  <eggert@twinsun.com>
22674
22675         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
22676         to avoid a warning if -Wall.
22677
22678 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
22679
22680         * README: New file
22681         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
22682         (per RMS's instructions, this is now the canonical source)
22683         * lgpl/, gpl/: New directories.
22684
22685 2001-10-21  Paul Eggert  <eggert@twinsun.com>
22686
22687         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
22688
22689 2001-10-21  Jim Meyering  <meyering@lucent.com>
22690
22691         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
22692         this code would end up calling gettext even in packages built
22693         with --disable-nls.
22694         * lib/getopt.c (_): Likewise.
22695         * lib/regex.c (_): Likewise.
22696
22697 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22698
22699         * m4/error.m4 (jm_PREREQ_ERROR):
22700         Do not invoke AC_CHECK_FUNCS with strerror_r, as
22701         AC_FUNC_STRERROR_R does that.
22702         Check for strerror declaration.
22703
22704         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
22705         are supposed to have them these days.
22706         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
22707         Merge changes from latest Autoconf CVS.
22708         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
22709         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
22710         POSIX decided to standardize on the int flavor of strerror_r.
22711
22712 2001-10-20  Paul Eggert  <eggert@twinsun.com>
22713
22714         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
22715         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
22716         Use strerror_r that is only a macro, even if it is not a function.
22717         (strerror): Check for HAVE_DECL_STRERROR before declaring.
22718         (private_strerror): Use prototypes, not old-style function definition.
22719         (print_errno_message): New function.
22720         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
22721         char*-flavored one.
22722         (error_tail, error, error_at_line): Use it.
22723
22724 2001-10-11  Jim Meyering  <meyering@lucent.com>
22725
22726         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
22727         and quote_n (1, ... to avoid clobbering a buffer.
22728
22729 2001-10-05  Jim Meyering  <meyering@lucent.com>
22730
22731         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
22732         hash-pjw.h.
22733         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
22734         * lib/hash-pjw.h: New file.
22735
22736 2001-09-30  Jim Meyering  <meyering@lucent.com>
22737
22738         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
22739         `struct fsstat' has the `f_fstypename' member.
22740         Use that to define FS_TYPE, which is now used to make
22741         the getfsstat link test tighter.
22742
22743 2001-09-30  Jim Meyering  <meyering@lucent.com>
22744
22745         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
22746         Include <sys/ucred.h>, for Apple Darwin.
22747         Include sys/mount.h and sys/fs_types.h only if available.
22748         (FS_TYPE): Define.
22749         (read_filesystem_list): Use FS_TYPE.
22750
22751 2001-09-29  Paul Eggert  <eggert@twinsun.com>
22752
22753         * lib/exclude.c (excluded_filename): 0 -> false, since it's
22754         a boolean context.
22755
22756 2001-09-29  Jim Meyering  <meyering@lucent.com>
22757
22758         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22759         [one-argument getmntent function]): Include stdio.h before mntent.h.
22760         SunOS 4.1.x needs it for the declaration of `FILE'.
22761         Patch by Volker Borchert.
22762
22763         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
22764         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
22765         sys/fs_types.h, and make the link-test for getfsstat guard #include
22766         directives with appropriate #if HAVE_*_H tests so that we can
22767         detect getfsstat on Apple Darwin1.3.7 systems.
22768         Reported by Nelson Beebe.
22769         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
22770
22771 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22772
22773         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22774         #defines strtoimax.  Also treat the other strto* functions
22775         like strtoimax.
22776
22777         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
22778         Check for strtoul and strtoumax,
22779         as those declarations are made even in the signed case.
22780         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
22781         Likewise, for strtol and strtoimax.
22782
22783 2001-09-28  Paul Eggert  <eggert@twinsun.com>
22784
22785         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
22786         #defines strtoimax.  Also treat the other strto* functions
22787         like strtoimax.
22788
22789         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
22790         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
22791         (strtoimax, strtoumax): Do not declare if already defined as a macro.
22792
22793 2001-09-26  Jim Meyering  <meyering@lucent.com>
22794
22795         Most macros in unlocked-io.h had the wrong number of arguments.
22796         * lib/gen-uio: New script.
22797         (USE_UNLOCKED_IO): Define to 1 if not already defined.
22798         * lib/unlocked-io.hin: Remove file.
22799         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
22800         rather than trying to embed it here.
22801         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
22802         Reported by Padraig Brady.
22803
22804 2001-09-25  Volker Borchert  <bt@teknon.de>
22805
22806         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
22807         `result'.
22808
22809 2001-09-24  Jim Meyering  <meyering@lucent.com>
22810
22811         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
22812
22813 2001-09-23  Jim Meyering  <meyering@lucent.com>
22814
22815         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
22816         instead of the mere test for existence of mntent.h.  The latter
22817         would get a false-positive on AIX 3.4 systems.
22818         In the outer getmntent if-block, don't die if neither of the getmntent
22819         tests succeeds.  Instead, just fall through and continue with the
22820         remaining tests.
22821
22822 2001-09-23  Jim Meyering  <meyering@lucent.com>
22823
22824         * lib/mountlist.c: Remove useless parentheses in #if directives.
22825         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
22826         the deprecated MOUNTED symbol is no longer defined in mntent.h.
22827
22828 2001-09-22  Jim Meyering  <meyering@lucent.com>
22829
22830         * m4/gettext.m4: New file.  From gettext.
22831         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
22832         * m4/progtest.m4: Likewise
22833         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
22834         * m4/glibc21.m4: Likewise.
22835
22836         * m4/libintl.m4: Remove.  No longer used.
22837
22838 2001-09-22  Jim Meyering  <meyering@lucent.com>
22839
22840         * lib/localcharset.c: Update from latest gettext.
22841         * lib/config.charset: Likewise.
22842
22843 2001-09-20  Jim Meyering  <meyering@lucent.com>
22844
22845         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
22846         strtoimax.
22847         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
22848         strtoumax.
22849
22850 2001-09-20  Jim Meyering  <meyering@lucent.com>
22851
22852         * lib/xstrtol.c (strtoimax): Guard declaration with
22853         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
22854         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
22855         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
22856         (strtoumax): Likewise, for completeness (it wasn't necessary).
22857
22858 2001-09-17  Paul Eggert  <eggert@twinsun.com>
22859
22860         * lib/strtoimax.c (HAVE_LONG_LONG):
22861         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
22862         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
22863         to work around bug in IBM C compiler.
22864
22865 2001-09-17  Jim Meyering  <meyering@lucent.com>
22866
22867         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
22868         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
22869         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
22870         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
22871         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
22872         whenever the right hand side need not be expanded by the shell.
22873
22874 2001-09-16  Paul Eggert  <eggert@twinsun.com>
22875
22876         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
22877         library.  It's not correct, as some older glibcs are buggy.
22878         fnmatch wasn't fixed until glibc 2.2.
22879
22880         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
22881         special shell magic here.
22882
22883 2001-09-16  Jim Meyering  <meyering@lucent.com>
22884
22885         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
22886         * m4/jm-macros.m4: Require it.
22887
22888 2001-09-16  Jim Meyering  <meyering@lucent.com>
22889
22890         * lib/mkdir.c: New file.
22891
22892 2001-09-15  Jim Meyering  <meyering@lucent.com>
22893
22894         * m4/jm-macros.m4: Check for help2man.
22895
22896 2001-09-11  Jim Meyering  <meyering@lucent.com>
22897
22898         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
22899         The body, by Paul Eggert, was moved here from configure.in.
22900         * m4/jm-macros.m4: Require UTILS_HOST_OS.
22901
22902 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22903
22904         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
22905         (jm_PREREQ): Use it.
22906
22907 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22908
22909         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
22910         Use ssize_t, not int, to store result of readlink.
22911         Check for ssize_t overflow as well as size_t overflow,
22912         as POSIX says the result of readlink is implementation-defined
22913         when ssize_t overflows.
22914         Remove unnecessary cast to char*.
22915         Use free+malloc instead of realloc, as the storage doesn't need
22916         to be preserved and it's clearer and can be more efficient that way.
22917         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
22918         * lib/xreadlink.h (xreadlink): Update prototype.
22919
22920 2001-09-04  Paul Eggert  <eggert@twinsun.com>
22921
22922         * lib/xgetcwd.c: Revert some of the previous change; intead,
22923         fix the HAVE_GETCWD_NULL code to behave more like the
22924         !HAVE_GETCWD_NULL code used to.
22925
22926         Include "xalloc.h".
22927         (xgetcwd): Do not return NULL when memory is exhausted; instead,
22928         invoke xalloc_die.
22929
22930 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22931
22932         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
22933         sys/param.h, as pathmax.h includes them.
22934
22935 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22936
22937         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
22938         (jm_PREREQ_XGETCWD): New macro.
22939
22940         * m4/getcwd.m4: New file.
22941
22942 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22943
22944         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
22945         like the HAVE_GETCWD_NULL code.
22946         Include pathmax.h if not HAVE_GETCWD.
22947         Do not include xalloc.h.
22948         (INITIAL_BUFFER_SIZE): New symbol.
22949         Do not use xmalloc / xrealloc, since the caller is responsible for
22950         handling errors.  Preserve errno around `free' during failure.
22951         Do not overrun buffer when using getwd.
22952
22953 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22954
22955         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
22956         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
22957         getcwd (NULL, 0).
22958
22959 2001-09-03  Paul Eggert  <eggert@twinsun.com>
22960
22961         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
22962         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
22963         spotted by Jim Meyering.
22964
22965 2001-09-03  Jim Meyering  <meyering@lucent.com>
22966
22967         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
22968         failure.
22969
22970 2001-09-02  Jim Meyering  <meyering@lucent.com>
22971
22972         * lib/error.c: Update from GNU libc.
22973
22974 2001-09-01  Jim Meyering  <meyering@lucent.com>
22975
22976         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
22977         Used by df.
22978
22979 2001-09-01  Jim Meyering  <meyering@lucent.com>
22980
22981         * lib/xreadlink.c: New file.
22982         * lib/xreadlink.h: New file.
22983         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
22984         xreadlink.h.
22985
22986         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
22987         doesn't conflict with sparc Solaris 7's definition in
22988         /usr/include/sys/int_types.h.
22989
22990         * lib/exclude.c: Use `""', not `<>' to #include non-system header
22991         files.
22992         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
22993         and strncasecmp as r-values.  Unixware didn't have declarations.
22994
22995 2001-08-31  Paul Eggert  <eggert@twinsun.com>
22996
22997         * lib/xstrtol.h: Add copyright notice.
22998         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
22999         LONGINT_INVALID_SUFFIX_CHAR.
23000
23001 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23002
23003         * lib/xstrtol.c (strtoimax): New decl.
23004
23005 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23006
23007         * lib/xgetcwd.c: Don't include pathmax.h.
23008         Include stdlib.h and unistd.h if available.
23009         Include xalloc.h.
23010         (xmalloc, xstrdup, free): Remove decls.
23011         (xgetcwd): Don't assume sizes fit in unsigned.
23012         Check for overflow when computing sizes.
23013         Simplify reallocation code.
23014
23015 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23016
23017         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
23018         a directory's st_size can have an arbitrary value, so the old
23019         usage could waste an arbitrary amount of memory.  All uses
23020         changed.
23021         * lib/savedir.h: Update prototype.
23022
23023 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23024
23025         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
23026
23027         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
23028         old strtoimax.c.
23029
23030         Also, make the following further changes to make this file's
23031         configuration more similar to that of strtol.c:
23032         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
23033         (strtoumax, uintmax_t, strtoull, strtol): Remove.
23034         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
23035         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
23036         changed to signed values.
23037
23038         And make the following changes as well:
23039         Fix copyright notice, as 1999 was missing.
23040         (verify): New macro.
23041         (strtoimax): Check sizes at compile-time, not run-time.
23042         Prefer strtol to strtoll if both work.
23043         (main): Remove; it was not that useful and was a pain to maintain.
23044
23045         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
23046
23047 2001-08-31  Jim Meyering  <meyering@lucent.com>
23048
23049         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
23050         Use an initial, malloc'd, buffer of length 128 rather than
23051         a statically allocated one of length 1024.
23052
23053 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23054
23055         Simplify code, partly by assuming autoconf 2.52 semantics.
23056
23057         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
23058
23059         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
23060         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
23061         All uses removed.
23062         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
23063         Move AC_REQUIRE to next-to-top level, to avoid confusion.
23064         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
23065         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
23066         jm_AC_HEADER_INTTYPES_H.
23067         * m4/jm-macros.m4 (jm_MACROS): Likewise.
23068
23069         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
23070
23071         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23072         Quote first arg of AC_DEFUN.
23073         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
23074         since they are needed to parse the include file even if we need
23075         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
23076         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
23077         but with opposite signedness.
23078
23079 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23080
23081         Merge 'exclude' changes from tar 1.13.22.
23082         This fixes one or two unlikely storage allocation overflow bugs,
23083         but doesn't change user-visible behavior otherwise.
23084
23085 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23086
23087         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
23088         (jm_PREREQ_EXCLUDE): New macro.
23089
23090 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23091
23092         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23093         tm to be declared.
23094
23095 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23096
23097         * lib/hash.c: Remove '2001' from copyright notice.
23098
23099 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23100
23101         * lib/full-write.h: New file.
23102         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23103         * lib/full-write.c: Correct credits, as cccp.c no longer
23104         exists and anyway it was so heavily changed from the old cccp
23105         code as to be unrecognizable.  Include full-write.h.
23106         (full_write) Return size_t, with short writes meaning failure.
23107         All callers changed.  This fixes a bug with large buffers
23108         on 64-bit hosts.
23109         * lib/utime.c: Include full-write.h.
23110
23111 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23112
23113         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23114         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23115         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23116         Include if available.
23117         (<xalloc.h>): Include
23118         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23119         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23120         collide with FNM macros.
23121         (struct patopts): New struct.
23122         (struct exclude): Use it, as exclude patterns now come with options.
23123         (new_exclude): Support above changes.
23124         (new_exclude, add_exclude_file):
23125         Initial size must now be a power of two to simplify overflow checking.
23126         (free_exclude, fnmatch_no_wildcards): New function.
23127         (excluded_filename): No longer requires options arg, as the options
23128         are determined by add_exclude.  Now returns bool, not int.
23129         (excluded_filename, add_exclude):
23130         Add support for the fancy new exclusion options.
23131         (add_exclude, add_exclude_file): Now takes int options arg.
23132         Check for arithmetic overflow when computing sizes.
23133         (add_exclude_file): xrealloc might modify errno, so don't
23134         realloc until after errno might be used.
23135
23136         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23137         New macros.
23138         (free_exclude): New decl.
23139         (add_exclude, add_exclude_file): Now takes int options arg.
23140         (excluded_filename): No longer requires options arg, as the options
23141         are determined by add_exclude.  Now returns bool, not int.
23142
23143 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23144
23145         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23146
23147 2001-08-27  Jim Meyering  <meyering@lucent.com>
23148
23149         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23150
23151         * lib/version-etc.c (N_): Remove definition.
23152         Revert most of last change.
23153         Instead, simply don't mark the `Copyright...' string for translation.
23154         Based on advice from Paul Eggert.
23155
23156         * lib/strtoxmax.c: Tweak comment.
23157
23158 2001-08-26  Jim Meyering  <meyering@lucent.com>
23159
23160         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
23161
23162         * m4/xstrtoimax.m4: New file.
23163         * m4/xstrtoumax.m4: Add comments explaining why we
23164         AC_REPLACE_FUNCS(strtol).
23165
23166 2001-08-26  Jim Meyering  <meyering@lucent.com>
23167
23168         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
23169         of copyright with `%s' so translators don't get an untranslated
23170         message in 2002.
23171         (COPYRIGHT_YEAR): Define.
23172         (version_etc): Use fprintf rather than fputs.
23173         Suggestion from Ulrich Drepper.
23174
23175         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
23176
23177         * lib/strtoll.c: New file, from GNU libc.
23178         * lib/xstrtoimax.c: New file.
23179
23180         * lib/xstrtol.h: Add xstrtoimax.
23181         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
23182         * lib/strtoimax.c: New file.  Likewise, but first define
23183         STRTOUXMAX_SIGNED.
23184
23185         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
23186         ...
23187         * lib/strtoxmax.c: ... then renamed to this.
23188
23189 2001-08-18  Paul Eggert  <eggert@twinsun.com>
23190
23191         * m4/inttypes.m4: Add AC_PREREQ(2.13).
23192         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
23193         (jm_AC_TYPE_INTMAX_T): New macro.
23194         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
23195
23196         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
23197
23198         * m4/longlong.m4: Renamed from ulonglong.m4.
23199         * m4/inttypes.m4: Renamed from inttypes_h.m4.
23200         * m4/uintmax_t.m4: Removed.
23201
23202 2001-08-13  Paul Eggert  <eggert@twinsun.com>
23203
23204         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
23205         Port to Solaris 8, where 'sed' requires a space after the 'r'
23206         command, and where sh dislikes "$/".  Clean up the spacing a bit.
23207         Redirect output to $tmp just once.
23208
23209 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
23210
23211         * lib/addext.c (<errno.h>): Include.
23212         (errno): Declare if not defined.
23213         (addext): Work correctly when pathconf returns -1 and leaves
23214         errno alone because there is no limit.  Also, work even if
23215         pathconf returns a value greater than SIZE_MAX.
23216
23217 2001-08-12  Jim Meyering  <meyering@lucent.com>
23218
23219         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
23220         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
23221         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
23222         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
23223         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
23224         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
23225         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
23226         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
23227         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
23228         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
23229         utime.m4, utimes.m4, xstrtoumax.m4:
23230         Quote the first argument in each use of AC_DEFUN.
23231
23232 2001-08-12  Jim Meyering  <meyering@lucent.com>
23233
23234         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
23235         Simply `return getcwd (NULL, 0);'.
23236         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
23237         Use 1300 as initial value for length, not PATH_MAX.
23238
23239         * lib/pathmax.h: Clean up cpp syntax.
23240
23241 2001-08-12  Jim Meyering  <meyering@lucent.com>
23242
23243         * lib/gettimeofday.c: New file.
23244         * lib/gtod.h: New file.
23245         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
23246
23247 2001-08-05  Jim Meyering  <meyering@lucent.com>
23248
23249         * m4/jm-macros.m4: Require autoconf-2.52.
23250
23251 2001-08-04  Jim Meyering  <meyering@lucent.com>
23252
23253         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
23254         stmt, to get in sync with glibc.
23255
23256 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23257
23258         The following changes are from gettext 0.10.39 as maintained by
23259         Bruno Haible.
23260
23261         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
23262         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
23263         with inverted sense.  All uses changed.
23264
23265         * lib/mbswidth.c: Don't include <limits.h>.
23266         Include <stdlib.h> and <string.h> unconditionally.
23267         (iswcntrl, mbsinit, ISCNTRL): New macros.
23268         (mbsnwidth): Use K&R style function declarations.
23269         Don't bother checking for MB_LEN_MAX == 1, since the compiler
23270         can optimize it when MB_CUR_MAX == 1.
23271         The width of control characters is zero, not 1.
23272
23273 2001-08-03  Paul Eggert  <eggert@twinsun.com>
23274
23275         The following changes are from gettext 0.10.39 as maintained by
23276         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
23277
23278         * m4/codeset.m4: Upgrade to serial AM1.
23279         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
23280         all uses changed.  Quote first arg of AC_DEFUN.
23281         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
23282
23283         * m4/iconv.m4: Upgrade to serial AM2.
23284         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
23285         Add --with-libconv-prefix.
23286         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
23287         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
23288         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
23289         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
23290         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
23291
23292         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
23293         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
23294         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
23295         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
23296         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
23297         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
23298         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23299         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
23300         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
23301
23302         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
23303         string.h any more.
23304
23305         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
23306         not the default value.
23307
23308         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
23309         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
23310         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
23311         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
23312         Also check for iswcntrl, used for wcwidth fallback.
23313         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
23314         to Autoconf 2.13.
23315
23316 2001-08-03  Jim Meyering  <meyering@lucent.com>
23317
23318         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
23319         as it was in the original.  Reported by Paul Eggert.
23320
23321 2001-07-16  Jim Meyering  <meyering@lucent.com>
23322
23323         * m4/gettimeofday.m4: New file.
23324         Prompted by a report from Bernhard Baehr.
23325
23326 2001-07-15  Jim Meyering  <meyering@lucent.com>
23327
23328         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
23329         stuff. Now it's in ../Makefile.cfg.
23330
23331 2001-07-15  Jim Meyering  <meyering@lucent.com>
23332
23333         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
23334         (BUILT_SOURCES): Add unlocked-io.h.
23335         (io_functions): Define.
23336         (unlocked-io.h): New rule.
23337         (DISTCLEANFILES): Add unlocked-io.h.
23338         (all-local): Depend on unlocked-io.h, to ensure it is created.
23339
23340         * lib/unlocked-io.hin: New file
23341
23342         * lib/regex.c: Update from glibc.
23343
23344 2001-07-05  Jim Meyering  <meyering@lucent.com>
23345
23346         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
23347         recommendation.
23348         (libfetish_a_SOURCES): Put all .h files here instead.
23349         Remove a thus-exposed (better checks in automake) duplicate and
23350         two unnecessary .h files.
23351
23352 2001-07-04  Jim Meyering  <meyering@lucent.com>
23353
23354         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
23355         that generates jm-glibc-io.m4 so that it doesn't trigger any make
23356         distcheck failure.
23357
23358 2001-07-02  Jim Meyering  <meyering@lucent.com>
23359
23360         The following changes were prompted by suggestions from Bruno Haible.
23361
23362         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
23363         is now generated.
23364         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
23365         definition of EXTRA_DIST.
23366         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
23367         ensure that the generated file is created/updated whenever the list
23368         of $(unlocked_functions) is changed.
23369         (jm-glibc-io.m4): New rule.
23370         (unlocked-io.h): New rule -- currently unused.
23371
23372 2001-06-24  Jim Meyering  <meyering@lucent.com>
23373
23374         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
23375         unmatched right bracket, rather than kludging it with an extra,
23376         falsely-matching quote in a comment.  Patch by Akim Demaille.
23377
23378 2001-06-11  Jim Meyering  <meyering@lucent.com>
23379
23380         * lib/regex.c: Update from GNU libc.
23381
23382 2001-05-27  Jim Meyering  <meyering@lucent.com>
23383
23384         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
23385         Check for ut_type in struct utmp.
23386
23387 2001-05-27  Jim Meyering  <meyering@lucent.com>
23388
23389         * lib/readutmp.h (UT_TYPE): Define.
23390
23391 2001-05-24  Jim Meyering  <meyering@lucent.com>
23392
23393         * lib/argmatch.c: Include "quote.h".
23394         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
23395         quote function.  Reported by Göran Uddeborg.
23396
23397 2001-05-22  Jim Meyering  <meyering@lucent.com>
23398
23399         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
23400         now that we use the package-supplied version unconditionally.
23401         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
23402
23403 2001-05-21  Jim Meyering  <meyering@lucent.com>
23404
23405         * m4/regex.m4: Change a couple backticks to single quotes to avoid
23406         shell syntax errors.
23407
23408 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23409
23410         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
23411
23412 2001-05-20  Paul Eggert  <eggert@twinsun.com>
23413
23414         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
23415         Don't bother to check library strftime, since
23416         we'll be using our own my_strftime function anyway.
23417         Define my_strftime instead of strftime.
23418
23419 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
23420
23421         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
23422         which is not yet declared.
23423
23424 2001-05-15  Jim Meyering  <meyering@lucent.com>
23425
23426         * m4/regex.m4: Use proper quoting so brackets appear in the test
23427         program.
23428         Reported by, and with help from, Bruno Haible.
23429
23430 2001-05-13  Jim Meyering  <meyering@lucent.com>
23431
23432         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
23433         undefined.
23434
23435 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23436
23437         dirname code cleanup.  base_name now behaves more compatibly
23438         with POSIX basename when given file names that have trailing
23439         slashes, and similarly for dir_name.  Add new primitives
23440         base_len and dir_len.  Put the directory-name-related decls
23441         into dirname.h.
23442
23443         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
23444         * lib/backupfile.c (base_name): Likewise.
23445         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
23446         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
23447         * lib/makepath.c (strip_trailing_slashes): Likewise.
23448         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
23449         ISSLASH): Likewise.
23450         * lib/rename.c (strip_trailing_slashes): Likewise.
23451         * lib/same.c (base_name): Likewise.
23452         * lib/stripslash.c (ISSLASH): Likewise.
23453
23454         * lib/addext.c: Include <dirname.h> after size_t is defined.
23455         * lib/backupfile.c: Likewise.
23456
23457         * lib/addext.c (addext): Use base_len to trim redundant
23458         trailing slashes instead of doing it ourselves.
23459         But do not trim the last slash if it is not redundant.
23460
23461         * lib/backupfile.c (find_backup_file_name,
23462         max_backup_version): Use base_len instead of rolling it ourselves.
23463         Handle the case of "" and (on DOS) "C:" correctly.
23464
23465         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
23466         needed. Include <string.h>, <dirname.h>.
23467         (base_name): Allow file names ending in slashes, other than names
23468         that are all slashes.  In this case, return the basename followed
23469         by the slashes.  This is more general, and can be used in places
23470         where the original base_name purposely had an assertion failure.
23471         (base_len): New function.
23472
23473         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
23474         Do not include <assert.h>; no longer needed.
23475         Include xalloc.h.
23476         (memrchr): Remove decl.
23477         (dir_name_r): Remove.
23478         (dir_len): Renamed from dirlen.  All callers changed.
23479         Rewrite in terms of base_name, for simplicity and consistency.
23480         (dir_name): Never return NULL.  All callers changed.
23481         Do not include <stdlib.h> in test program; no longer needed.
23482         return 0; is fine for test program.
23483
23484         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
23485         New macros.
23486         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
23487
23488         * lib/path-concat.c (path_concat): Use base_len to compute
23489         base length, not strlen; this means we cannot rely on memcpy
23490         to null-terminate.
23491
23492         * lib/same.c (STREQ): Remove.
23493         (same_name): Handle the case where the basename ends in trailing '/'.
23494
23495         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
23496         a slash was stripped.  Do not strip the last slash after a
23497         file system prefix.
23498
23499 2001-05-11  Paul Eggert  <eggert@twinsun.com>
23500
23501         * lib/Makefile.am (libfetish_a_SOURCES):
23502         Add strftime.c, since we now compile it on all hosts.
23503
23504         * lib/strftime.c (my_strftime):
23505         Define to nstrftime if emacs, but only if my_strftime is not defined.
23506         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
23507         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
23508         Add one more extra argument: a nanoseconds value.
23509         All uses changed.
23510         (ns): New macro.
23511         (my_strftime function): Add %N format.
23512         (emacs_strftimeu): Renamed from emacs_strftime,
23513         with extra ut argument.
23514
23515 2001-05-09  Paul Eggert  <eggert@twinsun.com>
23516
23517         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
23518
23519 2001-04-21  Jim Meyering  <meyering@lucent.com>
23520
23521         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
23522         doesn't interfere.
23523
23524 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
23525
23526         * m4/ftruncate.m4: Check for chsize.
23527         Link with ftruncate.o unconditionally if ftruncate is missing.
23528         This was required when cross-compiling to i586-mingw32msvc.
23529
23530 2001-04-08  Jim Meyering  <meyering@lucent.com>
23531
23532         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
23533         recomputed; that's necessary when the offset spans a DST transition.
23534         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
23535
23536 2001-04-02  Jim Meyering  <meyering@lucent.com>
23537
23538         * lib/regex.h, regex.c: Update from GNU libc.
23539
23540 2001-03-24  Jim Meyering  <meyering@lucent.com>
23541
23542         * m4/jm-macros.m4: Require autoconf-2.49d.
23543
23544 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
23545
23546         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
23547
23548 2001-03-19  Paul Eggert  <eggert@twinsun.com>
23549
23550         * lib/version-etc.c (version_etc_copyright): Update to 2001.
23551
23552 2001-03-17  Jim Meyering  <meyering@lucent.com>
23553
23554         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
23555         now that the version in autoconf is equivalent.
23556         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
23557
23558         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
23559         Suggestion from Akim Demaille.
23560
23561         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
23562         (jm_PREREQ_TEMPNAME): New function.
23563
23564 2001-03-16  Paul Eggert  <eggert@twinsun.com>
23565
23566         * lib/tempname.c (uint64_t): Define to uintmax_t if
23567         not defined, and if UINT64_MAX is not defined.
23568         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
23569         Reported by John David Anglin.
23570
23571 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
23572
23573         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
23574         resolve alias if codeset is empty.
23575         * lib/config.charset (BeOS): Use wildcard syntax.
23576
23577 2001-03-13  Jim Meyering  <meyering@lucent.com>
23578
23579         * lib/path-concat.c (path_concat)
23580         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
23581         concatenating e.g., `C:' and `foo'.
23582         From Bruno Haible.
23583
23584 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23585
23586         * lib/localcharset.c (locale_charset): Don't use
23587         setlocale(LC_CTYPE,NULL). Don't return NULL.
23588         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
23589
23590 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
23591
23592         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
23593         support for DOS/DJGPP.
23594
23595 2001-03-01  Paul Eggert  <eggert@twinsun.com>
23596
23597         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
23598         lacks mkstemp.  Compile our own tempname.c if we compile our own
23599         mkstemp.c, as mkstemp relies on tempname.
23600
23601 2001-03-01  Jim Meyering  <meyering@lucent.com>
23602
23603         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
23604         AH_VERBATIM really does output its argument verbatim.
23605
23606 2001-02-28  Paul Eggert  <eggert@twinsun.com>
23607
23608         * lib/Makefile.am (libfetish_a_SOURCES):
23609         Add dup-safer.c, fopen-safer.c.
23610         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
23611
23612         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
23613         * lib/unistd-safer.h: New files.
23614
23615 2001-02-25  Paul Eggert  <eggert@twinsun.com>
23616
23617         The mkstemp replacement is taken from glibc 2.2.2, with some
23618         portability fixes for use outside glibc, as follows:
23619
23620         * lib/tempname.c (struct_stat64): New macro.
23621         (direxists, __gen_tempname): Use it.
23622         This avoids a portability problem with Solaris 8.
23623
23624         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
23625         (<stddef.h>, <stdint.h>, <string.h>):
23626         Include only if STDC_HEADERS || _LIBC.
23627         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
23628         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
23629         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
23630         (__set_errno): Define this macro if <errno.h> doesn't.
23631         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
23632         Define these macros if <stdio.h> doesn't.
23633         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
23634         Define these macros if <sys/stat.h>
23635         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
23636         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
23637         __xstat64): Define if not _LIBC.
23638         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
23639         (__gen_tempname): Invoke gettimeofday only if
23640         HAVE_GETTIMEOFDAY || _LIBC;
23641         otherwise, fall back on plain "time".
23642         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
23643
23644         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
23645
23646         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
23647
23648 2001-02-18  Paul Eggert  <eggert@twinsun.com>
23649
23650         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
23651
23652 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23653
23654         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
23655         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
23656         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
23657         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
23658
23659 2001-02-17  Paul Eggert  <eggert@twinsun.com>
23660
23661         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
23662         Remove workaround macros for hosts that have mbrtowc but not
23663         mbstate_t, as we now insist on proper declarations for both
23664         before using mbrtowc.
23665
23666 2001-02-17  Jim Meyering  <meyering@lucent.com>
23667
23668         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
23669         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
23670         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
23671         UnixWare 7.1.1.
23672
23673         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
23674         rather than AC_CACHE_VAL.
23675
23676 2001-02-17  Jim Meyering  <meyering@lucent.com>
23677
23678         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
23679         around included file name.
23680
23681         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
23682
23683         * lib/strftime.c: Update from GNU libc (the only changes were to
23684         comments).
23685
23686 2001-02-17  Jim Meyering  <meyering@lucent.com>
23687
23688         * lib/regex.c: Update from libc.
23689
23690 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
23691
23692         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
23693         clash.
23694
23695 2001-02-16  Paul Eggert  <eggert@twinsun.com>
23696
23697         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
23698         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
23699         Reported by Mark Hounschell via Paul Eggert.
23700
23701 2001-02-07  Jim Meyering  <meyering@lucent.com>
23702
23703         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
23704
23705 2001-02-05  Jim Meyering  <meyering@lucent.com>
23706
23707         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
23708         it includes the patch required for `large file' support with at least
23709         HP-UX's 10.20 /bin/cc.
23710
23711 2001-02-03  Jim Meyering  <meyering@lucent.com>
23712
23713         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
23714         AS_IF, now that it works once again (mysteriously).
23715         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23716
23717 2001-01-30  Jim Meyering  <meyering@lucent.com>
23718
23719         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
23720         * m4/chown.m4: Rename conftestchown to conftest.chown.
23721         * m4/rename.m4: s/conftestdir/conftest.d1/ and
23722         s/conftestdir2/conftest.d2/.
23723         * m4/utimes.m4: s/conftestdata/conftest.data/
23724         Inspired by Pavel Roskin's change in autoconf.
23725
23726 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
23727
23728         * lib/config.charset: Update for FreeBSD 4.2.
23729
23730 2001-01-27  Jim Meyering  <meyering@lucent.com>
23731
23732         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
23733         a use of AS_IF.
23734         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
23735
23736 2001-01-26  Jim Meyering  <meyering@lucent.com>
23737
23738         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
23739         quotearg.c includes it.
23740
23741 2001-01-26  Jim Meyering  <meyering@lucent.com>
23742
23743         * lib/quotearg.c: Include stddef.h.
23744         * lib/quote.c: Include stddef.h.
23745         Reported by Axel Kittenberger.
23746
23747         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
23748         line in double quotes so that it evokes a better diagnostic.
23749         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
23750         Reported by Axel Kittenberger.
23751
23752 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
23753
23754         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
23755         as if it was a `charset'.
23756
23757 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23758
23759         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
23760         has const.
23761
23762 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
23763
23764         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
23765         to avoid a warning.  Add back 'const' to inptr.
23766
23767 2001-01-20  Jim Meyering  <meyering@lucent.com>
23768
23769         Be sure that headers are checked before used in code compiled
23770         for the type checks.
23771         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
23772         In place of that, invoke jm_CHECK_ALL_TYPES.
23773         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
23774         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
23775         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
23776         The check for ssize_t was mistakenly run before the test for unistd.h.
23777
23778         The configure-time check for stdbool.h was missing.
23779         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
23780         (jm_PREREQ_HASH): New function.
23781
23782 2001-01-17  Jim Meyering  <meyering@lucent.com>
23783
23784         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
23785         for autoconf-2.49c.
23786         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
23787
23788 2001-01-16  Jim Meyering  <meyering@lucent.com>
23789
23790         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
23791         From Bruno Haible.
23792
23793 2001-01-14  Jim Meyering  <meyering@lucent.com>
23794
23795         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
23796         foo and bar.  Create conftestdir/ in the script, not in the C code.
23797         Remove directories in the script, not in the C code.
23798         Remove conftestdir{,2} before trying to create the directory.
23799         Make the entire configure script fail if the mkdir fails.
23800
23801 2001-01-14  Jim Meyering  <meyering@lucent.com>
23802
23803         * lib/rename.c: New file.  From Volker Borchert.
23804         Include stdlib.h, string.h or strings.h, and xalloc.h.
23805         Use strip_trailing_slashes rather than open-coding it.
23806
23807 2001-01-03  Paul Eggert  <eggert@twinsun.com>
23808
23809         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
23810
23811 2001-01-03  Jim Meyering  <meyering@lucent.com>
23812
23813         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
23814         of local `inptr' to avoid warning with some system declarations of
23815         iconv.
23816
23817 2001-01-02  Volker Borchert  <bt@teknon.de>
23818
23819         * m4/rename.m4: New file.
23820         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
23821
23822 2001-01-01  Jim Meyering  <meyering@lucent.com>
23823
23824         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
23825         even on systems with utmpx.h.  It's necessary for the declaration of
23826         utmp's ut_user member.  Reported by Andreas Jaeger.
23827
23828         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
23829         available. They are required for the declarations of getgrgid and
23830         getpwuid resp.
23831         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
23832         Reported by Andreas Jaeger.
23833
23834 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
23835
23836         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
23837         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
23838         so `make install' also works in VPATH builds.
23839
23840 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
23841
23842         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
23843         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
23844         can be used in subdirectories.
23845
23846 2000-12-29  Paul Eggert  <eggert@twinsun.com>
23847
23848         * lib/modechange.c: Do not assume that mode_t uses the
23849         traditional octal encoding.  E.g. "chmod 1 FOO" should set
23850         the other-execute bit of FOO even if S_IXOTH != 1.
23851
23852         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
23853         WOTH, XOTH, ALLM): New macros.
23854         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
23855          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
23856         Use them.
23857         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
23858         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
23859         (mode_compile):
23860         No need to use uintmax_t; unsigned long is long enough.
23861         Don't bother to get suffix since we don't use it.
23862
23863 2000-12-26  Jim Meyering  <meyering@lucent.com>
23864
23865         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
23866         better with autoheader.
23867
23868 2000-12-24  Jim Meyering  <meyering@lucent.com>
23869
23870         * lib/hash.c (is_prime): Return explicit boolean values.
23871         (hash_get_first): Return NULL to appease Irix5.6's 89.
23872         Reported by Nelson Beebe.
23873
23874 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
23875
23876         * lib/localcharset.c (locale_charset): Add support for Win32.
23877
23878 2000-12-18  Paul Eggert  <eggert@twinsun.com>
23879
23880         * lib/physmem.h, lib/physmem.c: New files.
23881
23882         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
23883         (noinst_HEADERS): Add physmem.h.
23884
23885         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
23886         't' for compatibility with Solaris 8 sort.
23887
23888 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
23889
23890         * lib/config.charset: Add support for BeOS.
23891
23892 2000-12-17  Jim Meyering  <meyering@lucent.com>
23893
23894         * m4/dos.m4 (jm_AC_DOS): New file and macro.
23895         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
23896
23897 2000-12-16  Jim Meyering  <meyering@lucent.com>
23898
23899         This bug had a serious impact on chown: `chown N:M FILE' (for integer
23900         N and M) would have treated it like `chown N:N FILE'.
23901
23902         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
23903
23904 2000-12-16  Jim Meyering  <meyering@lucent.com>
23905
23906         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
23907         SHELLS_FILE to a file name that's useful on djgpp systems.
23908         Include stdlib.h.
23909         (ADDITIONAL_DEFAULT_SHELLS): Define.
23910         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
23911         Based mostly on a patch from Prashant TR.
23912
23913 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
23914
23915         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
23916         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
23917         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
23918
23919 2000-12-08  Andreas Schwab  <schwab@suse.de>
23920
23921         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
23922         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
23923
23924 2000-12-07  Jim Meyering  <meyering@lucent.com>
23925
23926         * lib/stripslash.c (ISSLASH): Define.
23927         (strip_trailing_slashes): Use ISSLASH rather than comparing against
23928         `/'.
23929         From Prashant TR.
23930
23931         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
23932         (dir_name_r): Declare this function as static.
23933         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
23934         manifest itself on a name containing a mix of slashes and
23935         backslashes.
23936         Make this function work with names starting with a DOS-style
23937         drive letter and colon prefix.
23938         (dir_name): Append `.' if necessary.
23939         Based mostly on patches from Prashant TR and Eli Zaretskii.
23940
23941         * lib/dirname.h (dir_name_r): Remove prototype.
23942
23943 2000-12-06  Paul Eggert  <eggert@twinsun.com>
23944
23945         * m4/off_t-format.m4: Remove this file.
23946         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
23947
23948 2000-12-06  Jim Meyering  <meyering@lucent.com>
23949
23950         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
23951         replacement strtoull, we may well need the replacement strtoul, too.
23952         Check for declarations of strtoul and strtoull.
23953         Check for strtol.  Mainly as a cue to cause automake to include
23954         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
23955         Check for limits.h -- strtol.c needs it.
23956
23957 2000-12-05  Jim Meyering  <meyering@lucent.com>
23958
23959         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
23960
23961 2000-12-04  Jim Meyering  <meyering@lucent.com>
23962
23963         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
23964         Also include memory.h, stdlib.h, unistd.h if appropriate.
23965         Reported by Andreas Jaeger (conflicting declaration of malloc).
23966
23967 2000-12-02  Jim Meyering  <meyering@lucent.com>
23968
23969         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
23970         * m4/jm-macros.m4 (jm_MACROS): require it.
23971
23972 2000-12-02  Jim Meyering  <meyering@lucent.com>
23973
23974         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
23975
23976 2000-12-01  Paul Eggert  <eggert@twinsun.com>
23977
23978         * lib/memrchr.c: Include <config.h> before any system include file.
23979
23980 2000-11-30  Jim Meyering  <meyering@lucent.com>
23981
23982         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
23983
23984 2000-11-30  Jim Meyering  <meyering@lucent.com>
23985
23986         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
23987
23988 2000-11-29  Paul Eggert  <eggert@twinsun.com>
23989
23990         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
23991
23992 2000-11-26  Jim Meyering  <meyering@lucent.com>
23993
23994         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
23995
23996 2000-11-22  Paul Eggert  <eggert@twinsun.com>
23997
23998         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
23999         size of (size_t) -1; it's not portable.
24000
24001 2000-11-17  Jim Meyering  <meyering@lucent.com>
24002
24003         * lib/strstr.c: Update from GNU libc.
24004
24005 2000-11-17  Akim Demaille  <akim@epita.fr>
24006
24007         * lib/obstack.h: Formatting changes.
24008         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
24009         prevent type checking.
24010         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24011         cast the value to (void *): assigning a `foo *' to a `void *'
24012         variable is valid.
24013         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24014
24015 2000-11-16  Jim Meyering  <meyering@lucent.com>
24016
24017         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
24018
24019 2000-11-11  Jim Meyering  <meyering@lucent.com>
24020
24021         * lib/error.c: Add a couple #includes, merging from GNU libc version.
24022
24023 2000-11-10  Jim Meyering  <meyering@lucent.com>
24024
24025         * lib/obstack.h: Update from GNU libc.
24026         * lib/obstack.c: Likewise.
24027
24028 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
24029
24030         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
24031
24032 2000-11-06  Paul Eggert  <eggert@twinsun.com>
24033
24034         * lib/getusershell.c (setusershell): Use rewind rather than
24035         fseek/fseeko, to avoid configuration hassles with fseeko.
24036         Don't bother opening SHELLS_FILE if shellstream is NULL;
24037         it's not necessary.
24038
24039 2000-11-05  Jim Meyering  <meyering@lucent.com>
24040
24041         * lib/makepath.h (make_dir): Declare.
24042         * lib/makepath.c (make_dir): Remove `static' attribute.
24043         Tweak a comment.
24044
24045 2000-11-04  Jim Meyering  <meyering@lucent.com>
24046
24047         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
24048
24049 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
24050
24051         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
24052         last one in a bucket, advance to the next bucket.
24053
24054 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
24055
24056         * lib/fnmatch.c: Do not comment out all the code if we are using
24057         the GNU C library, because in some cases we are replacing buggy
24058         code in the GNU C library itself.
24059
24060 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
24061
24062         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
24063         (regex_compile): Catch bogus \(\1\).
24064
24065 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24066
24067         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
24068         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
24069         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
24070
24071 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24072
24073         * lib/error.h, getline.h, modechange.h:
24074         Remove "2000" from Copyright line, as the file hasn't been
24075         changed this year other than in the copyright notice.
24076
24077         * lib/xalloc.h: Add "2000" to Copyright line, as this file
24078         was changed this year.
24079
24080 2000-10-29  Jim Meyering  <meyering@lucent.com>
24081
24082         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
24083         renaming.
24084         * m4/ls-mntd-fs.m4: Likewise
24085
24086 2000-10-29  Jim Meyering  <meyering@lucent.com>
24087
24088         * lib/xstat.in: Fix grammar in comment.
24089
24090 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
24091
24092         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24093         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24094         doesn't define __restrict_arr.
24095
24096 2000-10-28  Jim Meyering  <meyering@lucent.com>
24097
24098         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24099         (jm_PREREQ_MEMCHR): New function.
24100
24101 2000-10-28  Jim Meyering  <meyering@lucent.com>
24102
24103         * lib/memchr.c: Update from libc.
24104         Adjust for portability:
24105         [HAVE_STDLIB_H]: Include stdlib.h.
24106         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24107         Undef __memchr, too.
24108         [!weak_alias]: Define __memchr to memchr.
24109
24110         * lib/regex.c: Update from libc.
24111         * lib/regex.h: Likewise.
24112         * lib/getopt1.c: Likewise.
24113         * lib/memcmp.c: Likewise.
24114
24115         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24116         Avoid using fseek, when possible -- it's broken by design.
24117         Patch by Ulrich Drepper.
24118
24119 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24120
24121         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24122         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24123         Giving in to popular pressure to shut up the compiler with casts.
24124
24125 2000-10-26  Jim Meyering  <meyering@lucent.com>
24126
24127         * lib/strftime.c: Update from libc.
24128
24129 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24130
24131         * regex.c: More `unsigned char' -> `re_char' changes.
24132         Also change several `int' into `re_wchar_t'.
24133         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24134         (PUSH_FAILURE_POINTER): Don't cast any more.
24135         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24136         We want GCC to complain, since this piece of code makes
24137         re_match non-reentrant, which *should* be fixed.
24138         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24139         (EXTEND_BUFFER): Use RETALLOC.
24140         (SET_LIST_BIT): Don't cast.
24141         (re_wchar_t): New type.
24142         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24143         that those two functions will always properly return.
24144         (IMMEDIATE_QUIT_CHECK): Cast to void.
24145         (analyse_first): Use recursion rather than an explicit stack.
24146         (re_compile_fastmap): Can't fail anymore.
24147         (re_search_2): Don't check re_compile_fastmap for failure.
24148         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24149         Now also sets the new value (passed in a new argument).
24150         (re_match_2_internal): Use it.
24151         Also, use a new var `reg' of type size_t when looping through regs
24152         rather than reuse the inappropriate `mcnt'.
24153
24154 2000-10-25  Jim Meyering  <meyering@lucent.com>
24155
24156         * lib/obstack.c: Update from libc.
24157
24158 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
24159
24160         * regex.c (regex_compile): Change the way of handling a range from
24161         a char less than 256 to a char not less than 256.
24162
24163 2000-10-24  Andrew Innes  <andrewi@gnu.org>
24164
24165         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
24166         NT-Emacs only.
24167         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
24168         so that re_search functions only quit when callers expect them to.
24169
24170 2000-10-23  Jim Meyering  <meyering@lucent.com>
24171
24172         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
24173         wrong.  That set_locale call must not have any side effects.
24174         From Paul Eggert.
24175
24176 2000-10-22  Jim Meyering  <meyering@lucent.com>
24177
24178         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
24179         [CYCLIC]: Remove now-unused definition.
24180
24181         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
24182         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
24183         Suggestion from Ulrich Drepper.
24184
24185 2000-10-21  Jim Meyering  <meyering@lucent.com>
24186
24187         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
24188         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
24189         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
24190
24191 2000-10-21  Jim Meyering  <meyering@lucent.com>
24192
24193         * lib/dirname.c (memrchr): Declare if necessary.
24194         (dir_name): Remove the restriction that there be no
24195         trailing slashes.  Now, this code skips past them, effectively
24196         ignoring them.
24197         [TEST_DIRNAME] (main): New unit tests.
24198
24199         * lib/memrchr.c: New file from GNU libc.
24200         Undef __memrchr, too.
24201         [!weak_alias]: Define __memrchr to memrchr.
24202         Guard weak_alias use with `#ifdef weak_alias'.
24203
24204 2000-10-21  Jim Meyering  <meyering@lucent.com>
24205
24206         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
24207         (dir_name): Use dir_name_r.
24208         * lib/dirname.h (dir_name_r): Declare it.
24209
24210 2000-10-17  Jim Meyering  <meyering@lucent.com>
24211
24212         * lib/quote.h (PARAMS): Define and use.
24213         Reported by Akim Demaille.
24214
24215         * lib/getopt.c: Update from libc.
24216
24217 2000-10-16  Jim Meyering  <meyering@lucent.com>
24218
24219         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
24220         setlocale.
24221         From Jan Fedak.
24222
24223 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
24224
24225         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
24226
24227 2000-09-25  Jim Meyering  <meyering@lucent.com>
24228
24229         * lib/md5.h (rol): Define (from GnuPG).
24230
24231         * lib/sha.c: Give credit (GnuPG) where due.
24232         (M): Use rol rather than open-coding it.
24233         Add a FIXME comment.
24234
24235 2000-09-21  Jim Meyering  <meyering@lucent.com>
24236
24237         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
24238         Reported by Michael Stone.
24239
24240 2000-09-20  Jim Meyering  <meyering@lucent.com>
24241
24242         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
24243         (noinst_HEADERS): Add sha.h.
24244         Based on code from Scott G. Miller and from GnuPG.
24245
24246 2000-09-18  Jim Meyering  <meyering@lucent.com>
24247
24248         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
24249         LIBS. Otherwise, everyone ends up linking with -lelf for some
24250         configurations.
24251         Reported by Mike Stone.
24252
24253 2000-09-15  Jim Meyering  <meyering@lucent.com>
24254
24255         * lib/regex.c: Update from libc.
24256
24257 2000-09-10  Jim Meyering  <meyering@lucent.com>
24258
24259         * lib/getopt.c (_getopt_internal): Update from glibc.
24260
24261 2000-09-09  Jim Meyering  <meyering@lucent.com>
24262
24263         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
24264         think it should be used as a general replacement for isascii.
24265         * lib/fnmatch.c: Likewise.
24266         * lib/mbswidth.c: Likewise
24267         * lib/regex.c: Likewise.
24268
24269         Don't use atoi.
24270         * lib/userspec.c: Include sys/param.h and limits.h.
24271         Include xstrtol.h.
24272         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
24273         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
24274         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
24275         UID, GID.  Check range.
24276
24277 2000-09-06  Jim Meyering  <meyering@lucent.com>
24278
24279         * lib/getopt.c (_getopt_internal): Update from glibc.
24280
24281 2000-08-30  Jim Meyering  <meyering@lucent.com>
24282
24283         * lib/strftime.c: Merge in changes from GNU libc.
24284
24285 2000-08-26  Jim Meyering  <meyering@lucent.com>
24286
24287         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
24288         * m4/fpending.m4: New file.
24289
24290 2000-08-26  Jim Meyering  <meyering@lucent.com>
24291
24292         * lib/closeout.c: Include "__fpending.h".
24293         (close_stdout_status): Return right away if there's nothing to flush.
24294
24295         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
24296         * lib/__fpending.c: New file.
24297         * lib/__fpending.h: New file.
24298
24299 2000-08-20  Jim Meyering  <meyering@lucent.com>
24300
24301         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
24302         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
24303         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
24304
24305 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
24306
24307         Improve fileutils installation on systems where running
24308         programs (like install) can't be unlinked.
24309         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
24310         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
24311
24312 2000-08-07  Paul Eggert  <eggert@twinsun.com>
24313
24314         Standardize on "memory exhausted" instead of "Memory exhausted"
24315         or "virtual memory exhausted".
24316         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
24317         "virtual memory exhausted".
24318         * lib/same.c (same_name): Invoke xalloc_die instead of printing
24319         our own message.
24320         * lib/userspec.c (parse_user_spec): Likewise.
24321         * lib/bumpalloc.h: comment fix
24322         * lib/same.c, userspec.c: Include xalloc.h.
24323
24324         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
24325         not char *const and pointing to a constant array.
24326         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
24327         (xrealloc): Comment fix.
24328
24329         * lib/userspec.c (parse_user_spec):
24330         Don't translate a message until just before returning,
24331         to avoid unnecessary translation.
24332
24333 2000-08-07  Jim Meyering  <meyering@lucent.com>
24334
24335         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
24336         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
24337         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
24338         getgroups.c, gethostname.c, getopt.h, group-member.c,
24339         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
24340         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
24341         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
24342         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
24343         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
24344         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
24345         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
24346         yesno.c: Back out Copyright date changes for each file with no change
24347         this year.  This eases coordination with other programs using the same
24348         source code modules.  From Paul Eggert.
24349
24350 2000-08-06  Paul Eggert  <eggert@twinsun.com>
24351
24352         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
24353         not char, for compatibility with glibc 2.1.3 strftime.c.
24354
24355 2000-08-03  Greg McGary  <greg@mcgary.org>
24356
24357         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
24358         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
24359         (EXTEND_BUFFER): Use them.
24360
24361 2000-08-01  Jim Meyering  <meyering@lucent.com>
24362
24363         * lib/dirname.c (ISSLASH): Define.
24364         (BACKSLASH_IS_PATH_SEPARATOR): Define.
24365         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
24366         both `\' and `/' may be use as path separators.
24367         Based on a patch from Prashant TR.
24368
24369 2000-07-31  Paul Eggert  <eggert@twinsun.com>
24370
24371         * lib/quotearg.c (quotearg_n_options): Don't make the initial
24372         slot vector a constant, since it might get modified.
24373
24374 2000-07-31  Jim Meyering  <meyering@lucent.com>
24375
24376         * lib/xmalloc.c: Use `virtual memory exhausted', not
24377         `Memory exhausted'.
24378         * lib/obstack.c (print_and_abort): Likewise.
24379
24380 2000-07-30  Paul Eggert  <eggert@twinsun.com>
24381
24382         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
24383         buffer, so that the caller can always quote one small
24384         component of a "memory exhausted" message in slot 0.
24385         From a suggestion by Jim Meyering.
24386
24387 2000-07-30  Jim Meyering  <meyering@lucent.com>
24388
24389         * lib/makepath.c (make_path): Quote the other instance, too.
24390
24391         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
24392         (STATIC_BUF_SIZE): Define.
24393         (quotearg_n_options): Use only statically allocated storage when
24394         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
24395         than STATIC_BUF_SIZE.
24396
24397 2000-07-29  Jim Meyering  <meyering@lucent.com>
24398
24399         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
24400         * lib/dirname.c (dir_name): Likewise.
24401
24402         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
24403         `/'.
24404
24405         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
24406         (dir_name): Assert that there are no trailing slashes.
24407
24408 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
24409
24410         * lib/mbswidth.h (mbswidth): Add a flags argument.
24411         (mbswidth): New declaration.
24412         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
24413         * lib/mbswidth.c (mbswidth): Add a flags argument.
24414         (mbsnwidth): New function.
24415
24416 2000-07-24  Jim Meyering  <meyering@lucent.com>
24417
24418         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
24419
24420 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24421
24422         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
24423
24424 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24425
24426         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
24427         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
24428         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
24429         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
24430         invoke multibyte primitives.
24431
24432 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24433
24434         * lib/quotearg.c:
24435         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
24436         so that mbstate_t is always defined.
24437
24438         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
24439         be 1 in at least one GCC installation, and this configuration
24440         error is likely to be common.  Ignoring MB_LEN_MAX hurts
24441         performance on hosts that have mbrtowc but have only unibyte
24442         locales, but I assume these hosts are rare.
24443
24444 2000-07-23  Paul Eggert  <eggert@twinsun.com>
24445
24446         * lib/mbswidth.c (_XOPEN_SOURCE):
24447         Don't define; this causes problems on Solaris 7.
24448         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
24449
24450 2000-07-23  Jim Meyering  <meyering@lucent.com>
24451
24452         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
24453         too: getgrgid, getpwuid, getuid.
24454
24455 2000-07-23  Jim Meyering  <meyering@lucent.com>
24456
24457         * lib/basename.c (base_name): Add an assertion.
24458
24459 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
24460
24461         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
24462         shadow its mbsinit function.
24463
24464 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24465
24466         * lib/mbswidth.h: New file.
24467         * lib/mbswidth.c: New file.
24468         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
24469         (noinst_HEADERS): Add mbswidth.h.
24470
24471 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
24472
24473         * lib/config.charset: Add support for FreeBSD. Improve support for
24474         HP-UX and IRIX 6.
24475
24476 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
24477
24478         * m4/mbswidth.m4: New file.
24479         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
24480
24481 2000-07-15  Jim Meyering  <meyering@lucent.com>
24482
24483         * lib/makepath.c: Include quote.h.
24484         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
24485         corresponding argument in a `quote (...)' call.
24486         Give better diagnostics.
24487
24488         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
24489         (noinst_HEADERS): Add quote.h.
24490
24491         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
24492         from tar's src/misc.c.
24493         * lib/quote.h: New file.  Prototypes for same.
24494
24495 2000-07-14  Paul Eggert  <eggert@twinsun.com>
24496
24497         From a suggestion by Bruno Haible.
24498         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
24499         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
24500         to decide whether to define the BeOS workaround macro;
24501         this adjusts to the change to AC_MBSTATE_T.
24502
24503 2000-07-14  Jim Meyering  <meyering@lucent.com>
24504
24505         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
24506         jm_AC_TYPE_UINTMAX_T.
24507
24508 2000-07-13  Paul Eggert  <eggert@twinsun.com>
24509
24510         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
24511
24512         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
24513         quotearg_buffer_restyled): Add support for
24514         clocale_quoting_style.  Undo previous change to
24515         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
24516         and "{RIGHT QUOTATION MARK}" msgids.
24517
24518 2000-07-10  Paul Eggert  <eggert@twinsun.com>
24519
24520         From a suggestion by Bruno Haible.
24521         * m4/mbstate_t.m4 (AC_MBSTATE_T):
24522         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
24523         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
24524         and mbstate_t, to a single-part test that simply defines mbstate_t.
24525         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
24526         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
24527
24528 2000-07-10  Jim Meyering  <meyering@lucent.com>
24529
24530         * m4/strerror_r.m4: Mirror the correction made in autoconf.
24531
24532         * m4/gnu-source.m4: Output to confdefs.h directly.
24533         Suggestion from Akim Demaille.
24534
24535 2000-07-09  Paul Eggert  <eggert@twinsun.com>
24536
24537         The old behavior of quoting `like this' doesn't look good with
24538         newer, ISO-style fonts.  See:
24539         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
24540
24541         Instead, quote "like this" by default.  Let the translator
24542         tailor the locale-specific quoting behavior by providing
24543         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
24544
24545         * lib/quotearg.c (N_): New macro.
24546         (gettext_default): New function.
24547         (quotearg_buffer_restyled): Use
24548         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
24549         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
24550
24551 2000-07-09  Jim Meyering  <meyering@lucent.com>
24552
24553         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
24554         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
24555
24556         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
24557         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
24558
24559 2000-07-09  Jim Meyering  <meyering@lucent.com>
24560
24561         * lib/Most files: Update copyright dates to include 2000.
24562
24563 2000-07-08  Jim Meyering  <meyering@lucent.com>
24564
24565         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
24566         if not defined.
24567         (xgethostname): Remove now-unnecessary #ifdef.
24568         Move declaration of `err' into loop where it's used.
24569
24570 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24571         and Bruno Haible  <haible@clisp.cons.org>
24572
24573         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
24574         only if the test for an object-type mbstate_t fails.  This
24575         prevents us from mistakenly reporting that mbstate_t is a
24576         system object type after we "#define mbstate_t int" to work
24577         around its lack.
24578
24579 2000-07-05  Paul Eggert  <eggert@twinsun.com>
24580         and Bruno Haible  <haible@clisp.cons.org>
24581
24582         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
24583
24584 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24585
24586         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
24587         to strerror_r.
24588         Include <ctype.h> for use of isalpha.
24589
24590 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24591
24592         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
24593         by allocating a larger buffer. Test the gethostname return value for
24594         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
24595         returns an error and ENAMETOOLONG isn't defined.
24596
24597 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
24598
24599         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
24600         dimension.
24601
24602 2000-07-04  Jim Meyering  <meyering@lucent.com>
24603
24604         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
24605         of the deprecated AC_CHECKING.
24606
24607 2000-07-04  Jim Meyering  <meyering@lucent.com>
24608
24609         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
24610         Reported by Bruno Haible.
24611
24612 2000-07-04  Jim Meyering  <meyering@lucent.com>
24613
24614         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
24615         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
24616         lacks mbrtowc.
24617
24618 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24619
24620         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
24621         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
24622
24623 2000-07-03  Paul Eggert  <eggert@twinsun.com>
24624         and Bruno Haible  <haible@clisp.cons.org>
24625
24626         * lib/quotearg.c (mbrtowc):
24627         Assign to *pwc, and return 1 only if result is nonzero.
24628         (iswprint): Use ISPRINT when substituting our own mbrtowc.
24629
24630 2000-07-03  Jim Meyering  <meyering@lucent.com>
24631
24632         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
24633
24634 2000-07-03  Jim Meyering  <meyering@lucent.com>
24635
24636         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
24637         This is necessary to get a definition of e.g., UTMP_FILE on
24638         HP-UX 10.20.
24639         From Bob Proulx.
24640
24641 2000-07-02  Jim Meyering  <meyering@lucent.com>
24642
24643         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
24644
24645         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
24646         AC_LIBOBJ(function_name).
24647         * m4/chown.m4: Likewise.
24648         * m4/fnmatch.m4: Likewise.
24649         * m4/ftruncate.m4: Likewise.
24650         * m4/getgroups.m4: Likewise.
24651         * m4/getline.m4: Likewise.
24652         * m4/group-member.m4: Likewise.
24653         * m4/jm-macros.m4: Likewise.
24654         * m4/lstat.m4: Likewise.
24655         * m4/malloc.m4: Likewise.
24656         * m4/memcmp.m4: Likewise.
24657         * m4/nanosleep.m4: Likewise.
24658         * m4/putenv.m4: Likewise.
24659         * m4/realloc.m4: Likewise.
24660         * m4/regex.m4: Likewise.
24661         * m4/stat.m4: Likewise.
24662         * m4/strftime.m4: Likewise.
24663
24664 2000-07-02  Jim Meyering  <meyering@lucent.com>
24665
24666         * lib/quotearg.c (mbstate_t): Don't define here.
24667
24668 2000-07-02  Jim Meyering  <meyering@lucent.com>
24669
24670         * lib/nanosleep.c (SIGCONT): Define if not already defined.
24671
24672 2000-07-01  Jim Meyering  <meyering@lucent.com>
24673
24674         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
24675
24676 2000-07-01  Jim Meyering  <meyering@lucent.com>
24677
24678         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
24679         problem.
24680
24681 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24682
24683         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
24684         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
24685
24686 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
24687
24688         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
24689         per change in ../m4/ls-mntd-fs.m4.
24690         (read_filesystem_list): Ignore symbolic links.
24691
24692 2000-06-29  Jim Meyering  <meyering@lucent.com>
24693
24694         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
24695         for declaration of strcmp.
24696
24697         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
24698
24699         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
24700         Avoid warning by casting result to `char *' to remove `const'.
24701
24702 2000-06-28  Jim Meyering  <meyering@lucent.com>
24703
24704         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
24705         included by quotearg.c, for which we perform this test.  From
24706         Bruno Haible.
24707
24708 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24709
24710         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
24711         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
24712         <utmpx.h> exists, put readutmp.o into LIBOBJS.
24713
24714 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
24715
24716         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
24717
24718 2000-06-26  Paul Eggert  <eggert@twinsun.com>
24719
24720         savedir now sets errno on failure and invokes xmalloc to get memory.
24721         Fix a couple of other minor bugs while we're at it.
24722
24723         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
24724         (NAMLEN): Remove macro.
24725         (malloc, realloc): Remove decls.
24726         (stpcpy): Likewise.
24727         ("xalloc.h"): Include.
24728         (NAME_SIZE_DEFAULT): New macro.
24729         (savedir): Use xmalloc / xrealloc to allocate memory.
24730         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
24731         Skip "" directory entries.
24732         Use strlen to calculate directory entry length, since the old method
24733         is rarely used these days and isn't worth supporting.
24734         Don't use a pointer after freeing it.
24735         Check for integer overflow when calculating allocation size.
24736         Use memcpy to copy entries, instead of stpcpy.
24737         Set errno properly when returning NULL.
24738         Check for readdir error.
24739
24740 2000-06-26  Jim Meyering  <meyering@lucent.com>
24741
24742         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
24743
24744 2000-06-25  Jim Meyering  <meyering@lucent.com>
24745
24746         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
24747         Linux header bug when _XOPEN_SOURCE is defined to 500.
24748
24749 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24750
24751         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
24752         deficiency.
24753
24754 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
24755
24756         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
24757         Include xalloc.h.
24758         Don't include <stdlib.h>.  Don't declare malloc, realloc.
24759
24760 2000-06-24  Jim Meyering  <meyering@lucent.com>
24761
24762         * m4/strerror_r.m4: Revive this file -- to try out an experimental
24763         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
24764         for which strerror does return char*, but which lacks a conveniently
24765         accessible declaration of the function.  If the compile-test says
24766         strerror_r doesn't work, then resort to a `run'-test that works on
24767         BeOS and segfaults on DEC Unix.
24768
24769 2000-06-24  Jim Meyering  <meyering@lucent.com>
24770
24771         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
24772
24773 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24774
24775         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
24776         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
24777
24778 2000-06-23  Paul Eggert  <eggert@twinsun.com>
24779
24780         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
24781         (mbrtowc, mbstate_t): Define substitutes if
24782         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
24783         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
24784         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
24785
24786 2000-06-23  Jim Meyering  <meyering@lucent.com>
24787
24788         * m4/afs.m4: Add missing AC_MSG_RESULT.
24789         Reported by Bruno Haible.
24790
24791         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
24792         Suggestion from Bruno Haible.
24793
24794 2000-06-23  Jim Meyering  <meyering@lucent.com>
24795
24796         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
24797
24798 2000-06-21  Jim Meyering  <meyering@lucent.com>
24799
24800         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
24801
24802 2000-06-21  Jim Meyering  <meyering@lucent.com>
24803
24804         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
24805         (noinst_HEADERS): Add getstr.h.
24806
24807         * lib/getline.c (getstr): Move into a separate file.
24808         * lib/getstr.c (getstr): New file, extracted from getline.c, with
24809         the following changes: new parameter, delim2; both delim[12]
24810         parameters have type `int', not `char'.  The latter would lose
24811         with 8-bit delimiters.
24812         * lib/getstr.h: New file.
24813
24814 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24815
24816         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
24817         than 1024, return a memory chunk of least possible size, instead
24818         of size PATH_MAX + 2. In the loop, increment the size proportionally.
24819         Use free/xmalloc instead of xrealloc to avoid copying for very long
24820         paths.
24821
24822 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24823
24824         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
24825         the empty string.
24826
24827 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
24828
24829         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
24830         address, not strdup.  Include <stdlib.h> and don't declare free().
24831
24832 2000-06-19  Jim Meyering  <meyering@lucent.com>
24833
24834         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
24835
24836 2000-06-18  Jim Meyering  <meyering@lucent.com>
24837
24838         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
24839
24840         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
24841         `checking whether...' message to be consistent with that of the
24842         lstat test.
24843
24844 2000-06-18  Jim Meyering  <meyering@lucent.com>
24845
24846         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
24847         Besides, these days every porting target provides a mkdir function.
24848
24849         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
24850         needed. (this snippet comes from src/system.h).
24851
24852 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
24853
24854         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
24855
24856 2000-06-15  Paul Eggert  <eggert@twinsun.com>
24857
24858         * lib/human.c (adjust_value): New function.
24859         (human_readable_inexact): Apply rounding style even when
24860         printing approximate values.
24861
24862 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24863
24864         * lib/human.c (human_readable_inexact): Allow an input block
24865         size that is not a multiple of the output block size, and vice versa.
24866         Reported by Piergiorgio Sartor.
24867
24868 2000-06-14  Paul Eggert  <eggert@twinsun.com>
24869
24870         * lib/getdate.y (get_date): Apply relative times after time
24871         zone indicator, not before.  Reported by Todd A. Jacobs.
24872
24873 2000-06-13  Jim Meyering  <meyering@lucent.com>
24874
24875         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
24876
24877         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
24878
24879 2000-06-12  Paul Eggert  <eggert@twinsun.com>
24880
24881         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
24882
24883 2000-06-12  Jim Meyering  <meyering@lucent.com>
24884
24885         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
24886         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
24887         optional argument.
24888         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
24889         the optional argument, `lib'.
24890
24891 2000-06-08  Jim Meyering  <meyering@lucent.com>
24892
24893         * m4/largefile.m4: Remove file (now that it's part of autoconf).
24894
24895 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24896
24897         Rewrite largefile configuration so that we don't need to run
24898         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
24899         AC_CANONICAL_HOST in configure.in -- jmm]
24900
24901         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
24902         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
24903         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
24904         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
24905         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
24906         All uses changed.
24907         Instead of inspecting the output of getconf, try to compile the
24908         test program without and with the macro definition.
24909         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
24910         for getconf.  Instead, check for the needed flags by compiling
24911         test programs.
24912
24913 2000-06-04  Paul Eggert  <eggert@twinsun.com>
24914
24915         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
24916
24917 2000-06-04  Jim Meyering  <meyering@lucent.com>
24918
24919         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
24920         SunOS 4.1.4 for which gid_t is an unsigned type.
24921
24922 2000-06-03  Jim Meyering  <meyering@lucent.com>
24923
24924         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
24925         now that autoconf requires that.
24926
24927         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
24928         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
24929         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
24930
24931 2000-06-03  Jim Meyering  <meyering@lucent.com>
24932
24933         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
24934
24935 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24936
24937         * m4/glibc21.m4: New file.
24938         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
24939
24940 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
24941
24942         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
24943         newer, don't install charset.alias.
24944         * lib/config.charset: Change the Linux/glibc rules so they become empty
24945         on glibc-2.1 or newer.
24946
24947 2000-06-02  Jim Meyering  <meyering@lucent.com>
24948
24949         * lib/mountlist.c: Back out last change.  Instead, do this...
24950         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
24951         me_dummy member using the same `ignore'-testing code.
24952         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
24953         fs_type strings.
24954         From Mark D. Roth.
24955
24956 2000-05-29  Jim Meyering  <meyering@lucent.com>
24957
24958         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
24959         mounts with the `ignore' attribute.  Based on a patch from
24960         Mark D. Roth.
24961
24962 2000-05-28  Jim Meyering  <meyering@lucent.com>
24963
24964         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
24965         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24966         * m4/stat.m4: Likewise.
24967         * m4/lstat.m4: Likewise.
24968         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
24969
24970         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
24971         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
24972
24973 2000-05-26  Jim Meyering  <meyering@lucent.com>
24974
24975         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
24976
24977 2000-05-24  Jim Meyering  <meyering@lucent.com>
24978
24979         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
24980         autoconf requires that.
24981         * m4/lib-check.m4: Likewise.
24982         * m4/jm-macros.m4: Likewise.
24983         * m4/strftime.m4: Likewise.
24984
24985         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
24986         AC_CHECK_DECLS, now that autoconf requires that.
24987
24988 2000-05-22  Jim Meyering  <meyering@lucent.com>
24989
24990         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
24991         * m4/lstat.m4: Likewise.
24992
24993 2000-05-22  Jim Meyering  <meyering@lucent.com>
24994
24995         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
24996
24997 2000-05-20  Jim Meyering  <meyering@lucent.com>
24998
24999         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
25000         (jm_PREREQ): Use it.
25001
25002 2000-05-18  Jim Meyering  <meyering@lucent.com>
25003
25004         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
25005         back, too, since it may have been modified by allocate_entry.
25006         (hash_delete): Rewrite to use neither the assignment operator
25007         nor the comma operator in an if-expression.
25008
25009 2000-05-15  Paul Eggert  <eggert@twinsun.com>
25010
25011         * lib/closeout.c:
25012         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
25013         Remove; no longer needed.
25014         "quotearg.h": Add include.
25015         (file_name): Do not bother to explicitly initialize to NULL; it's less
25016         efficient on some hosts.
25017         (close_stdout_status): Remove test as to whether stdout was already
25018         closed; it breaks for the case "echo x | sort >&-".
25019         Quote file name colons.
25020         Do not assume that _("write error") lacks format strings.
25021
25022 2000-05-15  Jim Meyering  <meyering@lucent.com>
25023
25024         * lib/version-etc.c (version_etc_copyright): Update the copyright
25025         string used in all --version output.
25026
25027 2000-05-14  Jim Meyering  <meyering@lucent.com>
25028
25029         * lib/closeout.c (close_stdout_set_file_name): New function.
25030         (close_stdout_status): Use new file-scoped global.
25031         Return right away if fstat says the stdout file descriptor is invalid.
25032         * lib/closeout.h (close_stdout_set_file_name): Declare.
25033
25034 2000-05-10  Jim Meyering  <meyering@lucent.com>
25035
25036         * lib/closeout.c [default_exit_status]: New file-scoped variable.
25037         (close_stdout_set_status): New function.
25038         * lib/closeout.h (close_stdout_set_status): Declare.
25039
25040 2000-05-09  Jim Meyering  <meyering@lucent.com>
25041
25042         * m4/gettext.m4: Rename this...
25043         * m4/libintl.m4: ...to this.
25044
25045 2000-05-08  Jim Meyering  <meyering@lucent.com>
25046
25047         * lib/long-options.c: Don't include closeout.h.
25048         (parse_long_options): Don't call close_stdout for --version.
25049
25050 2000-05-06  Paul Eggert  <eggert@twinsun.com>
25051
25052         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
25053         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
25054         2.1.3 bug.  This avoids a clash when files like regex.c define
25055         _GNU_SOURCE.
25056
25057 2000-05-06  Jim Meyering  <meyering@lucent.com>
25058
25059         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
25060         (AC_REPLACE_FUNCS): Add strnlen.
25061
25062         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
25063         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
25064
25065         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
25066         AC_SEARCH_LIBS call for nanosleep.
25067         (LIB_NANOSLEEP): Set and AC_SUBST.
25068
25069 2000-05-06  Jim Meyering  <meyering@lucent.com>
25070
25071         * lib/strnlen.c: Undefine __strnlen and strnlen.
25072         [!weak_alias]: Define __strnlen to strnlen.
25073
25074         * lib/atexit.c: New file, from libiberty.
25075
25076 2000-05-06  Jim Meyering  <meyering@lucent.com>
25077
25078         * lib/closeout.c (close_stdout_status): Also check for errors on the
25079         stderr stream.
25080
25081 2000-05-05  Jim Meyering  <meyering@lucent.com>
25082
25083         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
25084         AC_SEARCH_LIBS call for clock_gettime.
25085         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
25086
25087         * m4/search-libs.m4: Update from autoconf.
25088
25089         su doesn't work on Solaris 2.6.
25090         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
25091         <shadow.h>.  Reported by Dragos Harabor.
25092
25093 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
25094
25095         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
25096         memcpy instead of xmalloc, xrealloc, path_concat.
25097         (locale_charset): Treat empty environment variables as absent.
25098         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
25099
25100 2000-05-04  Jim Meyering  <meyering@lucent.com>
25101
25102         * lib/getopt.c: Update from glibc.
25103         * lib/obstack.c: Likewise.
25104         * lib/obstack.h: Likewise.
25105         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
25106         file
25107
25108         * lib/regex.h: Likewise.
25109         * lib/strndup.c: Likewise.
25110         * lib/strnlen.c: New file, from glibc.
25111
25112 2000-05-03  Jim Meyering  <meyering@lucent.com>
25113
25114         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
25115
25116 2000-05-02  Paul Eggert  <eggert@twinsun.com>
25117
25118         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
25119         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
25120         compile-time test, rather than inspecting host and OS, to
25121         decide whether to define _LARGEFILE_SOURCE.
25122
25123 2000-05-01  Jim Meyering  <meyering@lucent.com>
25124
25125         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
25126
25127         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
25128         Based on a patch from Bruno Haible.
25129
25130 2000-05-01  Jim Meyering  <meyering@lucent.com>
25131
25132         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
25133
25134 2000-04-29  Jim Meyering  <meyering@lucent.com>
25135
25136         * lib/path-concat.c: Declare strdup only if it's not defined.
25137         * lib/canon-host.c: Likewise.
25138
25139 2000-04-28  Jim Meyering  <meyering@lucent.com>
25140
25141         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
25142         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
25143         is included first, then limits.h is included by locale.h by libintl.h.
25144         From John David Anglin.
25145
25146 2000-04-25  Jim Meyering  <meyering@lucent.com>
25147
25148         * lib/makepath.c (S_IRWXUGO): Define.
25149         (make_path): Always perform explicit chmod if MODE specifies any
25150         of the `special' permission bits.  Prompted by a bug report against
25151         install from Mate Wierdl and Joost van Baal.
25152
25153 2000-04-18  Jim Meyering  <meyering@lucent.com>
25154
25155         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
25156         (jm_PREREQ): Use it.
25157
25158 2000-04-18  Jim Meyering  <meyering@lucent.com>
25159
25160         * lib/README: New file.
25161
25162         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
25163         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
25164
25165 2000-04-17  Jim Meyering  <meyering@lucent.com>
25166
25167         Get it right :-)
25168         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
25169         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
25170         Suggestion from Akim Demaille.
25171
25172 2000-04-17  Jim Meyering  <meyering@lucent.com>
25173
25174         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
25175         the definition of it to rpl_strftime also defined-away the system's
25176         declaration.
25177
25178 2000-04-15  Jim Meyering  <meyering@lucent.com>
25179
25180         Use `C' to denote so-called `contiguous' files, the same way
25181         that tar does.
25182         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
25183         (ftypelet): Use S_ISCTG.
25184         From Michael Deutschmann.
25185
25186 2000-04-14  Jim Meyering  <meyering@lucent.com>
25187
25188         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
25189         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
25190         clobbered.
25191
25192 2000-04-14  Jim Meyering  <meyering@lucent.com>
25193
25194         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
25195
25196 2000-04-13  Jim Meyering  <meyering@lucent.com>
25197
25198         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
25199         AH_VERBATIM to insert required #ifndef into config.h.in.
25200         Suggestion from Akim Demaille.
25201
25202 2000-04-12  Jim Meyering  <meyering@lucent.com>
25203
25204         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
25205         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
25206         Christian Krackowizer.
25207
25208         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
25209         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
25210         (AC_SYS_LARGEFILE): Require.
25211         (AM_C_PROTOTYPES): Require.
25212
25213 2000-04-08  Jim Meyering  <meyering@lucent.com>
25214
25215         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
25216         names don't conflict.  Reported by Eli Zaretskii.
25217
25218 2000-04-07  Jim Meyering  <meyering@lucent.com>
25219
25220         * lib/putenv.c: Move inclusion of errno.h so it follows that of
25221         sys/types.h, to work around system header problems on AIX 3.2.5.
25222         From Bruno Haible.
25223
25224 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
25225
25226         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
25227         bug.  Deal with the different error behavior of Irix iconv.
25228
25229 2000-04-05  Paul Eggert  <eggert@twinsun.com>
25230
25231         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
25232         IRIX if the installer said otherwise.
25233
25234 2000-04-05  Jim Meyering  <meyering@lucent.com>
25235
25236         Portability tweaks required for ultrix4.3.
25237         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
25238         (jm_CHECK_DECLS): Add getutent to the list of functions.
25239         (_jm_DECL_HEADERS): Add utmpx.h.
25240         From John David Anglin.
25241
25242         * m4/strftime.m4: Back out the 2000-04-02 change.
25243         Instead of that change, simply undefine putenv in the test program.
25244
25245 2000-04-05  Jim Meyering  <meyering@lucent.com>
25246
25247         Portability tweaks required for ultrix4.3.
25248         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
25249         getutent.
25250         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
25251         * lib/canon-host.c: Declare strdup.
25252         * lib/path-concat.c: Likewise.
25253         From John David Anglin.
25254
25255 2000-04-04  Jim Meyering  <meyering@lucent.com>
25256
25257         Be more DOS 8.3-friendly.
25258         * lib/ref-add.sin: Renamed from ref-add.sed.in.
25259         * lib/ref-del.sin: Renamed from ref-del.sed.in.
25260         * lib/Makefile.am: Reflect renaming.
25261         Reported by Eli Zaretskii.
25262
25263         Use a temporary file name that won't clash with `charset.alias'
25264         in the DOS 8.3 name space.
25265         * lib/Makefile.am (charset_tmp): Define.
25266         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
25267         (uninstall-local): Likewise.
25268         Reported by Eli Zaretskii.
25269
25270 2000-04-03  Jim Meyering  <meyering@lucent.com>
25271
25272         * m4/gettext.m4: Fix typo in comment.
25273
25274         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
25275         textutils/configure.in).  Suggestion from Paul Eggert.
25276         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
25277
25278 2000-04-02  Paul Eggert  <eggert@twinsun.com>
25279
25280         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
25281         variable in the shell rather than using putenv, which isn't
25282         portable.  This avoids the configure-time inter-test dependency
25283         on the potentially-renamed putenv function.
25284
25285 2000-03-30  Paul Eggert  <eggert@twinsun.com>
25286
25287         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
25288         before checking struct stat.st_blksize, so that
25289         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
25290
25291 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25292
25293         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
25294         since strftime.c uses HAVE_STRFTIME to decide whether to use
25295         the underlying strftime.
25296
25297 2000-03-29  Paul Eggert  <eggert@twinsun.com>
25298
25299         * lib/time/strftime.c (my_strftime): Make sure we call the system
25300         strftime, not ourselves, when invoking the underlying strftime.
25301
25302 2000-03-24  Jim Meyering  <meyering@lucent.com>
25303
25304         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
25305         (charset_alias): Define.
25306         (install-exec-local): Factor out common code.
25307         (uninstall-local): Split lines longer than 80.
25308         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
25309         (SUFFIXES): Define.
25310         (.sed.in.sed): New rule.  Don't redirect directly to $@.
25311         (CLEANFILES): Add ref-add.sed and ref-del.sed.
25312
25313 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
25314
25315         * lib/config.charset: Output a line containing "Packages using this
25316         file".
25317         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
25318         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
25319         ref-del.sed): New rules.
25320
25321 2000-03-17  Jim Meyering  <meyering@lucent.com>
25322
25323         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
25324         Otherwise, include <strings.h>
25325
25326 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
25327
25328         * lib/unicodeio.c (utf8_wctomb): New function.
25329         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
25330         format instead of in UCS-4 with platform dependent endianness.
25331
25332 2000-03-10  Jim Meyering  <meyering@lucent.com>
25333
25334         * m4/lib-check.m4: Look for getspnam in -lgen, too.
25335         From Marco Franzen.
25336
25337 2000-03-07  Paul Eggert  <eggert@twinsun.com>
25338
25339         * lib/savedir.c (savedir): Work even if directory size is
25340         negative; this can happen with some screwy NFS configurations.
25341
25342 2000-03-06  Jim Meyering  <meyering@lucent.com>
25343
25344         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
25345         if it's NULL (because we ran out of memory).  From Bruno Haible.
25346
25347 2000-03-05  Jim Meyering  <meyering@lucent.com>
25348
25349         * lib/localcharset.c ("path-concat.h"): Include.
25350         (get_charset_aliases): Use path_concat instead of ANSI string
25351         concatenation.
25352
25353         * lib/unicodeio.h (PARAMS): Define.
25354         Use it to guard prototype.
25355
25356 2000-03-04  Jim Meyering  <meyering@lucent.com>
25357
25358         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
25359         for lib/localcharset.c.
25360
25361 2000-03-04  Jim Meyering  <meyering@lucent.com>
25362
25363         * lib/Makefile.am (install-exec-local): Create $(libdir) before
25364         installing into it.
25365         (uninstall-local): Uncomment this rule so `make distcheck' works
25366         once again.
25367
25368         * lib/unicodeio.c (<errno.h>): Include it.
25369         (errno): Declare if not defined.
25370
25371         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
25372
25373         * lib/config.charset: New version, incorporating remarks from a linux
25374         i18n mailing list.  From Bruno Haible.
25375
25376 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
25377
25378         * m4/codeset.m4: New file.
25379         * m4/iconv.m4: New file.
25380         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
25381
25382 2000-03-03  Jim Meyering  <meyering@lucent.com>
25383
25384         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
25385
25386 2000-03-02  Jim Meyering  <meyering@lucent.com>
25387
25388         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
25389         the messages come out on separate lines.
25390
25391         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
25392         rather than jm_CHECK_DECLARATIONS.
25393         * m4/decl.m4: Remove now-unused file.
25394
25395         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
25396         geteuid.
25397
25398 2000-03-02  Jim Meyering  <meyering@lucent.com>
25399
25400         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
25401
25402 2000-03-01  Jim Meyering  <meyering@lucent.com>
25403
25404         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
25405         * lib/unicodeio.c: Likewise.
25406
25407 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
25408
25409         * lib/config.charset: New file.
25410         * lib/localcharset.c: New file.
25411         * lib/unicodeio.h, lib/unicodeio.c: New files.
25412         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
25413         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
25414         (noinst_HEADERS): Add unicodeio.h.
25415         (all-local, install-exec-local, charset.alias): New targets.
25416
25417 2000-02-28  Paul Eggert  <eggert@twinsun.com>
25418
25419         * lib/quotearg.c (ALERT_CHAR): New macro.
25420         (quotearg_buffer_restyled): Use it.
25421
25422 2000-02-27  Jim Meyering  <meyering@lucent.com>
25423
25424         * m4/check-decl.m4: Add getenv to the list.
25425
25426 2000-02-27  Jim Meyering  <meyering@lucent.com>
25427
25428         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
25429         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
25430
25431         * lib/backupfile.c: Guard inclusion of stdlib.h with
25432         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
25433         Declare malloc if needed.
25434
25435         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
25436         `#ifndef HAVE_DECL..'
25437         now that autoconf always defines the HAVE_DECL_ symbols.
25438         * lib/human.c: Likewise.
25439         * lib/same.c: Likewise.
25440         * lib/strtoumax.c: Likewise.
25441
25442         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
25443         declaration check was not run.
25444         * lib/hash.c: Likewise.
25445         * lib/human.c: Likewise.
25446         * lib/same.c: Likewise.
25447         * lib/strtoumax.c: Likewise.
25448
25449         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
25450         `.', then first look up the entire `.'-containing string as a login
25451         name.
25452
25453 2000-02-23  Jim Meyering  <meyering@lucent.com>
25454
25455         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
25456         in place of my hack.
25457
25458 2000-02-18  Paul Eggert  <eggert@twinsun.com>
25459
25460         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
25461         (textint): New typedef.
25462         (parser_control): Member year changed from int to textint.
25463         All uses changed.
25464         (YYSTYPE): Removed; replaced by %union with int and textint members.
25465         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
25466         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
25467         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
25468         (tSNUMBER, tUNUMBER): Now of type <textintval>.
25469         (date, number, to_year): Use width of number in digits, not its value,
25470         to determine whether it's a 2-digit year, or a 2-digit time.
25471         (yylex): Store number of digits of numeric tokens.
25472         Reported by John Kendall.
25473
25474         (parser_control): Changed from struct parser_control to typedef (for
25475         consistency).  All uses changed.
25476
25477         (tID): Removed; not used.
25478         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
25479
25480 2000-02-14  Paul Eggert  <eggert@twinsun.com>
25481
25482         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
25483         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
25484
25485 2000-02-12  Jim Meyering  <meyering@lucent.com>
25486
25487         * lib/userspec.c (ISDIGIT): Define it.
25488         (isdigit): Remove definition.
25489         (is_number): Use ISDIGIT, not isdigit.
25490         <libintl.h>: Include.
25491         (_ and N_): Define.
25492         (parse_user_spec): Mark translatable strings.
25493
25494 2000-02-10  Jim Meyering  <meyering@lucent.com>
25495
25496         With these changes, nanosleep.[ch] are finally enough like the other
25497         lib/* replacement files to compile on a few more losing systems.
25498
25499         * lib/nanosleep.h: Don't include config.h.
25500         Remove prototype from declaration of nanosleep.
25501         (PARAMS): Remove now-unneeded definition.
25502         * lib/nanosleep.c: #undef nanosleep.
25503         (rpl_nanosleep): Rename from nanosleep.
25504
25505 2000-02-10  Jim Meyering  <meyering@lucent.com>
25506
25507         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
25508         gnu_nanosleep to rpl_nanosleep.
25509
25510 2000-02-09  Jim Meyering  <meyering@lucent.com>
25511
25512         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
25513         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
25514
25515 2000-02-08  Akim Demaille  <akim@epita.fr>
25516
25517         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
25518         `[' and `]' and remove uses of `changequote'.
25519         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
25520         (AC_SYS_LARGEFILE): Likewise.
25521         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
25522         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
25523         of changequote.
25524         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
25525         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
25526         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
25527         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
25528
25529 2000-02-05  Jim Meyering  <meyering@lucent.com>
25530
25531         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
25532         Remove explicit use of AC_HEADER_TIME.  It is required by
25533         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
25534         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
25535         in autoconf whereby the expansion of the latter ended up preceding
25536         the expansion of its prerequisite, AC_HEADER_TIME.
25537         Reported by Volker Borchert.
25538
25539 2000-02-03  Jim Meyering  <meyering@lucent.com>
25540
25541         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
25542
25543 2000-02-03  Jim Meyering  <meyering@lucent.com>
25544
25545         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
25546         rather than with `#if HAVE_UTMPNAME'.
25547
25548 2000-02-02  Jim Meyering  <meyering@lucent.com>
25549
25550         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
25551         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
25552         Reported by Eli Zaretskii.
25553
25554 2000-02-01  Jim Meyering  <meyering@lucent.com>
25555
25556         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
25557
25558 2000-01-31  Jim Meyering  <meyering@lucent.com>
25559
25560         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
25561         functions.  Add the time.h and sys/time.h headers along with the
25562         AC_REQUIRE'ment of AC_HEADER_TIME.
25563
25564 2000-01-31  Jim Meyering  <meyering@lucent.com>
25565
25566         * lib/nanosleep.h (nanosleep): Guard declaration with
25567         `#if ! HAVE_DECL_NANOSLEEP'.
25568         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
25569         the declaration in that vendor's sys/timers.h.
25570         Reported by Christian Krackowizer.
25571
25572         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
25573         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
25574         (ISPRINT): Likewise.
25575         Reported by Tom Tromey.
25576
25577 2000-01-30  Jim Meyering  <meyering@lucent.com>
25578
25579         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
25580
25581         * m4/prereq.m4 (utmp_includes): Define.
25582         Check for ut_user and ut_name members in both struct utmpx
25583         and struct utmp.
25584
25585 2000-01-30  Jim Meyering  <meyering@lucent.com>
25586
25587         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
25588         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
25589         header files where only utmpx.ut_user is declared.
25590
25591         * lib/readutmp.h (UT_USER): Define.
25592
25593 2000-01-29  Jim Meyering  <meyering@lucent.com>
25594
25595         * m4/lib-check.m4: New file containing library-related checks from
25596         fileutils and sh-utils (textutils had none).
25597
25598 2000-01-28  Jim Meyering  <meyering@lucent.com>
25599
25600         * m4/perl.m4: Change format of warning message to look more like that
25601         from the missing script.  Suggestion from François Pinard.
25602
25603 2000-01-25  Jim Meyering  <meyering@lucent.com>
25604
25605         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
25606         well as time.h in the compile check.
25607         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
25608         Fix typo in cross-compiling case: s/yes/no/.
25609
25610 2000-01-23  Jim Meyering  <meyering@lucent.com>
25611
25612         * m4/jm-macros.m4: Move df-related tests here from
25613         fileutils/configure.in
25614
25615         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
25616         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
25617
25618         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
25619         s/space/ac_fsusage_space/.
25620         (jm_FILE_SYSTEM_USAGE): Take two parameters.
25621
25622         * m4/ftruncate.m4: New file (derived from part of
25623         fileutils/configure.in).
25624         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
25625         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
25626
25627         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
25628         AC_SUBST these here, rather than just in sh-util/configure.in, so
25629         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
25630         all the same.
25631         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
25632         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
25633         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
25634         (AC_SUBST(POW_LIBM)): Likewise.
25635         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
25636
25637 2000-01-23  Jim Meyering  <meyering@lucent.com>
25638
25639         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
25640         obstack.c.
25641
25642 2000-01-22  Jim Meyering  <meyering@lucent.com>
25643
25644         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
25645
25646         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
25647
25648         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
25649         configure.in
25650         (AC_CHECK_HEADERS): Likewise for sh-utils.
25651         (AC_CHECK_HEADERS): Likewise for textutils.
25652         Merge the three lists of headers.
25653
25654         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
25655         from fileutils' configure.in.
25656
25657         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
25658         code. Moved tests into their own function (_jm_DECL_HEADERS) in
25659         check-decl.m4.
25660
25661         * m4/check-decl.m4: Use #if rather than #ifdef.
25662         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
25663         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
25664         (_jm_DECL_HEADERS): Define new function.
25665         (jm_CHECK_DECLARATIONS): Require it.
25666
25667 2000-01-22  Jim Meyering  <meyering@lucent.com>
25668
25669         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
25670         [! HAVE_DECL_STRTOULL]: Declare strtoull.
25671         Required for some AIX systems.  Reported by Christian Krackowizer.
25672         [TESTING] (main): New function.
25673
25674         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
25675         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
25676         letters.
25677
25678         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
25679         iswprint.
25680
25681         * lib/strverscmp.c (ISDIGIT): Define.
25682         (strverscmp): Use ISDIGIT, not isdigit.
25683
25684 2000-01-19  Jim Meyering  <meyering@lucent.com>
25685
25686         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
25687         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
25688         defines `struct timespec' in <sys/time.h>
25689
25690         * m4/c-bs-a.m4: Remove uses of changequote altogether.
25691         Thanks to Akim for explaining.
25692
25693 2000-01-17  Paul Eggert  <eggert@twinsun.com>
25694
25695         * lib/nanosleep.c (nanosleep):
25696         Don't use SA_INTERRUPT to decide whether to call sigaction, as
25697         POSIX.1 doesn't require SA_INTERRUPT and some systems
25698         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
25699         it's been part of POSIX.1 since day 1 (in 1988).
25700
25701 2000-01-17  Jim Meyering  <meyering@lucent.com>
25702
25703         * lib/interlock: Remove unused file.  Reported by François Pinard.
25704
25705 2000-01-16  Paul Eggert  <eggert@twinsun.com>
25706
25707         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
25708         alert, backslash, formfeed, and vertical tab unnecessarily in
25709         shell quoting style.
25710
25711 2000-01-16  Jim Meyering  <meyering@lucent.com>
25712
25713         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
25714         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
25715         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
25716         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
25717
25718 2000-01-16  Jim Meyering  <meyering@lucent.com>
25719
25720         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
25721         because the latter didn't work.
25722
25723 2000-01-15  Jim Meyering  <meyering@lucent.com>
25724
25725         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
25726         (AC_REPLACE_FUNCS): Add memcpy and memset.
25727         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
25728         Add strpbrk.
25729         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
25730
25731 2000-01-12  Jim Meyering  <meyering@lucent.com>
25732
25733         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
25734         (jm_PREREQ): Use it.
25735         (jm_PREREQ_READUTMP): New macro.
25736         (jm_PREREQ): Use it.
25737
25738 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25739
25740         Quote multibyte characters correctly.
25741         * m4/c-bs-a.m4: New file.
25742         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
25743         (jm_PREREQ): Use it.
25744
25745 2000-01-11  Paul Eggert  <eggert@twinsun.com>
25746
25747         * m4/uintmax_t.m4: Port to autoconf 2.13.
25748
25749 2000-01-08  Jim Meyering  <meyering@ascend.com>
25750
25751         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
25752         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
25753
25754 2000-01-04  Jim Meyering  <meyering@ascend.com>
25755
25756         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
25757         jm_STRUCT_DIRENT_D_TYPE.
25758         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
25759         jm_STRUCT_DIRENT_D_INO.
25760         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
25761         jm_STRUCT_UTIMBUF.
25762         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
25763         renamings.
25764         * m4/utime.m4: Likewise.
25765
25766         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
25767         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
25768
25769 2000-01-03  Paul Eggert  <eggert@twinsun.com>
25770
25771         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
25772         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
25773
25774 2000-01-02  Jim Meyering  <meyering@ascend.com>
25775
25776         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
25777         remember if this is necessary.
25778
25779 1999-12-26  Jim Meyering  <meyering@ascend.com>
25780
25781         * m4/jm-macros.m4: Use it here.
25782         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
25783
25784 1999-12-23  Jim Meyering  <meyering@ascend.com>
25785
25786         * m4/jm-macros.m4: Check for clock_gettime (moved from
25787         fileutils/configure.in)
25788         Check for gettimeofday.
25789
25790 1999-12-20  Jim Meyering  <meyering@ascend.com>
25791
25792         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
25793         autoconf-2.14a-1999-12-20.
25794
25795 1999-12-19  Jim Meyering  <meyering@ascend.com>
25796
25797         * m4/lstat-slash.m4: New file.
25798         * m4/jm-macros.m4: Use the new macro:
25799         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
25800
25801 1999-12-07  Jim Meyering  <meyering@ascend.com>
25802
25803         * m4/perl.m4: Require that File::Compare be available, too.
25804         Too many systems seem to lack it.
25805
25806         * m4/strftime.m4: Add checks for most of the cpp macros tested in
25807         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
25808
25809 1999-11-18  Paul Eggert  <eggert@twinsun.com>
25810
25811         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
25812         problem with the QNX 4.25 shell, which doesn't propagate exit
25813         status of failed commands inside shell assignments.
25814
25815 1999-11-17  Jim Meyering  <meyering@ascend.com>
25816
25817         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
25818
25819 1999-11-07  Jim Meyering  <meyering@ascend.com>
25820
25821         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
25822
25823 1999-11-06  Jim Meyering  <meyering@ascend.com>
25824
25825         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
25826         * m4/jm-macros.m4 (jm_MACROS): Use it here.
25827
25828 1999-11-05  Jim Meyering  <meyering@ascend.com>
25829
25830         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
25831         configure.in of textutils, fileutils, and sh-utils into this one
25832         (shared between those packages) file.
25833         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
25834         AC_STRUCT_ST_BLKSIZE.
25835
25836 1999-11-03  Jim Meyering  <meyering@ascend.com>
25837
25838         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
25839         of AC_CHECK_TYPE checks includes unistd.h.
25840         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
25841         Suggestion from Akim Demaille.
25842
25843 1999-10-30  Jim Meyering  <meyering@ascend.com>
25844
25845         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
25846         m4-quoted string.
25847         * m4/ls-mntd-fs.m4: Likewise.
25848         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
25849         * m4/jm-winsz1.m4: Likewise.
25850
25851         * m4/const.m4: Remove file, since the fix made it into the experimental
25852         version of autoconf.
25853         * m4/mktime.m4: Likewise.
25854
25855         * m4/check-type.m4: Remove file, now that the latest version of
25856         AC_CHECK_TYPE takes a third arg to specify additional #includes.
25857
25858         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
25859         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
25860         AC_CHECK_TYPE.
25861
25862 1999-10-04  Jim Meyering  <meyering@ascend.com>
25863
25864         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
25865
25866 1999-09-22  Paul Eggert  <eggert@twinsun.com>
25867
25868         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
25869         2.95.1 bug with HP-UX 10.20.
25870
25871 1999-09-17  Jim Meyering  <meyering@ascend.com>
25872
25873         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
25874         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
25875         due to missing strdup (against sh-utils-2.0).
25876
25877 1999-08-29  Jim Meyering  <meyering@ascend.com>
25878
25879         * m4/jm-macros.m4: Require jm_BISON.
25880         * m4/bison.m4: New file.
25881
25882 1999-08-17  Paul Eggert  <eggert@twinsun.com>
25883
25884         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
25885         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
25886
25887 1999-08-05  Jim Meyering  <meyering@ascend.com>
25888
25889         * m4/getline.m4: Rename test file from conftestdata to conftest.data
25890         to avoid conflicts with `conftest' on 8+3 filesystems.
25891         Suggestion from Eli Zaretskii.
25892
25893 1999-08-04  Jim Meyering  <meyering@ascend.com>
25894
25895         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
25896         fileutils and sh-utils (textutils's getline test was inadequate).
25897         (AM_FUNC_GETLINE): Run this test.
25898         (AC_CHECK_FUNCS): Check for getdelim.
25899         Reported by Bob Proulx.
25900
25901 1999-08-02  Jim Meyering  <meyering@ascend.com>
25902
25903         * m4/jm-macros.m4: Add a comment.
25904
25905 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25906
25907         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
25908         <inttypes.h> defines strtoumax as a macro (and not as a
25909         function).
25910
25911 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25912
25913         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
25914         that we can shift, multiply and divide unsigned long long
25915         values; Ultrix cc can't do it.
25916
25917 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25918
25919         * m4/mktime.m4: New file, which is a preview of what should appear
25920         in the next public autoconf release.
25921
25922 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25923
25924         * m4/lfs.m4: Remove this file.
25925         * m4/largefile.m4: New file.  It contains the old contents of
25926         lfs.m4, except that all names with prefix AC_LFS have been
25927         changed to use the prefix AC_SYS_LARGEFILE instead, to be
25928         compatible with future autoconf versions.  Also, some minor m4
25929         quoting problems have been fixed.
25930
25931 1999-08-01  Paul Eggert  <eggert@twinsun.com>
25932
25933         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
25934         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
25935         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
25936         and simplify the shell code.
25937
25938 1999-08-01  Jim Meyering  <meyering@ascend.com>
25939
25940         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
25941         m4.
25942
25943 1999-07-20  Jim Meyering  <meyering@ascend.com>
25944
25945         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
25946
25947 1999-07-15  Jim Meyering  <meyering@ascend.com>
25948
25949         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
25950
25951 1999-05-22  Jim Meyering  <meyering@ascend.com>
25952
25953         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
25954
25955 1999-05-20  Jim Meyering  <meyering@ascend.com>
25956
25957         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
25958         Add a colon after each `then' in case $4 is empty.
25959
25960 1999-05-16  Jim Meyering  <meyering@ascend.com>
25961
25962         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
25963
25964 1999-05-10  Jim Meyering  <meyering@ascend.com>
25965
25966         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
25967
25968         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
25969         AC_FUNC_MKTIME.
25970
25971 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
25972
25973         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
25974
25975 1999-05-04  Paul Eggert  <eggert@twinsun.com>
25976
25977         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
25978         not CPPFLAGS, so that linking works correctly in IRIX.
25979
25980 1999-04-30  Paul Eggert  <eggert@twinsun.com>
25981
25982         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
25983
25984 1999-04-20  Paul Eggert  <eggert@twinsun.com>
25985
25986         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
25987         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
25988         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
25989         jm_AC_TYPE_UNSIGNED_LONG_LONG.
25990         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
25991
25992         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
25993
25994 1999-04-20  Jim Meyering  <meyering@ascend.com>
25995
25996         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
25997         AC_REPLACE xstroull if necessary.  From Paul Eggert.
25998         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
25999
26000 1999-04-18  Jim Meyering  <meyering@ascend.com>
26001
26002         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
26003         * m4/jm-macros.m4: Use it.
26004
26005 1999-04-06  Jim Meyering  <meyering@ascend.com>
26006
26007         * m4/strftime.m4: Remove test for %f.
26008
26009 1999-03-29  Jim Meyering  <meyering@ascend.com>
26010
26011         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
26012         superset of the AC_TYPE_* checks in the textutils, fileutils,
26013         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
26014         AC_TYPE_PID_T.
26015
26016 1999-03-28  Jim Meyering  <meyering@ascend.com>
26017
26018         * m4/jm-macros.m4: Define GNU_PACKAGE here.
26019         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
26020         replaced e.g., in the *.sh files of the sh-utils.
26021
26022 1999-03-20  Jim Meyering  <meyering@ascend.com>
26023
26024         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
26025         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
26026         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
26027
26028 1999-03-19  Jim Meyering  <meyering@ascend.com>
26029
26030         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
26031
26032 1999-03-12  Jim Meyering  <meyering@ascend.com>
26033
26034         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
26035
26036 1999-03-07  Jim Meyering  <meyering@ascend.com>
26037
26038         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
26039         declared.
26040
26041 1999-02-17  Jim Meyering  <meyering@ascend.com>
26042
26043         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
26044         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
26045
26046 1999-02-07  Jim Meyering  <meyering@ascend.com>
26047
26048         * m4/group-member.m4: New file -- extracted from sh-utils'
26049         configure.in.
26050
26051         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
26052         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
26053
26054 1999-02-06  Jim Meyering  <meyering@ascend.com>
26055
26056         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
26057         * m4/fnmatch.m4: Likewise.
26058         * m4/getgroups.m4: Likewise.
26059         * m4/lstat.m4: Likewise.
26060         * m4/malloc.m4: Likewise.
26061         * m4/putenv.m4: Likewise.
26062         * m4/realloc.m4: Likewise.
26063         * m4/regex.m4: Likewise.
26064         * m4/stat.m4: Likewise.
26065         * m4/strftime.m4: Likewise.
26066         Suggestion from Alain Magloire.
26067
26068         * m4/chown.m4: Use `.$ac_objext', not `.o'.
26069         * m4/fnmatch.m4: Likewise.
26070         * m4/getgroups.m4: Likewise.
26071         * m4/getline.m4: Likewise.
26072         * m4/lstat.m4: Likewise.
26073         * m4/malloc.m4: Likewise.
26074         * m4/memcmp.m4: Likewise.
26075         * m4/putenv.m4: Likewise.
26076         * m4/realloc.m4: Likewise.
26077         * m4/regex.m4: Likewise.
26078         * m4/stat.m4: Likewise.
26079         * m4/strftime.m4: Likewise.
26080         Suggestion from Alain Magloire.
26081
26082         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
26083         an argument.
26084
26085         * m4/regex.m4: Add a run-time Test for proper operation of
26086         re_compile_pattern.
26087
26088 1999-01-31  Jim Meyering  <meyering@ascend.com>
26089
26090         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
26091
26092 1999-01-30  Jim Meyering  <meyering@ascend.com>
26093
26094         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
26095
26096         * m4/jm-mktime.m4: Make this a wrapper around the official
26097         AM_FUNC_MKTIME rather than my private copy, now that the official one
26098         is up to date.
26099         * m4/mktime.m4: Remove file.
26100
26101         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
26102         * m4/uptime.m4: Likewise.
26103         * m4/uintmax_t.m4: Likewise.
26104
26105 1999-01-28  Jim Meyering  <meyering@ascend.com>
26106
26107         * m4/jm-macros.m4: Use jm_AFS.
26108         * m4/afs.m4: New file (from fileutils' configure.in).
26109
26110         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
26111         * m4/chown.m4: Likewise.
26112         * m4/d-ino.m4: Likewise.
26113         * m4/d-type.m4: Likewise.
26114         * m4/fnmatch.m4: Likewise.
26115         * m4/getgroups.m4: Likewise.
26116         * m4/gettext.m4: Likewise.
26117         * m4/jm-mktime.m4: Likewise.
26118         * m4/jm-winsz2.m4: Likewise.
26119         * m4/lcmessage.m4: Likewise.
26120         * m4/ls-mntd-fs.m4: Likewise.
26121         * m4/malloc.m4: Likewise.
26122         * m4/memcmp.m4: Likewise.
26123         * m4/putenv.m4: Likewise.
26124         * m4/realloc.m4: Likewise.
26125         * m4/st_mtim.m4: Likewise.
26126         * m4/strftime.m4: Likewise.
26127
26128 1999-01-16  Jim Meyering  <meyering@ascend.com>
26129
26130         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
26131         (ARGMATCH_DIE_DECL): Define.
26132
26133 1999-01-12  Jim Meyering  <meyering@ascend.com>
26134
26135         * m4/Makefile.am.in: Rewrite to avoid using fmt.
26136         Reported by Lars Hecking.
26137
26138 1999-01-10  Jim Meyering  <meyering@ascend.com>
26139
26140         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
26141         gross kludge.
26142         * m4/inttypes_h.m4: Likewise.
26143         * m4/lstat.m4: Likewise.
26144         * m4/malloc.m4: Likewise.
26145         * m4/readdir.m4: Likewise.
26146         * m4/realloc.m4: Likewise.
26147         * m4/st_dm_mode.m4: Likewise.
26148         * m4/stat.m4: Likewise.
26149         * m4/utimbuf.m4: Likewise.
26150         * m4/utimes.m4: Likewise.
26151
26152         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
26153         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
26154         comments in config.h.in are meaningful.
26155
26156         * m4/jm-macros.m4: Require autoconf-2.13 here.
26157
26158         * m4/regex.m4: By default, don't use the included regex.c on systems
26159         with glibc 2.  Suggestion from Uli Drepper.
26160
26161 1999-01-02  Jim Meyering  <meyering@ascend.com>
26162
26163         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
26164
26165 1998-12-18  Jim Meyering  <meyering@ascend.com>
26166
26167         * m4/Makefile.am.in (Makefile.am): Simplify rule.
26168         Based on a suggestion from Lars Hecking.
26169
26170 1998-11-16  Paul Eggert  <eggert@twinsun.com>
26171
26172         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
26173
26174 1998-11-16  Jim Meyering  <meyering@ascend.com>
26175
26176         * m4/lfs.m4: Double-quote the `uname...` expression.
26177
26178 1998-11-14  Jim Meyering  <meyering@ascend.com>
26179
26180         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
26181         * m4/stat.m4: Likewise.
26182
26183 1998-11-03  Jim Meyering  <meyering@ascend.com>
26184
26185         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
26186         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
26187
26188 1998-10-18  Jim Meyering  <meyering@ascend.com>
26189
26190         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
26191
26192 1998-10-17  Jim Meyering  <meyering@ascend.com>
26193
26194         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
26195         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
26196         calls for those previously hard-coded headers.  Instead, take a new
26197         parameter.
26198         (jm_CHECK_DECLARATIONS): Reflect interface change.
26199         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
26200         (jm_CHECK_DECL_LOCALTIME_R): New macro.
26201
26202         * m4/mktime.m4: Test for spring-forward gap before long-running test.
26203
26204 1998-10-14  Jim Meyering  <meyering@ascend.com>
26205
26206         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
26207         instead of "TZ=America/Vancouver".  From Paul Eggert.
26208
26209 1998-10-11  Jim Meyering  <meyering@ascend.com>
26210
26211         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
26212         This adds a test for a recently added compatibility fix for mktime.c.
26213         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
26214
26215 1998-09-27  Jim Meyering  <meyering@ascend.com>
26216
26217         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
26218
26219         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
26220         ../configure.in, including a change from Gordon Matzigkeit to allow
26221         cross-compiling for the Hurd.
26222
26223         * m4/glibc.m4: New file/macro to test for the GNU C Library
26224         versions 1 and 2.  From Gordon Matzigkeit.
26225         Indent.
26226
26227 1998-09-21  Jim Meyering  <meyering@ascend.com>
26228
26229         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
26230
26231 1998-08-18  Paul Eggert  <eggert@twinsun.com>
26232
26233         Port nanosecond-resolution times to UnixWare 2.1.2 and
26234         pedantic Solaris 2.6.
26235
26236         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
26237         AC_STRUCT_ST_MTIM.
26238         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
26239         Generate name of ns member, instead of just 1 or undef.
26240         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
26241
26242 1998-08-15  Jim Meyering  <meyering@ascend.com>
26243
26244         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
26245         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
26246         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
26247         instead of jm_TYPE_SSIZE_T.
26248
26249 1998-08-12  Jim Meyering  <meyering@ascend.com>
26250
26251         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
26252
26253 1998-08-02  Jim Meyering  <meyering@ascend.com>
26254
26255         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
26256         in acconfig.h manually.
26257
26258 1998-07-31  Paul Eggert  <eggert@twinsun.com>
26259
26260         * m4/st_mtim.m4: New file.
26261
26262 1998-07-28  Jim Meyering  <meyering@ascend.com>
26263
26264         * m4/utimes.m4: Undef stat.
26265
26266 1998-07-25  Jim Meyering  <meyering@ascend.com>
26267
26268         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
26269         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
26270
26271 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
26272
26273         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
26274         uid and gid actually remain unchanged.
26275
26276 1998-07-07  Jim Meyering  <meyering@ascend.com>
26277
26278         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
26279
26280 1998-07-04  Jim Meyering  <meyering@ascend.com>
26281
26282         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
26283         to prove that this macro can be used in packages without regex.c.
26284
26285 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
26286
26287         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
26288         is to be used.
26289
26290 1998-07-03  Jim Meyering  <meyering@ascend.com>
26291
26292         * m4/gettext.m4: Add -lintl if it's found to be necessary.
26293
26294         * m4/gettext.m4: New file -- from gettext-0.10.35.
26295         * m4/lcmessage.m4: Likewise.
26296         * m4/progtest.m4: Likewise.
26297
26298         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
26299         * m4/jm-macros.m4: Require the new macro.
26300
26301 1998-06-29  Jim Meyering  <meyering@ascend.com>
26302
26303         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
26304         for the definition of NGROUPS (used in a system header included
26305         by sys/mount.h).
26306
26307 1998-06-28  Jim Meyering  <meyering@ascend.com>
26308
26309         * m4/ls-mntd-fs.m4: New file.
26310         * m4/fstypename.m4: New file.
26311
26312         * m4/jm-macros.m4: Require the new macro.
26313         * m4/jm-glibc-io.m4: New file.
26314
26315 1998-05-19  Jim Meyering  <meyering@ascend.com>
26316
26317         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
26318         * m4/lchown.m4: New file.
26319
26320         * m4/Makefile.am.in: New file.
26321         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
26322
26323 1998-05-14  Jim Meyering  <meyering@ascend.com>
26324
26325         * m4/Makefile.am (EXTRA_DIST): Add them.
26326         * m4/jm-macros.m4: New file.
26327         * m4/utimbuf.m4: New file.
26328
26329 1998-05-12  Jim Meyering  <meyering@ascend.com>
26330
26331         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
26332
26333 1998-05-11  Jim Meyering  <meyering@ascend.com>
26334
26335         * m4/isc-posix.m4: New file.
26336
26337 1998-05-10  Jim Meyering  <meyering@ascend.com>
26338
26339         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
26340
26341 1998-05-09  Jim Meyering  <meyering@ascend.com>
26342
26343         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
26344         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
26345         with automake.
26346
26347         * m4/ssize_t.m4: New file.
26348         * m4/mktime.m4: Remove file -- the new automake has this now.
26349
26350 1998-04-26  Jim Meyering  <meyering@ascend.com>
26351
26352         * m4/assert.m4: New file.
26353         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
26354
26355 1998-04-05  Jim Meyering  <meyering@ascend.com>
26356
26357         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
26358         (jm_PREREQ): Use it here.
26359
26360 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
26361
26362         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
26363         in acconfig.h.
26364
26365 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
26366
26367         * m4/prereq.m4: New file.
26368         * m4/error.m4: New file.
26369         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
26370
26371 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
26372
26373         * m4/getline.m4: Don't set am_cv_func_working_getline before the
26374         cache-check for the same variable -- that defeated the purpose of
26375         the test; the test program was never run.  This was a problem only
26376         on systems with losing getline functions -- HP-UX 10.20 is one.
26377         Reported by Bjorn Helgaas.
26378
26379 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
26380
26381         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
26382
26383 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
26384
26385         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
26386
26387         * m4/const.m4: New file.  Use an initializer in this declaration
26388         typedef int charset[2]; const charset x;
26389         Reported by Bob Glickstein.
26390
26391 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
26392
26393         * m4/chown.m4: Fix reversed types on -1 args to chown.
26394         From Kaveh Ghazi.
26395
26396 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
26397
26398         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
26399         Add lseek and memchr.
26400
26401         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
26402         T.E.Dickey <dickey@clark.net> said that some older preprocessors
26403         have a 20-character limit on names.
26404
26405 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
26406
26407         * m4/inttypes_h.m4: New file.
26408         * m4/uintmax_t.m4: New file.
26409         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
26410
26411 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
26412   Free Software Foundation, Inc.
26413 Copying and distribution of this file, with or without modification,
26414 are permitted provided the copyright notice and this notice are preserved.