f7aa7381e0c1e5b15f906704a9ecc431b44d4a9a
[gnulib.git] / ChangeLog
1 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
2
3         Minor fixups to port to Solaris 10 with Sun C 5.8.
4         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
5         * modules/getcwd (Depends-on): Add dirfd.
6         * lib/putenv.c (putenv): #undef it.
7         (rpl_putenv): New decl.
8         (malloc, free): Include <stdlib.h> rather than prototyping separately.
9
10 2007-02-20  Bruno Haible  <bruno@clisp.org>
11
12         * modules/stdio-tests: New file.
13         * tests/test-stdio.c: New file.
14
15         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
16         (Depends-on): Add stdio.
17         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
18         (Include): Use <stdio.h> instead of vsnprintf.h.
19         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
20         HAVE_DECL_VSNPRINTF.
21         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
22
23         * modules/snprintf (Files): Remove lib/snprintf.h.
24         (Depends-on): Add stdio.
25         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
26         (Include): Use <stdio.h> instead of snprintf.h.
27         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
28         HAVE_DECL_SNPRINTF.
29         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
30         * lib/getaddrinfo.c: Likewise.
31
32         * modules/stdio: New file.
33         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
34         * lib/snprintf.h: Remove file.
35         * lib/vsnprintf.h: Remove file.
36         * lib/.cppi-disable: Remove snprintf.h.
37         * m4/stdio_h.m4: New file.
38         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
39
40 2007-02-20  Jim Meyering  <jim@meyering.net>
41
42         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
43         used by e.g., mingw.  From Bruno Haible.
44
45 2007-02-19  Bruno Haible  <bruno@clisp.org>
46
47         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
48         warnings.
49         Reported by Ben Pfaff <blp@cs.stanford.edu>.
50
51 2007-02-19  Bruno Haible  <bruno@clisp.org>
52
53         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
54         from mingw users.
55
56 2007-02-19  Bruno Haible  <bruno@clisp.org>
57
58         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
59         warnings.
60         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
61
62 2007-02-19  Jim Meyering  <jim@meyering.net>
63
64         Don't use FD after a successful "fdopendir (fd)".
65         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
66         Reset it by calling dirfd on the just-obtained DIR*.
67
68         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
69         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
70
71 2007-02-18  Bruno Haible  <bruno@clisp.org>
72
73         * lib/readlink.c: Include <unistd.h>.
74         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
75         HAVE_READLINK.
76         * modules/readlink (Depends-on): Add unistd.
77         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
78         (Include): Add <unistd.h>.
79
80         * lib/getlogin_r.h: Remove file.
81         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
82         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
83         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
84         HAVE_DECL_GETLOGIN_R.
85         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
86         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
87         (Include): Use <unistd.h> instead of getlogin_r.h.
88
89         * lib/getcwd.h: Remove file.
90         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
91         * lib/xgetcwd.c: Likewise.
92         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
93         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
94         * modules/getcwd (Files): Remove lib/getcwd.h.
95         (Depends-on): Add unistd.
96         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
97         (Include): Use <unistd.h> instad of getcwd.h.
98
99         * lib/ftruncate.c: Include <unistd.h> first.
100         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
101         Set HAVE_FTRUNCATE.
102         * modules/ftruncate (Depends-on): Add unistd.
103         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
104
105         * lib/fchdir.c: Include <unistd.h> first.
106         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
107         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
108         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
109         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
110         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
111
112         * lib/dup2.c: Include <unistd.h> first.
113         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
114         HAVE_DUP2.
115         * modules/dup2 (Depends-on): Add unistd.
116         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
117
118         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
119         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
120         REPLACE_CHOWN. Don't define chown as a macro here.
121         * modules/chown (Depends-on): Add unistd.
122         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
123
124         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
125         Add definition for GL_LINK_WARNING.
126         (chown, dup2): New declarations.
127         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
128         link warning.
129         (ftruncate): New declaration.
130         (getcwd): New declaration, taken from old getcwd.h.
131         (getlogin_r): New declaration, taken from old getlogin_r.h.
132         (readlink): New declaration.
133         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
134         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
135         (gl_PREREQ_UNISTD): Remove macro.
136         (gl_UNISTD_MODULE_INDICATOR): New macro.
137         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
138         many new variables. Don't set UNISTD_H.
139         * modules/unistd (Description): Change.
140         (Depends-on): Add link-warning.
141         (configure.ac): Update.
142         (Makefile.am): Create unistd.h always. Substitute many new variables
143         into it.
144
145 2007-02-18  Bruno Haible  <bruno@clisp.org>
146
147         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
148         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
149         HAVE_GETSUBOPT.
150         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
151         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
152         * lib/getsubopt.h: Remove file.
153         * modules/getsubopt (Files): Remove lib/getsubopt.h.
154         (Depends-on): Add stdlib.
155         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
156         (Includes): Use <stdlib.h> instead of getsubopt.h.
157         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
158         Set HAVE_GETSUBOPT.
159         * lib/getsubopt.c: Don't include getsubopt.h.
160
161 2007-02-18  Bruno Haible  <bruno@clisp.org>
162
163         * modules/fchdir (Depends-on): Add dup2.
164
165 2007-02-18  Bruno Haible  <bruno@clisp.org>
166
167         * lib/stdlib_.h: Handle glibc's special invocation convention
168         specially.
169
170 2007-02-18  Bruno Haible  <bruno@clisp.org>
171
172         * modules/stdlib-tests: New file.
173         * tests/test-stdlib.c: New file.
174
175         * modules/mkstemp (Files): Remove lib/mkstemp.h.
176         (Depends-on): Add stdlib.
177         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
178         (Includes): Use <stdlib.h> instead of mkstemp.h.
179         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
180         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
181         * lib/mkstemp.c: Don't include mkstemp.h.
182         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
183         * lib/stdlib--.h: Don't include mkstemp.h.
184
185         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
186         (Depends-on): Add stdlib.
187         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
188         (Includes): Use <stdlib.h> instead of mkdtemp.h.
189         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
190         HAVE_MKDTEMP.
191         * lib/mkdtemp.c: Don't include mkdtemp.h.
192         * lib/clean-temp.c: Don't include mkdtemp.h.
193
194         * modules/exit (Files): Remove lib/exit.h.
195         (Depends-on): Add stdlib.
196         (Makefile.am): Remove lib_SOURCES.
197         (Include): Use <stdlib.h> instead of exit.h.
198         * lib/argmatch.c: Don't include exit.h.
199         * lib/execute.c: Likewise.
200         * lib/pagealign_alloc.c: Likewise.
201         * lib/pipe.c: Likewise.
202         * lib/wait-process.c: Likewise.
203         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
204         * lib/exitfail.c: Likewise.
205         * lib/savewd.c: Likewise.
206         * lib/xsetenv.c: Likewise.
207
208         * modules/stdlib: New file.
209         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
210         and extra comments about mkstemp().
211         * lib/exit.h: Remove file.
212         * lib/mkdtemp.h: Remove file.
213         * lib/mkstemp.h: Remove file.
214         * m4/stdlib_h.m4: New file.
215         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
216
217 2007-02-18  Bruno Haible  <bruno@clisp.org>
218
219         * modules/math-tests: New file.
220         * tests/test-math.c: New file.
221
222         * modules/math: New file.
223         * modules/mathl (Files): Remove lib/mathl.h.
224         (Depends-on): Add math.
225         (Makefile.am): Don't mention mathl.h.
226         (Include): Use <math.h> instead of mathl.h.
227         * lib/math_.h: New file.
228         * lib/mathl.h: Remove file.
229         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
230         mathl.h.
231         * lib/asinl.c: Likewise.
232         * lib/atanl.c: Likewise.
233         * lib/ceill.c: Likewise.
234         * lib/cosl.c: Likewise.
235         * lib/expl.c: Likewise.
236         * lib/floorl.c: Likewise.
237         * lib/frexpl.c: Likewise.
238         * lib/ldexpl.c: Likewise.
239         * lib/logl.c: Likewise.
240         * lib/sincosl.c: Likewise.
241         * lib/sinl.c: Likewise.
242         * lib/sqrtl.c: Likewise.
243         * lib/tanl.c: Likewise.
244         * lib/trigl.c: Likewise.
245         * m4/math_h.m4: New file.
246         * MODULES.html.sh (Mathematics): Add math.
247
248 2007-02-17  Bruno Haible  <bruno@clisp.org>
249
250         * modules/wctype-tests: New file.
251         * tests/test-wctype.c: New file.
252
253         * modules/wchar-tests: New file.
254         * tests/test-wchar.c: New file.
255
256         * modules/unistd-tests: New file.
257         * tests/test-unistd.c: New file.
258
259         * modules/time-tests: New file.
260         * tests/test-time.c: New file.
261
262         * modules/sysexits-tests: New file.
263         * tests/test-sysexits.c: New file.
264
265         * modules/sys_time-tests: New file.
266         * tests/test-sys_time.c: New file.
267
268         * modules/sys_stat-tests: New file.
269         * tests/test-sys_stat.c: New file.
270
271         * modules/sys_socket-tests: New file.
272         * tests/test-sys_socket.c: New file.
273
274         * modules/sys_select-tests: New file.
275         * tests/test-sys_select.c: New file.
276
277         * modules/string-tests: New file.
278         * tests/test-string.c: New file.
279
280         * modules/stdbool-tests: New file.
281         * tests/test-stdbool.c: New file.
282
283         * modules/netinet_in-tests: New file.
284         * tests/test-netinet_in.c: New file.
285
286         * modules/inttypes-tests: New file.
287         * tests/test-inttypes.c: New file.
288
289         * modules/fcntl-tests: New file.
290         * tests/test-fcntl.c: New file.
291
292         * modules/byteswap-tests: New file.
293         * tests/test-byteswap.c: New file.
294
295         * modules/arpa_inet-tests: New file.
296         * tests/test-arpa_inet.c: New file.
297
298 2007-02-17  Bruno Haible  <bruno@clisp.org>
299
300         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
301         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
302         if the corresponding module is not enabled. Emit link warnings if
303         the function is used nevertheless.
304         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
305         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
306         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
307         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
308         * modules/inttypes (Depends-on): Add link-warning.
309         (Makefile.am): Copy the contents of build-aux/link-warning.h into
310         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
311         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
312         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
313         * modules/imaxdiv (configure.ac): Likewise.
314         * modules/strtoimax (configure.ac): Likewise.
315         * modules/strtoumax (configure.ac): Likewise.
316
317 2007-02-17  Bruno Haible  <bruno@clisp.org>
318
319         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
320         gl_STRING_MODULE_INDICATOR_DEFAULTS.
321         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
322         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
323
324 2007-02-17  Bruno Haible  <bruno@clisp.org>
325
326         * modules/link-warning: New file.
327         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
328         * lib/string_.h (GL_LINK_WARNING): Remove definition.
329         * modules/string (Depends-on): Add link-warning.
330         (Makefile.am): Copy the contents of build-aux/link-warning.h into
331         string.h.
332         * MODULES.html.sh (Support for building libraries and executables): Add
333         link-warning.
334
335 2007-02-17  Bruno Haible  <bruno@clisp.org>
336
337         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
338         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
339         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
340         long lines.
341
342 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
343             Bruno Haible  <bruno@clisp.org>
344
345         * modules/tmpfile: New file.
346         * lib/tmpfile.c: New file.
347         * m4/tmpfile.m4: New file.
348         * MODULES.html.sh (func_all_modules): New section "Input/output".
349
350 2007-02-15  Bruno Haible  <bruno@clisp.org>
351
352         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
353         (supports_delete_on_close): New function.
354         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
355
356 2007-02-14  Bruno Haible  <bruno@clisp.org>
357
358         * modules/mbspcasecmp-tests: New file.
359         * tests/test-mbspcasecmp.sh: New file.
360         * tests/test-mbspcasecmp.c: New file.
361
362         New module mbspcasecmp.
363         * modules/mbspcasecmp: New file.
364         * lib/mbspcasecmp.c: New file.
365         * lib/string_.h (strncasecmp): Change warning message.
366         (mbspcasecmp): New declaration.
367         * m4/mbspcasecmp.m4: New file.
368         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
369         GNULIB_MBSPCASECMP.
370         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
371         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
372
373 2007-02-14  Bruno Haible  <bruno@clisp.org>
374
375         * modules/mbsncasecmp-tests: New file.
376         * tests/test-mbsncasecmp.sh: New file.
377         * tests/test-mbsncasecmp.c: New file.
378
379         New module mbsncasecmp.
380         * modules/mbsncasecmp: New file.
381         * lib/mbsncasecmp.c: New file.
382         * lib/string_.h (mbsncasecmp): New declaration.
383         * m4/mbsncasecmp.m4: New file.
384         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
385         GNULIB_MBSNCASECMP.
386         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
387         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
388
389 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
390
391         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
392         Verify that it doesn't overlap with our flags.
393         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
394         do not have the desired effect in multibyte locales; instead, use
395         mbscasecmp.
396         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
397         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
398         we don't require GNU fnmatch ourselves (if our users require it, they
399         should do so explicitly).
400
401         Fix regex code so it doesn't rely on strcasecmp.
402         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
403         Otherwise, include gnulib's langinfo.h.
404         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
405         undesirable behavior in non-C locales.  Instead, rely on localecharset.
406         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
407         * modules/regex (FILES): Remove m4/codeset.m4.
408         (Depends-on): Add localcharset.  Remove strcase.
409
410 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
411
412         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
413         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
414
415 2007-02-13  Bruno Haible  <bruno@clisp.org>
416
417         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
418         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
419
420 2007-02-12  Bruno Haible  <bruno@clisp.org>
421
422         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
423         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
424         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
425         time warning rather than a link error.
426
427 2007-02-12  Bruno Haible  <bruno@clisp.org>
428
429         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
430         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
431         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
432
433 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
434
435         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
436         args, not 2.
437
438 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
439
440         New module 'time', so that apps can include <time.h> as per
441         POSIX and GNU instead of separate include files like time_r.h
442         and timegm.h.  This implementation tries out a simpler approach
443         for replacing decls in standard include files (as compared to
444         the string module), somewhat as an experiment.
445
446         * config/srclist.txt: Comment out mktime.c for now.
447         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
448         since it doesn't apply any more.  Use generic wording instead.
449         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
450         'time'.
451         * lib/time_.h, m4/time_h.m4, modules/time: New files.
452         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
453         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
454         Don't include <sys/types.h>; no longer needed since we assume C89.
455         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
456         * lib/strftime.c: Likewise.
457         * lib/time_r.c: Likewise.
458         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
459         * lib/nanosleep.c: Include <time.h> first, to check interface.
460         * lib/strptime.c: Likewise.
461         * lib/time_r.c: Likewise.
462         * lib/timegm.c: Likewise.
463         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
464         needed.
465         * lib/timegm.c: Don't include timegm.h; no longer needed.
466         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
467         time.h now handles any problems in that area.
468         (struct timespec, nanosleep): Remove; time.h now arranges for these.
469         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
470         that time.h defines struct timespec.
471         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
472         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
473         handles that.
474         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
475         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
476         needed.  Set REPLACE_LOCALTIME.
477         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
478         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
479         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
480         nanosleep; time_h.m4 now does that.  Don't require
481         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
482         module handles this now.
483         * modules/getdate (Depends-on): Remove timespec.  Add time.
484         * modules/nanosleep (Depends-on): Likewise.
485         * modules/stat-time (Depends-on): Likewise.
486         * modules/nanosleep (Include): Include time.h, not timespec.h.
487         * modules/strptime (Files): Remove lib/strptime.h.
488         (Depends-on): Add extensions, time.
489         (Include): Include time.h, not strptime.h.
490         * modules/time_r (Files): Remove lib/time_r.h.
491         (Depends-on): Add time.
492         (Include): Include time.h, not time_r.h.
493         * modules/timegm: Likewise.
494         * modules/timespec (Description): Now does timespec-related decls
495         of our own, instead of struct timespec itself.
496         (Depends-on): Add time; remove extensions.
497         (Maintainer): Add self.
498         * modules/utimecmp (Depends-on): Add time; remove timespec.
499         * modules/utimens (Depends-on): Likewise.
500         * modules/xnanosleep (Depends-on): Likewise.
501
502 2007-02-11  Bruno Haible  <bruno@clisp.org>
503
504         * lib/c-strstr.c: Include allocsa.h.
505         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
506         * lib/c-strcasestr.c: Include allocsa.h.
507         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
508         * lib/strcasestr.c: Include allocsa.h.
509         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
510         * lib/mbsstr.c: Include allocsa.h.
511         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
512         allocsa/freesa instead of malloc/free.
513         * lib/mbscasestr.c: Include allocsa.h.
514         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
515         allocsa/freesa instead of malloc/free.
516         * modules/c-strstr (Depends-on): Add allocsa.
517         * modules/c-strcasestr (Depends-on): Likewise.
518         * modules/strcasestr (Depends-on): Likewise.
519         * modules/mbsstr (Depends-on): Likewise.
520         * modules/mbscasestr (Depends-on): Likewise.
521
522 2007-02-11  Bruno Haible  <bruno@clisp.org>
523
524         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
525
526         * modules/mbsspn-tests: New file.
527         * tests/test-mbsspn.sh: New file.
528         * tests/test-mbsspn.c: New file.
529
530 2007-02-11  Bruno Haible  <bruno@clisp.org>
531
532         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
533
534         * modules/mbspbrk-tests: New file.
535         * tests/test-mbspbrk.sh: New file.
536         * tests/test-mbspbrk.c: New file.
537
538 2007-02-11  Bruno Haible  <bruno@clisp.org>
539
540         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
541         unneeded cast.
542
543         * modules/mbscspn-tests: New file.
544         * tests/test-mbscspn.sh: New file.
545         * tests/test-mbscspn.c: New file.
546
547 2007-02-11  Bruno Haible  <bruno@clisp.org>
548
549         * modules/mbscasecmp-tests: New file.
550         * tests/test-mbscasecmp.sh: New file.
551         * tests/test-mbscasecmp.c: New file.
552
553 2007-02-11  Bruno Haible  <bruno@clisp.org>
554
555         Ensure O(n) worst-case complexity of mbscasestr.
556         * lib/mbscasestr.c: Include stdbool.h.
557         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
558         functions.
559         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
560         the bookkeeping indicates that it's worth it.
561         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
562
563         * modules/mbscasestr-tests: New file.
564         * tests/test-mbscasestr1.c: New file.
565         * tests/test-mbscasestr2.sh: New file.
566         * tests/test-mbscasestr2.c: New file.
567         * tests/test-mbscasestr3.sh: New file.
568         * tests/test-mbscasestr3.c: New file.
569         * tests/test-mbscasestr4.sh: New file.
570         * tests/test-mbscasestr4.c: New file.
571         * m4/locale-tr.m4: New file.
572
573 2007-02-11  Bruno Haible  <bruno@clisp.org>
574
575         Ensure O(n) worst-case complexity of mbsstr.
576         * lib/mbsstr.c: Include stdbool.h.
577         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
578         functions.
579         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
580         bookkeeping indicates that it's worth it.
581         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
582
583         * modules/mbsstr-tests: New file.
584         * tests/test-mbsstr1.c: New file.
585         * tests/test-mbsstr2.sh: New file.
586         * tests/test-mbsstr2.c: New file.
587         * tests/test-mbsstr3.sh: New file.
588         * tests/test-mbsstr3.c: New file.
589         * m4/locale-fr.m4: New file.
590
591 2007-02-11  Bruno Haible  <bruno@clisp.org>
592
593         * lib/mbsrchr.c (mbsrchr): Fix bug.
594
595         * modules/mbsrchr-tests: New file.
596         * tests/test-mbsrchr.sh: New file.
597         * tests/test-mbsrchr.c: New file.
598
599 2007-02-11  Bruno Haible  <bruno@clisp.org>
600
601         * lib/mbschr.c (mbschr): Fix bug.
602
603         * modules/mbschr-tests: New file.
604         * tests/test-mbschr.sh: New file.
605         * tests/test-mbschr.c: New file.
606         * m4/locale-zh.m4: New file.
607
608 2007-02-11  Bruno Haible  <bruno@clisp.org>
609
610         Support for copying multibyte string iterators.
611         * lib/mbiter.h: Include <string.h>.
612         (mbiter_multi_copy): New function.
613         (mbi_copy): New macro.
614         * lib/mbuiter.h: Include <string.h>.
615         (mbuiter_multi_copy): New function.
616         (mbui_copy): New macro.
617
618 2007-02-11  Bruno Haible  <bruno@clisp.org>
619
620         New module mbslen.
621         * modules/mbslen: New file.
622         * lib/mbslen.c: New file.
623         * lib/string_.h (mbslen): New declaration.
624         * m4/mbslen.m4: New file.
625         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
626         GNULIB_MBSLEN.
627         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
628         * MODULES.html.sh (Internationalization functions): Add mbslen.
629
630 2007-02-11  Bruno Haible  <bruno@clisp.org>
631
632         Ensure O(n) worst-case complexity of strcasestr substitute.
633         * lib/strcasestr.c: Include stdbool.h.
634         (knuth_morris_pratt): New function.
635         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
636         bookkeeping indicates that it's worth it.
637         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
638
639         * modules/strcasestr-tests: New file.
640         * tests/test-strcasestr.c: New file.
641
642 2007-02-11  Bruno Haible  <bruno@clisp.org>
643
644         Ensure O(n) worst-case complexity of c_strcasestr.
645         * lib/c-strcasestr.c: Include stdbool.h, string.h.
646         (knuth_morris_pratt): New function.
647         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
648         the bookkeeping indicates that it's worth it.
649         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
650
651         * modules/c-strcasestr-tests: New file.
652         * tests/test-c-strcasestr.c: New file.
653
654 2007-02-11  Bruno Haible  <bruno@clisp.org>
655
656         Ensure O(n) worst-case complexity of c_strstr.
657         * lib/c-strstr.c: Include stdbool.h, string.h.
658         (knuth_morris_pratt): New function.
659         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
660         bookkeeping indicates that it's worth it.
661         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
662
663         * lib/c-strstr.c: Complete rewrite for maintainability.
664
665         * modules/c-strstr-tests: New file.
666         * tests/test-c-strstr.c: New file.
667
668 2007-02-11  Bruno Haible  <bruno@clisp.org>
669
670         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
671         5.2.1 and earlier, whereby \055 was treated just like the range
672         delimiter '-'.
673         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
674
675 2007-02-08  Bruno Haible  <bruno@clisp.org>
676
677         * modules/regex (Depends-on): Add stdbool.
678         Reported by Dalibor Topic <robilad@kaffe.org>.
679
680 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
681
682         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
683         Prefer returning from main to exiting from it.
684         Remove unnecessary parens after sizeof.
685
686 2007-02-05  Bruno Haible  <bruno@clisp.org>
687
688         New module mbssep.
689         * modules/mbssep: New file.
690         * lib/mbssep.c: New file.
691         * lib/string_.h (strsep): Add a conditional link warning.
692         (mbssep): New declaration.
693         * m4/mbssep.m4: New file.
694         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
695         GNULIB_MBSSEP.
696         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
697         * MODULES.html.sh (Internationalization functions): Add mbssep.
698
699 2007-02-05  Bruno Haible  <bruno@clisp.org>
700
701         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
702         Optimize search in case of 1 delimiter.
703
704 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
705
706         * lib/acl.h: Include sys/types.h before sys/acl.h.
707
708 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
709
710         Merge upstream fix for glibc bugzilla #3957:
711
712         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
713
714         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
715         bit for RE_HAT_LISTS_NOT_NEWLINE.
716         (build_charclass_op): Remove bogus comment.
717
718 2007-02-05  Simon Josefsson  <simon@josefsson.org>
719
720         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
721
722 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
723
724         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
725         * lib/memmem.c [!defined _LIBC]: Include config.h.
726
727 2007-02-04  Bruno Haible  <bruno@clisp.org>
728
729         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
730         warning message.
731
732 2007-02-04  Bruno Haible  <bruno@clisp.org>
733
734         New module mbstok_r.
735         * modules/mbstok_r: New file.
736         * lib/mbstok_r.c: New file.
737         * lib/string_.h (strtok_r): Change argument names to match the
738         comments. Add a conditional link warning.
739         (mbstok_r): New declaration.
740         * m4/mbstok_r.m4: New file.
741         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
742         GNULIB_MBSTOK_R.
743         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
744         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
745
746 2007-02-04  Bruno Haible  <bruno@clisp.org>
747
748         New module mbsspn.
749         * modules/mbsspn: New file.
750         * lib/mbsspn.c: New file.
751         * lib/string_.h (strspn): Add a conditional link warning.
752         (mbsspn): New declaration.
753         * m4/mbsspn.m4: New file.
754         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
755         GNULIB_MBSSPN.
756         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
757         * MODULES.html.sh (Internationalization functions): Add mbsspn.
758
759 2007-02-04  Bruno Haible  <bruno@clisp.org>
760
761         New module mbspbrk.
762         * modules/mbspbrk: New file.
763         * lib/mbspbrk.c: New file.
764         * lib/string_.h (strpbrk): Add a conditional link warning.
765         (mbspbrk): New declaration.
766         * m4/mbspbrk.m4: New file.
767         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
768         GNULIB_MBSPBRK.
769         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
770         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
771
772 2007-02-04  Bruno Haible  <bruno@clisp.org>
773
774         New module mbscspn.
775         * modules/mbscspn: New file.
776         * lib/mbscspn.c: New file.
777         * lib/string_.h (strcspn): Add a conditional link warning.
778         (mbscspn): New declaration.
779         * m4/mbscspn.m4: New file.
780         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
781         GNULIB_MBSCSPN.
782         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
783         * MODULES.html.sh (Internationalization functions): Add mbscspn.
784
785 2007-02-04  Bruno Haible  <bruno@clisp.org>
786
787         New module mbscasestr, reduced goal of strcasestr.
788         * modules/mbscasestr: New file.
789         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
790         (mbscasestr): Renamed from strcasestr.
791         * lib/strcasestr.c: Don't include mbuiter.h.
792         (strcasestr): Remove support for multibyte locales.
793         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
794         Change the conditional link warning.
795         (mbscasestr): New declaration.
796         * m4/mbscasestr.m4: New file.
797         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
798         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
799         REPLACE_STRCASESTR.
800         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
801         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
802         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
803         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
804         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
805         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
806         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
807         (Depends-on): Remove mbuiter.
808         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
809
810 2007-02-04  Bruno Haible  <bruno@clisp.org>
811
812         Simplify handling of strncasecmp.
813         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
814         the conditional link warning.
815         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
816         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
817         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
818         * modules/strcase (configure.ac): Don't invoke
819         gl_STRING_MODULE_INDICATOR.
820         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
821
822 2007-02-04  Bruno Haible  <bruno@clisp.org>
823
824         New module mbscasecmp, reduced goal of strcasecmp.
825         * modules/mbscasecmp: New file.
826         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
827         (mbscasecmp): Renamed from strcasecmp.
828         * lib/strcasecmp.c: Don't include mbuiter.h.
829         (strcasecmp): Remove support for multibyte locales.
830         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
831         Change the conditional link warning.
832         (mbscasecmp): New declaration.
833         * m4/mbscasecmp.m4: New file.
834         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
835         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
836         REPLACE_STRCASECMP.
837         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
838         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
839         GNULIB_MBSCASECMP.
840         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
841         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
842         * modules/strcase (Files): Remove m4/mbrtowc.m4.
843         (Depends-on): Remove mbuiter.
844         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
845
846 2007-02-04  Bruno Haible  <bruno@clisp.org>
847
848         New module mbsstr. Remove module strstr.
849         * modules/mbsstr: New file.
850         * modules/strstr: Remove file.
851         * lib/mbsstr.c: Renamed from lib/strstr.c.
852         (mbsstr): Renamed from strstr.
853         * lib/string_.h (strstr): Remove declaration. Change the conditional
854         link warning.
855         (mbsstr): New declaration.
856         * m4/mbsstr.m4: New file.
857         * m4/strstr.m4: Remove file.
858         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
859         REPLACE_STRSTR.
860         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
861         Don't initialize GNULIB_STRSTR.
862         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
863         substitute GNULIB_STRSTR and REPLACE_STRSTR.
864         * MODULES.html.sh (Internationalization functions): Add mbsstr.
865         (Support for systems lacking ANSI C 89): Remove strstr.
866
867 2007-02-04  Bruno Haible  <bruno@clisp.org>
868
869         New module mbsrchr.
870         * modules/mbsrchr: New file.
871         * lib/mbsrchr.c: New file.
872         * lib/string_.h (strrchr): Add a conditional link warning.
873         (mbsrchr): New declaration.
874         * m4/mbsrchr.m4: New file.
875         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
876         GNULIB_MBSRCHR.
877         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
878         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
879
880 2007-02-04  Bruno Haible  <bruno@clisp.org>
881
882         New module mbschr.
883         * modules/mbschr: New file.
884         * lib/mbschr.c: New file.
885         * lib/string_.h (strchr): Add a conditional link warning.
886         (mbschr): New declaration.
887         * m4/mbschr.m4: New file.
888         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
889         GNULIB_MBSCHR.
890         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
891         * MODULES.html.sh (Internationalization functions): Add mbschr.
892
893 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
894
895         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
896
897         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
898
899 2007-02-04  Bruno Haible  <bruno@clisp.org>
900
901         New module description section 'configure.ac-early'.
902         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
903         (func_get_autoconf_early_snippet): New function.
904         (func_import, func_create_testdir): Use it. Remove special cases for
905         modules 'extensions' and 'lock'.
906         * modules/extensions (configure.ac-early): Require
907         gl_USE_SYSTEM_EXTENSIONS.
908         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
909
910 2007-02-04  Bruno Haible  <bruno@clisp.org>
911
912         Make use of gcj-4.3's -fsource and -ftarget option.
913         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
914         and if so try the options -fsource and -ftarget.
915         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
916         source_version, ftarget_option, target_version arguments.
917         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
918         (is_envjavac_oldgcj_14_14_usable): Renamed from
919         is_envjavac_gcj_14_14_usable.
920         (is_envjavac_oldgcj_14_13_usable): Renamed from
921         is_envjavac_gcj_14_13_usable.
922         (is_gcj_present): Update.
923         (is_gcj_43, is_gcj43_usable): New functions.
924         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
925         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
926         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
927         try the options -fsource and -ftarget.
928
929 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
930
931         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
932         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
933         larger value.
934
935 2007-02-03  Jim Meyering  <jim@meyering.net>
936
937         Give tools a better chance to allocate space for very large buffers.
938         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
939
940         Make pwd and readlink work also when run with an unreadable parent dir
941         on systems with openat support.
942         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
943         provided getcwd function, even when we have openat support.
944         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
945
946 2007-02-02  Bruno Haible  <bruno@clisp.org>
947
948         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
949         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
950         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
951         portability problems if one of these functions is only used on specific
952         platforms.
953         Reported by Paul Eggert.
954
955 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
956
957         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
958         is causing more trouble than it's curing.
959         * lib/regex_internal.h (__mempcpy): Remove.
960         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
961         (and make the code a tad smaller to boot).
962         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
963
964 2007-02-02  Jim Meyering  <jim@meyering.net>
965
966         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
967         section, not in the Makefile.am: one.
968
969 2007-02-02  Eric Blake  <ebb9@byu.net>
970
971         * lib/strchrnul.c: Always include config.h first.
972
973         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
974         gnulib strstr is not necessary here.
975
976 2007-02-02  Simon Josefsson  <simon@josefsson.org>
977
978         * m4/socklen.m4: Fix typo.
979
980 2007-02-02  Eric Blake  <ebb9@byu.net>
981
982         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
983         * modules/netinet_in (Makefile.am): Likewise.
984
985 2007-02-01  Bruno Haible  <bruno@clisp.org>
986
987         * lib/string_.h (GL_LINK_WARNING): New macro.
988         (strcasecmp, strstr, strcasestr): If provided by the system,
989         conditionally define as a macro that leads to a warning instead of to
990         an error.
991         (strncasecmp): Conditionally define as a macro that leads to a warning.
992
993 2007-02-01  Jim Meyering  <jim@meyering.net>
994
995         Give tools a better chance to allocate space for very large buffers.
996         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
997
998 2007-02-01  Karl Berry  <karl@gnu.org>
999
1000         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
1001
1002 2007-02-01  Bruno Haible  <bruno@clisp.org>
1003
1004         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
1005         renamings.
1006
1007 2007-02-01  Eric Blake  <ebb9@byu.net>
1008
1009         * modules/regex (Depends-on): Revert dependence on mempcpy.
1010         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
1011         module's definition of mempcpy.
1012         Reported by Paul Eggert.
1013
1014 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
1015
1016         * lib/string_.h: If the gnulib module XYZ is not present, undefine
1017         the symbol XYZ before redefining it.  This fixes a problem with
1018         programs that don't use XYZ, when compiled on systems that define
1019         XYZ to something else.
1020
1021 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
1022
1023         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
1024         occurs when "mkdir -m foo" creates a setgid directory that is (1)
1025         writeable to group or other and (2) is intended to have a special
1026         mode bit that is set or cleared.  In such a case, the directory
1027         should be neither group- nor other-writeable until the special
1028         mode bits are right.
1029
1030 2007-01-31  Eric Blake  <ebb9@byu.net>
1031
1032         * modules/mountlist (Depends-on): Add strstr.
1033
1034         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
1035         bug.
1036         * modules/string (Makefile.am): Remove redundant replacement.
1037         * modules/regex (Depends-on): Add mempcpy.
1038
1039 2007-01-31  Bruno Haible  <bruno@clisp.org>
1040
1041         New module description field 'Link'.
1042         * gnulib-tool (func_usage): Document --extract-link-directive.
1043         (sed_extract_prog): Recognize 'Link' directive.
1044         (func_get_link_directive): New function.
1045         (func_import): Show summary of link directives.
1046         Handle --extract-link-directive option.
1047         * modules/acl (Link): New section.
1048         * modules/clock-time (Link): New section.
1049         * modules/euidaccess (Link): New section.
1050         * modules/gettext (Link): New section.
1051         * modules/iconv (Link): New section.
1052         * modules/lock (Link): New section.
1053         * modules/nanosleep (Link): New section.
1054         * modules/readline (Link): New section.
1055
1056 2007-01-27  Bruno Haible  <bruno@clisp.org>
1057
1058         Enforce the use of gnulib modules for unportable <string.h> functions.
1059         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
1060         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
1061         (gl_HEADER_STRING_H_BODY): Require it.
1062         * lib/string_.h: If the gnulib module XYZ is not present, redefine
1063         the symbol XYZ to one that gives a link error.
1064         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
1065         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
1066         * modules/mempcpy (configure.ac): Likewise.
1067         * modules/memrchr (configure.ac): Likewise.
1068         * modules/stpcpy (configure.ac): Likewise.
1069         * modules/stpncpy (configure.ac): Likewise.
1070         * modules/strcase (configure.ac): Likewise.
1071         * modules/strcasestr (configure.ac): Likewise.
1072         * modules/strchrnul (configure.ac): Likewise.
1073         * modules/strdup (configure.ac): Likewise.
1074         * modules/strndup (configure.ac): Likewise.
1075         * modules/strnlen (configure.ac): Likewise.
1076         * modules/strpbrk (configure.ac): Likewise.
1077         * modules/strsep (configure.ac): Likewise.
1078         * modules/strstr (configure.ac): Likewise.
1079         * modules/strtok_r (configure.ac): Likewise.
1080
1081 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
1082
1083         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
1084
1085 2007-01-30  Jim Meyering  <jim@meyering.net>
1086
1087         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
1088
1089 2007-01-29  Bruno Haible  <bruno@clisp.org>
1090
1091         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
1092         * lib/execute.c: Likewise.
1093         * lib/pipe.c: Likewise.
1094         * lib/printf-args.h: Likewise.
1095         * lib/printf-args.c: Likewise.
1096         * lib/printf-parse.c: Likewise.
1097         * lib/vasnprintf.c: Likewise.
1098
1099 2007-01-29  Eric Blake  <ebb9@byu.net>
1100
1101         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
1102         declaration.
1103
1104 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
1105
1106         * lib/strptime.h (strptime): Use 'restrict' for args where
1107         POSIX requires this.
1108         * lib/strptime.c (strptime): Likewise.
1109         Change license notice from LGPL to GPL, since gnulib-tool will
1110         change this as needed.
1111         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
1112         defined.
1113         Include "strptime.h" first, to check interface.
1114         Do not #undef _LIBC and _NL_CURRENT.
1115         Do not include <stdlib.h>; no longer needed.
1116         Include "time_r.h" and declare ptime_locale_status
1117         only if _LIBC is not defined.
1118         (__P): Remove unused macro.
1119         (match_string): Bring back glibc version, but use it only if _LIBC
1120         is defined.
1121         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
1122         Remove unnecessary assertion and abort() call.
1123         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
1124         * m4/strptime.m4: Fix serial number comment.
1125         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
1126         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
1127         (Depends-on): Add time_r.
1128
1129 2007-01-29  Bruno Haible  <bruno@clisp.org>
1130
1131         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
1132         strptime.
1133         * modules/strptime (Depends-on): Add stdbool.
1134         * lib/strptime.h: Include <time.h> always. Add comments.
1135
1136 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
1137
1138         * modules/strptime: New file.
1139         * lib/strptime.h: New file.
1140         * lib/strptime.c: New file.
1141         * m4/strptime.m4: New file.
1142
1143 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
1144
1145         * MODULES.html.sh: New module mpsort.
1146         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
1147
1148         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
1149         a circularity problem with HP-UX ia64 reported by Bob Proulx in
1150         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
1151         All uses changed.
1152         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
1153         All uses changed.
1154         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
1155         to _Restrict_.
1156         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
1157         the parameter matches the prototype.
1158
1159 2007-01-28  Jim Meyering  <jim@meyering.net>
1160
1161         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
1162         sys/time.h here, reverting that part of the previous patch:
1163         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
1164
1165 2007-01-28  Bruno Haible  <bruno@clisp.org>
1166
1167         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
1168         value of $(SYS_TIME_H).
1169         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
1170         remove it conditionally, too. [added by Jim Meyering]
1171         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
1172         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
1173         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
1174         GETTIMEOFDAY_REPLACEMENT to 1.
1175
1176 2007-01-28  Bruno Haible  <bruno@clisp.org>
1177
1178         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
1179         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
1180         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
1181         Set UNISTD_H instead of UNISTD_H2.
1182         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
1183
1184 2007-01-28  Bruno Haible  <bruno@clisp.org>
1185
1186         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
1187         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
1188
1189 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1190
1191         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
1192         (func_create_testdir): Ensure C locale for `grep' and `tr'
1193         character ranges.
1194         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
1195         ACLOCAL_AMFLAGS parsing state machine.
1196
1197 2007-01-27  Bruno Haible  <bruno@clisp.org>
1198
1199         * modules/unistr/base: Update.
1200
1201 2007-01-27  Bruno Haible  <bruno@clisp.org>
1202
1203         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
1204         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
1205         * modules/unistr/u32-mbtouc-unsafe: Renamed from
1206         modules/unistr/u32-mbtouc.
1207         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
1208         * lib/unistr.h: Update.
1209         * lib/linebreak.c: Update.
1210         * modules/unistr/u32-mbtouc: Renamed from
1211         modules/unistr/u32-mbtouc-safe.
1212         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
1213         * lib/unistr.h: Update.
1214         * lib/unistr/u32-to-u8.c: Update.
1215         * lib/unistr/u32-to-u16.c: Update.
1216
1217 2007-01-27  Bruno Haible  <bruno@clisp.org>
1218
1219         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
1220         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
1221         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
1222         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
1223         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
1224         * modules/unistr/u16-mbtouc-unsafe: Renamed from
1225         modules/unistr/u16-mbtouc.
1226         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
1227         * lib/unistr.h: Update.
1228         * lib/linebreak.c: Update.
1229         * modules/linebreak: Update.
1230         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
1231         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
1232         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
1233         * modules/unistr/u16-mbtouc: Renamed from
1234         modules/unistr/u16-mbtouc-safe.
1235         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
1236         * lib/unistr.h: Update.
1237         * lib/unistr/u16-to-u8.c: Update.
1238         * modules/unistr/u16-to-u8: Update.
1239         * lib/unistr/u16-to-u32.c: Update.
1240         * modules/unistr/u16-to-u32: Update.
1241
1242 2007-01-27  Bruno Haible  <bruno@clisp.org>
1243
1244         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
1245         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
1246         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
1247         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
1248         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
1249         * modules/unistr/u8-mbtouc-unsafe: Renamed from
1250         modules/unistr/u8-mbtouc.
1251         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
1252         * lib/unistr.h: Update.
1253         * lib/striconveh.c: Update.
1254         * modules/striconveh: Update.
1255         * lib/linebreak.c: Update.
1256         * modules/linebreak: Update.
1257         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
1258         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
1259         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
1260         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
1261         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
1262         * lib/unistr.h: Update.
1263         * lib/striconveh.c: Update.
1264         * modules/striconveh: Update.
1265         * lib/unistr/u8-to-u16.c: Update.
1266         * modules/unistr/u8-to-u16: Update.
1267         * lib/unistr/u8-to-u32.c: Update.
1268         * modules/unistr/u8-to-u32: Update.
1269
1270 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1271
1272         Sync from Libtool.
1273         * lib/argz.c: Do not include strings.h nor memory.h, include
1274         string.h unconditionally.  Patch by Simon Josefsson.
1275
1276 2007-01-27  Bruno Haible  <bruno@clisp.org>
1277
1278         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
1279         from gl_HEADER_STRING_H_BODY.
1280         (gl_HEADER_STRING_H_BODY): Require it.
1281         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
1282         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
1283         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
1284         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
1285         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
1286         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
1287         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
1288         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
1289         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
1290         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
1291         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
1292         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
1293         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
1294         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
1295         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
1296
1297 2007-01-27  Bruno Haible  <bruno@clisp.org>
1298
1299         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
1300         check_PROGRAMS into noinst_PROGRAMS.
1301         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
1302         check_PROGRAMS in this case.
1303         (func_import): Set for_test to false.
1304         (func_create_testdir): Set for_test to true.
1305
1306 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1307             Bruno Haible  <bruno@clisp.org>
1308
1309         * modules/strcasestr (Files): Remove lib/strcasestr.h.
1310         (Depends-on): Add string.
1311         (Includes): Use <string.h> instead of strcasestr.h.
1312         * modules/string (Makefile.am): Also substitute the value of
1313         REPLACE_STRCASESTR.
1314         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
1315         assume strcasestr is declared in <string.h> not <strings.h>. Also
1316         set REPLACE_STRCASESTR.
1317         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
1318         REPLACE_STRCASESTR.
1319         * lib/strcasestr.h: Remove file.
1320         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
1321         * lib/string_.h (strcasestr): New declaration.
1322
1323 2007-01-27  Bruno Haible  <bruno@clisp.org>
1324
1325         * lib/string_.h: Use 'extern'.
1326
1327 2007-01-27  Jim Meyering  <jim@meyering.net>
1328
1329         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
1330         of set-but-not-used local, "q".
1331
1332         * lib/mempcpy.c: Include <config.h> before <string.h>.
1333         This fixes a compilation error on HP-UX, due to the system's
1334         "restrict"-using mempcpy prototype.
1335
1336 2007-01-26  Bruno Haible  <bruno@clisp.org>
1337
1338         Small optimization.
1339         * lib/javacomp.c: Include c-strstr.h.
1340          (is_envjavac_gcj): Use c_strstr instead of strstr.
1341         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
1342
1343 2007-01-26  Bruno Haible  <bruno@clisp.org>
1344
1345         * MODULES.html.sh (Unicode string functions): Add the new modules.
1346
1347         * modules/uniconv/u32-strconv-to-locale: New file.
1348         * lib/uniconv/u32-strconv-to-locale.c: New file.
1349
1350         * modules/uniconv/u16-strconv-to-locale: New file.
1351         * lib/uniconv/u16-strconv-to-locale.c: New file.
1352
1353         * modules/uniconv/u8-strconv-to-locale: New file.
1354         * lib/uniconv/u8-strconv-to-locale.c: New file.
1355
1356         * modules/uniconv/u32-strconv-from-locale: New file.
1357         * lib/uniconv/u32-strconv-from-locale.c: New file.
1358
1359         * modules/uniconv/u16-strconv-from-locale: New file.
1360         * lib/uniconv/u16-strconv-from-locale.c: New file.
1361
1362         * modules/uniconv/u8-strconv-from-locale: New file.
1363         * lib/uniconv/u8-strconv-from-locale.c: New file.
1364
1365         * modules/uniconv/u32-strconv-to-enc: New file.
1366         * lib/uniconv/u32-strconv-to-enc.c: New file.
1367         * modules/uniconv/u32-strconv-to-enc-tests: New file.
1368         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
1369
1370         * modules/uniconv/u16-strconv-to-enc: New file.
1371         * lib/uniconv/u16-strconv-to-enc.c: New file.
1372         * lib/uniconv/u-strconv-to-enc.h: New file.
1373         * modules/uniconv/u16-strconv-to-enc-tests: New file.
1374         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
1375
1376         * modules/uniconv/u8-strconv-to-enc: New file.
1377         * lib/uniconv/u8-strconv-to-enc.c: New file.
1378         * modules/uniconv/u8-strconv-to-enc-tests: New file.
1379         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
1380
1381         * modules/uniconv/u32-strconv-from-enc: New file.
1382         * lib/uniconv/u32-strconv-from-enc.c: New file.
1383         * modules/uniconv/u32-strconv-from-enc-tests: New file.
1384         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
1385
1386         * modules/uniconv/u16-strconv-from-enc: New file.
1387         * lib/uniconv/u16-strconv-from-enc.c: New file.
1388         * modules/uniconv/u16-strconv-from-enc-tests: New file.
1389         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
1390
1391         * modules/uniconv/u8-strconv-from-enc: New file.
1392         * lib/uniconv/u8-strconv-from-enc.c: New file.
1393         * lib/uniconv/u-strconv-from-enc.h: New file.
1394         * modules/uniconv/u8-strconv-from-enc-tests: New file.
1395         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
1396
1397         * modules/uniconv/u32-conv-from-enc: New file.
1398         * lib/uniconv/u32-conv-from-enc.c: New file.
1399         * modules/uniconv/u32-conv-from-enc-tests: New file.
1400         * tests/uniconv/test-u32-conv-from-enc.c: New file.
1401
1402         * modules/uniconv/u16-conv-from-enc: New file.
1403         * lib/uniconv/u16-conv-from-enc.c: New file.
1404         * lib/uniconv/u-conv-from-enc.h: New file.
1405         * modules/uniconv/u16-conv-from-enc-tests: New file.
1406         * tests/uniconv/test-u16-conv-from-enc.c: New file.
1407
1408         * modules/uniconv/u8-conv-from-enc: New file.
1409         * lib/uniconv/u8-conv-from-enc.c: New file.
1410         * modules/uniconv/u8-conv-from-enc-tests: New file.
1411         * tests/uniconv/test-u8-conv-from-enc.c: New file.
1412
1413         * modules/uniconv/base: New file.
1414         * lib/uniconv.h: New file.
1415
1416 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
1417
1418         * doc/gnulib-tool.texi (Initial import): Update to match current
1419         behavior with strdup module.
1420         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
1421         * lib/memmem.h: Remove; all uses removed.  This is now done
1422         by <string.h>.
1423         * lib/mempcpy.h: Likewise.
1424         * lib/memrchr.h: Likewise.
1425         * lib/stpcpy.h: Likewise.
1426         * lib/stpncpy.h: Likewise.
1427         * lib/strcase.h: Likewise.
1428         * lib/strchrnul.h: Likewise.
1429         * lib/strdup.h: Likewise.
1430         * lib/strndup.h: Likewise.
1431         * lib/strnlen.h: Likewise.
1432         * lib/strpbrk.h: Likewise.
1433         * lib/strsep.h: Likewise.
1434         * lib/strstr.h: Likewise.
1435         * lib/strtok_r.h: Likewise.
1436         * lib/string_.h: New file.
1437         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
1438         Rely on <string.h> instead.
1439         * lib/canon-host.c: Likewise.
1440         * lib/chdir-long.c: Likewise.
1441         * lib/concatpath.c: Likewise.
1442         * lib/exclude.c: Likewise.
1443         * lib/fchdir.c: Likewise.
1444         * lib/getaddrinfo.c: Likewise.
1445         * lib/getcwd.c: Likewise.
1446         * lib/getsubopt.c: Likewise.
1447         * lib/glob.c: Likewise.
1448         * lib/hard-locale.c: Likewise.
1449         * lib/iconvme.c: Likewise.
1450         * lib/javacomp.c: Likewise.
1451         * lib/mempcpy.c: Likewise.
1452         * lib/memrchr.c: Likewise.
1453         * lib/regex_internal.h: Likewise.
1454         * lib/stpncpy.c: Likewise.
1455         * lib/strcasecmp.c: Likewise.
1456         * lib/strchrnul.c: Likewise.
1457         * lib/strdup.c: Likewise.
1458         * lib/striconv.c: Likewise.
1459         * lib/striconveh.c: Likewise.
1460         * lib/striconveha.c: Likewise.
1461         * lib/strncasecmp.c: Likewise.
1462         * lib/strndup.c: Likewise.
1463         * lib/strnlen.c: Likewise.
1464         * lib/strsep.c: Likewise.
1465         * lib/strstr.c: Likewise.
1466         * lib/strtok_r.c: Likewise.
1467         * lib/userspec.c: Likewise.
1468         * lib/w32spawn.h: Likewise.
1469         * lib/xstrndup.c: Likewise.
1470         * lib/mountlist.c (strstr): Remove decl.
1471         * m4/string_h.m4: New file.
1472         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
1473         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
1474         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
1475         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
1476         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
1477         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
1478         Set REPLACE_STRCASECMP if necessary.
1479         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
1480         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
1481         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
1482         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
1483         HAVE_DECL_STRDUP if necessary.
1484         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
1485         since gl_FUNC_STRNDUP does that now.
1486         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
1487         Check for decl here...
1488         (gl_PREREQ_STRNLEN): ... not here.
1489         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
1490         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
1491         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
1492         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
1493         necessary.
1494         * modules/string: New file.
1495         * modules/memmem (Files): Remove special-purpose include file.
1496         (Depends-on): Add string.
1497         (Include): Include <string.h>, not the removed file.
1498         * modules/mempcpy: Likewise.
1499         * modules/memrchr: Likewise.
1500         * modules/stpcpy: Likewise.
1501         * modules/stpncpy: Likewise.
1502         * modules/strcase: Likewise.
1503         * modules/strchrnul: Likewise.
1504         * modules/strdup: Likewise.
1505         * modules/strndup: Likewise.
1506         * modules/strnlen: Likewise.
1507         * modules/strpbrk: Likewise.
1508         * modules/strsep: Likewise.
1509         * modules/strstr: Likewise.
1510         * modules/strtok_r: Likewise.
1511         * tests/test-dirname.c: Don't include "strdup.h", since
1512         <string.h> now suffices.
1513         * tests/test-memmem.c: Don't include "memmem.h", since
1514         <string.h> now suffices.
1515
1516 2007-01-25  Bruno Haible  <bruno@clisp.org>
1517
1518         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
1519         *resultp is 0.
1520
1521         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
1522         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
1523         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
1524         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
1525
1526         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
1527         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
1528         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
1529         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
1530         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
1531         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
1532
1533 2007-01-24  Bruno Haible  <bruno@clisp.org>
1534
1535         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
1536         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
1537         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
1538         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
1539         gl_FUNC_FTS_CORE.
1540         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
1541         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
1542         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
1543         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
1544         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
1545         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
1546         gl_FUNC_FCHOWNAT.
1547         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
1548         gl_FUNC_STRFTIME.
1549         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
1550         Reported by Ralf Wildenhues.
1551
1552 2007-01-24  Bruno Haible  <bruno@clisp.org>
1553
1554         Drop AC_REQUIRE calls that are redundant with the module dependencies.
1555         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
1556         gl_GETADDRINFO.
1557         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
1558         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
1559         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
1560
1561 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
1562
1563         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
1564         Don't use 'exit'; just return from 'main'.
1565         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
1566
1567         * lib/fnmatch_.h: Readjust white space and comments to match
1568         glibc, to avoid spurious diffs.
1569
1570 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1571
1572         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
1573         2004-12-01 change by Jakub Jelinek, since this code won't compile
1574         if !LIBC.  Problem reported by Bob Proulx.
1575
1576 2007-01-23  Bruno Haible  <bruno@clisp.org>
1577
1578         * lib/striconveh.c: Include c-strcaseeq.h.
1579         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
1580         * modules/striconveh (Depends-on): Add c-strcaseeq.
1581
1582 2007-01-23  Bruno Haible  <bruno@clisp.org>
1583
1584         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
1585
1586         * modules/c-strcaseeq: New file.
1587         * lib/c-strcaseeq.h: New file.
1588
1589         * modules/streq: New file.
1590         * lib/streq.h: New file.
1591
1592 2007-01-23  Bruno Haible  <bruno@clisp.org>
1593
1594         * modules/striconveha-tests: New file.
1595         * tests/test-striconveha.c: New file.
1596
1597         * lib/striconveha.h: Include <stdbool.h>.
1598         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
1599         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
1600         (mem_iconveha_notranslit): Renamed from mem_iconveha.
1601         (mem_iconveha): New function.
1602         (str_iconveha_notranslit): Renamed from str_iconveha.
1603         (str_iconveha): New function.
1604         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
1605         c-strcase.
1606
1607 2007-01-23  Bruno Haible  <bruno@clisp.org>
1608
1609         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
1610         encodings without forgiving before trying any encoding with handler.
1611         (str_iconveha): Try all encodings without forgiving before trying any
1612         encoding with handler.
1613
1614 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1615
1616         Import the following changes from libc.
1617
1618         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
1619
1620         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
1621
1622         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1623
1624         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
1625         normal_bracket label.
1626
1627         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
1628
1629         [BZ #361]
1630         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
1631         to normal_bracket after fetching the next character.
1632
1633 2007-01-22  Bruno Haible  <bruno@clisp.org>
1634
1635         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
1636         argument.
1637         * lib/striconveh.c (iconv_carefully_1): New function.
1638         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
1639         argument.
1640         (str_cd_iconveh): Update.
1641         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
1642         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
1643         * tests/test-striconveh.c (MAGIC): New macro.
1644         (new_offsets): New function.
1645         (main): Test call with and without offsets.
1646
1647 2007-01-22  Bruno Haible  <bruno@clisp.org>
1648
1649         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
1650         * modules/sys_select (Makefile.am): Likewise.
1651         * modules/sys_socket (Makefile.am): Likewise.
1652         * modules/sys_time (Makefile.am): Likewise.
1653
1654 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
1655
1656         * modules/gettimeofday (License): Change from GPL to LGPL, since
1657         gettimeofday is a library function.
1658
1659 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1660
1661         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
1662
1663 2007-01-21  Bruno Haible  <bruno@clisp.org>
1664
1665         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
1666
1667 2007-01-21  Bruno Haible  <bruno@clisp.org>
1668
1669         * modules/striconveha: New file.
1670         * lib/striconveha.h: New file.
1671         * lib/striconveha.c: New file.
1672         * MODULES.html.sh (Internationalization functions): Add striconveha.
1673         * lib/striconv.c (str_iconv): Optimize the case of an empty input
1674         string.
1675         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
1676
1677 2007-01-21  Bruno Haible  <bruno@clisp.org>
1678
1679         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
1680         * lib/striconveh.c (str_iconveh): Likewise.
1681
1682 2007-01-21  Bruno Haible  <bruno@clisp.org>
1683
1684         * lib/striconveh.h (mem_iconveh): New declaration.
1685         * lib/striconveh.c (mem_iconveh): New function.
1686         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
1687
1688 2007-01-21  Bruno Haible  <bruno@clisp.org>
1689
1690         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
1691
1692         * lib/striconveh.h (mem_cd_iconveh): Change specification.
1693         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
1694         original result buffer.
1695         (str_cd_iconveh): Update.
1696         * tests/test-striconveh.c (main): Update.
1697
1698         * lib/striconv.h (mem_cd_iconv): Change specification.
1699         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
1700         result buffer.
1701         (str_cd_iconv): Update.
1702         * tests/test-striconv.c (main): Update.
1703
1704 2007-01-21  Bruno Haible  <bruno@clisp.org>
1705
1706         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
1707
1708 2007-01-20  Jim Meyering  <jim@meyering.net>
1709
1710         * lib/userspec.c (parse_with_separator): If a user or group string
1711         starts with "+", skip the corresponding name-to-ID look-up, since
1712         such a look-up must fail: user and group names may not include "+".
1713
1714 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
1715
1716         * lib/poll.c: Include sys/time.h and time.h unconditionally,
1717         since we now assume the sys_time module.
1718         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
1719         check for sys/time.h; no longer needed.
1720         * modules/poll (Depends-on): Depend on sys_time.
1721
1722 2007-01-18  Bruno Haible  <bruno@clisp.org>
1723
1724         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
1725         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1726
1727         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
1728         gettimeofday.
1729
1730         * tests/test-gettimeofday.c: Include <time.h>.
1731         (dummy): Remove variable.
1732
1733         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
1734         gl_HEADER_SYS_TIME_H.
1735         (gl_HEADER_SYS_TIME_H): New macro.
1736
1737         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
1738         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1739         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
1740         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
1741         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1742         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
1743         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
1744         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1745         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
1746         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
1747         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1748
1749         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
1750         last change; it caused a compilation error when cross-compiling to
1751         Cygwin.
1752
1753 2007-01-18  Jim Meyering  <jim@meyering.net>
1754
1755         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
1756         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
1757         than the race-prone "test -d sys || mkdir sys".
1758         (configure.ac): Use AC_PROG_MKDIR_P.
1759         * modules/sys_select: Likewise.
1760         * modules/sys_socket: Likewise.
1761         * modules/sys_time: Likewise.
1762
1763 2007-01-18  Eric Blake  <ebb9@byu.net>
1764
1765         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
1766         replace gettimeofday.
1767         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
1768         name, to avoid infinite recursion.
1769
1770 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
1771
1772         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
1773         module sys_time.
1774         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
1775         assume timespec.h defines struct timeval.
1776         * lib/settime.c: Likewise.
1777         * lib/utimens.c: Likewise.
1778         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
1779         since we now assume the gettimeofday module.
1780         * lib/tempname.c (__gen_tempname): Likewise.
1781         * lib/gettimeofday.h: Remove.
1782         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
1783         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
1784         Include <time.h>, for 'time()'.
1785         (localtime_buffer_addr): Also use this workaround if
1786         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
1787         to simplify the uses.  All uses changed.
1788         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
1789         that #undef is inside {}, and 'const' follows type name consistently.
1790         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
1791         (gettimeofday): Do not use the maximum possible value for
1792         tv->tv_usec, since that might break usages other than ls.c.
1793         Instead, we'll leave ls.c alone.  This undoes today's patch
1794         by Bruno.  Add a compile-time warning for 1s-clock resolution;
1795         we've never observed the problem but might as well keep the
1796         canary.
1797         * lib/nanosleep.c: Include timespec.h first, for interface check.
1798         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
1799         now assume the sys_time module.
1800         * lib/tempname.c: Likewise.
1801         * lib/timespec.h: Likewise.
1802         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
1803         needed.
1804         * lib/strftime.c: Likewise.
1805         * lib/timespec.h: Likewise.
1806         * lib/posixtm.c: Include posixtm.h first, for interface check.
1807         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
1808         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
1809         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
1810         * lib/sys_time_.h: New file.
1811         * lib/timespec.h (struct timespec): Use long int, not long.
1812         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
1813         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
1814         Remove obsolescent call to AC_HEADER_TIME.
1815         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
1816         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
1817         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
1818         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
1819         Likewise.
1820         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
1821         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
1822         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
1823         into the sys_time module.  Check for gettimeofday just once.
1824         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
1825         for gettimeofday signature to just check the signature.  Merely
1826         compile it, since linking doesn't test signature.  Improve test for
1827         whether gettimeofday.o is actually needed.
1828         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
1829         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
1830         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
1831         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1832         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
1833         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
1834         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
1835         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
1836         than worrying about sys/time.h.
1837         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
1838         Don't bother worrying about TIME_WITH_SYS_TIME.
1839         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
1840         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
1841         * m4/sys_time_h.m4: New file.
1842         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
1843         Don't include sys/time.h.  Return from main rather than exiting.
1844         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
1845         all uses changed.
1846         * modules/gethrxtime (Depends-on): Add sys_time.
1847         * modules/gettime (Depends-on): Likewise.
1848         * modules/gettimeofday (Depends-on): Likewise.
1849         * modules/nanosleep (Depends-on): Likewise.
1850         * modules/settime (Depends-on): Likewise.
1851         * modules/tempname (Depends-on): Likewise.
1852         * modules/utimens (Depends-on): Likewise.
1853         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
1854         (Include:) Change back to <sys/time.h>.
1855         (Maintainer:) Add self.
1856         * modules/sys_time: New file.
1857         * modules/tempname (Depends-on): Add gettimeofday.
1858         * tests/test-gettimeofday.c: Include <sys/time.h>
1859         rather than gettimeofday.h.
1860
1861 2007-01-17  Bruno Haible  <bruno@clisp.org>
1862
1863         * gnulib-tool (func_get_license): Revert last patch. Instead, let
1864         the license default to GPL.
1865         (func_create_testdir): Don't complain if a module is LGPL and its
1866         tests module depends on GPLed modules.
1867
1868 2007-01-17  Bruno Haible  <bruno@clisp.org>
1869
1870         * lib/gettimeofday.c (gettimeofday): Add code for the case
1871         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
1872         maximum possible value for tv->tv_usec, rather than the minimum one.
1873
1874 2005-10-08  Martin Lambers  <marlam@marlam.de>
1875 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
1876 2007-01-16  Bruno Haible  <bruno@clisp.org>
1877
1878         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
1879         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
1880         gl_FUNC_GETTIMEOFDAY.
1881         (Include): Add gettimeofday.h.
1882         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
1883         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
1884         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
1885         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
1886         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
1887         * lib/gettimeofday.h: New file.
1888         * lib/gettimeofday.c: Include <sys/timeb.h>.
1889         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
1890         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
1891         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
1892         fall back on time().
1893
1894         * tests/test-gettimeofday.c: New file.
1895         * modules/gettimeofday-tests: New file.
1896
1897 2007-01-16  Eric Blake  <ebb9@byu.net>
1898
1899         * modules/fnmatch (Depends-on): Depend on wchar.
1900         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
1901         * m4/fnmatch.m4: Likewise.
1902         * modules/mbchar (Makefile.am): Assume <wchar.h>.
1903         * m4/mbchar.m4: Likewise.
1904         * modules/mbswidth (Depends-on): Depend on wchar.
1905         * lib/mbswidth.c: Assume <wchar.h>.
1906         * m4/mbswidth.m4: Likewise.
1907         * modules/quotearg (Depends-on): Depend on wchar.
1908         * lib/quotearg.c: Assume <wchar.h>.
1909         * m4/quotearg.m4: Likewise.
1910         * modules/regex (Depends-on): Depend on wchar.
1911         * lib/regex_internal.h: Assume <wchar.h>.
1912         * m4/regex.m4: Likewise.
1913         * modules/stdint (Depends-on): Depend on wchar.
1914         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
1915         * m4/stdint.m4: Likewise.
1916         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
1917         * modules/strftime (Depends-on): Depend on wchar.
1918         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
1919         * modules/strtol (Depends-on): Depend on wchar.
1920         * lib/strtol.c: Assume <wchar.h>.
1921         * modules/wcwidth (Depends-on): Depend on wchar.
1922         * lib/wcwidth.h: Assume <wchar.h>.
1923         * m4/wcwidth.m4: Likewise.
1924
1925 2007-01-16  Bruno Haible  <bruno@clisp.org>
1926
1927         * modules/csharpexec-script: New, created from...
1928         * modules/csharpexec: ... this.
1929
1930 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
1931
1932         * modules/javaexec-script: New, created from...
1933         * modules/javaexec: ... this.
1934
1935 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
1936
1937         * modules/poll (Dependencies): Add sys_select.
1938
1939 2007-01-15  Jim Meyering  <jim@meyering.net>
1940
1941         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
1942         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
1943         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
1944         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
1945
1946 2007-01-15  Bruno Haible  <bruno@clisp.org>
1947
1948         * modules/striconveh: New file.
1949         * lib/striconveh.h: New file.
1950         * lib/striconveh.c: New file.
1951         * MODULES.html.sh (Internationalization functions): Add striconveh.
1952
1953         * modules/striconveh-tests: New file.
1954         * tests/test-striconveh.c: New file.
1955
1956 2007-01-15  Bruno Haible  <bruno@clisp.org>
1957
1958         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
1959         not from GNU libiconv or GNU libc.
1960
1961 2007-01-15  Bruno Haible  <bruno@clisp.org>
1962
1963         * doc/gnulib-intro.texi (Copyright): Explain the different license
1964         terms for module descriptions, autoconf macros, tests, documentation.
1965
1966 2007-01-14  Bruno Haible  <bruno@clisp.org>
1967
1968         * modules/striconv-tests: New file.
1969         * tests/test-striconv.c: New file.
1970
1971 2007-01-14  Bruno Haible  <bruno@clisp.org>
1972
1973         * modules/iconv-tests: New file.
1974         * tests/test-iconv.c: New file.
1975
1976 2007-01-14  Bruno Haible  <bruno@clisp.org>
1977
1978         * gnulib-tool (func_get_license): For test modules, use the license of
1979         the main module.
1980
1981 2007-01-14  Bruno Haible  <bruno@clisp.org>
1982
1983         * modules/iconv (Include): Clarify that <iconv.h> can only be included
1984         if iconv is found to exist.
1985
1986 2007-01-14  Bruno Haible  <bruno@clisp.org>
1987
1988         * modules/c-ctype-tests: New file.
1989         * tests/test-c-ctype.c: New file.
1990
1991 2007-01-14  Bruno Haible  <bruno@clisp.org>
1992
1993         * modules/binary-io-tests: New file.
1994         * tests/test-binary-io.sh: New file.
1995         * tests/test-binary-io.c: New file.
1996
1997 2007-01-14  Bruno Haible  <bruno@clisp.org>
1998
1999         * modules/array-oset-tests: New file.
2000         * tests/test-array_oset.c: New file.
2001
2002 2007-01-14  Bruno Haible  <bruno@clisp.org>
2003
2004         * modules/array-list-tests: New file.
2005         * tests/test-array_list.c: New file.
2006
2007 2007-01-14  Bruno Haible  <bruno@clisp.org>
2008
2009         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
2010         and make.
2011         Reported by Simon Josefsson in
2012         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
2013
2014 2007-01-14  Bruno Haible  <bruno@clisp.org>
2015
2016         * modules/allocsa-tests: New file.
2017         * tests/test-allocsa.c: New file.
2018
2019 2007-01-14  Bruno Haible  <bruno@clisp.org>
2020
2021         * modules/fchdir (Depends-on): Add absolute-header.
2022         * modules/unistd (Depends-on): Likewise.
2023
2024 2006-12-30  Bruno Haible  <bruno@clisp.org>
2025
2026         * modules/fchdir: New file.
2027         * modules/unistd (Files): Add lib/unistd_.h.
2028         (Makefile.am): Generate unistd.h from unistd_.h.
2029         * lib/fchdir.c: New file.
2030         * lib/dirent_.h: New file.
2031         * lib/unistd_.h: New file.
2032         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
2033         * m4/fchdir.m4: New file.
2034         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
2035         (gl_HEADER_UNISTD): Invoke it.
2036         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
2037         function.
2038         * lib/backupfile.c (opendir, closedir): Undefine.
2039         * lib/chown.c (open, close): Undefine.
2040         * lib/clean-temp.c (open, close): Undefine.
2041         * lib/copy-file.c (open, close): Undefine.
2042         * lib/execute.c (open, close): Undefine.
2043         * lib/fsusage.c (open, close): Undefine.
2044         * lib/gc-gnulib.c (open, close): Undefine.
2045         * lib/getcwd.c (opendir, closedir): Undefine.
2046         * lib/glob.c (opendir, closedir): Undefine.
2047         * lib/javacomp.c (open, close): Undefine.
2048         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
2049         * lib/openat-proc.c (open, close): Undefine.
2050         * lib/pagealign_alloc.c (open, close): Undefine.
2051         * lib/pipe.c (open, close): Undefine.
2052         * lib/progreloc.c (open, close): Undefine.
2053         * lib/savedir.c (opendir, closedir): Undefine.
2054         * lib/utime.c (open, close): Undefine.
2055         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
2056
2057 2007-01-10  Bruno Haible  <bruno@clisp.org>
2058
2059         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
2060
2061 2007-01-12  Eric Blake  <ebb9@byu.net>
2062
2063         Provide a robust <wchar.h>.  Further simplifications are now
2064         possible in other modules, but not included here.
2065         * modules/wchar: New module.
2066         * m4/wchar.m4: New file.
2067         * lib/wchar_.h: Likewise.
2068         * modules/mbchar (Depends-on): Depend on wchar, as the first use
2069         of the new module.
2070         * MODULES.html.sh (Extended multibyte and wide character utilities):
2071         New section.
2072
2073 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
2074
2075         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
2076         to a reasonable default for memory allocation.
2077         (xreadlink): Don't allocate a huge buffer, to work around a buggy
2078         file system that reports garbage st_size values for symlinks.
2079         Problem reported by Liyang Hu.
2080
2081 2007-01-11  Simon Josefsson  <simon@josefsson.org>
2082
2083         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
2084         Emacs .#* auto-save files).
2085
2086 2007-01-11  Bruno Haible  <bruno@clisp.org>
2087
2088         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
2089         directory.
2090
2091 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
2092
2093         Use @...@ consistently in lib/wctype_.h.
2094         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
2095         on it being set to 1 or 0.
2096         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
2097         go back to AC_SUBSTing it.
2098         * modules/wctype (Makefile.am): Undo previous change.
2099
2100 2007-01-10  Eric Blake  <ebb9@byu.net>
2101
2102         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
2103         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
2104         * modules/wctype (Makefile.am): Likewise.
2105         Reported by Chris McGuire.
2106
2107 2007-01-10  Jim Meyering  <jim@meyering.net>
2108
2109         fts.c: a small readability/maintainability improvement
2110         * lib/fts.c (fts_read): Make this code slightly more readable and
2111         maintainable by hoisting the "sp->fts_cur = p" assignments to
2112         immediately follow the statements that set P.  Derived from
2113         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
2114
2115 2007-01-10  Eric Blake  <ebb9@byu.net>
2116
2117         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
2118         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
2119         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
2120         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
2121         Reported by Chris McGuire.
2122
2123 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2124
2125         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
2126         in sed script.
2127
2128 2007-01-09  Bruno Haible  <bruno@clisp.org>
2129
2130         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
2131         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
2132         variables.
2133         (func_module): Use them.
2134
2135 2007-01-09  Bruno Haible  <bruno@clisp.org>
2136
2137         * modules/unistr/base: New file.
2138         * lib/unistr.h: New file.
2139
2140         * modules/unistr/u8-to-u16: New file.
2141         * lib/unistr/u8-to-u16.c: New file.
2142
2143         * modules/unistr/u8-to-u32: New file.
2144         * lib/unistr/u8-to-u32.c: New file.
2145
2146         * modules/unistr/u16-to-u8: New file.
2147         * lib/unistr/u16-to-u8.c: New file.
2148
2149         * modules/unistr/u16-to-u32: New file.
2150         * lib/unistr/u16-to-u32.c: New file.
2151
2152         * modules/unistr/u32-to-u8: New file.
2153         * lib/unistr/u32-to-u8.c: New file.
2154
2155         * modules/unistr/u32-to-u16: New file.
2156         * lib/unistr/u32-to-u16.c: New file.
2157
2158         * modules/unistr/u8-check: New file.
2159         * modules/unistr/u16-check: New file.
2160         * modules/unistr/u32-check: New file.
2161         * lib/unistr/u8-check.c: New file.
2162         * lib/unistr/u16-check.c: New file.
2163         * lib/unistr/u32-check.c: New file.
2164
2165         * modules/unistr/u8-chr: New file.
2166         * modules/unistr/u16-chr: New file.
2167         * modules/unistr/u32-chr: New file.
2168         * lib/unistr/u8-chr.c: New file.
2169         * lib/unistr/u16-chr.c: New file.
2170         * lib/unistr/u32-chr.c: New file.
2171
2172         * modules/unistr/u8-cmp: New file.
2173         * modules/unistr/u16-cmp: New file.
2174         * modules/unistr/u32-cmp: New file.
2175         * lib/unistr/u8-cmp.c: New file.
2176         * lib/unistr/u16-cmp.c: New file.
2177         * lib/unistr/u32-cmp.c: New file.
2178
2179         * modules/unistr/u8-cpy: New file.
2180         * modules/unistr/u16-cpy: New file.
2181         * modules/unistr/u32-cpy: New file.
2182         * lib/unistr/u8-cpy.c: New file.
2183         * lib/unistr/u16-cpy.c: New file.
2184         * lib/unistr/u32-cpy.c: New file.
2185         * lib/unistr/u-cpy.h: New file.
2186
2187         * modules/unistr/u8-cpy-alloc: New file.
2188         * modules/unistr/u16-cpy-alloc: New file.
2189         * modules/unistr/u32-cpy-alloc: New file.
2190         * lib/unistr/u8-cpy-alloc.c: New file.
2191         * lib/unistr/u16-cpy-alloc.c: New file.
2192         * lib/unistr/u32-cpy-alloc.c: New file.
2193         * lib/unistr/u-cpy-alloc.h: New file.
2194
2195         * modules/unistr/u8-endswith: New file.
2196         * modules/unistr/u16-endswith: New file.
2197         * modules/unistr/u32-endswith: New file.
2198         * lib/unistr/u8-endswith.c: New file.
2199         * lib/unistr/u16-endswith.c: New file.
2200         * lib/unistr/u32-endswith.c: New file.
2201         * lib/unistr/u-endswith.h: New file.
2202
2203         * modules/unistr/u8-mblen: New file.
2204         * modules/unistr/u16-mblen: New file.
2205         * modules/unistr/u32-mblen: New file.
2206         * lib/unistr/u8-mblen.c: New file.
2207         * lib/unistr/u16-mblen.c: New file.
2208         * lib/unistr/u32-mblen.c: New file.
2209
2210         * modules/unistr/u8-mbtouc: New file.
2211         * modules/unistr/u16-mbtouc: New file.
2212         * modules/unistr/u32-mbtouc: New file.
2213         * lib/unistr/u8-mbtouc.c: New file.
2214         * lib/unistr/u16-mbtouc.c: New file.
2215         * lib/unistr/u32-mbtouc.c: New file.
2216
2217         * modules/unistr/u8-mbtouc-safe: New file.
2218         * modules/unistr/u16-mbtouc-safe: New file.
2219         * modules/unistr/u32-mbtouc-safe: New file.
2220         * lib/unistr/u8-mbtouc-safe.c: New file.
2221         * lib/unistr/u16-mbtouc-safe.c: New file.
2222         * lib/unistr/u32-mbtouc-safe.c: New file.
2223
2224         * modules/unistr/u8-move: New file.
2225         * modules/unistr/u16-move: New file.
2226         * modules/unistr/u32-move: New file.
2227         * lib/unistr/u8-move.c: New file.
2228         * lib/unistr/u16-move.c: New file.
2229         * lib/unistr/u32-move.c: New file.
2230         * lib/unistr/u-move.h: New file.
2231
2232         * modules/unistr/u8-next: New file.
2233         * modules/unistr/u16-next: New file.
2234         * modules/unistr/u32-next: New file.
2235         * lib/unistr/u8-next.c: New file.
2236         * lib/unistr/u16-next.c: New file.
2237         * lib/unistr/u32-next.c: New file.
2238
2239         * modules/unistr/u8-prev: New file.
2240         * modules/unistr/u16-prev: New file.
2241         * modules/unistr/u32-prev: New file.
2242         * lib/unistr/u8-prev.c: New file.
2243         * lib/unistr/u16-prev.c: New file.
2244         * lib/unistr/u32-prev.c: New file.
2245
2246         * modules/unistr/u8-set: New file.
2247         * modules/unistr/u16-set: New file.
2248         * modules/unistr/u32-set: New file.
2249         * lib/unistr/u8-set.c: New file.
2250         * lib/unistr/u16-set.c: New file.
2251         * lib/unistr/u32-set.c: New file.
2252         * lib/unistr/u-set.h: New file.
2253
2254         * modules/unistr/u8-startswith: New file.
2255         * modules/unistr/u16-startswith: New file.
2256         * modules/unistr/u32-startswith: New file.
2257         * lib/unistr/u8-startswith.c: New file.
2258         * lib/unistr/u16-startswith.c: New file.
2259         * lib/unistr/u32-startswith.c: New file.
2260         * lib/unistr/u-startswith.h: New file.
2261
2262         * modules/unistr/u8-stpcpy: New file.
2263         * modules/unistr/u16-stpcpy: New file.
2264         * modules/unistr/u32-stpcpy: New file.
2265         * lib/unistr/u8-stpcpy.c: New file.
2266         * lib/unistr/u16-stpcpy.c: New file.
2267         * lib/unistr/u32-stpcpy.c: New file.
2268         * lib/unistr/u-stpcpy.h: New file.
2269
2270         * modules/unistr/u8-stpncpy: New file.
2271         * modules/unistr/u16-stpncpy: New file.
2272         * modules/unistr/u32-stpncpy: New file.
2273         * lib/unistr/u8-stpncpy.c: New file.
2274         * lib/unistr/u16-stpncpy.c: New file.
2275         * lib/unistr/u32-stpncpy.c: New file.
2276         * lib/unistr/u-stpncpy.h: New file.
2277
2278         * modules/unistr/u8-strcat: New file.
2279         * modules/unistr/u16-strcat: New file.
2280         * modules/unistr/u32-strcat: New file.
2281         * lib/unistr/u8-strcat.c: New file.
2282         * lib/unistr/u16-strcat.c: New file.
2283         * lib/unistr/u32-strcat.c: New file.
2284         * lib/unistr/u-strcat.h: New file.
2285
2286         * modules/unistr/u8-strchr: New file.
2287         * modules/unistr/u16-strchr: New file.
2288         * modules/unistr/u32-strchr: New file.
2289         * lib/unistr/u8-strchr.c: New file.
2290         * lib/unistr/u16-strchr.c: New file.
2291         * lib/unistr/u32-strchr.c: New file.
2292
2293         * modules/unistr/u8-strcmp: New file.
2294         * modules/unistr/u16-strcmp: New file.
2295         * modules/unistr/u32-strcmp: New file.
2296         * lib/unistr/u8-strcmp.c: New file.
2297         * lib/unistr/u16-strcmp.c: New file.
2298         * lib/unistr/u32-strcmp.c: New file.
2299
2300         * modules/unistr/u8-strcpy: New file.
2301         * modules/unistr/u16-strcpy: New file.
2302         * modules/unistr/u32-strcpy: New file.
2303         * lib/unistr/u8-strcpy.c: New file.
2304         * lib/unistr/u16-strcpy.c: New file.
2305         * lib/unistr/u32-strcpy.c: New file.
2306         * lib/unistr/u-strcpy.h: New file.
2307
2308         * modules/unistr/u8-strcspn: New file.
2309         * modules/unistr/u16-strcspn: New file.
2310         * modules/unistr/u32-strcspn: New file.
2311         * lib/unistr/u8-strcspn.c: New file.
2312         * lib/unistr/u16-strcspn.c: New file.
2313         * lib/unistr/u32-strcspn.c: New file.
2314         * lib/unistr/u-strcspn.h: New file.
2315
2316         * modules/unistr/u8-strdup: New file.
2317         * modules/unistr/u16-strdup: New file.
2318         * modules/unistr/u32-strdup: New file.
2319         * lib/unistr/u8-strdup.c: New file.
2320         * lib/unistr/u16-strdup.c: New file.
2321         * lib/unistr/u32-strdup.c: New file.
2322         * lib/unistr/u-strdup.h: New file.
2323
2324         * modules/unistr/u8-strlen: New file.
2325         * modules/unistr/u16-strlen: New file.
2326         * modules/unistr/u32-strlen: New file.
2327         * lib/unistr/u8-strlen.c: New file.
2328         * lib/unistr/u16-strlen.c: New file.
2329         * lib/unistr/u32-strlen.c: New file.
2330         * lib/unistr/u-strlen.h: New file.
2331
2332         * modules/unistr/u8-strmblen: New file.
2333         * modules/unistr/u16-strmblen: New file.
2334         * modules/unistr/u32-strmblen: New file.
2335         * lib/unistr/u8-strmblen.c: New file.
2336         * lib/unistr/u16-strmblen.c: New file.
2337         * lib/unistr/u32-strmblen.c: New file.
2338
2339         * modules/unistr/u8-strmbtouc: New file.
2340         * modules/unistr/u16-strmbtouc: New file.
2341         * modules/unistr/u32-strmbtouc: New file.
2342         * lib/unistr/u8-strmbtouc.c: New file.
2343         * lib/unistr/u16-strmbtouc.c: New file.
2344         * lib/unistr/u32-strmbtouc.c: New file.
2345
2346         * modules/unistr/u8-strncat: New file.
2347         * modules/unistr/u16-strncat: New file.
2348         * modules/unistr/u32-strncat: New file.
2349         * lib/unistr/u8-strncat.c: New file.
2350         * lib/unistr/u16-strncat.c: New file.
2351         * lib/unistr/u32-strncat.c: New file.
2352         * lib/unistr/u-strncat.h: New file.
2353
2354         * modules/unistr/u8-strncmp: New file.
2355         * modules/unistr/u16-strncmp: New file.
2356         * modules/unistr/u32-strncmp: New file.
2357         * lib/unistr/u8-strncmp.c: New file.
2358         * lib/unistr/u16-strncmp.c: New file.
2359         * lib/unistr/u32-strncmp.c: New file.
2360
2361         * modules/unistr/u8-strncpy: New file.
2362         * modules/unistr/u16-strncpy: New file.
2363         * modules/unistr/u32-strncpy: New file.
2364         * lib/unistr/u8-strncpy.c: New file.
2365         * lib/unistr/u16-strncpy.c: New file.
2366         * lib/unistr/u32-strncpy.c: New file.
2367         * lib/unistr/u-strncpy.h: New file.
2368
2369         * modules/unistr/u8-strnlen: New file.
2370         * modules/unistr/u16-strnlen: New file.
2371         * modules/unistr/u32-strnlen: New file.
2372         * lib/unistr/u8-strnlen.c: New file.
2373         * lib/unistr/u16-strnlen.c: New file.
2374         * lib/unistr/u32-strnlen.c: New file.
2375         * lib/unistr/u-strnlen.h: New file.
2376
2377         * modules/unistr/u8-strpbrk: New file.
2378         * modules/unistr/u16-strpbrk: New file.
2379         * modules/unistr/u32-strpbrk: New file.
2380         * lib/unistr/u8-strpbrk.c: New file.
2381         * lib/unistr/u16-strpbrk.c: New file.
2382         * lib/unistr/u32-strpbrk.c: New file.
2383         * lib/unistr/u-strpbrk.h: New file.
2384
2385         * modules/unistr/u8-strrchr: New file.
2386         * modules/unistr/u16-strrchr: New file.
2387         * modules/unistr/u32-strrchr: New file.
2388         * lib/unistr/u8-strrchr.c: New file.
2389         * lib/unistr/u16-strrchr.c: New file.
2390         * lib/unistr/u32-strrchr.c: New file.
2391
2392         * modules/unistr/u8-strspn: New file.
2393         * modules/unistr/u16-strspn: New file.
2394         * modules/unistr/u32-strspn: New file.
2395         * lib/unistr/u8-strspn.c: New file.
2396         * lib/unistr/u16-strspn.c: New file.
2397         * lib/unistr/u32-strspn.c: New file.
2398         * lib/unistr/u-strspn.h: New file.
2399
2400         * modules/unistr/u8-strstr: New file.
2401         * modules/unistr/u16-strstr: New file.
2402         * modules/unistr/u32-strstr: New file.
2403         * lib/unistr/u8-strstr.c: New file.
2404         * lib/unistr/u16-strstr.c: New file.
2405         * lib/unistr/u32-strstr.c: New file.
2406         * lib/unistr/u-strstr.h: New file.
2407
2408         * modules/unistr/u8-strtok: New file.
2409         * modules/unistr/u16-strtok: New file.
2410         * modules/unistr/u32-strtok: New file.
2411         * lib/unistr/u8-strtok.c: New file.
2412         * lib/unistr/u16-strtok.c: New file.
2413         * lib/unistr/u32-strtok.c: New file.
2414         * lib/unistr/u-strtok.h: New file.
2415
2416         * modules/unistr/u8-uctomb: New file.
2417         * modules/unistr/u16-uctomb: New file.
2418         * modules/unistr/u32-uctomb: New file.
2419         * lib/unistr/u8-uctomb.c: New file.
2420         * lib/unistr/u16-uctomb.c: New file.
2421         * lib/unistr/u32-uctomb.c: New file.
2422
2423         * MODULES.html.sh (Unicode string functions): Add the new modules.
2424
2425 2007-01-08  Bruno Haible  <bruno@clisp.org>
2426
2427         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
2428         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
2429         subdirectories.
2430
2431 2007-01-08  Karl Berry  <karl@gnu.org>
2432
2433         * doc/error.texi: mention that main() fns must set program_name
2434         when progname is used.
2435
2436 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
2437
2438         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
2439         WCTYPE_H is empty, for the benefit of builds from non-distclean
2440         directories.  Problem reported by Eric Blake in
2441         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
2442
2443 2007-01-08  Bruno Haible  <bruno@clisp.org>
2444
2445         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
2446         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
2447         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
2448         PROVIDE_CANONICALIZE_FILENAME_MODE.
2449         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
2450
2451 2007-01-08  Bruno Haible  <bruno@clisp.org>
2452
2453         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
2454         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
2455         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
2456         * lib/fts.c: Likewise.
2457         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
2458
2459 2006-12-25  Bruno Haible  <bruno@clisp.org>
2460
2461         * modules/utf8-ucs4-safe: New file.
2462         * lib/utf8-ucs4-safe.h: New file.
2463         * lib/unistr/utf8-ucs4-safe.c: New file.
2464
2465         * modules/utf16-ucs4-safe: New file.
2466         * lib/utf16-ucs4-safe.h: New file.
2467         * lib/unistr/utf16-ucs4-safe.c: New file.
2468
2469         * MODULES.html.sh (Unicode string functions): Add the new modules.
2470
2471 2007-01-08  Bruno Haible  <bruno@clisp.org>
2472
2473         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
2474         (Depends-on): Add unitypes.
2475         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2476         (u8_mbtouc_aux): Move out to separate file.
2477         (u8_mbtouc): Use ucs4_t, uint8_t types.
2478         * lib/unistr/utf8-ucs4.c: New file.
2479
2480         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
2481         (Depends-on): Add unitypes.
2482         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
2483         (u16_mbtouc_aux): Move out to separate file.
2484         (u16_mbtouc): Use ucs4_t, uint16_t types.
2485         * lib/unistr/utf16-ucs4.c: New file.
2486
2487         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
2488         (Depends-on): Add unitypes.
2489         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
2490         (u8_uctomb_aux): Move out to separate file.
2491         (u8_uctomb): Use ucs4_t, uint8_t types.
2492         * lib/unistr/ucs4-utf8.c: New file.
2493
2494         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
2495         (Depends-on): Add unitypes.
2496         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
2497         (u16_uctomb_aux): Move out to separate file.
2498         (u16_uctomb): Use ucs4_t, uint16_t types.
2499         * lib/unistr/ucs4-utf16.c: New file.
2500
2501 2006-12-25  Bruno Haible  <bruno@clisp.org>
2502
2503         * modules/unitypes: New file.
2504         * lib/unitypes.h: New file.
2505         * MODULES.html.sh (func_all_modules): New section "Unicode string
2506         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
2507         this section. Add unitypes.
2508
2509 2007-01-08  Bruno Haible  <bruno@clisp.org>
2510
2511         Avoid variable names that conflict with those from libtool.
2512         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
2513         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
2514         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
2515         library_names_spec to acl_library_names_spec, hardcode_* to
2516         acl_hardcode_*.
2517         Reported by Ralf Wildenhues.
2518
2519 2007-01-08  Bruno Haible  <bruno@clisp.org>
2520
2521         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
2522         definition.
2523         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
2524         definition.
2525         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
2526         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
2527         definition.
2528         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
2529         definition.
2530         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
2531         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
2532         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
2533         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
2534         definition.
2535         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
2536         definition.
2537         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
2538         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
2539         GC_USE_<algorithm>.
2540         * lib/gc-libgcrypt.c: Likewise.
2541         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
2542         * modules/gc-arctwo (configure.ac): Likewise.
2543         * modules/gc-des (configure.ac): Likewise.
2544         * modules/gc-hmac-md5 (configure.ac): Likewise.
2545         * modules/gc-hmac-sha1 (configure.ac): Likewise.
2546         * modules/gc-md2 (configure.ac): Likewise.
2547         * modules/gc-md4 (configure.ac): Likewise.
2548         * modules/gc-md5 (configure.ac): Likewise.
2549         * modules/gc-random (configure.ac): Likewise.
2550         * modules/gc-rijndael (configure.ac): Likewise.
2551         * modules/gc-sha1 (configure.ac): Likewise.
2552
2553 2007-01-08  Bruno Haible  <bruno@clisp.org>
2554
2555         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
2556         macro definition.
2557         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
2558         definition.
2559         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
2560         definition.
2561         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
2562         * modules/fcntl-safer (configure.ac): Likewise.
2563         * modules/fopen-safer (configure.ac): Likewise.
2564         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
2565         GNULIB_FWRITEERROR macro definition.
2566
2567 2007-01-08  Bruno Haible  <bruno@clisp.org>
2568
2569         * m4/gnulib-common.m4: New file.
2570         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
2571         (func_get_filelist): Add m4/gnulib-common.m4.
2572
2573 2007-01-08  Bruno Haible  <bruno@clisp.org>
2574
2575         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
2576         command.
2577
2578 2007-01-08  Jim Meyering  <jim@meyering.net>
2579
2580         Use a more robust test for a "can't happen" condition.
2581         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
2582         narrowed the st_size value.  Presuming the "can't happen" condition
2583         is true, that narrowing could conceivably convert an invalid st_size
2584         value into a valid one.  Instead, use a change based on Matthew
2585         Woehlke's original patch.
2586
2587         Slight readability improvement: use an assert-like macro
2588         in place of literal "abort ()" uses.
2589         * lib/fts.c (fts_assert): Define.
2590         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
2591         Use this macro instead of a bare 'abort'.
2592
2593 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2594
2595         Don't worry about using IRIX 5.3's wctype.h broken definitions;
2596         simply work around them.
2597         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
2598         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
2599         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before declaring.
2600         Don't bother to define as macros, since the standard doesn't require it.
2601         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
2602         longer worry about IRIX 5.3.
2603         (HAVE_WCTYPE_CTMP_BUG): Remove.
2604
2605 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2606
2607         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
2608         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
2609         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
2610         Problems reported by Georg Schwarz for IRIX 5.3.
2611
2612         * gnulib-tool (autoconf_minversion): Take the maximum version number
2613         found, not the minimum.  Problem reported by James Youngman.
2614
2615 2007-01-03  Karl Berry  <karl@gnu.org>
2616
2617         * doc/error.texi: new file, explaining interaction with progname.
2618         * doc/gnulib.texi: include it.  Update copyright.
2619
2620 2007-01-03  Simon Josefsson  <simon@josefsson.org>
2621
2622         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
2623         AC_CANONICAL_HOST, to improve autobuild outputs.
2624
2625 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
2626             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
2627
2628         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
2629         sockets, server sockets, and other file descriptors.  Count errors
2630         to compute the return value.  Reorder the code a bit to be easier
2631         to follow.  Don't set event bits that were not requested (except
2632         POLLERR and POLLHUP).
2633
2634 2007-01-01  Bruno Haible  <bruno@clisp.org>
2635
2636         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
2637
2638 2007-01-03  Jim Meyering  <jim@meyering.net>
2639
2640         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
2641
2642 2007-01-02  Bruno Haible  <bruno@clisp.org>
2643
2644         * modules/settime (Include): Require timespec.h.
2645         * modules/nanosleep (Include): Likewise.
2646
2647 2007-01-01  Bruno Haible  <bruno@clisp.org>
2648
2649         * gnulib-tool (func_emit_copyright_notice): Bump year.
2650         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
2651
2652 2007-01-01  Bruno Haible  <bruno@clisp.org>
2653
2654         Improve support for OpenBSD.
2655         * build-aux/config.rpath (libname_spec): Export.
2656         (library_names_spec): New variable. Export.
2657         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
2658         library_names_spec from the config.rpath output. Locate shared library
2659         through the name pattern in library_names_spec.
2660
2661 2007-01-01  Eric Blake  <ebb9@byu.net>
2662
2663         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
2664
2665 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2666
2667         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
2668         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
2669         assume the C locale, and avoid an "eval" that could cause trouble.
2670         Problem with SORT reported by Bob Proulx.
2671
2672         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
2673         Define.  Trivial patch from Henning Nielsen Lund, originally
2674         sent to bug-grep@gnu.org today.
2675
2676 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2677
2678         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
2679         struct stat.  Problem reported by Henning Nielsen Lund.
2680         * lib/acl.c: Include acl.h first, to check interface.  Don't
2681         bother to include sys/types.h and sys/stat.h again.
2682
2683 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
2684
2685         Import the following change from libc; problem reported by
2686         Sven Verdoolaege.
2687
2688         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
2689
2690         [BZ #1373]
2691         * lib/argp.h: Remove __NTH for __argp_usage inline function.
2692
2693 2006-12-28  Jim Meyering  <jim@meyering.net>
2694
2695         * build-aux/announce-gen: Do not assume that the package
2696         builds any of tar.gz, tar.bz2, and .xdelta files.
2697         Suggestion from Simon Josefsson.
2698
2699 2006-12-28  Simon Josefsson  <simon@josefsson.org>
2700
2701         * modules/announce-gen: New file.
2702
2703 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
2704
2705         * lib/mbchar.h: Just include <wctype.h>; the wctype module
2706         handles its gotchas now.
2707         * lib/mbswidth.c: Likewise.
2708         * lib/wcwidth.h: Likewise.
2709         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
2710         and iswcntrl; the wctype module does this stuff now.
2711         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
2712         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
2713         * modules/mbchar (Depends-on): Add wctype.
2714         * modules/mbswidth (Depends-on): Likewise.
2715         * modules/wcwidth (Depends-on): Likewise.
2716
2717 2006-12-27  Eric Blake  <ebb9@byu.net>
2718
2719         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
2720         module uses more than what <wctype.h> is required to provide.
2721
2722 2006-12-26  Eric Blake  <ebb9@byu.net>
2723
2724         * gnulib-tool (sed_extract_prog): Avoid space-tab.
2725
2726 2006-12-26  Eric Blake  <ebb9@byu.net>
2727
2728         * modules/absolute-header: New module.
2729         * modules/fcntl (Depends-on): Depend on it.
2730         * modules/inttypes (Depends-on): Likewise.
2731         * modules/stdint (Depends-on): Likewise.
2732         * modules/sys_stat (Depends-on): Likewise.
2733         * modules/wctype (Depends-on): Likewise.
2734         * MODULES.html.sh (Support for building libraries and
2735         executables): Document it.
2736
2737 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
2738
2739         * gnulib-tool (SED): Remove, undoing previous change.
2740         The problem was that it broke coreutils on Solaris, because
2741         "sed --posix" leaked into a makefile.
2742         (sed): New alias, if 'alias' and GNU sed.
2743
2744 2006-12-24  Jim Meyering  <jim@meyering.net>
2745
2746         Work around an fchownat bug in glibc-2.4:
2747         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
2748         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
2749         in spite of the -P option.
2750         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
2751         New macros.
2752         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
2753         * modules/openat (Files): Add lib/fchownat.c.
2754         * lib/openat.c (fchownat): Don't define here.  Move to...
2755         * lib/fchownat.c: ...this new file.
2756
2757 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
2758
2759         Fix bug reported by Bruno Haible in
2760         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
2761         where quotearg.c didn't compile on Mac OS X 10.2 because it
2762         lacks <wchar.h> and wint_t.
2763         * lib/wctype_.h (__wctype_wint_t): New type.
2764         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
2765         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
2766         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
2767         Arg is now of type __wctype_wint_t, not wint_t.
2768         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
2769         substitute HAVE_WINT_T.
2770         * modules/wctype (Files): Add m4/wint_t.m4.
2771         (wctype.h): Substitute HAVE_WINT_T.
2772
2773 2006-12-23  Bruno Haible  <bruno@clisp.org>
2774
2775         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
2776
2777 2006-12-23  Bruno Haible  <bruno@clisp.org>
2778
2779         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
2780         S_ISLNK.
2781         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
2782         mingw.
2783
2784 2006-12-22  Bruno Haible  <bruno@clisp.org>
2785
2786         * lib/copy-file.c: Include acl.h.
2787         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
2788         Close the file descriptors only after being done with copy_acl.
2789         * modules/copy-file (Depends-on): Add acl.
2790
2791 2006-12-22  Bruno Haible  <bruno@clisp.org>
2792
2793         * gnulib-tool (SED): New variable.
2794         Use $SED instead of sed everywhere.
2795
2796 2006-12-22  Bruno Haible  <bruno@clisp.org>
2797
2798         * modules/no-c++: New file.
2799         * m4/no-c++.m4: New file.
2800         * MODULES.html.sh (Support for building libraries and executables):
2801         Add no-c++.
2802
2803 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
2804
2805         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
2806         Include <limits.h>, and use its INT_MAX to rewrite the
2807         j loop so that it does not overflow 'int'.  Problem reported by
2808         Ralf Wildenhues in
2809         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
2810         Play it safe by shifting left by 1 rather than multiplying by 2,
2811         as GCC is less likely to optimize this away when the value
2812         is signed (when it assumes overflow leads to undefined behavior).
2813         Also, don't assume time_t uses two's complement.
2814
2815 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
2816
2817         * MODULES.html.sh: New module wctype.
2818         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
2819         * lib/fnmatch.c: Don't bother to include <wchar.h> before
2820         <wctype.h>, since the new wctype module should fix this.
2821         * lib/quotearg.c: Include <wctype.h> unconditionally, since
2822         the wctype module should arrange for it.
2823         * lib/regex_internal.h: Likewise.
2824         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
2825         since the wctype module should handle this now.
2826         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
2827         * modules/fnmatch (Depends-on): Add wctype.
2828         * modules/quotearg (Depends-on): Likewise.
2829         * modules/regex (Depends-on): Likewise.
2830
2831 2006-12-19  Bruno Haible  <bruno@clisp.org>
2832
2833         * lib/strdup.h [C++]: Wrap definitions in extern "C".
2834         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
2835
2836 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2837
2838         * modules/savewd (Depends-on): Fix dependency on fcntl.
2839
2840 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2841
2842         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
2843         conforms to C99, rather than relying on the user's environment
2844         setting of STDINT_H.
2845
2846 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2847         and Eric Blake  <ebb9@byu.net>
2848
2849         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
2850         This is more consistent with the other defines here.
2851         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
2852         Port to z/OS.  Problem reported by Paul Gilmartin.
2853         Change local vars to use gl_ prefix rather than ac_.
2854         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
2855         with other defines.
2856         * modules/double-slash-root: New module.
2857         * modules/dirname (Files): Remove m4/double-slash-root.m4.
2858         (Depends-on): Add double-slash-root.
2859         * MODULES.html.sh (File system functions): Mention new module.
2860
2861 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2862
2863         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
2864         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
2865         This is for the benefit of gzip, which doesn't do i18n.
2866
2867 2006-12-12  Jim Meyering  <jim@meyering.net>
2868
2869         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
2870         Reported by Andreas Schwab <schwab@suse.de>.
2871
2872 2006-12-12  Bruno Haible  <bruno@clisp.org>
2873
2874         Merge these changes.
2875         2006-09-05  Bruno Haible  <bruno@clisp.org>
2876         * lib/iconvme.c (iconv_string): No need to save and restore errno when
2877         iconv_alloc succeeded.
2878         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
2879         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
2880         test for " && dest " at the end - dest is always != NULL there. Call
2881         iconv with 4xNULL arguments initially, to reset the state. Call iconv
2882         with 2xNULL arguments, also to flush the state storage. Handle the
2883         IRIX iconv behaviour. Realloc the final result, to throw away unused
2884         memory.
2885
2886 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
2887
2888         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
2889         and fchmodat unconditionally, since glibc 2.4 has them.
2890         Problem reported by Arkadiusz Miskiewicz.
2891
2892 2006-12-10  Bruno Haible  <bruno@clisp.org>
2893
2894         * gnulib-tool (func_import): Show the include files only for those
2895         modules that are copied and specified.
2896         Reported by Karl Berry.
2897
2898 2006-12-08  Jim Meyering  <jim@meyering.net>
2899
2900         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
2901         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
2902
2903         * build-aux/announce-gen: Add two new options, both optional:
2904         --bootstrap-tools=TOOL_LIST
2905               a comma-separated list of tools, e.g.,
2906               autoconf,automake,bison,gnulib
2907         --gnulib-snapshot-date=DATE
2908               if gnulib is in the bootstrap tool list,
2909               then report this as the snapshot date.
2910               If not specified, use the current date/time.
2911               If you specify a date here, be sure it's UTC.
2912
2913 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2914
2915         * tests/test-argp-2.sh: Fix test to match actual output.
2916         (func_compare): Fix sed script to be portable.
2917
2918 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
2919
2920         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
2921         workaround for this case.  It is not autoconfigured now; offhand
2922         it's hard to see how to autoconfigure it.
2923
2924 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
2925
2926         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
2927         a directory that is about to be chowned.  Such a directory's
2928         initial file permissions should permit the owner only and this
2929         should not be changed until after the chown, since the group and
2930         other bits would be incorrect if they granted permission before
2931         the chown.
2932
2933         Fix porting problem for iswctype reported by Georg Schwarz in:
2934         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
2935         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
2936         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
2937         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
2938         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
2939
2940 2006-12-03  Jim Meyering  <jim@meyering.net>
2941
2942         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
2943         p->fts_statp may not yet be defined.
2944         (fts_read): Instead, set it in the caller, once p->fts_statp is
2945         sure to be defined, and corresponds to a top-level directory.
2946         This bug made du -x fail.  Here's the coreutils test case:
2947         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
2948         Reported by Mike Frysinger.
2949
2950 2006-12-01  Jim Meyering  <jim@meyering.net>
2951
2952         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
2953         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
2954         Reported by Simon Josefsson.
2955
2956 2006-11-30  Jim Meyering  <jim@meyering.net>
2957
2958         * m4/warning.m4: Use the all-permissive copyright notice
2959         recommended by RMS (rather than LGPL).
2960         * m4/vararrays.m4: Likewise.
2961         * m4/flexmember.m4: Likewise.
2962
2963 2006-11-29  Bruno Haible  <bruno@clisp.org>
2964
2965         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
2966         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
2967         using +=.
2968         Reported by Simon Josefsson <simon@josefsson.org>.
2969
2970 2006-11-28  James Youngman <jay@gnu.org>
2971
2972         * README: Advise users that they might find the bug-gnulib@gnu.org
2973         and autotools-announce@gnu.org mailing lists useful.
2974
2975 2006-11-28  Bruno Haible  <bruno@clisp.org>
2976
2977         * m4/ptrdiff_max.m4: Remove file.
2978
2979 2006-11-21  Bruno Haible  <bruno@clisp.org>
2980
2981         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
2982         _AC_COMPUTE_INT.
2983         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2984         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
2985         _AC_COMPUTE_INT.
2986         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2987         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
2988         _AC_COMPUTE_INT.
2989         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
2990
2991 2006-11-28  Jim Meyering  <jim@meyering.net>
2992
2993         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
2994         warning from "gcc -Wshadow" about shadowing the builtin.
2995
2996 2006-11-27  Bruno Haible  <bruno@clisp.org>
2997
2998         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
2999         _AC_COMPUTE_INT.
3000         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
3001
3002 2006-11-27  Bruno Haible  <bruno@clisp.org>
3003             Paul Eggert  <eggert@cs.ucla.edu>
3004
3005         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
3006
3007 2006-11-26  Bruno Haible  <bruno@clisp.org>
3008
3009         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
3010         noinst_LTLIBRARIES.
3011
3012 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
3013             Bruno Haible  <bruno@clisp.org>
3014
3015         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
3016         if compiling with "gcc -ansi".
3017
3018 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
3019
3020         Fix some incompatibilities with gcc -ansi -pedantic.
3021         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
3022         if compiling pedantically with GCC, unless it's C99 or later.
3023         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
3024         it mishandles gcc -ansi -pedantic as well.
3025         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
3026         if gcc -pedantic.
3027         * lib/regexec.c (check_node_accept_bytes): Don't use auto
3028         initializers for struct if -pedantic, unless it's C99 or later.
3029
3030 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
3031
3032         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
3033         Don't close an fd more than once. Identical atimes indicate
3034         success, not failure.
3035
3036 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
3037
3038         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
3039
3040 2006-11-23  Jim Meyering  <jim@meyering.net>
3041
3042         * build-aux/announce-gen: New file.  From coreutils.
3043
3044 2006-11-22  Jim Meyering  <jim@meyering.net>
3045
3046         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
3047         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
3048         (fts_read): Use a temporary to narrow the overused st_size member
3049         before using it in a switch statement.  Reported by Matthew Woehlke.
3050
3051         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
3052         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
3053
3054 2006-11-20  Bruno Haible  <bruno@clisp.org>
3055
3056         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
3057         changequote instead of pairs of brackets.
3058         Reported by Andreas Schwab <schwab@suse.de>.
3059
3060 2006-11-21  Jim Meyering  <jim@meyering.net>
3061
3062         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
3063         so as to remain compatible with older compilers.
3064         Patch from Michael Deutschmann.
3065
3066 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
3067
3068         * MODULES.html.sh (File system functions): Add openat.
3069
3070         * lib/openat.h (rpl_fstatat): New macro, if
3071         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
3072         (fstatat): Define to rpl_fstatat under the same conditions,
3073         unless COMPILING_FSTATAT.
3074         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
3075         seems to have the bug.
3076         * lib/fstatat.c: New file.
3077         * modules/openat (Files): Add it.
3078
3079 2006-11-20  Bruno Haible  <bruno@clisp.org>
3080
3081         * Makefile: New file.
3082
3083 2006-11-20  Jim Meyering  <jim@meyering.net>
3084
3085         The beginnings of syntax-related checks for gnulib.
3086         * lib/Makefile: New file.
3087         * lib/t-idcache: New script.  Ensure that the two halves of
3088         idcache.c stay in sync.
3089
3090         * lib/idcache.c: Adjust comments in user- and group- portions to
3091         be more accurate, and to be consistent with one another.
3092
3093 2006-11-20  Jim Meyering  <jim@meyering.net>
3094
3095         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
3096         continue using the flexible array member (thus, this module performs
3097         half as many malloc calls), with the addition that...
3098         (getgroup, getuser): Consistently record a non-match via an empty
3099         "name" string, and map an empty string match to a NULL return value.
3100         * modules/idcache (Depends-on): Re-add flexmember.
3101
3102         * lib/idcache.c (getuser): Remove all uses of the register keyword.
3103         (getuidbyname, getgroup, getgidbyname): Likewise.
3104
3105         Use cleaner syntax: NULL rather than 0.
3106         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
3107
3108 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
3109
3110         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
3111         It mishandled the case where the group was missing.
3112         Problem reported by Greg Schafer.
3113         * modules/idcache: Likewise.
3114
3115 2006-11-18  Jim Meyering  <jim@meyering.net>
3116
3117         * check-module (%exempt_header): Add exception for some
3118         conditionally-included headers.
3119
3120         * modules/i-ring (Depends-on): Add verify.
3121         (License): Change to LGPL.
3122
3123 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3124
3125         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
3126         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
3127         and inttostr.h.  Use snprintf rather than uinttostr, so that
3128         LGPLed code doesn't depend on GPLed.
3129
3130 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
3131
3132         * modules/inline (License): Change from GPL to LGPL.
3133
3134 2006-11-17  Jim Meyering  <jim@meyering.net>
3135
3136         * modules/d-type (License): Switch to LGPL.
3137
3138 2006-11-15  Bruno Haible  <bruno@clisp.org>
3139
3140         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
3141
3142 2006-11-15  Eric Blake  <ebb9@byu.net>
3143
3144         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
3145         the module dependency.
3146
3147 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
3148             Bruno Haible  <bruno@clisp.org>
3149
3150         * gnulib-tool (func_create_testdir): Add license consistency check.
3151
3152 2006-11-15  Eric Blake  <ebb9@byu.net>
3153
3154         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
3155         random "(cached)" in configure output.
3156
3157 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3158
3159         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
3160         test for conforming inttypes.h is both announced and cached.
3161
3162         * MODULES.html.sh (seen_modules, seen_files): New variables.
3163         (func_module): Rewrite to use a few less gnulib-tool and sed
3164         invocations.  Avoid a couple of quadratic algorithms for ...
3165         (missed_modules, missed_files): ... these, with ...
3166         (func_append, func_tmpdir): ... these new functions, from
3167         gnulib-tool.  Analogously, install traps for cleanup.
3168
3169         * tests/test-gc.c (main): Remove unused variables.
3170         * tests/test-read-file.c: Include stdlib.h, for 'free'.
3171
3172 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
3173
3174         * modules/inttostr (License): Change to LGPL.
3175
3176 2006-11-14  Eric Blake  <ebb9@byu.net>
3177
3178         * modules/tempname (License): Change to LGPL.
3179
3180 2006-11-14  Eric Blake  <ebb9@byu.net>
3181
3182         * doc/functions.texi (Function Portability): *printf functions on
3183         Cygwin now understand all POSIX size specifiers.
3184
3185 2006-11-14  Bruno Haible  <bruno@clisp.org>
3186
3187         * modules/c-ctype (License): Change to LGPL.
3188
3189 2006-11-12  Bruno Haible  <bruno@clisp.org>
3190
3191         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
3192         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
3193         for GNOME libraries, for which the include files are installed in
3194         subdirectories of $prefix/include.
3195
3196 2006-11-12  Bruno Haible  <bruno@clisp.org>
3197
3198         * m4/lib-link.m4: Require at least autoconf-2.54.
3199         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
3200         name to underscores for the --with option.
3201
3202 2006-11-13  Bruno Haible  <bruno@clisp.org>
3203
3204         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
3205         the tests directory.
3206         Reported by Ralf Wildenhues.
3207
3208 2006-11-13  Bruno Haible  <bruno@clisp.org>
3209
3210         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
3211         (func_emit_initmacro_end): Undo the override here.
3212         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
3213         Works around the famous automake error in coreutils.
3214
3215 2006-11-13  Eric Blake  <ebb9@byu.net>
3216
3217         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
3218         element, not its node.
3219
3220 2006-11-12  Bruno Haible  <bruno@clisp.org>
3221
3222         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
3223         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
3224
3225 2006-11-12  Bruno Haible  <bruno@clisp.org>
3226
3227         * gnulib-tool: New option --local-symlink.
3228         (func_usage): Document it.
3229         (lsymbolic): New variable.
3230         (func_import, func_create_testdir): If --symlink was not specified,
3231         test whether --local-symlink was specified and the file comes from
3232         the local_gnulib_dir.
3233
3234 2006-11-12  Bruno Haible  <bruno@clisp.org>
3235
3236         * gnulib-tool (func_ln): New function.
3237         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
3238
3239 2006-11-12  Bruno Haible  <bruno@clisp.org>
3240
3241         Finish support for source files in subdirectories.
3242         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
3243         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
3244         AUTOMAKE_OPTIONS.
3245         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
3246
3247 2006-11-12  Bruno Haible  <bruno@clisp.org>
3248
3249         * gnulib-tool (func_get_automake_snippet): Synthesize also an
3250         EXTRA_lib_SOURCES augmentation.
3251         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
3252
3253 2006-11-12  Jim Meyering  <jim@meyering.net>
3254
3255         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
3256         file descriptors.  This also averts a failure on systems with
3257         native openat support when a traversed directory lacks "x" access.
3258         * lib/fts_.h: Include "i-ring.h"
3259         (struct FTS) [fts_fd_ring]: New member.
3260         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
3261         (FCHDIR): Add parentheses.
3262         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
3263         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
3264         When descending, rather than simply closing the previous
3265         fts_cwd_fd value, push that file descriptor onto the ring.
3266         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
3267         (fts_open): Initialize the new fd_ring member.
3268         (fts_close): Clear the ring.
3269         (fts_safe_changedir): When possible, use our new fd_ring to skip
3270         the diropen and fstat and dev/ino comparison that would normally
3271         accompany a virtual `chdir ("..")'.
3272
3273         * modules/fts (Depends-on): Add i-ring.
3274         * modules/i-ring: New module.
3275         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
3276         * m4/i-ring.m4: New file.
3277
3278 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3279
3280         * gnulib-tool (func_create_testdir): Fix replacement of
3281         `build-aux' in configure.ac.  Run autotools in gltests
3282         subdirectory.
3283         (func_create_testdir, func_create_megatestdir, test): There is
3284         no need for '--force' in most autotool invocations in a new
3285         tree.  Actually fail the whole test if any of the tools, or the
3286         configure or make stages fail.
3287
3288         Sync from Automake.
3289         * build-aux/gnupload: Revert last change.  Add pointer to upload
3290         instructions of the GNU Maintenance Instructions.
3291         Suggestion by Karl Berry.
3292
3293 2006-11-10  Jim Meyering  <jim@meyering.net>
3294
3295         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
3296
3297 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
3298
3299         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
3300         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
3301         (bind_textdomain_codeset) [! ENABLE_NLS]:
3302         Evaluate all the arguments.  That way, callers get compatible behavior
3303         if the arguments have side effects.  Also, it avoids some GCC
3304         diagnostics in some cases; Joel E. Denny reported problems when Bison
3305         was configured with --enable-gcc-warnigs.
3306
3307 2006-11-10  Jim Meyering  <jim@meyering.net>
3308
3309         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
3310         relevant options in CFLAGS (like -O, -fno-inline) are taken into
3311         account.
3312
3313 2006-11-10  Jim Meyering  <jim@meyering.net>
3314
3315         * modules/inline: New file/module.
3316         * modules/xalloc (Files): Remove m4/inline.m4.
3317         (Depends-on): Add inline, instead.
3318         * modules/oset: Likewise.
3319         * modules/list: Likewise.
3320
3321 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
3322
3323         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
3324         Problem reported by Matthew Woehlke.
3325
3326 2006-11-09  Bruno Haible  <bruno@clisp.org>
3327
3328         * lib/tempname.c (gen_tempname): Remove variant that invokes
3329         __gen_tempname.
3330         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
3331         __gen_tempname.
3332
3333 2006-11-08  Bruno Haible  <bruno@clisp.org>
3334
3335         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
3336         to 'yes' instead of 'cross-compiling'.
3337
3338 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
3339
3340         * lib/quotearg.h (quotearg_free): New decl.
3341         * lib/quotearg.c (quotearg_free): New function.
3342         (slot0, nslots, slotvec0, slotvec):
3343         Now file-scope so that quotearg_free can get at them.
3344
3345 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3346
3347         Sync from Automake.
3348         * build-aux/gnupload: Add missing 'gnu' to example URL.
3349         Report by Karl Berry.
3350
3351 2006-11-08  Bruno Haible  <bruno@clisp.org>
3352
3353         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
3354         Suggested by Paul Eggert.
3355
3356 2006-11-08  Jim Meyering  <jim@meyering.net>
3357
3358         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
3359         It's already included if !_LIBC.
3360         (fts_safe_changedir): Add a comment.
3361
3362 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
3363
3364         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
3365         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
3366         Matthew Woehlke.
3367
3368         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
3369         definitions up, to avoid colliding with change below.
3370         (static_inline) [HAVE_INLINE]: New macro.
3371         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
3372         Provide extern decls when !HAVE_INLINE.  Do not define unless
3373         static_inline is defined, either by us or by xmalloc.c.  Use
3374         static_inline rather than static inline.
3375         (XCALLOC): Optimize sizeof(T) = 1 case.
3376         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
3377
3378 2006-11-07  Bruno Haible  <bruno@clisp.org>
3379
3380         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
3381         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
3382         AC_C_INLINE.
3383         * modules/xalloc (Files): Add m4/inline.m4.
3384
3385 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3386
3387         * README: Fix typo.
3388         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
3389         (Miscellanous Notes): ...from this.
3390
3391 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
3392
3393         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
3394         Mention that offsetof should be used instead of sizeof.
3395         From Bruno Haible.
3396
3397 2006-11-07  Bruno Haible  <bruno@clisp.org>
3398
3399         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
3400
3401 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
3402
3403         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
3404         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
3405         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
3406         (gl_tree_add_before, gl_tree_add_after):
3407         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
3408         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
3409         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
3410         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
3411         (gl_linked_add_after, gl_linked_add_at): Likewise.
3412         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
3413         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
3414         (gl_tree_add_before, gl_tree_add_after): Likewise.
3415         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
3416         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
3417         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
3418
3419 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3420
3421         * lib/gl_oset.h: Use C comment style, not C++ comment style.
3422
3423 2006-11-06  Bruno Haible  <bruno@clisp.org>
3424
3425         * m4/inline.m4: New file.
3426         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
3427         * modules/list (Files): Add m4/inline.m4.
3428         * modules/oset (Files): Likewise.
3429
3430 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
3431
3432         * lib/idcache.c: Include <stddef.h>, for offsetof.
3433         (struct userid.name): Change from char * to a flexible array member.
3434         All uses changed.
3435         * modules/idcache (Depends-on): Add flexmember.
3436
3437         * MODULES.html.sh (Core language properties): New module flexmember.
3438         * modules/flexmember, m4/flexmember.m4: New files.
3439
3440         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
3441         inline functions that are identical with the old xnmalloc_inline,
3442         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
3443         that we can avoid some unnecessary integer multiplications and
3444         divisions in the common case where the element size is known at
3445         compile time.
3446         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
3447         needed.
3448         (xnboundedmalloc): Remove.
3449         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
3450         arguments, for consistency with rest of this header.
3451         (xcharalloc): Rewrite using XNMALLOC.
3452         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
3453         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
3454         versions have been moved to lib/xalloc.h and renamed to be the
3455         non-*_inline versions.
3456         (xmalloc, xrealloc): Implement without reference to the xnmalloc
3457         and xnrealloc functions, since those functions are now inline and
3458         now call us.
3459         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
3460         renaming described above.
3461         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
3462         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
3463         captures the dependency in AC_C_INLINE.
3464
3465         New module canonicalize-lgpl, proposed by Charles Wilson in
3466         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
3467         with a few small changes afterwards.
3468         * MODULES.html.sh (File system functions): New module
3469         canonicalize-lgpl.
3470         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
3471         and canonicalize_file_name.
3472         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
3473         * modules/canonicalize-lgpl: New files.
3474
3475 2006-11-05  Bruno Haible  <bruno@clisp.org>
3476
3477         * gnulib-tool (func_import, func_create_testdir): Create directories
3478         also for files in subdirectories of lib/.
3479
3480 2006-11-05  Bruno Haible  <bruno@clisp.org>
3481
3482         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
3483         ANSI C compliant.
3484
3485 2006-11-03  Bruno Haible  <bruno@clisp.org>
3486
3487         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
3488         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
3489         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
3490         (xnboundedmalloc): New inline function.
3491         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
3492         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
3493         xmalloc.
3494         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
3495         xmalloc.
3496         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
3497         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
3498         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
3499         xmalloc.
3500         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3501         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
3502         xmalloc.
3503         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
3504         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3505         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
3506         xmalloc.
3507         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
3508         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
3509         gl_tree_add_after): Use XMALLOC instead of xmalloc.
3510         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
3511         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
3512         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
3513         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
3514
3515 2006-11-03  Bruno Haible  <bruno@clisp.org>
3516
3517         * lib/c-ctype.h [C++]: Define functions without name mangling.
3518         * lib/fwriteerror.h [C++]: Likewise.
3519         * lib/gcd.h [C++]: Likewise.
3520         * lib/linebreak.h [C++]: Likewise.
3521
3522 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
3523
3524         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
3525         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
3526         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
3527         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
3528         Check for functions and headers just once.
3529         Check for declaration of canonicalize_file_name.
3530         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
3531
3532 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3533
3534         * gnulib-tool (func_import): Fix typo in actioncmd.
3535
3536 2006-11-02  Bruno Haible  <bruno@clisp.org>
3537
3538         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
3539         newline sequence in the Makefile.am snippet as a space, like "make"
3540         does.
3541         Reported by Roger Persson <perrog@gmail.com>.
3542
3543 2006-11-01  Bruno Haible  <bruno@clisp.org>
3544
3545         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
3546         already declared in <string.h>.
3547         * lib/strcase.h (strncasecmp): Don't declare it if yes.
3548
3549 2006-11-01  Bruno Haible  <bruno@clisp.org>
3550
3551         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
3552         * lib/strcase.h: Include <string.h>.
3553         (strcasecmp): Define to rpl_strcasecmp here.
3554
3555 2006-11-01  Bruno Haible  <bruno@clisp.org>
3556
3557         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
3558
3559 2006-11-01  Eric Blake  <ebb9@byu.net>
3560
3561         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
3562
3563         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
3564
3565 2006-10-29  Bruno Haible  <bruno@clisp.org>
3566
3567         Make it compile in C++ mode.
3568         * lib/full-write.c (full_rw): Add a cast.
3569
3570 2006-11-01  Bruno Haible  <bruno@clisp.org>
3571
3572         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
3573         be POSIX compliant.
3574         Reported by Roger Persson <perrog@gmail.com>.
3575
3576 2006-11-01  Eric Blake  <ebb9@byu.net>
3577
3578         * lib/getopt_.h: Fix comments.
3579
3580 2006-10-31  Eric Blake  <ebb9@byu.net>
3581
3582         * modules/tmpdir (Depends-on): Add sys_stat.
3583         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
3584         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
3585         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
3586         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
3587         tempname.
3588
3589 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
3590
3591         Avoid some C++ diagnostics reported by Bruno Haible.
3592         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
3593         xmalloc.
3594         (quotearg_alloc): Use xcharalloc rather than xmalloc.
3595         (struct slotvec): Move to top level.
3596         (quotearg_n_options): Rewrite to avoid xmalloc.
3597         * lib/xalloc.h (xcharalloc): New function.
3598         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
3599         [defined __cplusplus]: Add function template that provides result
3600         type propagation.  This part of the change is from Bruno Haible.
3601
3602 2006-10-29  Bruno Haible  <bruno@clisp.org>
3603
3604         Make it compile in C++ mode.
3605         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
3606         * lib/strnlen1.c (strnlen1): Cast memchr result.
3607         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
3608         * lib/clean-temp.c (string_equals, string_hash): Add casts.
3609         (create_temp_dir): Rename local variable 'template'.
3610         (compile_csharp_using_sscli): Add cast.
3611         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
3612         * lib/findprog.c (find_in_path): Likewise.
3613         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
3614         * lib/wait-process.c (register_slave_subprocess): Likewise.
3615
3616 2006-10-22  Bruno Haible  <bruno@clisp.org>
3617
3618         * modules/tsearch: New file.
3619         * lib/tsearch.h: New file.
3620         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
3621         * m4/tsearch.m4: New file.
3622         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
3623
3624 2006-10-29  Eric Blake  <ebb9@byu.net>
3625
3626         * lib/arcfour.c: Assume config.h.
3627         * lib/arctwo.c: Likewise.
3628         * lib/base64.c: Likewise.
3629         * lib/check-version.c: Likewise.
3630         * lib/crc.c: Likewise.
3631         * lib/des.c: Likewise.
3632         * lib/gc-gnulib.c: Likewise.
3633         * lib/gc-libgcrypt.c: Likewise.
3634         * lib/gc-pbkdf2-sha1.c: Likewise.
3635         * lib/getaddrinfo.c: Likewise.
3636         * lib/getdelim.c: Likewise.
3637         * lib/getline.c: Likewise.
3638         * lib/hmac-md5.c: Likewise.
3639         * lib/hmac-sha1.c: Likewise.
3640         * lib/iconvme.c: Likewise.
3641         * lib/md2.c: Likewise.
3642         * lib/md4.c: Likewise.
3643         * lib/memxor.c: Likewise.
3644         * lib/read-file.c: Likewise.
3645         * lib/readline.c: Likewise.
3646         * lib/rijndael-alg-fst.c: Likewise.
3647         * lib/rijndael-api-fst.c: Likewise.
3648         * lib/xgetdomainname.c: Likewise.
3649
3650 2006-10-28  Eric Blake  <ebb9@byu.net>
3651
3652         * lib/xstrndup.c: Assume config.h.
3653
3654 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
3655
3656         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
3657         stat-macros.h is now for our own macros, whereas stat_h is for
3658         macros in the <sys/stat.h> name space.
3659         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
3660         (STAT_MACROS_H): Remove.
3661         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
3662         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
3663         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
3664         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
3665         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
3666         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
3667         Move these macros to ...
3668         * lib/stat_.h: here.  Don't include stat-macros.h.
3669         * lib/canonicalize.c: Don't include stat-macros.h.
3670         * lib/chown.c: Likewise.
3671         * lib/euidaccess.c: Likewise.
3672         * lib/file-type.c: Likewise.
3673         * lib/filemode.c: Likewise.
3674         * lib/glob.c: Likewise.
3675         * lib/isapipe.c: Likewise.
3676         * lib/lchown.c: Likewise.
3677         * lib/lstat.c: Likewise.
3678         * lib/mkdir-p.c: Likewise.
3679         * lib/rmdir.c: Likewise.
3680         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
3681         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
3682         unless mkdir isn't declared, to speed up 'configure'.
3683         Always create sys/stat.h, since it's unlikely any real sys/stat.h
3684         would define all the S_* symbols.
3685         * modules/canonicalize (Depends-on):
3686         Depend on sys_stat, not stat-macros.
3687         * modules/chown: Likewise.
3688         * modules/euidaccess: Likewise.
3689         * modules/filemode: Likewise.
3690         * modules/file-type: Likewise.
3691         * modules/glob: Likewise.
3692         * modules/isapipe: Likewise.
3693         * modules/lchown: Likewise.
3694         * modules/lstat: Likewise.
3695         * modules/mkancesdirs: Likewise.
3696         * modules/rmdir: Likewise.
3697         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
3698         * modules/modechange: Likewise.
3699         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
3700         (configure.ac): Remove gl_STAT_MACROS.
3701         * modules/sys_stat (Depends-on): Remove stat-macros.
3702
3703 2006-10-27  Bruno Haible  <bruno@clisp.org>
3704
3705         * m4/signed.m4: Remove file.
3706         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
3707         invocation.
3708         * modules/vasnprintf (Files): Remove m4/signed.m4.
3709
3710 2006-10-27  Bruno Haible  <bruno@clisp.org>
3711
3712         Update to GNU gettext 0.16.
3713         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
3714         m4/inttypes-h.m4, m4/signed.m4.
3715         * m4/gettext.m4: Update to GNU gettext 0.16.
3716         * m4/intl.m4: New file, from GNU gettext.
3717         * m4/intldir.m4: New file, from GNU gettext.
3718         * config/srclist.txt: Update
3719
3720 2006-10-27  Eric Blake  <ebb9@byu.net>
3721
3722         * MODULES.html.sh: Document tempname.
3723         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
3724         dependencies.
3725         (Files): Move lib/tempname.c...
3726         * modules/tempname: ...to this new module.
3727         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
3728         (gl_PREREQ_TEMPNAME): Move...
3729         * m4/tempname.m4: ...to this new file.
3730         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
3731         * modules/sys_stat (Depends-on): Add stat-macros.
3732         * lib/stat_.h (includes): Pick up stat macros.
3733         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
3734         if stat macros are broken.
3735         * lib/tempname.c (includes): No need to include "stat-macros.h".
3736         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
3737         (direxists, __path_search) [!_LIBC]: Don't compile these in
3738         gnulib; the tmpdir module covers that.
3739         * lib/tempname.h: New file.
3740
3741 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
3742
3743         * COPYING: Explain how gnulib-tool converts licence headers.
3744         Almost all wording by Eric Blake.
3745
3746 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
3747
3748         * lib/mbchar.h (is_basic_table): Make read-only.
3749         * lib/mbchar.c (is_basic_table): Likewise.
3750         Reported by John Darrington.
3751
3752 2006-10-25  Bruno Haible  <bruno@clisp.org>
3753
3754         * lib/progname.h (set_program_name): Undefine before defining.
3755
3756 2006-10-25  Bruno Haible  <bruno@clisp.org>
3757
3758         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
3759         false for non-gcc C++ compilers.
3760         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
3761
3762 2006-10-24  Bruno Haible  <bruno@clisp.org>
3763
3764         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
3765         iconv implementations like Irix iconv.
3766
3767 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3768
3769         * modules/vararrays: New file.
3770         * m4/vararrays.m4: New file, taken from diffutils.
3771         * MODULES.html.sh: New module vararrays.
3772
3773 2006-10-24  Karl Berry  <karl@gnu.org>
3774
3775         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
3776         Don't call GNU Unix.
3777
3778 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3779
3780         * users.txt: Add Libtool.
3781
3782         Sync from Libtool:
3783
3784         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3785
3786         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
3787         to gnulib's policy of including config.h unconditionally.
3788
3789 2006-10-24  Bruno Haible  <bruno@clisp.org>
3790
3791         * modules/wcwidth (Files): Add m4/wint_t.m4.
3792         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
3793         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
3794
3795 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3796
3797         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
3798         to pacify GCC with some -W flags enabled.  Problem reported by
3799         Bruno Haible.
3800
3801 2006-10-24  Jim Meyering  <jim@meyering.net>
3802
3803         * MODULES.html.sh: Remove uinttostr.  It's not a module.
3804         Reported by Karl Berry.
3805
3806 2006-10-23  Bruno Haible  <bruno@clisp.org>
3807
3808         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
3809
3810 2006-10-24  Bruno Haible  <bruno@clisp.org>
3811
3812         * lib/gl_list.h: Use C comment style, not C++ comment style.
3813
3814 2006-10-23  Eric Blake  <ebb9@byu.net>
3815
3816         * lib/getaddrinfo.c (includes): Add missing include.
3817
3818 2006-10-23  Bruno Haible  <bruno@clisp.org>
3819             Paul Eggert  <eggert@cs.ucla.edu>
3820
3821         Ability to rename obstack_free.
3822         * lib/obstack.h (__obstack_free): New macro. Declare instead of
3823         obstack_free.
3824         (obstack_free): Invoke the __obstack_free macro.
3825         * lib/obstack.c (obstack_free): Use __obstack_free macro.
3826
3827 2006-10-23  Bruno Haible  <bruno@clisp.org>
3828             Paul Eggert  <eggert@cs.ucla.edu>
3829
3830         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
3831         __argc, __argv from the declaration. (They are defined as macros on
3832         mingw.)
3833
3834 2006-10-22  Bruno Haible  <bruno@clisp.org>
3835
3836         * doc/gnulib-intro.texi: New file.
3837         * doc/gnulib.texi: Include it.
3838
3839 2006-10-21  Bruno Haible  <bruno@clisp.org>
3840
3841         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
3842         "Introduction", "Miscellanous Notes", "Particular Modules".
3843
3844 2006-10-21  Bruno Haible  <bruno@clisp.org>
3845
3846         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
3847         Change mostlyclean-local rule to avoid sh syntax error from bash
3848         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
3849
3850 2006-10-23  Jim Meyering  <jim@meyering.net>
3851
3852         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
3853         in place of snprintf.
3854
3855         * modules/inttostr (Files): Add lib/uinttostr.c.
3856         * lib/uinttostr.c (inttostr): New file/function.
3857         * lib/inttostr.h (uinttostr): Declare.
3858         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
3859         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
3860         Add uinttostr.
3861         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
3862
3863 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3864
3865         * lib/canonicalize.c (ELOOP): Define if not already defined.
3866         Problem reported by Bruno Haible in
3867         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
3868
3869 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
3870
3871         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
3872         Problem reported by Perry Smith and Ville Laurikari.
3873
3874         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
3875         uses.
3876
3877 2006-10-19  Bruno Haible  <bruno@clisp.org>
3878
3879         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
3880         for mingw.
3881
3882 2006-10-19  Bruno Haible  <bruno@clisp.org>
3883
3884         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
3885         Needed for mingw.
3886
3887 2006-10-19  Bruno Haible  <bruno@clisp.org>
3888
3889         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
3890
3891 2006-10-19  Bruno Haible  <bruno@clisp.org>
3892
3893         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
3894         it.
3895
3896 2006-10-19  Bruno Haible  <bruno@clisp.org>
3897
3898         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
3899         invocation.
3900
3901 2006-10-19  Bruno Haible  <bruno@clisp.org>
3902
3903         * gnulib-tool (func_create_testdir): Don't include ftruncate and
3904         mountlist by default.
3905
3906 2006-10-16  Bruno Haible  <bruno@clisp.org>
3907
3908         * lib/c-strstr.c: Include c-strstr.h.
3909
3910 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
3911
3912         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
3913         in a slash.
3914
3915 2006-10-18  Bruno Haible  <bruno@clisp.org>
3916
3917         * lib/lock.h [C++]: Wrap definitions in extern "C".
3918
3919 2006-10-18  Bruno Haible  <bruno@clisp.org>
3920
3921         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
3922         gl_LIBOBJS list.
3923
3924 2006-10-18  Bruno Haible  <bruno@clisp.org>
3925
3926         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
3927
3928 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3929
3930         * lib/xstrtol.h: Include gettext.h.
3931         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
3932         Problem reported by Eric Blake.
3933         * modules/xstrtol (Depends-on): Add gettext-h.
3934
3935 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
3936
3937         * lib/strftime.c (advance): New macro.
3938         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
3939         incomplete type, so you can't add 0 to it.  Problem and patch
3940         reported by Eelco Dolstra for dietlibc.
3941
3942 2006-10-18  Jim Meyering  <jim@meyering.net>
3943
3944         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
3945         type for a local, and rename it: s/up/user_proc/.
3946
3947 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3948
3949         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
3950         READ_UTMP_USER_PROCESS.
3951         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
3952
3953 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
3954
3955         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
3956         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
3957
3958 2006-10-17  Eric Blake  <ebb9@byu.net>
3959
3960         * lib/sigprocmask.c (sigprocmask): Fix typo.
3961
3962         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
3963
3964         * modules/clean-temp (Makefile.am): Don't add to make output...
3965         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
3966         config.h.
3967
3968 2006-10-17  Bruno Haible  <bruno@clisp.org>
3969
3970         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
3971         differently if DEFAULT_TEXT_DOMAIN is set.
3972
3973 2006-10-16  Bruno Haible  <bruno@clisp.org>
3974
3975         * lib/clean-temp.c: Include fwriteerror.h.
3976
3977 2006-10-16  Bruno Haible  <bruno@clisp.org>
3978
3979         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
3980
3981 2006-10-16  Bruno Haible  <bruno@clisp.org>
3982
3983         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
3984         * lib/sigprocmask.h: Include <sys/types.h>.
3985         (sigset_t): Use the system's definition if present.
3986
3987 2006-10-17  Eric Blake  <ebb9@byu.net>
3988
3989         * lib/xvasprintf.c (includes): Assume config.h.
3990         * lib/xasprintf.c (includes): Likewise.
3991
3992 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
3993
3994         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
3995         at least as wide as intmax_t.
3996
3997 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
3998
3999         (Imported from Automake.)
4000         * build-aux/gnupload: Update to version 1.1 of directive file.
4001
4002 2006-10-16  Eric Blake  <ebb9@byu.net>
4003
4004         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
4005         match Automake 1.10a.
4006
4007 2006-10-14  Bruno Haible  <bruno@clisp.org>
4008
4009         * modules/sigprocmask: New file.
4010         * lib/sigprocmask.h: New file.
4011         * lib/sigprocmask.c: New file.
4012         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
4013         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
4014         request sigprocmask.o.
4015         (gl_PREREQ_SIGPROCMASK): New macro.
4016         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
4017         (Depends-on): Add sigprocmask.
4018         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
4019         gt_SIGNALBLOCKING. Test for 'raise' only once.
4020         * lib/fatal-signal.c: Include sigprocmask.h.
4021         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
4022         unblock_fatal_signals): Define always.
4023         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
4024         sigprocmask.
4025
4026 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
4027
4028         Sync from Automake.
4029         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
4030         which incorrectly sets the mode of an existing destination
4031         directory.  In some cases the unpatched install-sh could do the
4032         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
4033         system.  We hope this is rare in practice, but it's clearly worth
4034         fixing.  Problem reported by Alex Unleashed in
4035         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
4036         Also, don't bother to check for -m bugs unless we're using -m;
4037         suggested by Stepan Kasal.
4038
4039 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4040
4041         Sync from Automake.
4042         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
4043         `-c' flag, so they appear at the same position as in %FASTDEP%
4044         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
4045         which ignores unknown options only after the first non-option.
4046         Bug report against M4 by Nelson H. F. Beebe.
4047
4048 2006-10-13  Jim Meyering  <jim@meyering.net>
4049
4050         Fix a bug in yesterday's change.
4051         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
4052         p->fts_statp->st_dev would be used uninitialized.
4053         Ensures that we always call fts_stat on the very first entry.
4054         Miklos Szeredi reported that find -xdev stopped working.
4055
4056 2006-10-12  Bruno Haible  <bruno@clisp.org>
4057
4058         * gnulib-tool (func_get_automake_snippet): Append an automatically
4059         computed EXTRA_DIST augmentation.
4060         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
4061         * modules/alloca-opt (Makefile.am): Likewise.
4062         * modules/allocsa (Makefile.am): Likewise.
4063         * modules/arcfour (Makefile.am): Likewise.
4064         * modules/arctwo (Makefile.am): Likewise.
4065         * modules/argmatch (Makefile.am): Likewise.
4066         * modules/argz (Makefile.am): Likewise.
4067         * modules/atexit (Makefile.am): Likewise.
4068         * modules/backupfile (Makefile.am): Likewise.
4069         * modules/byteswap (Makefile.am): Likewise.
4070         * modules/c-strtod (Makefile.am): Likewise.
4071         * modules/c-strtold (Makefile.am): Likewise.
4072         * modules/calloc (Makefile.am): Likewise.
4073         * modules/canon-host (Makefile.am): Likewise.
4074         * modules/canonicalize (Makefile.am): Likewise.
4075         * modules/chdir-long (Makefile.am): Likewise.
4076         * modules/chdir-safer (Makefile.am): Likewise.
4077         * modules/check-version (Makefile.am): Likewise.
4078         * modules/chown (Makefile.am): Likewise.
4079         * modules/cloexec (Makefile.am): Likewise.
4080         * modules/close-stream (Makefile.am): Likewise.
4081         * modules/closeout (Makefile.am): Likewise.
4082         * modules/crc (Makefile.am): Likewise.
4083         * modules/csharpexec (Makefile.am): Likewise.
4084         * modules/cycle-check (Makefile.am): Likewise.
4085         * modules/des (Makefile.am): Likewise.
4086         * modules/dev-ino (Makefile.am): Likewise.
4087         * modules/dirfd (Makefile.am): Likewise.
4088         * modules/dirname (Makefile.am): Likewise.
4089         * modules/dup2 (Makefile.am): Likewise.
4090         * modules/eealloc (Makefile.am): Likewise.
4091         * modules/error (Makefile.am): Likewise.
4092         * modules/euidaccess (Makefile.am): Likewise.
4093         * modules/exclude (Makefile.am): Likewise.
4094         * modules/exitfail (Makefile.am): Likewise.
4095         * modules/fcntl-safer (Makefile.am): Likewise.
4096         * modules/fcntl (Makefile.am): Likewise.
4097         * modules/file-type (Makefile.am): Likewise.
4098         * modules/fileblocks (Makefile.am): Likewise.
4099         * modules/filemode (Makefile.am): Likewise.
4100         * modules/filenamecat (Makefile.am): Likewise.
4101         * modules/fnmatch (Makefile.am): Likewise.
4102         * modules/fopen-safer (Makefile.am): Likewise.
4103         * modules/fpending (Makefile.am): Likewise.
4104         * modules/fprintftime (Makefile.am): Likewise.
4105         * modules/free (Makefile.am): Likewise.
4106         * modules/fsusage (Makefile.am): Likewise.
4107         * modules/ftruncate (Makefile.am): Likewise.
4108         * modules/fts (Makefile.am): Likewise.
4109         * modules/gc-arcfour (Makefile.am): Likewise.
4110         * modules/gc-des (Makefile.am): Likewise.
4111         * modules/gc-hmac-md5 (Makefile.am): Likewise.
4112         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
4113         * modules/gc-md4 (Makefile.am): Likewise.
4114         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
4115         * modules/gc-sha1 (Makefile.am): Likewise.
4116         * modules/gc (Makefile.am): Likewise.
4117         * modules/getaddrinfo (Makefile.am): Likewise.
4118         * modules/getcwd (Makefile.am): Likewise.
4119         * modules/getdelim (Makefile.am): Likewise.
4120         * modules/getdomainname (Makefile.am): Likewise.
4121         * modules/getgroups (Makefile.am): Likewise.
4122         * modules/gethostname (Makefile.am): Likewise.
4123         * modules/gethrxtime (Makefile.am): Likewise.
4124         * modules/getline (Makefile.am): Likewise.
4125         * modules/getloadavg (Makefile.am): Likewise.
4126         * modules/getlogin_r (Makefile.am): Likewise.
4127         * modules/getndelim2 (Makefile.am): Likewise.
4128         * modules/getopt (Makefile.am): Likewise.
4129         * modules/getpagesize (Makefile.am): Likewise.
4130         * modules/getpass-gnu (Makefile.am): Likewise.
4131         * modules/getpass (Makefile.am): Likewise.
4132         * modules/getsubopt (Makefile.am): Likewise.
4133         * modules/gettime (Makefile.am): Likewise.
4134         * modules/gettimeofday (Makefile.am): Likewise.
4135         * modules/getugroups (Makefile.am): Likewise.
4136         * modules/getusershell (Makefile.am): Likewise.
4137         * modules/glob (Makefile.am): Likewise.
4138         * modules/group-member (Makefile.am): Likewise.
4139         * modules/hard-locale (Makefile.am): Likewise.
4140         * modules/hash (Makefile.am): Likewise.
4141         * modules/hmac-md5 (Makefile.am): Likewise.
4142         * modules/hmac-sha1 (Makefile.am): Likewise.
4143         * modules/human (Makefile.am): Likewise.
4144         * modules/idcache (Makefile.am): Likewise.
4145         * modules/imaxabs (Makefile.am): Likewise.
4146         * modules/imaxdiv (Makefile.am): Likewise.
4147         * modules/inet_ntop (Makefile.am): Likewise.
4148         * modules/inet_pton (Makefile.am): Likewise.
4149         * modules/intprops (Makefile.am): Likewise.
4150         * modules/inttostr (Makefile.am): Likewise.
4151         * modules/inttypes (Makefile.am): Likewise.
4152         * modules/isapipe (Makefile.am): Likewise.
4153         * modules/javaversion (Makefile.am): Likewise.
4154         * modules/lchmod (Makefile.am): Likewise.
4155         * modules/lchown (Makefile.am): Likewise.
4156         * modules/localcharset (Makefile.am): Likewise.
4157         * modules/long-options (Makefile.am): Likewise.
4158         * modules/lstat (Makefile.am): Likewise.
4159         * modules/malloc (Makefile.am): Likewise.
4160         * modules/mathl (Makefile.am): Likewise.
4161         * modules/mbchar (Makefile.am): Likewise.
4162         * modules/md2 (Makefile.am): Likewise.
4163         * modules/md4 (Makefile.am): Likewise.
4164         * modules/md5 (Makefile.am): Likewise.
4165         * modules/memcasecmp (Makefile.am): Likewise.
4166         * modules/memchr (Makefile.am): Likewise.
4167         * modules/memcmp (Makefile.am): Likewise.
4168         * modules/memcoll (Makefile.am): Likewise.
4169         * modules/memcpy (Makefile.am): Likewise.
4170         * modules/memmem (Makefile.am): Likewise.
4171         * modules/memmove (Makefile.am): Likewise.
4172         * modules/mempcpy (Makefile.am): Likewise.
4173         * modules/memrchr (Makefile.am): Likewise.
4174         * modules/memset (Makefile.am): Likewise.
4175         * modules/memxor (Makefile.am): Likewise.
4176         * modules/mkancesdirs (Makefile.am): Likewise.
4177         * modules/mkdir-p (Makefile.am): Likewise.
4178         * modules/mkdir (Makefile.am): Likewise.
4179         * modules/mkdtemp (Makefile.am): Likewise.
4180         * modules/mkstemp (Makefile.am): Likewise.
4181         * modules/mktime (Makefile.am): Likewise.
4182         * modules/modechange (Makefile.am): Likewise.
4183         * modules/mountlist (Makefile.am): Likewise.
4184         * modules/nanosleep (Makefile.am): Likewise.
4185         * modules/obstack (Makefile.am): Likewise.
4186         * modules/openat (Makefile.am): Likewise.
4187         * modules/pagealign_alloc (Makefile.am): Likewise.
4188         * modules/pathmax (Makefile.am): Likewise.
4189         * modules/physmem (Makefile.am): Likewise.
4190         * modules/poll (Makefile.am): Likewise.
4191         * modules/posixtm (Makefile.am): Likewise.
4192         * modules/posixver (Makefile.am): Likewise.
4193         * modules/putenv (Makefile.am): Likewise.
4194         * modules/quote (Makefile.am): Likewise.
4195         * modules/quotearg (Makefile.am): Likewise.
4196         * modules/raise (Makefile.am): Likewise.
4197         * modules/read-file (Makefile.am): Likewise.
4198         * modules/readline (Makefile.am): Likewise.
4199         * modules/readlink (Makefile.am): Likewise.
4200         * modules/readtokens (Makefile.am): Likewise.
4201         * modules/readutmp (Makefile.am): Likewise.
4202         * modules/realloc (Makefile.am): Likewise.
4203         * modules/regex (Makefile.am): Likewise.
4204         * modules/rename-dest-slash (Makefile.am): Likewise.
4205         * modules/rename (Makefile.am): Likewise.
4206         * modules/rijndael (Makefile.am): Likewise.
4207         * modules/rmdir (Makefile.am): Likewise.
4208         * modules/rpmatch (Makefile.am): Likewise.
4209         * modules/safe-read (Makefile.am): Likewise.
4210         * modules/safe-write (Makefile.am): Likewise.
4211         * modules/same-inode (Makefile.am): Likewise.
4212         * modules/same (Makefile.am): Likewise.
4213         * modules/save-cwd (Makefile.am): Likewise.
4214         * modules/savedir (Makefile.am): Likewise.
4215         * modules/setenv (Makefile.am): Likewise.
4216         * modules/settime (Makefile.am): Likewise.
4217         * modules/sha1 (Makefile.am): Likewise.
4218         * modules/sig2str (Makefile.am): Likewise.
4219         * modules/snprintf (Makefile.am): Likewise.
4220         * modules/stat-macros (Makefile.am): Likewise.
4221         * modules/stat-time (Makefile.am): Likewise.
4222         * modules/stdbool (Makefile.am): Likewise.
4223         * modules/stdint (Makefile.am): Likewise.
4224         * modules/stdlib-safer (Makefile.am): Likewise.
4225         * modules/stpcpy (Makefile.am): Likewise.
4226         * modules/stpncpy (Makefile.am): Likewise.
4227         * modules/strcase (Makefile.am): Likewise.
4228         * modules/strcasestr (Makefile.am): Likewise.
4229         * modules/strchrnul (Makefile.am): Likewise.
4230         * modules/strcspn (Makefile.am): Likewise.
4231         * modules/strdup (Makefile.am): Likewise.
4232         * modules/strerror (Makefile.am): Likewise.
4233         * modules/strftime (Makefile.am): Likewise.
4234         * modules/strndup (Makefile.am): Likewise.
4235         * modules/strnlen (Makefile.am): Likewise.
4236         * modules/strpbrk (Makefile.am): Likewise.
4237         * modules/strsep (Makefile.am): Likewise.
4238         * modules/strstr (Makefile.am): Likewise.
4239         * modules/strtod (Makefile.am): Likewise.
4240         * modules/strtoimax (Makefile.am): Likewise.
4241         * modules/strtok_r (Makefile.am): Likewise.
4242         * modules/strtol (Makefile.am): Likewise.
4243         * modules/strtoll (Makefile.am): Likewise.
4244         * modules/strtoul (Makefile.am): Likewise.
4245         * modules/strtoull (Makefile.am): Likewise.
4246         * modules/strtoumax (Makefile.am): Likewise.
4247         * modules/strverscmp (Makefile.am): Likewise.
4248         * modules/sys_socket (Makefile.am): Likewise.
4249         * modules/sys_stat (Makefile.am): Likewise.
4250         * modules/sysexits (Makefile.am): Likewise.
4251         * modules/time_r (Makefile.am): Likewise.
4252         * modules/timegm (Makefile.am): Likewise.
4253         * modules/timespec (Makefile.am): Likewise.
4254         * modules/tmpfile-safer (Makefile.am): Likewise.
4255         * modules/trim (Makefile.am): Likewise.
4256         * modules/unistd-safer (Makefile.am): Likewise.
4257         * modules/unlinkdir (Makefile.am): Likewise.
4258         * modules/unlocked-io (Makefile.am): Likewise.
4259         * modules/userspec (Makefile.am): Likewise.
4260         * modules/utime (Makefile.am): Likewise.
4261         * modules/utimecmp (Makefile.am): Likewise.
4262         * modules/utimens (Makefile.am): Likewise.
4263         * modules/vasnprintf (Makefile.am): Likewise.
4264         * modules/vasprintf (Makefile.am): Likewise.
4265         * modules/vsnprintf (Makefile.am): Likewise.
4266         * modules/xalloc (Makefile.am): Likewise.
4267         * modules/xgetcwd (Makefile.am): Likewise.
4268         * modules/xnanosleep (Makefile.am): Likewise.
4269         * modules/xreadlink (Makefile.am): Likewise.
4270         * modules/xstrtod (Makefile.am): Likewise.
4271         * modules/xstrtol (Makefile.am): Likewise.
4272         * modules/xstrtold (Makefile.am): Likewise.
4273         * modules/yesno (Makefile.am): Likewise.
4274         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
4275
4276 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
4277
4278         * modules/error (Makefile.am): Distribute files through
4279         EXTRA_DIST, not lib_SOURCES.
4280
4281 2006-10-12  Eric Blake  <ebb9@byu.net>
4282
4283         * modules/error (Makefile.am): Distribute files in /lib.
4284         * modules/obstack (Makefile.am): Likewise.
4285
4286 2006-10-12  Bruno Haible  <bruno@clisp.org>
4287
4288         * modules/acl (Makefile.am): Distribute all files in lib/ through
4289         EXTRA_DIST.
4290         * modules/arcfour (Makefile.am): Likewise.
4291         * modules/arctwo (Makefile.am): Likewise.
4292         * modules/argmatch (Makefile.am): Likewise.
4293         * modules/argz (Makefile.am): Likewise.
4294         * modules/atexit (Makefile.am): Likewise.
4295         * modules/backupfile (Makefile.am): Likewise.
4296         * modules/c-strtod (Makefile.am): Likewise.
4297         * modules/c-strtold (Makefile.am): Likewise.
4298         * modules/calloc (Makefile.am): Likewise.
4299         * modules/canon-host (Makefile.am): Likewise.
4300         * modules/canonicalize (Makefile.am): Likewise.
4301         * modules/chdir-long (Makefile.am): Likewise.
4302         * modules/chdir-safer (Makefile.am): Likewise.
4303         * modules/check-version (Makefile.am): Likewise.
4304         * modules/chown (Makefile.am): Likewise.
4305         * modules/cloexec (Makefile.am): Likewise.
4306         * modules/close-stream (Makefile.am): Likewise.
4307         * modules/closeout (Makefile.am): Likewise.
4308         * modules/crc (Makefile.am): Likewise.
4309         * modules/cycle-check (Makefile.am): Likewise.
4310         * modules/des (Makefile.am): Likewise.
4311         * modules/dirfd (Makefile.am): Likewise.
4312         * modules/dirname (Makefile.am): Likewise.
4313         * modules/dup2 (Makefile.am): Likewise.
4314         * modules/euidaccess (Makefile.am): Likewise.
4315         * modules/exclude (Makefile.am): Likewise.
4316         * modules/exitfail (Makefile.am): Likewise.
4317         * modules/fcntl-safer (Makefile.am): Likewise.
4318         * modules/file-type (Makefile.am): Likewise.
4319         * modules/fileblocks (Makefile.am): Likewise.
4320         * modules/filemode (Makefile.am): Likewise.
4321         * modules/filenamecat (Makefile.am): Likewise.
4322         * modules/fnmatch (Makefile.am): Likewise.
4323         * modules/fopen-safer (Makefile.am): Likewise.
4324         * modules/fpending (Makefile.am): Likewise.
4325         * modules/fprintftime (Makefile.am): Likewise.
4326         * modules/free (Makefile.am): Likewise.
4327         * modules/fsusage (Makefile.am): Likewise.
4328         * modules/ftruncate (Makefile.am): Likewise.
4329         * modules/fts (Makefile.am): Likewise.
4330         * modules/gc (Makefile.am): Likewise.
4331         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
4332         * modules/getaddrinfo (Makefile.am): Likewise.
4333         * modules/getcwd (Makefile.am): Likewise.
4334         * modules/getdelim (Makefile.am): Likewise.
4335         * modules/getdomainname (Makefile.am): Likewise.
4336         * modules/getgroups (Makefile.am): Likewise.
4337         * modules/gethostname (Makefile.am): Likewise.
4338         * modules/gethrxtime (Makefile.am): Likewise.
4339         * modules/getline (Makefile.am): Likewise.
4340         * modules/getloadavg (Makefile.am): Likewise.
4341         * modules/getlogin_r (Makefile.am): Likewise.
4342         * modules/getopt (Makefile.am): Likewise.
4343         * modules/getpass (Makefile.am): Likewise.
4344         * modules/getpass-gnu (Makefile.am): Likewise.
4345         * modules/getsubopt (Makefile.am): Likewise.
4346         * modules/gettime (Makefile.am): Likewise.
4347         * modules/gettimeofday (Makefile.am): Likewise.
4348         * modules/getugroups (Makefile.am): Likewise.
4349         * modules/getusershell (Makefile.am): Likewise.
4350         * modules/glob (Makefile.am): Likewise.
4351         * modules/group-member (Makefile.am): Likewise.
4352         * modules/hard-locale (Makefile.am): Likewise.
4353         * modules/hash (Makefile.am): Likewise.
4354         * modules/hmac-md5 (Makefile.am): Likewise.
4355         * modules/hmac-sha1 (Makefile.am): Likewise.
4356         * modules/human (Makefile.am): Likewise.
4357         * modules/idcache (Makefile.am): Likewise.
4358         * modules/imaxabs (Makefile.am): Likewise.
4359         * modules/imaxdiv (Makefile.am): Likewise.
4360         * modules/inet_ntop (Makefile.am): Likewise.
4361         * modules/inet_pton (Makefile.am): Likewise.
4362         * modules/inttostr (Makefile.am): Likewise.
4363         * modules/isapipe (Makefile.am): Likewise.
4364         * modules/lchown (Makefile.am): Likewise.
4365         * modules/long-options (Makefile.am): Likewise.
4366         * modules/lstat (Makefile.am): Likewise.
4367         * modules/malloc (Makefile.am): Likewise.
4368         * modules/mathl (Makefile.am): Likewise.
4369         * modules/mbchar (Makefile.am): Likewise.
4370         * modules/md2 (Makefile.am): Likewise.
4371         * modules/md4 (Makefile.am): Likewise.
4372         * modules/md5 (Makefile.am): Likewise.
4373         * modules/memcasecmp (Makefile.am): Likewise.
4374         * modules/memchr (Makefile.am): Likewise.
4375         * modules/memcmp (Makefile.am): Likewise.
4376         * modules/memcoll (Makefile.am): Likewise.
4377         * modules/memcpy (Makefile.am): Likewise.
4378         * modules/memmem (Makefile.am): Likewise.
4379         * modules/memmove (Makefile.am): Likewise.
4380         * modules/mempcpy (Makefile.am): Likewise.
4381         * modules/memrchr (Makefile.am): Likewise.
4382         * modules/memset (Makefile.am): Likewise.
4383         * modules/memxor (Makefile.am): Likewise.
4384         * modules/mkancesdirs (Makefile.am): Likewise.
4385         * modules/mkdir (Makefile.am): Likewise.
4386         * modules/mkdir-p (Makefile.am): Likewise.
4387         * modules/mkdtemp (Makefile.am): Likewise.
4388         * modules/mkstemp (Makefile.am): Likewise.
4389         * modules/mktime (Makefile.am): Likewise.
4390         * modules/modechange (Makefile.am): Likewise.
4391         * modules/mountlist (Makefile.am): Likewise.
4392         * modules/nanosleep (Makefile.am): Likewise.
4393         * modules/openat (Makefile.am): Likewise.
4394         * modules/pagealign_alloc (Makefile.am): Likewise.
4395         * modules/physmem (Makefile.am): Likewise.
4396         * modules/poll (Makefile.am): Likewise.
4397         * modules/posixtm (Makefile.am): Likewise.
4398         * modules/posixver (Makefile.am): Likewise.
4399         * modules/putenv (Makefile.am): Likewise.
4400         * modules/quote (Makefile.am): Likewise.
4401         * modules/quotearg (Makefile.am): Likewise.
4402         * modules/raise (Makefile.am): Likewise.
4403         * modules/read-file (Makefile.am): Likewise.
4404         * modules/readline (Makefile.am): Likewise.
4405         * modules/readlink (Makefile.am): Likewise.
4406         * modules/readtokens (Makefile.am): Likewise.
4407         * modules/readutmp (Makefile.am): Likewise.
4408         * modules/realloc (Makefile.am): Likewise.
4409         * modules/regex (Makefile.am): Likewise.
4410         * modules/rename (Makefile.am): Likewise.
4411         * modules/rename-dest-slash (Makefile.am): Likewise.
4412         * modules/rijndael (Makefile.am): Likewise.
4413         * modules/rmdir (Makefile.am): Likewise.
4414         * modules/rpmatch (Makefile.am): Likewise.
4415         * modules/safe-read (Makefile.am): Likewise.
4416         * modules/safe-write (Makefile.am): Likewise.
4417         * modules/same (Makefile.am): Likewise.
4418         * modules/save-cwd (Makefile.am): Likewise.
4419         * modules/savedir (Makefile.am): Likewise.
4420         * modules/setenv (Makefile.am): Likewise.
4421         * modules/settime (Makefile.am): Likewise.
4422         * modules/sha1 (Makefile.am): Likewise.
4423         * modules/sig2str (Makefile.am): Likewise.
4424         * modules/snprintf (Makefile.am): Likewise.
4425         * modules/stdlib-safer (Makefile.am): Likewise.
4426         * modules/stpcpy (Makefile.am): Likewise.
4427         * modules/stpncpy (Makefile.am): Likewise.
4428         * modules/strcase (Makefile.am): Likewise.
4429         * modules/strcasestr (Makefile.am): Likewise.
4430         * modules/strchrnul (Makefile.am): Likewise.
4431         * modules/strcspn (Makefile.am): Likewise.
4432         * modules/strdup (Makefile.am): Likewise.
4433         * modules/strerror (Makefile.am): Likewise.
4434         * modules/strftime (Makefile.am): Likewise.
4435         * modules/strndup (Makefile.am): Likewise.
4436         * modules/strnlen (Makefile.am): Likewise.
4437         * modules/strpbrk (Makefile.am): Likewise.
4438         * modules/strsep (Makefile.am): Likewise.
4439         * modules/strstr (Makefile.am): Likewise.
4440         * modules/strtod (Makefile.am): Likewise.
4441         * modules/strtoimax (Makefile.am): Likewise.
4442         * modules/strtok_r (Makefile.am): Likewise.
4443         * modules/strtol (Makefile.am): Likewise.
4444         * modules/strtoll (Makefile.am): Likewise.
4445         * modules/strtoul (Makefile.am): Likewise.
4446         * modules/strtoull (Makefile.am): Likewise.
4447         * modules/strtoumax (Makefile.am): Likewise.
4448         * modules/strverscmp (Makefile.am): Likewise.
4449         * modules/time_r (Makefile.am): Likewise.
4450         * modules/timegm (Makefile.am): Likewise.
4451         * modules/tmpfile-safer (Makefile.am): Likewise.
4452         * modules/unistd-safer (Makefile.am): Likewise.
4453         * modules/unlinkdir (Makefile.am): Likewise.
4454         * modules/userspec (Makefile.am): Likewise.
4455         * modules/utime (Makefile.am): Likewise.
4456         * modules/utimecmp (Makefile.am): Likewise.
4457         * modules/utimens (Makefile.am): Likewise.
4458         * modules/vasnprintf (Makefile.am): Likewise.
4459         * modules/vasprintf (Makefile.am): Likewise.
4460         * modules/vsnprintf (Makefile.am): Likewise.
4461         * modules/xalloc (Makefile.am): Likewise.
4462         * modules/xgetcwd (Makefile.am): Likewise.
4463         * modules/xnanosleep (Makefile.am): Likewise.
4464         * modules/xreadlink (Makefile.am): Likewise.
4465         * modules/xstrtod (Makefile.am): Likewise.
4466         * modules/xstrtol (Makefile.am): Likewise.
4467         * modules/xstrtold (Makefile.am): Likewise.
4468         * modules/yesno (Makefile.am): Likewise.
4469
4470 2006-10-12  Jim Meyering  <jim@meyering.net>
4471
4472         * m4/getloadavg.m4: Revert the change below.
4473
4474         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
4475         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
4476         fail with a symlink, which is what coreutils' ./bootstrap now
4477         creates by default.
4478
4479 2006-10-12  Bruno Haible  <bruno@clisp.org>
4480
4481         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
4482         mingw.
4483         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
4484         MSVC and mingw explicitly.
4485
4486 2006-10-11  Simon Josefsson  <jas@extundo.com>
4487             Bruno Haible  <bruno@clisp.org>
4488
4489         Add support for multiple gnulib-tool invocations in the scope of a
4490         single configure.ac file.
4491         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
4492         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
4493         with the same contents as the _LIBADD variable.
4494         (func_emit_initmacro_start, func_emit_initmacro_end,
4495         func_emit_initmacro_done): New functions.
4496         (func_import, func_create_testdir): Invoke them. Allow the identifiers
4497         gl_LIBOBJS and gl_LTLIBOBJS.
4498
4499 2006-10-11  Bruno Haible  <bruno@clisp.org>
4500
4501         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
4502         (func_create_testdir): Don't create po/Makefile.am, don't invoke
4503         autoreconf. Instead, invoke autopoint explicitly but move back the
4504         *.m4 files from gnulib.
4505
4506 2006-10-11  Bruno Haible  <bruno@clisp.org>
4507
4508         * gnulib-tool (func_usage): Make module names after --create-testdir
4509         optional.
4510         (func_create_testdir): If no module was specified, use nearly all
4511         modules.
4512
4513 2006-10-12  Jim Meyering  <jim@meyering.net>
4514
4515         Big performance improvement for fts-based tools that use FTS_NOSTAT.
4516         Avoid spurious inode-mismatch problems on non-POSIX file systems.
4517         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
4518         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
4519         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
4520         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
4521         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
4522         (fts_set_stat_required): New function.
4523         (fts_open): Defer the calls to fts_stat, if possible or requested.
4524         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
4525         into fts_stat itself.
4526         (fts_read): Perform any required (deferred) fts_stat call.
4527         (fts_build): Likewise, for the directory we're about to open and read.
4528         In the readdir loop, carefully decide whether each entry will require
4529         an eventual call to fts_stat, using dirent.d_type info if available.
4530         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
4531         a command line argument into this function.  Update all callers.
4532         Map a return value of FTS_DOT to FTS_D for a command line argument.
4533         * modules/fts (Depends-on): Add d-type.  Alphabetize.
4534         Thanks to Miklos Szeredi for his tenacity and for the initial
4535         bug report about "find" failing on a FUSE-based file system.
4536
4537         * lib/fts.c (fts_open): Use consistent indentation.
4538
4539 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
4540
4541         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
4542         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
4543         reported by Jim Meyering.  All uses of cache variables renamed
4544         to match Autoconf's.
4545         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
4546         the other one.
4547
4548         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
4549         Fix misspelling in diagnostic.
4550
4551 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4552
4553         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
4554         defined.  Problem reported by Matthew Woehlke.
4555
4556         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
4557         Add support for Tandem NonStop R series.
4558         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
4559         Use new macro.
4560
4561         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
4562         (has_trailing_slash): Omit size arg; all callers changed.
4563         Omit 'inline', since it doesn't help performance and we'd
4564         need to configure it.
4565         Don't count //, ///, etc. as having a trailing slash.
4566         As a side effect, this removes a C99ism reported by Matthew Woehlke.
4567         (rpl_rename_dest_slash): On failure, use rename's errno rather
4568         than (in some cases) an incorrect or junk errno.
4569         Simplify code by removing need to compute length; this does
4570         cause it to make two passes instead of one over the file name,
4571         but it's worth it.
4572
4573         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
4574         change, since Autoconf's version may no longer be appropriate now
4575         that we are using CVS Autoconf's version.  Add support for Tandem.
4576
4577 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4578             Bruno Haible  <bruno@clisp.org>
4579
4580         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
4581         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
4582         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
4583         gl_AC_TYPE_LONG_LONG.
4584
4585         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
4586         instead of HAVE_LONG_LONG.
4587         * lib/printf-args.c (printf_fetchargs): Likewise.
4588         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
4589         * lib/vasnprintf.c (VASNPRINTF): Likewise.
4590         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
4591         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
4592         gl_AC_TYPE_LONG_LONG.
4593
4594 2006-10-11  Bruno Haible  <bruno@clisp.org>
4595
4596         * m4/longlong.m4: Add comments.
4597         * m4/ulonglong.m4: Likewise.
4598
4599 2006-10-10  Bruno Haible  <bruno@clisp.org>
4600
4601         Make it possible to #define stpcpy, strdup to aliases.
4602         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
4603         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
4604
4605 2006-10-10  Bruno Haible  <bruno@clisp.org>
4606
4607         Make it possible to #define gcd to an alias.
4608         * lib/gcd.c: Include config.h.
4609
4610 2006-10-10  Bruno Haible  <bruno@clisp.org>
4611
4612         Make it possible to #define c_isascii to an alias.
4613         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
4614         defined. Undefine the macros before defining them, to avoid gcc
4615         warnings.
4616         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
4617         define NO_C_CTYPE_MACROS early.
4618
4619 2006-10-10  Bruno Haible  <bruno@clisp.org>
4620
4621         Make it possible to #define set_program_name to an alias.
4622         * lib/progname.c: Don't undefine set_program_name; instead, undefine
4623         ENABLE_RELOCATABLE early.
4624
4625 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
4626
4627         Port to Tandem NSK OSS, which has 64-bit signed int but at most
4628         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
4629         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
4630         More generally, don't assume that 64-bit signed int is available
4631         if unsigned int is, and vice versa.
4632         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
4633         unsigned symbols, not on their signed counterparts.
4634         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
4635         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
4636         (UINT64_C, UINTMAX_C):
4637         Likewise.
4638         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
4639         unsigned counterparts.
4640         (Have_long_long, Unsigned): New macros.
4641         (Int): Renamed from INT.
4642         (strtoimax): Use the new macros.
4643         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
4644         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
4645         * modules/inttypes (inttypes.h): Substitute
4646         HAVE_UNSIGNED_LONG_LONG_INT.
4647         * modules/stdint (stdint.h): Likewise.
4648         (Files): Add m4/ulonglong.m4.
4649
4650 2006-10-10  Bruno Haible  <bruno@clisp.org>
4651
4652         Fix a gcc -Wshadow warning.
4653         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
4654         to 'bucket'.
4655         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
4656         gl_linked_indexof_from_to): Likewise.
4657         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
4658         Likewise.
4659         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
4660         Likewise.
4661         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
4662         Reported by Eric Blake.
4663
4664 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
4665
4666         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
4667         for NetBSD.  Problem reported by Bruno Haible.
4668
4669 2006-10-09  Jim Meyering  <jim@meyering.net>
4670
4671         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
4672         Patch from Bruno Haible.
4673
4674 2006-10-09  Jim Meyering  <jim@meyering.net>
4675
4676         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
4677         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
4678         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
4679
4680 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
4681
4682         Don't include <config.h> twice; this doesn't work in some cases,
4683         e.g., when config.h has "#define intmax_t long long int" and
4684         we include <config.h>, <inttypes.h>, <config.h> in that order.
4685         Problem reported by Matthew Woehlke in:
4686         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
4687         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
4688         * lib/fts-cycle.c: Don't include config.h.
4689         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
4690         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
4691         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
4692         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
4693         inttypes.h.
4694         * lib/xstrtoumax.c: Likewise.
4695         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
4696         __strtol and the like, so that this module is more like its siblings.
4697         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
4698         Remove; no longer needed now that we assume gnulib inttypes.h.
4699
4700 2006-10-08  Bruno Haible  <bruno@clisp.org>
4701
4702         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
4703         option.
4704
4705 2006-10-07  Jim Meyering  <jim@meyering.net>
4706
4707         * modules/inttypes (inttypes.h): Revert what seems to have been
4708         an inadvertent part of today's change: use "|", not "/" in the
4709         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
4710
4711 2006-10-07  Bruno Haible  <bruno@clisp.org>
4712
4713         * modules/sublist: New file.
4714
4715 2006-10-07  Bruno Haible  <bruno@clisp.org>
4716
4717         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
4718         * modules/argz (argz.h): Likewise.
4719         * modules/arpa_inet (arpa/inet.h): Likewise.
4720         * modules/byteswap (byteswap.h): Likewise.
4721         * modules/configmake (configmake.h): Likewise.
4722         * modules/fcntl (fcntl.h): Likewise.
4723         * modules/fnmatch (fnmatch.h): Likewise.
4724         * modules/getopt (getopt.h): Likewise.
4725         * modules/glob (glob.h): Likewise.
4726         * modules/inttypes (inttypes.h): Likewise.
4727         * modules/netinet_in (netinet/in.h): Likewise.
4728         * modules/poll (poll.h): Likewise.
4729         * modules/stdbool (stdbool.h): Likewise.
4730         * modules/stdint (stdint.h): Likewise.
4731         * modules/sys_select (sys/select.h): Likewise.
4732         * modules/sys_socket (sys/socket.h): Likewise.
4733         * modules/sys_stat (sys/stat.h): Likewise.
4734         * modules/sysexits (sysexits.h): Likewise.
4735         * modules/unistd (unistd.h): Likewise.
4736         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
4737         Add a "DO NOT EDIT" comment to the generated file.
4738         (func_import): Likewise for gnulib-comp.m4.
4739
4740 2006-10-07  Bruno Haible  <bruno@clisp.org>
4741
4742         * lib/gl_sublist.h: New file.
4743         * lib/gl_sublist.c: New file.
4744
4745 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
4746
4747         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
4748         name (relative to the original working directory) and the file
4749         name component (relative to the temporary working directory).  All
4750         callers changed.
4751         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
4752         * lib/mkdir-p.c (make_dir_parents): Likewise.
4753         * lib/mkdir-p.h (make_dir_parents): Likewise.
4754
4755 2006-10-06  Eric Blake  <ebb9@byu.net>
4756
4757         Define several macros for use by the clean-temp module.
4758         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
4759         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
4760         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
4761
4762         * lib/clean-temp.h (close_stream_temp): New declaration.
4763         * lib/clean-temp.c (includes): Pull in headers according to what
4764         other modules are in use.
4765         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
4766
4767 2006-10-06  Bruno Haible  <bruno@clisp.org>
4768
4769         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
4770         instead of fopen, fwriteerror.
4771
4772 2006-10-06  Bruno Haible  <bruno@clisp.org>
4773
4774         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
4775         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
4776         int.
4777         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
4778         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
4779         Return an error indicator.
4780         Suggested by Eric Blake.
4781
4782 2006-10-06  Bruno Haible  <bruno@clisp.org>
4783
4784         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
4785         Reported by Eric Blake.
4786
4787 2006-10-06  Bruno Haible  <bruno@clisp.org>
4788
4789         * modules/closeout (Description): Mention stderr too.
4790
4791 2006-10-06  Bruno Haible  <bruno@clisp.org>
4792         and Paul Eggert  <eggert@cs.ucla.edu>
4793
4794         * lib/closeout.c (close_stdout): Also close stderr.
4795         * lib/closeout.h: Update comment.
4796
4797 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4798
4799         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
4800         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
4801         * lib/dirchownmod.c: Include lchown.h.
4802         * lib/lchown.c: Don't include files that lchown.h now includes.
4803         Don't declare chown, since lchown.h now does that.
4804         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
4805         (lchown): Define to rpl_chown if lchown is declared but
4806         does not exist.  Declare using a prototype if lchown is not
4807         declared.  Add a copyright notice.
4808         * lib/mkstemp.h: Include <unistd.h>.
4809         * lib/openat.c: Include lchown.h.
4810
4811         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
4812         we now test for that separately.
4813         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
4814         rather than O_NOFOLLOW, when testing whether it's possible to
4815         avoid a race condition reliably.
4816         * lib/savewd.c (savewd_chdir): Likewise.
4817
4818         Remove macros that are no longer needed now that stdint.h is
4819         reliable.
4820         * lib/fsusage.c (UINTMAX_MAX): Remove.
4821         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
4822         * lib/utimecmp.c (SIZE_MAX): Remove.
4823
4824         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
4825
4826         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
4827         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
4828         O_NOATIME works.
4829
4830 2006-10-05  Bruno Haible  <bruno@clisp.org>
4831
4832         * lib/gl_list.h (gl_sortedlist_search_from_to,
4833         gl_sortedlist_indexof_from_to): New declarations.
4834         (gl_list_implementation): New fields sortedlist_search_from_to,
4835         sortedlist_indexof_from_to.
4836         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
4837         inline functions.
4838         * lib/gl_list.c (gl_sortedlist_search_from_to,
4839         gl_sortedlist_indexof_from_to): New functions.
4840         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
4841         function.
4842         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
4843         (gl_array_sortedlist_search_from_to): New function.
4844         (gl_array_list_implementation): Update.
4845         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
4846         function.
4847         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
4848         (gl_carray_sortedlist_search_from_to): New function.
4849         (gl_carray_list_implementation): Update.
4850         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
4851         gl_linked_sortedlist_indexof_from_to): New functions.
4852         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4853         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4854         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
4855         gl_tree_sortedlist_indexof_from_to): New functions.
4856         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4857         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4858         Update.
4859         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4860         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
4861         Update.
4862
4863 2006-10-05  Bruno Haible  <bruno@clisp.org>
4864
4865         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
4866         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
4867         (struct gl_list_implementation): Add fields search_from_to,
4868         indexof_from_to. Remove fields search, indexof.
4869         (gl_list_search): Use the search_from_to method.
4870         (gl_list_search_from, gl_list_search_from_to): New functions.
4871         (gl_list_indexof): Use the indexof_from_to method.
4872         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4873         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
4874         (gl_list_search_from, gl_list_search_from_to): New functions.
4875         (gl_list_indexof): Use the indexof_from_to method.
4876         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
4877         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
4878         gl_array_indexof. Add start_index, end_index arguments.
4879         (gl_array_search_from_to): Renamed from gl_array_search. Add
4880         start_index, end_index arguments.
4881         (gl_array_remove, gl_array_list_implementation): Update.
4882         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
4883         gl_carray_indexof. Add start_index, end_index arguments.
4884         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
4885         start_index, end_index arguments.
4886         (gl_carray_remove, gl_carray_list_implementation): Update.
4887         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
4888         gl_linked_search. Add start_index, end_index arguments.
4889         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
4890         start_index, end_index arguments.
4891         (gl_linked_remove): Update.
4892         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
4893         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
4894         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
4895         field to 'size_t'.
4896         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
4897         gl_tree_search. Add start_index, end_index arguments.
4898         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4899         start_index, end_index arguments.
4900         (gl_tree_remove): Update.
4901         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
4902         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
4903         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
4904         function.
4905         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
4906         gl_tree_search. Add start_index, end_index arguments.
4907         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
4908         start_index, end_index arguments.
4909         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
4910         Update.
4911         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
4912
4913 2006-10-05  Bruno Haible  <bruno@clisp.org>
4914
4915         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
4916
4917         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
4918         fwriteerror_temp): New declarations.
4919         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
4920         (descriptors): New variable.
4921         (cleanup): First, close the descriptors.
4922         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
4923         fclose_temp, fwriteerror_temp): New functions.
4924
4925 2006-10-04  Jim Meyering  <jim@meyering.net>
4926
4927         * lib/fts.c (fts_open): Tiny comment change.
4928
4929 2006-10-04  Bruno Haible  <bruno@clisp.org>
4930
4931         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
4932         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
4933         gl_LOCK_BODY.
4934         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
4935         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
4936         gl_LOCK_EARLY_BODY.
4937         (gl_LOCK): Require gl_LOCK_BODY.
4938
4939 2006-10-04  Bruno Haible  <bruno@clisp.org>
4940
4941         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
4942         (gl_oset_search_atleast): New declaration.
4943         (struct gl_oset_implementation): Add field 'search_atleast'.
4944         (gl_oset_search_atleast): New inline function.
4945         * lib/gl_oset.c (gl_oset_search_atleast): New function.
4946         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
4947         (gl_array_oset_implementation): Update.
4948         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
4949         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
4950         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
4951
4952 2006-10-04  Bruno Haible  <bruno@clisp.org>
4953
4954         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
4955
4956 2006-10-03  Bruno Haible  <bruno@clisp.org>
4957
4958         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
4959         from gl_avltreehash_list_implementation.
4960
4961 2006-10-03  Bruno Haible  <bruno@clisp.org>
4962
4963         * lib/gl_oset.c (gl_oset_add): Fix return type.
4964
4965 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
4966
4967         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
4968
4969 2006-10-02  Eric Blake  <ebb9@byu.net>
4970
4971         * modules/strnlen (Depends-on): Add extensions.
4972
4973 2006-10-02  Eric Blake  <ebb9@byu.net>
4974
4975         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
4976         definition in 2.60+.
4977
4978 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
4979
4980         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
4981         checks.
4982
4983 2006-10-02  Bruno Haible  <bruno@clisp.org>
4984
4985         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
4986         to the AUTOMAKE_OPTIONS.
4987         Reported by Jim Meyering.
4988
4989 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
4990
4991         Work around bug in Solaris 10 /proc file system:
4992         /proc/self/fd/NNN/.. isn't the parent directory of
4993         the directory whose file descriptor is NNN.  This needs to
4994         be worked around at run time, not compile time, since a
4995         program might be built on Solaris 8, where things work, and
4996         run on Solaris 10.
4997         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
4998         to use the following interface instead:
4999         (OPENAT_BUFFER_SIZE): New macro.
5000         (openat_proc_name): New function.
5001         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
5002         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
5003         Likewise.
5004         * lib/openat-proc.c: New file.
5005         * modules/openat (Files): Add lib/openat-proc.c.
5006         (Depends-on): Add same-inode, stdbool.
5007         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
5008
5009 2006-09-29  Bruno Haible  <bruno@clisp.org>
5010
5011         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
5012         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
5013         argument. Set stdout_closed before testing for ferror, not after.
5014         (fwriteerror, fwriteerror_no_ebadf): New functions.
5015
5016 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5017
5018         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
5019
5020 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
5021
5022         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
5023         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
5024
5025 2006-09-28  Jim Meyering  <jim@meyering.net>
5026
5027         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
5028         Include <unistd.h>.
5029
5030 2006-09-28  Bruno Haible  <bruno@clisp.org>
5031
5032         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
5033         * modules/linkedhash-list (Depends-on): Likewise.
5034         * modules/rbtreehash-list (Depends-on): Likewise.
5035
5036 2006-09-28  Bruno Haible  <bruno@clisp.org>
5037
5038         * lib/strndup.h: Simplify the redefinition of strndup.
5039         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
5040         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
5041
5042 2006-09-28  Bruno Haible  <bruno@clisp.org>
5043
5044         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
5045         * lib/gl_linkedhash_list.c: Likewise.
5046         * lib/gl_rbtreehash_list.c: Likewise.
5047
5048 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
5049
5050         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
5051         getaddrinfo.
5052
5053         * lib/__fpending.h: Don't include <stdio_ext.h> unless
5054         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
5055         it causes <stdio_ext.h> to cause a compile-time error.
5056         Problem reported by Nelson H. F. Beebe.
5057         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
5058         of HAVE_DECL___PENDING.
5059
5060         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
5061         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
5062         declaration.
5063
5064 2006-09-27  Jim Meyering  <jim@meyering.net>
5065
5066         This file could end up with a definition for a function
5067         named __strndup, rather than rpl_strndup on a system with
5068         incomplete weak_alias support.
5069         * lib/strndup.c (strndup): Rename from __strndup.
5070         Remove #defines that used to map __strndup to strndup.
5071         Don't use K&R prototypes.
5072         Remove LIBC-related code, since this file is not sync'd with glibc.
5073         * lib/strndup.h: Revamp, accordingly.
5074         * m4/strndup.m4: Modernize.
5075
5076 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
5077
5078         * modules/savewd (Depends-on): Add 'raise'.
5079         * lib/savewd.c: Include <signal.h>, for 'raise'.
5080
5081 2006-09-26  Jim Meyering  <jim@meyering.net>
5082
5083         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
5084         when we detect Darwin 8.7.0's acl_get_file bug.
5085         Rearrange to perform the new (below) run-test while $LIBS
5086         contains any acl-related library.  Set USE_ACL at the end.
5087         (gl_ACL_GET_FILE): New function.
5088
5089 2006-09-26  Eric Blake  <ebb9@byu.net>
5090
5091         * lib/verror.c: Include <config.h> unconditionally.
5092
5093 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
5094
5095         * modules/clock-time (Maintainer): Add self.
5096         * modules/getlogin_r (Depends-on): Add extensions.
5097
5098 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5099
5100         * modules/clock-time: New module.
5101         * modules/nanosleep (Depends-on): Add clock-time.
5102         * modules/gethrxtime (Depends-on): Likewise.
5103         * modules/gettime (Depends-on): Likewise.
5104         * modules/settime (Depends-on): Likewise.
5105
5106         * modules/fts-lgpl: Depend on openat.
5107         * modules/mkancesdirs: Depend on savewd.
5108         * modules/mkdir-p: Likewise.
5109
5110 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5111
5112         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
5113
5114         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
5115         `gl_have_arbitrary_file_name_length_limit' to
5116         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
5117         actually works between configure runs.
5118
5119 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5120             Bruno Haible  <bruno@clisp.org>
5121
5122         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
5123
5124 2006-09-25  Jim Meyering  <jim@meyering.net>
5125
5126         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
5127         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
5128
5129 2006-09-25  Eric Blake  <ebb9@byu.net>
5130
5131         * gnulib-tool (func_import, func_create_testdir): Fix typos in
5132         exec's in 2006-09-18 patch when shuffling fds.
5133
5134 2006-09-25  Bruno Haible  <bruno@clisp.org>
5135
5136         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
5137         Reported by Jim Meyering.
5138
5139 2006-09-24  Jim Meyering  <jim@meyering.net>
5140
5141         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
5142         compare a pointer against a literal "0".  That caused failures with
5143         at least HP-UX's hpcc.
5144
5145 2006-09-22  Simon Josefsson  <jas@extundo.com>
5146
5147         * modules/gc-sha1:
5148         * modules/gc-md4:
5149         * modules/gc-hmac-sha1:
5150         * modules/gc-hmac-md5:
5151         * modules/gc-des:
5152         * modules/gc-arcfour: Distribute more files.
5153
5154 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5155
5156         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
5157         (gl_linked_iterator_from_to): Initialize struct completely.
5158         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
5159         (gl_tree_iterator_from_to): Likewise
5160         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
5161         * lib/gl_array_list.c [lint] (gl_array_iterator)
5162         (gl_array_iterator_from_to): Likewise.
5163         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
5164         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
5165         (gl_carray_iterator_from_to): Likewise.
5166
5167         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
5168         * lib/md4.c (md4_process_block): Remove unused variable.
5169         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
5170         parentheses for clarity.
5171
5172 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5173
5174         * modules/bison-i18n (Depends-on): Add gettext.
5175
5176 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5177
5178         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
5179         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
5180         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
5181         also add missing comma that caused broken test.
5182         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
5183         stdlib.h, for `abort'.
5184         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
5185         variables.
5186         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
5187         include unistd.h if present, for `rmdir'.
5188         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
5189         variables.
5190         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
5191         in the process include standard headers for prototypes.
5192         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
5193         gets declared on GNU/Linux.
5194         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
5195         unistd.h, for `rmdir'.
5196         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
5197
5198         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
5199         always true.
5200         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
5201
5202         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
5203
5204 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5205
5206         * gnulib-tool (func_version): Create output all at once.  This
5207         may help avoid triggering unnecessary SIGPIPEs, and at any
5208         rate it doesn't hurt.
5209
5210 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5211             Bruno Haible  <bruno@clisp.org>
5212
5213         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
5214         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
5215         * m4/signed.m4 (bh_C_SIGNED): Likewise.
5216
5217         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
5218         (gl_FUNC_VASPRINTF): Invoke it.
5219
5220 2006-09-22  Bruno Haible  <bruno@clisp.org>
5221
5222         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
5223         getloadavg.c as first argument.
5224
5225 2006-09-22  Bruno Haible  <bruno@clisp.org>
5226
5227         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
5228         at the beginning of the gl_INIT macro.
5229         * modules/getloadavg (configure.ac): Pass $gl_source_base to
5230         gl_GETLOADAVG.
5231
5232 2006-09-22  Bruno Haible  <bruno@clisp.org>
5233
5234         * gnulib-tool (func_create_megatestdir): Don't include the config-h
5235         module.
5236         Suggested by Ralf Wildenhues.
5237
5238 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
5239
5240         Import this patch from libc:
5241
5242         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
5243
5244         * lib/regex_internal.c (re_string_reconstruct): Handle
5245         offset < pstr->valid_raw_len && pstr->offsets_needed case.
5246         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
5247         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
5248         re_string_context_at.
5249
5250         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
5251         now requires it.
5252         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
5253         gl_REGEX now does it for us.
5254         (gl_REGEX): Add test taken from
5255         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
5256
5257         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
5258         Check that large offsets work.  Modernize Autoconf usages.
5259         Prefer "yes" to mean a good thing rather than a bad.
5260         Don't put "#define mkstemp" in config.h, as this might interfere
5261         with standard system headers that "#define mkstemp mkstemp64".
5262
5263         * modules/mkstemp (Depends-on): Add extensions, so that
5264         mkstemp is visible on some platforms.
5265         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
5266         (Include): Change to "mkstemp.h" from <stdlib.h>.
5267         (Files): Add mkstemp.h.
5268
5269         * lib/mkstemp.h: New file, since some standard headers
5270         #define mkstemp.
5271         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
5272         Include "mkstemp.h".
5273         Make the _LIBC code resemble glibc original more,
5274         e.g., use K&R style.
5275         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
5276         (mkstemp): Remove, since mkstemp.h does this for us.
5277         * lib/stdlib--.h: Include mkstemp.h.
5278
5279         Import this patch from libc:
5280
5281         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
5282
5283         * lib/tempname.c (__gen_tempname): Change attempts_min
5284         into a macro.  Use preprocessor to decide how to initialize
5285         attempts [Coverity CID 67].
5286
5287 2006-09-20  Bruno Haible  <bruno@clisp.org>
5288
5289         * lib/mkdtemp.c: Import from libc.
5290         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
5291                 * sysdeps/posix/tempname.c (__gen_tempname): Change
5292                 attempts_min into a macro.  Use preprocessor to decide how to
5293                 initialize attempts [Coverity CID 67].
5294         2001-11-27  Paul Eggert  <eggert@twinsun.com>
5295                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
5296                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
5297
5298 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5299
5300         * gnulib-tool (func_exit): New function, to allow to pass the
5301         exit status portably through the trap.  Use everywhere.
5302         (--help, --version): Signal a write error.
5303         (trap): catch SIGPIPE, for write errors.
5304         Exit at the end of the trap, with the correct exit status.
5305
5306 2006-09-19  Karl Berry  <karl@gnu.org>
5307
5308         * doc/gnulib.texi: note about the license texinfo files.
5309
5310 2006-09-19  Eric Blake  <ebb9@byu.net>
5311
5312         * gnulib-tool: Avoid space-tab.
5313
5314 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
5315
5316         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
5317         that prevented coreutils 6.1 from building.  Problem reported
5318         by Petter Reinholdtsen.
5319
5320 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
5321
5322         * gnulib-tool (avoidlist): Fix typo that broke options like
5323         --avoid=lock that are used by coreutils bootstrap.
5324
5325 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
5326
5327         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
5328         more systematically.
5329
5330 2006-09-18  Jim Meyering  <jim@meyering.net>
5331
5332         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
5333
5334 2006-09-18  Bruno Haible  <bruno@clisp.org>
5335
5336         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
5337
5338 2006-09-18  Bruno Haible  <bruno@clisp.org>
5339
5340         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
5341         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
5342         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
5343         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
5344         * m4/gettext.m4: Require autoconf >= 2.52.
5345         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
5346         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
5347         of gl_cv_header_inttypes_h.
5348
5349 2006-09-18  Bruno Haible  <bruno@clisp.org>
5350
5351         * lib/javaversion.c: Include configmake.h.
5352
5353 2006-09-18  Bruno Haible  <bruno@clisp.org>
5354
5355         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
5356         avoid that the while loops be executed in a subshell.
5357
5358 2006-09-18  Bruno Haible  <bruno@clisp.org>
5359
5360         * MODULES.html.sh (func_module): Break long lines.
5361         Suggested by Bruce Korb <bkorb@gnu.org>.
5362
5363 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5364
5365         Speed up by a factor of 1.12.
5366         * gnulib-tool (nl): New variable.
5367         (func_import): Rewrite include directive extraction to only read each
5368         directive once.
5369
5370 2006-09-17  Bruno Haible  <bruno@clisp.org>
5371
5372         * modules/javaversion (Makefile.am): Remove DEFS setting.
5373         (Depends-on): Add configmake, for PKGDATADIR definition.
5374
5375 2006-09-17  Bruno Haible  <bruno@clisp.org>
5376
5377         * gnulib-tool (func_create_testdir): Rewrite all files at once.
5378
5379 2006-09-17  Bruno Haible  <bruno@clisp.org>
5380
5381         * gnulib-tool (func_append): New function, stolen from libtool.m4.
5382         (func_modules_transitive_closure, func_modules_add_dummy,
5383         func_modules_to_filelist, func_import, func_create_testdir,
5384         func_create_megatestdir, ...): Use it wherever possible.
5385         Suggested by Ralf Wildenhues.
5386
5387 2006-09-16  Karl Berry  <karl@gnu.org>
5388
5389         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
5390         to avoid sectioning errors.
5391         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
5392         [ifinfo]: blank line after @center-ed titles.
5393         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
5394         Spell FSF address consistently with others.
5395         (These changes approved by rms.)
5396
5397 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5398
5399         Speed up by a factor of 1.61.
5400         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
5401         already checked module names again.
5402
5403 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5404
5405         Speed up by a factor of 1.13.
5406         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
5407         for new_files, and the input to func_add_or_update.
5408
5409 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5410
5411         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
5412         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
5413
5414 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5415
5416         * modules/mkancesdirs (Depends-on): Add fcntl.
5417         * modules/savewd: New file.
5418         * MODULES.html.sh (File system functions): Add savewd.
5419
5420         * modules/configmake (Makefile.am): Add support for the
5421         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
5422
5423 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5424
5425         * m4/savewd.m4: New file.
5426
5427 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
5428
5429         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
5430         (dirchownmod): New arg FD.  All callers changed.
5431         Use FD rather than opening the directory ourself, as opening is
5432         now the caller's responsibility.
5433         * lib/dirchownmod.h: Likewise.
5434         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
5435         hosts that require <sys/types.h> before <sys/stat.h>.  Include
5436         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
5437         (test_dir): Remove.
5438         (mkancesdirs): Return length of prefix of FILE that has already
5439         been made, or -2 if there is a child doing the work.  Redo
5440         algorithm so that it is O(N) rather than O(N**2).  Optimize away
5441         ".", and treat ".." specially since it might stray back into
5442         already-created areas.  Use a subprocess if necessary.  New arg
5443         WD; all users changed.  MAKE_DIR function should now return 1
5444         if it creates a directory that is not readable.  Return -2 if
5445         a child process is spun off.
5446         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
5447         Adjust signature to match code.
5448         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
5449         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
5450         all users changed.
5451         * lib/savewd.c, lib/savewd.h: New files.
5452
5453 2006-09-15  Jim Meyering  <jim@meyering.net>
5454
5455         * modules/rename-dest-slash: New module.
5456         * MODULES.html.sh (posix_compat): Add it here.
5457
5458         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
5459
5460 2006-09-15  Jim Meyering  <jim@meyering.net>
5461
5462         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
5463         file.
5464
5465         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
5466
5467 2006-09-15  Jim Meyering  <jim@meyering.net>
5468
5469         * lib/rename-dest-slash.c (has_trailing_slash): Use
5470         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
5471         (rpl_rename_dest_slash): Perform the cheaper trailing slash
5472         test before testing whether SRC is a directory.
5473         Suggestions from Bruno Haible.
5474
5475         Avoid a warning about an unused variable.
5476         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
5477         into the #ifdef block where it's used.
5478
5479         * lib/rename-dest-slash.c: New file.
5480
5481 2006-09-14  Bruno Haible  <bruno@clisp.org>
5482
5483         * lib/allocsa.c: Include <config.h> unconditionally.
5484         * lib/asnprintf.c: Likewise.
5485         * lib/asprintf.c: Likewise.
5486         * lib/c-strcasecmp.c: Likewise.
5487         * lib/c-strcasestr.c: Likewise.
5488         * lib/c-strncasecmp.c: Likewise.
5489         * lib/c-strstr.c: Likewise.
5490         * lib/classpath.c: Likewise.
5491         * lib/clean-temp.c: Likewise.
5492         * lib/concatpath.c: Likewise.
5493         * lib/copy-file.c: Likewise.
5494         * lib/csharpcomp.c: Likewise.
5495         * lib/csharpexec.c: Likewise.
5496         * lib/execute.c: Likewise.
5497         * lib/fatal-signal.c: Likewise.
5498         * lib/findprog.c: Likewise.
5499         * lib/fwriteerror.c: Likewise.
5500         * lib/gl_array_list.c: Likewise.
5501         * lib/gl_array_oset.c: Likewise.
5502         * lib/gl_avltree_list.c: Likewise.
5503         * lib/gl_avltree_oset.c: Likewise.
5504         * lib/gl_avltreehash_list.c: Likewise.
5505         * lib/gl_carray_list.c: Likewise.
5506         * lib/gl_linked_list.c: Likewise.
5507         * lib/gl_linkedhash_list.c: Likewise.
5508         * lib/gl_list.c: Likewise.
5509         * lib/gl_oset.c: Likewise.
5510         * lib/gl_rbtree_list.c: Likewise.
5511         * lib/gl_rbtree_oset.c: Likewise.
5512         * lib/gl_rbtreehash_list.c: Likewise.
5513         * lib/imaxabs.c: Likewise.
5514         * lib/imaxdiv.c: Likewise.
5515         * lib/javacomp.c: Likewise.
5516         * lib/javaexec.c: Likewise.
5517         * lib/javaversion.c: Likewise.
5518         * lib/linebreak.c: Likewise.
5519         * lib/localcharset.c: Likewise.
5520         * lib/lock.c: Likewise.
5521         * lib/mbchar.c: Likewise.
5522         * lib/mbswidth.c: Likewise.
5523         * lib/mkdtemp.c: Likewise.
5524         * lib/pipe.c: Likewise.
5525         * lib/printf-args.c: Likewise.
5526         * lib/printf-parse.c: Likewise.
5527         * lib/progname.c: Likewise.
5528         * lib/progreloc.c: Likewise.
5529         * lib/readlink.c: Likewise.
5530         * lib/sh-quote.c: Likewise.
5531         * lib/stpcpy.c: Likewise.
5532         * lib/stpncpy.c: Likewise.
5533         * lib/strcasecmp.c: Likewise.
5534         * lib/strcasestr.c: Likewise.
5535         * lib/strcspn.c: Likewise.
5536         * lib/striconv.c: Likewise.
5537         * lib/strncasecmp.c: Likewise.
5538         * lib/strnlen1.c: Likewise.
5539         * lib/strstr.c: Likewise.
5540         * lib/strtok_r.c: Likewise.
5541         * lib/tls.c: Likewise.
5542         * lib/tmpdir.c: Likewise.
5543         * lib/unicodeio.c: Likewise.
5544         * lib/unsetenv.c: Likewise.
5545         * lib/vasnprintf.c: Likewise.
5546         * lib/vasprintf.c: Likewise.
5547         * lib/wait-process.c: Likewise.
5548         * lib/xallocsa.c: Likewise.
5549         * lib/xsetenv.c: Likewise.
5550         * lib/xstriconv.c: Likewise.
5551
5552 2006-09-13  Simon Josefsson  <jas@extundo.com>
5553
5554         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
5555         that internally, suggested by Ralf Wildenhues
5556         <Ralf.Wildenhues@gmx.de>.
5557
5558 2006-09-13  Simon Josefsson  <jas@extundo.com>
5559
5560         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
5561         @LIBOBJS@.
5562         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5563
5564 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
5565
5566         * lib/_fpending.c: Include <config.h> unconditionally, since we no
5567         longer worry about uses that don't define HAVE_CONFIG_H.
5568         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
5569         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
5570         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
5571         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
5572         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
5573         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
5574         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
5575         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
5576         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
5577         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
5578         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
5579         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
5580         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
5581         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
5582         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
5583         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
5584         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
5585         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
5586         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
5587         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
5588         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
5589         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
5590         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
5591         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
5592         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
5593         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
5594         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
5595         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
5596         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
5597         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
5598         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
5599         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
5600         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
5601         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
5602         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
5603         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
5604         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
5605         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
5606         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
5607         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
5608         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
5609         Likewise.
5610
5611 2006-09-13  Eric Blake  <ebb9@byu.net>
5612
5613         * lib/getopt.c: Fix typo in last commit.
5614
5615 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
5616
5617         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
5618         dgettext.
5619
5620 2006-09-12  Jim Meyering  <jim@meyering.net>
5621
5622         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
5623         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
5624         Reported by Nelson H. F. Beebe.
5625
5626 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
5627
5628         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
5629         program_invocation_name and program_invocation_short_name are
5630         initialized.
5631         * lib/argp-namefrob.h: Move declarations of program_invocation_name
5632         and program_invocation_short_name to argp.h, so they are visible
5633         to user programs.
5634         * lib/argp.h: Likewise
5635
5636 2006-09-10  Bruno Haible  <bruno@clisp.org>
5637
5638         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
5639         m4/inttypes_h.m4, m4/uintmax_t.m4.
5640
5641 2006-09-10  Bruno Haible  <bruno@clisp.org>
5642
5643         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
5644         gl_AC_TYPE_UINTMAX_T.
5645
5646 2006-09-10  Bruno Haible  <bruno@clisp.org>
5647
5648         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
5649
5650 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
5651
5652         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
5653         convention.  Text proposed by Bruno Haible.
5654         (struct argp_option): Document the use of N_() wrappers.
5655
5656         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
5657         '\v', and translate the two parts separately, instead of feeding
5658         the whole string to gettext.  This allows to exclude
5659         '\v' from the strings visible to the translator by writing doc
5660         strings as N_("..") "\v" N_("..").
5661
5662 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
5663
5664         * config/srclist.txt: Undo latest change; the bug was fixed.
5665
5666 2006-09-09  Bruno Haible  <bruno@clisp.org>
5667
5668         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
5669         assignments if building a library without libtool.
5670         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
5671         in func_emit_lib_Makefile_am.
5672         (func_import): When building a static library libfoo.a, arrange to
5673         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
5674         (func_create_testdir): Likewise.
5675         * modules/gc (configure.ac, Makefile.am): If building statically,
5676         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
5677         * modules/iconvme (configure.ac, Makefile.am): Likewise.
5678         * modules/striconv (configure.ac, Makefile.am): Likewise.
5679         Based on a suggestion by Ralf Wildenhues.
5680
5681 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5682
5683         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
5684         Check for unistd.h too, since Autoconf doesn't assume POSIX.
5685         Also:
5686
5687         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5688         Add year_2050_test to catch glibc bug 2821
5689         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5690
5691         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
5692         Prefer #ifdef to #if.
5693
5694         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
5695         Return from 'main' instead of calling 'exit'.
5696
5697 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5698
5699         * lib/mktime.c (guess_time_tm): Fix bug where mktime
5700         returned the maximum time_t value rather than (time_t) -1.
5701         Problem originally reported by William Bardwell
5702         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
5703
5704         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5705         Moved to here ...
5706         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
5707         ... from here.
5708
5709 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
5710
5711         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
5712         2821 is fixed.
5713
5714 2006-09-08  Jim Meyering  <jim@meyering.net>
5715
5716         Don't make generated files read-only.  That would bother too many
5717         people.  However, do retain the ability to work when targets are
5718         read-only: remove the destination and temporary files before writing
5719         them (when generated via sed or echo), or by using the -f option for
5720         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
5721         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5722         * modules/byteswap, modules/configmake, modules/fcntl:
5723         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5724         * modules/localcharset, modules/netinet_in, modules/poll:
5725         * modules/stdbool, modules/stdint, modules/sys_select:
5726         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5727
5728 2006-09-08  Jim Meyering  <jim@meyering.net>
5729
5730         Avoid new build failure on FreeBSD 6.0.
5731         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
5732         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
5733         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
5734
5735 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5736
5737         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
5738
5739 2006-09-07  Jim Meyering  <jim@meyering.net>
5740
5741         Fix global typo in last change: use chmod u-w, not chmod u-x.
5742         Spotted by Paul Eggert and Bruce Korb.
5743         * modules/alloca-opt, modules/argz, modules/arpa_inet:
5744         * modules/byteswap, modules/configmake, modules/fcntl:
5745         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
5746         * modules/localcharset, modules/netinet_in, modules/poll:
5747         * modules/stdbool, modules/stdint, modules/sys_select:
5748         * modules/sys_socket, modules/sys_stat, modules/sysexits:
5749
5750 2006-09-06  Jim Meyering  <jim@meyering.net>
5751
5752         Make generated files be read-only.
5753         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
5754         Ensure that each generated file is now read-only.
5755         * modules/argz: Likewise.
5756         * modules/arpa_inet: Likewise.
5757         * modules/byteswap: Likewise.
5758         * modules/configmake: Likewise.
5759         * modules/fcntl: Likewise.
5760         * modules/fnmatch: Likewise.
5761         * modules/getopt: Likewise.
5762         * modules/glob: Likewise.
5763         * modules/inttypes: Likewise.
5764         * modules/netinet_in: Likewise.
5765         * modules/poll: Likewise.
5766         * modules/stdbool: Likewise.
5767         * modules/stdint: Likewise.
5768         * modules/sys_select: Likewise.
5769         * modules/sys_socket: Likewise.
5770         * modules/sys_stat: Likewise.
5771         * modules/sysexits: Likewise.
5772         * modules/localcharset: Same as above, but continue using temporary
5773         file named "t-$@" (why different?) rather than the "$@-t" used
5774         everywhere else.
5775
5776         * modules/sysexits (Makefile.am): Replace literal occurrences
5777         of "sysexit.h" more readable, and more consistent, "$@".
5778
5779 2006-09-06  Bruno Haible  <bruno@clisp.org>
5780
5781         * modules/striconv: New file.
5782         * modules/xstriconv: New file.
5783         * MODULES.html.sh (Internationalization functions): Add striconv,
5784         xstriconv.
5785
5786 2006-09-06  Bruno Haible  <bruno@clisp.org>
5787
5788         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
5789         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
5790         not using libtool correctly.
5791
5792 2006-09-06  Bruno Haible  <bruno@clisp.org>
5793
5794         * lib/striconv.h: New file.
5795         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
5796         iconvstring.c.
5797         * lib/xstriconv.h: New file.
5798         * lib/xstriconv.c: New file.
5799
5800 2006-09-06  Bruno Haible  <bruno@clisp.org>
5801
5802         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
5803         lib_..._LDFLAGS.
5804
5805 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5806
5807         * lib/argz_.h: Sync from Libtool.
5808
5809         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
5810                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5811
5812         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
5813
5814 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5815
5816         * modules/trim: New file.
5817
5818 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
5819
5820         * lib/trim.h: New file.
5821         * lib/trim.c: New file.
5822
5823 2006-09-05  Bruno Haible  <bruno@clisp.org>
5824
5825         * MODULES.html.sh (String handling): Add trim.
5826
5827 2006-09-04  Karl Berry  <karl@gnu.org>
5828
5829         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
5830         until next release.
5831
5832 2006-09-03  Bruno Haible  <bruno@clisp.org>
5833
5834         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
5835         correctly.
5836
5837 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5838
5839         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
5840         not gl_GETLOADAVG.  Omit unneeded semicolons.
5841         Problems reported by Ralf Wildenhues in
5842         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5843         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
5844         at the end, which is the usual gnulib style.
5845
5846         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
5847         of doing all the work ourselves.
5848         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
5849         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
5850
5851 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5852
5853         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
5854         Problem reported by Ralf Wildenhues in
5855         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
5856
5857         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
5858         HAVE_STRUCT_STATFS_F_FSTYPENAME.
5859
5860 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
5861
5862         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
5863         yesterday's patch by changing test -n to test -z.
5864
5865 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5866
5867         * modules/getloadavg (Files): Add m4/getloadavg.m4.
5868         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
5869         the former is now obsolescent.
5870
5871         * modules/chdir-long (Depends-on): Add fcntl.
5872
5873 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5874
5875         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
5876         obsolescent, and programs should use gnulib instead.
5877         * m4/getloadavg.m4: New file, with contents taken from Autoconf
5878         but with prefixes changed.
5879
5880 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
5881
5882         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
5883         or stdbool.h, because they might not exist while configuring.
5884
5885         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
5886         Don't include unistd.h or limits.h; not needed, since chdir-long.h
5887         does that for us.
5888         (O_DIRECTORY): Remove.
5889
5890 2006-08-31  Eric Blake  <ebb9@byu.net>
5891
5892         * gnulib-tool: Don't let emacs change spaces to TAB.
5893
5894 2006-08-31  Bruno Haible  <bruno@clisp.org>
5895
5896         * gnulib-tool: When calling func_import more than once, do it in a
5897         subshell.
5898         Reported by Eric Blake <ebb9@byu.net>.
5899
5900 2006-08-31  Bruno Haible  <bruno@clisp.org>
5901
5902         * gnulib-tool (nl): Remove variable.
5903         (sed_transform_lib_file): Use more robust test for config-h module.
5904         (func_import): Fix typo in 2006-08-25 patch.
5905
5906 2006-08-31  Bruno Haible  <bruno@clisp.org>
5907
5908         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
5909         specified, augment Makefile.am variables instead of assigning them.
5910
5911 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5912
5913         Work around a bug in both the Linux and SunOS 64-bit kernels:
5914         nanosleep mishandles sleeps for longer than 2**31 seconds.
5915         Problem reported by Frank v Waveren in
5916         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5917         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
5918         Check for nanosleep bug.
5919         (LIB_NANOSLEEP): Append clock_gettime library if needed.
5920
5921 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5922
5923         Work around a bug in both the Linux and SunOS 64-bit kernels:
5924         nanosleep mishandles sleeps for longer than 2**31 seconds.
5925         Problem reported by Frank v Waveren in
5926         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
5927         * lib/nanosleep.c (BILLION): New constant.
5928         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
5929         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
5930         implementation.
5931
5932 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5933
5934         * modules/nanosleep (Depends-on): Add gettime.
5935
5936 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
5937         and Simon Josefsson  <jas@extundo.com>
5938         and Oskar Liljeblad  <oskar@osk.mine.nu>
5939
5940         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
5941         * gnulib-tool (func_import): New license type 'unmodifiable license
5942         text'.
5943         * modules/fdl: Use it.  Longer description.
5944         * module/gpl, module/lgpl: New files.
5945
5946 2006-08-30  Jim Meyering  <jim@meyering.net>
5947
5948         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
5949         shadowing the parameter.
5950
5951 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5952
5953         Sync from Libtool:
5954
5955         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5956
5957         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
5958         sharing with gnulib.  Report by Eric Blake.
5959
5960 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5961
5962         * modules/isapipe: New file.
5963         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
5964
5965 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5966
5967         * modules/configmake (Makefile.am): Add a comment, and omit
5968         the CONFIGMAKE_ prefix from generated macro names.  Suggested
5969         by Bruno Haible.
5970
5971 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5972
5973         * m4/isapipe.m4: New file.
5974
5975 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
5976
5977         * lib/isapipe.c, lib/isapipe.h: New files.
5978
5979 2006-08-29  Jim Meyering  <jim@meyering.net>
5980
5981         * modules/configmake (Makefile.am): Make configmake.h depend on
5982         Makefile.  Otherwise, a stale configmake.h could hang around.
5983
5984 2006-08-29  Eric Blake  <ebb9@byu.net>
5985
5986         * lib/error.c (error_at_line, print_errno_message): Match libc, after
5987         resolution of upstream bug 3044.
5988
5989 2006-08-29  Bruno Haible  <bruno@clisp.org>
5990
5991         * modules/localcharset (Depends-on): Add configmake.
5992         (Makefile.am): Remove setting of LIBDIR through DEFS.
5993
5994 2006-08-29  Bruno Haible  <bruno@clisp.org>
5995
5996         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
5997         defined.
5998
5999 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
6000
6001         * modules/fcntl: New file.
6002         * modules/chdir-safer (Depends-on): Add fcntl.
6003         * modules/fts: Likewise.
6004         * modules/mkdir-p: Likewise.
6005
6006         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
6007         This undoes the most recent change, since we're now addressing the
6008         problem in a different way.
6009
6010         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
6011         into output, since the output might be called Makefile.am even
6012         if $makefile_name is something different.
6013         (func_import): Use $makefile_am rather than
6014         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
6015         empty.
6016
6017         * modules/inttypes (Files): Add m4/inttypes-h.m4.
6018
6019 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
6020
6021         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
6022         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
6023         recent change to stdint.m4, since we're now addressing the problem in a
6024         different way.
6025
6026 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
6027
6028         * m4/fcntl_h.m4: New file.
6029
6030 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
6031
6032         * lib/fcntl_.h: New file.
6033         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
6034         the fcntl module.
6035         * lib/dirchownmod.c: Likewise.
6036         * lib/fts.c: Likewise.
6037
6038         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
6039         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
6040         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
6041         just before including <inttypes.h>, to avoid circular inclusion.
6042
6043 2006-08-28  Jim Meyering  <jim@meyering.net>
6044
6045         * doc/visibility.texi: Actually read and correct the grammar of the
6046         sentence affected by yesterday's change.
6047
6048 2006-08-28  Eric Blake  <ebb9@byu.net>
6049
6050         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
6051         needs wrapper.
6052
6053 2006-08-28  Eric Blake  <ebb9@byu.net>
6054
6055         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
6056
6057 2006-08-28  Eric Blake  <ebb9@byu.net>
6058
6059         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
6060
6061 2006-08-28  Bruno Haible  <bruno@clisp.org>
6062
6063         * modules/c-strstr: New file, from GNU gettext.
6064         * MODULES.html.sh (String handling): Add c-strstr.
6065
6066 2006-08-28  Bruno Haible  <bruno@clisp.org>
6067
6068         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
6069         macros.
6070         Reported by Eric Blake.
6071
6072 2006-08-28  Bruno Haible  <bruno@clisp.org>
6073
6074         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
6075         (VASNPRINTF): Return a string of length > INT_MAX without failing.
6076         * lib/vasprintf.c: Include errno.h, limits.h.
6077         (EOVERFLOW): New fallback definition.
6078         (vasprintf): Test here whether the string length is > INT_MAX.
6079         * lib/vsnprintf.c: Include errno.h, limits.h.
6080         (EOVERFLOW): New fallback definition.
6081         (vsnprintf): Fix bug when generated string was too long for the buffer.
6082         Test here whether the string length is > INT_MAX.
6083
6084 2006-08-28  Bruno Haible  <bruno@clisp.org>
6085
6086         * lib/inttypes_.h (SCNX*): Remove definitions.
6087         Reported by Eric Blake.
6088
6089 2006-08-28  Bruno Haible  <bruno@clisp.org>
6090
6091         * lib/c-strstr.h: New file, from GNU gettext.
6092         * lib/c-strstr.c: New file, from GNU gettext.
6093
6094 2006-08-28  Bruno Haible  <bruno@clisp.org>
6095
6096         * gnulib-tool: Reorder some statements.
6097
6098 2006-08-28  Bruno Haible  <bruno@clisp.org>
6099
6100         * gnulib-tool: New option --makefile-name.
6101         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
6102         $makefile_name.
6103         (func_import): Write $makefile_name to the cache file, and read it from
6104         there unless explicitly specified. Use $makefile_name as file name
6105         instead of Makefile.am. Adjust the recommendations accordingly.
6106
6107 2006-08-28  Bruno Haible  <bruno@clisp.org>
6108
6109         * gnulib-tool (func_verify_module): Check against misapplying patch.
6110
6111 2006-08-28  Bruno Haible  <bruno@clisp.org>
6112
6113         * gnulib-tool (func_relativize, func_relconcat): New functions.
6114         Give an error if --local-dir is given with --update.
6115         Remove trailing slashes from $local_gnulib_dir.
6116         (func_import): Store the relativized $local_gnulib_dir in
6117         gnulib-cache.m4, and read it from there if not specified explicitly.
6118
6119 2006-08-28  Bruno Haible  <bruno@clisp.org>
6120
6121         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
6122         is the current directory. Respect also $local_gnulib_dir.
6123
6124 2006-08-28  Bruno Haible  <bruno@clisp.org>
6125             Simon Josefsson  <jas@extundo.com>
6126
6127         BeOS portability.
6128         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
6129
6130 2006-08-27  Jim Meyering  <jim@meyering.net>
6131
6132         * doc/visibility.texi: Remove duplicate word: "pointer".
6133
6134 2006-08-26  Bruno Haible  <bruno@clisp.org>
6135
6136         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
6137         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
6138         (Makefile.am): Create inttypes.h from inttypes_.h.
6139         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
6140
6141         * modules/imaxabs: New file.
6142
6143         * modules/imaxdiv: New file.
6144
6145 2006-08-26  Bruno Haible  <bruno@clisp.org>
6146
6147         * m4/inttypes.m4: New file.
6148         * m4/_inttypes_h.m4: Remove file.
6149         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
6150         PRI_MACROS_BROKEN.
6151         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
6152
6153         * m4/imaxabs.m4: New file.
6154
6155         * m4/imaxdiv.m4: New file.
6156
6157 2006-08-26  Bruno Haible  <bruno@clisp.org>
6158
6159         * lib/inttypes_.h: New file.
6160         * lib/inttypes.h: Remove file.
6161         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
6162
6163         * lib/imaxabs.c: New file.
6164
6165         * lib/imaxdiv.c: New file.
6166
6167 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
6168
6169         New config-h module, so that "make" output needn't be cluttered
6170         by -DHAVE_CONFIG_H.
6171         * MODULES.html.sh (Support for building libraries and executables):
6172         Add config-h.
6173         * modules/config-h: New file.
6174         * gnulib-tool (nl, sed_transform_lib_file): New vars.
6175         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
6176         the config-h module is used.
6177
6178         New configmake module, so that "make" output needn't be cluttered
6179         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
6180         * MODULES.html.sh (Support for building libraries and executables):
6181         Add configmake.
6182         * modules/configmake: New file.
6183
6184 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
6185
6186         * m4/config-h.m4: New file.
6187
6188 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
6189
6190         * config/srclist.txt: Add elisp-comp.
6191
6192 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
6193
6194         * MODULES.html.sh (Support for building libraries and executables):
6195         Add elisp-comp.
6196         * build-aux/elisp-comp: New file.
6197         * modules/elisp-comp: New file.
6198
6199 2006-08-24  Bruno Haible  <bruno@clisp.org>
6200
6201         * gnulib-tool (func_create_testdir): Use non-default values of
6202         sourcebase and m4base.
6203
6204 2006-08-24  Bruno Haible  <bruno@clisp.org>
6205
6206         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
6207         HTML structure.
6208
6209 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
6210
6211         * modules/openat (Depends-on): Add lchown.
6212
6213 2006-08-23  Bruno Haible  <bruno@clisp.org>
6214
6215         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
6216         of gl_LOCK_EARLY instead of gl_LOCK.
6217
6218 2006-08-23  Bruno Haible  <bruno@clisp.org>
6219
6220         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
6221         on OSF/1 to no.
6222         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
6223
6224 2006-08-23  Bruno Haible  <bruno@clisp.org>
6225
6226         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
6227         as unusable.
6228
6229         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
6230         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
6231         (gl_LOCK): New macro.
6232
6233 2006-08-22  Simon Josefsson  <jas@extundo.com>
6234
6235         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
6236         to md5 module.
6237
6238 2006-08-22  Simon Josefsson  <jas@extundo.com>
6239
6240         * MODULES.html.sh: Add "Support for maintaining and release
6241         projects".
6242
6243         * build-aux/gnupload: New file, from coreutils.
6244
6245 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
6246
6247         Avoid the need for AC_LIBSOURCES in m4 macros.
6248         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
6249         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
6250         * modules/check-version (EXTRA_DIST): Add check-version.h.
6251         * modules/crc (EXTRA_DIST): Add crc.h.
6252         * modules/des (EXTRA_DIST): Add des.h.
6253         * modules/gc (EXTRA_DIST): Add gc.h.
6254         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
6255         * modules/getline (EXTRA_DIST): Add getline.h.
6256         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
6257         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
6258         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
6259         * modules/md2 (EXTRA_DIST): Add md2.h.
6260         * modules/md4 (EXTRA_DIST): Add md4.h.
6261         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
6262         * modules/read-file (EXTRA_DIST): Add read-file.h.
6263         * modules/readline (EXTRA_DIST): Add readline.h.
6264         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
6265         rijndael-api-fst.h.
6266
6267 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
6268
6269         * m4/rijndael.m4 (gl_ARCFOUR):
6270         * m4/arctwo.m4 (gl_ARCTWO):
6271         * m4/check-version.m4 (gl_CHECK_VERSION):
6272         * m4/crc.m4 (gl_CRC):
6273         * m4/des.m4 (gl_DES):
6274         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
6275         * m4/gc.m4 (gl_GC):
6276         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
6277         * m4/getline.m4 (gl_FUNC_GETLINE):
6278         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
6279         * m4/hmac-md5.m4 (gl_HMAC_MD5):
6280         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
6281         * m4/md2.m4 (gl_MD2):
6282         * m4/md4.m4 (gl_MD4):
6283         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
6284         * m4/read-file.m4 (gl_FUNC_READ_FILE):
6285         * m4/readline.m4 (gl_FUNC_READLINE):
6286         * m4/rijndael.m4 (gl_RIJNDAEL):
6287         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
6288         to get the necessary .h files and whatnot.
6289
6290 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
6291
6292         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
6293         gnulib rather than the other way around.
6294         * config/srclistvars.sh (COREUTILS): Remove.
6295
6296 2006-08-22  Jim Meyering  <jim@meyering.net>
6297
6298         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
6299
6300         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
6301
6302 2006-08-22  Eric Blake  <ebb9@byu.net>
6303
6304         * modules/regexprops-generic: New file.
6305         * MODULES.html.sh (Support for building documentation): List it.
6306
6307 2006-08-22  Eric Blake  <ebb9@byu.net>
6308
6309         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
6310         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
6311         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
6312         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
6313
6314 2006-08-22  Bruno Haible  <bruno@clisp.org>
6315
6316         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
6317         and lib_LTLIBRARIES like the other lib_* variables.
6318
6319 2006-08-22  Bruno Haible  <bruno@clisp.org>
6320
6321         * build-aux/x-to-1.in: New file, from GNU gettext.
6322
6323 2006-08-22  Bruno Haible  <bruno@clisp.org>
6324
6325         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
6326         <utmpx.h> exists.
6327
6328 2006-08-22  Bruno Haible  <bruno@clisp.org>
6329
6330         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
6331         <utmpx.h> exists.
6332
6333 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
6334
6335         BeOS portability.
6336         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
6337         exist.
6338         Problem reported by Bruno Haible.
6339
6340 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
6341
6342         Avoid the need for AC_LIBSOURCES in m4 macros.
6343         * modules/acl (EXTRA_DIST): Add acl.h.
6344         * modules/argmatch (Files): Add m4/argmatch.m4.
6345         (configure.ac): Add gl_ARGMATCH.
6346         (EXTRA_DIST): Renamed from lib_SOURCES, for
6347         consistency with the other modules.  Remove argmatch.c.
6348         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
6349         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
6350         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
6351         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
6352         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
6353         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
6354         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
6355         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
6356         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
6357         * modules/closeout (EXTRA_DIST): Add closeout.h.
6358         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
6359         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
6360         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
6361         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
6362         dirname.h; remove basename.c and stripslash.c.
6363         * modules/exclude (EXTRA_DIST): Add exclude.h.
6364         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
6365         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
6366         * modules/file-type (EXTRA_DIST): Add file-type.h.
6367         * modules/filemode (EXTRA_DIST): Add filemode.h.
6368         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
6369         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
6370         * modules/fpending (EXTRA_DIST): Add __fpending.h.
6371         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
6372         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
6373         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
6374         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
6375         * modules/getdate (EXTRA_DIST): Add getdate.c.
6376         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
6377         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
6378         * modules/getpass (EXTRA_DIST): Add getpass.h.
6379         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
6380         * modules/group-member (EXTRA_DIST): Add group-member.h.
6381         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
6382         * modules/hash (EXTRA_DIST): Add hash.h.
6383         * modules/human (EXTRA_DIST): Add human.h.
6384         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
6385         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
6386         * modules/lchown (EXTRA_DIST): Add lchown.h.
6387         * modules/long-options (EXTRA_DIST): Add long-options.h.
6388         * modules/lstat (EXTRA_DIST): Add lstat.h.
6389         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
6390         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
6391         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
6392         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
6393         * modules/memxor (EXTRA_DIST): Add memxor.h.
6394         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
6395         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
6396         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
6397         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
6398         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
6399         * modules/physmem (EXTRA_DIST): Add physmem.h.
6400         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
6401         * modules/posixver (EXTRA_DIST): Add posixver.h.
6402         * modules/quote (EXTRA_DIST): Add quote.h.
6403         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
6404         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
6405         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
6406         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
6407         regex_internal.h regexec.c.
6408         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
6409         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
6410         * modules/same (EXTRA_DIST): Add same.h.
6411         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
6412         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
6413         * modules/savedir (EXTRA_DIST): Add savedir.h.
6414         * modules/sha1 (EXTRA_DIST): Add sha1.h.
6415         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
6416         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
6417         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
6418         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
6419         * modules/strdup (EXTRA_DIST): Add strdup.h.
6420         * modules/strftime (EXTRA_DIST): Add strftime.h.
6421         * modules/strndup (EXTRA_DIST): Add strndup.h.
6422         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
6423         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
6424         * modules/time_r (EXTRA_DIST): Add time_r.h.
6425         * modules/timespec (EXTRA_DIST): Add timespec.h.
6426         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
6427         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
6428         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
6429         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
6430         * modules/userspec (EXTRA_DIST): Add userspec.h.
6431         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
6432         * modules/utimens (EXTRA_DIST): Add utimens.h.
6433         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
6434         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
6435         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
6436         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
6437         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
6438         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
6439         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
6440         * modules/yesno (EXTRA_DIST): Add yesno.h.
6441
6442 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
6443
6444         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
6445
6446         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
6447         * m4/dev-ino.m4, same-inode.m4: Remove.
6448
6449         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
6450         * m4/acl.m4 (AC_FUNC_ACL):
6451         * m4/backupfile.m4 (gl_BACKUPFILE):
6452         * m4/c-strtod.m4 (gl_C99_STRTOLD):
6453         * m4/canon-host.m4 (gl_CANON_HOST):
6454         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
6455         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
6456         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
6457         * m4/cloexec.m4 (gl_CLOEXEC):
6458         * m4/close-stream.m4 (gl_CLOSE_STREAM):
6459         * m4/closeout.m4 (gl_CLOSEOUT):
6460         * m4/dirfd.m4 (gl_FUNC_DIRFD):
6461         * m4/dirname.m4 (gl_DIRNAME):
6462         * m4/exclude.m4 (gl_EXCLUDE):
6463         * m4/exitfail.m4 (gl_EXITFAIL):
6464         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
6465         * m4/file-type.m4 (gl_FILE_TYPE):
6466         * m4/filemode.m4 (gl_FILEMODE):
6467         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
6468         * m4/fpending.m4 (gl_FUNC_FPENDING):
6469         * m4/fprintftime.m4 (gl_FPRINTFTIME):
6470         * m4/fts.m4 (gl_FUNC_FTS):
6471         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
6472         * m4/getdate.m4 (gl_GETDATE):
6473         * m4/gethrxtime.m4 (gl_GETHRXTIME):
6474         * m4/getpagesize.m4 (gl_GETPAGESIZE):
6475         * m4/getpass.m4 (gl_FUNC_GETPASS):
6476         * m4/gettime.m4 (gl_GETTIME):
6477         * m4/getugroups.m4 (gl_GETUGROUPS):
6478         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
6479         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
6480         * m4/hard-locale.m4 (gl_HARD_LOCALE):
6481         * m4/hash.m4 (gl_HASH):
6482         * m4/idcache.m4 (gl_IDCACHE):
6483         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
6484         * m4/lchown.m4 (gl_FUNC_LCHOWN):
6485         * m4/long-options.m4 (gl_LONG_OPTIONS):
6486         * m4/lstat.m4 (gl_FUNC_LSTAT):
6487         * m4/md5.m4 (gl_MD5):
6488         * m4/memcasecmp.m4 (gl_MEMCASECMP):
6489         * m4/memcoll.m4 (gl_MEMCOLL):
6490         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
6491         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
6492         * m4/memxor.m4 (gl_MEMXOR):
6493         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
6494         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
6495         * m4/modechange.m4 (gl_MODECHANGE):
6496         * m4/mountlist.m4 (gl_MOUNTLIST):
6497         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
6498         * m4/openat.m4 (gl_FUNC_OPENAT):
6499         * m4/pathmax.m4 (gl_PATHMAX):
6500         * m4/physmem.m4 (gl_PHYSMEM):
6501         * m4/posixtm.m4 (gl_POSIXTM):
6502         * m4/posixver.m4 (gl_POSIXVER):
6503         * m4/quote.m4 (gl_QUOTE):
6504         * m4/quotearg.m4 (gl_QUOTEARG):
6505         * m4/readtokens.m4 (gl_READTOKENS):
6506         * m4/readutmp.m4 (gl_READUTMP):
6507         * m4/regex.m4 (gl_REGEX):
6508         * m4/safe-read.m4 (gl_SAFE_READ):
6509         * m4/safe-write.m4 (gl_SAFE_WRITE):
6510         * m4/same.m4 (gl_SAME):
6511         * m4/save-cwd.m4 (gl_SAVE_CWD):
6512         * m4/savedir.m4 (gl_SAVEDIR):
6513         * m4/settime.m4 (gl_SETTIME):
6514         * m4/sha1.m4 (gl_SHA1):
6515         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
6516         * m4/stat-macros.m4 (gl_STAT_MACROS):
6517         * m4/stat-time.m4 (gl_STAT_TIME):
6518         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
6519         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
6520         * m4/strdup.m4 (gl_FUNC_STRDUP):
6521         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
6522         * m4/strndup.m4 (gl_FUNC_STRNDUP):
6523         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
6524         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
6525         * m4/time_r.m4 (gl_TIME_R):
6526         * m4/timespec.m4 (gl_TIMESPEC):
6527         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
6528         * m4/unlinkdir.m4 (gl_UNLINKDIR):
6529         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
6530         * m4/userspec.m4 (gl_USERSPEC):
6531         * m4/utimecmp.m4 (gl_UTIMECMP):
6532         * m4/utimens.m4 (gl_UTIMENS):
6533         * m4/xalloc.m4 (gl_XALLOC):
6534         * m4/xgetcwd.m4 (gl_XGETCWD):
6535         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
6536         * m4/xreadlink.m4 (gl_XREADLINK):
6537         * m4/xstrtod.m4 (gl_XSTRTOD):
6538         * m4/yesno.m4 (gl_YESNO):
6539         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
6540         to get the necessary .h files and whatnot.
6541
6542 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
6543             Bruno Haible  <bruno@clisp.org>
6544
6545         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
6546         /bin/sh understanding of '!' conditional negation.
6547
6548 2006-08-21  Jim Meyering  <jim@meyering.net>
6549
6550         * modules/openat (Depends-on): Really alphabetize.
6551
6552         * modules/acl (Depends-on): Add error and quote.
6553
6554         * check-module (find_included_lib_files): Add at-func.c to the
6555         ok-to-include-more-than-once white list.
6556
6557         * modules/openat (Depends-on): Add lstat.  Alphabetize.
6558
6559 2006-08-21  Bruno Haible  <bruno@clisp.org>
6560
6561         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
6562         Emit a pkgdata_DATA variable only if some snippets add contents to it.
6563         Reported by Martin Lambers <marlam@marlam.de>.
6564
6565 2006-08-21  Bruno Haible  <bruno@clisp.org>
6566
6567         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
6568         specify an installation location, don't emit a noinst_LIBRARIES or
6569         noinst_LTLIBRARIES assignment.
6570
6571 2006-08-21  Bruno Haible  <bruno@clisp.org>
6572
6573         BeOS portability.
6574         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
6575         BeOS has mbrtowc() but no <wctype.h>.
6576
6577 2006-08-21  Bruno Haible  <bruno@clisp.org>
6578
6579         BeOS portability.
6580         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
6581         exist.
6582
6583 2006-08-21  Bruno Haible  <bruno@clisp.org>
6584
6585         BeOS portability.
6586         * lib/mbchar.h: Include <wctype.h> only if it exists.
6587
6588 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6589
6590         Remove files that are no longer needed by their respective modules.
6591         * m4/obstack.m4: Remove.
6592         * m4/strerror_r.m4: Remove.
6593         * m4/uint32_t.m4: Remove.
6594         * m4/uintptr_t.m4: Remove.
6595         * m4/ullong_max.m4: Remove.
6596         * m4/xstrtoimax.m4: Remove.
6597         * m4/xstrtoumax.m4: Remove.
6598
6599         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
6600         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
6601         dependencies now capture this.
6602
6603         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
6604         Do not use AC_LIBSOURCES, since gnulib modules now do this.
6605         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
6606         * m4/human.m4 (gl_HUMAN): Likewise.
6607         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
6608         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
6609
6610         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
6611
6612         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
6613         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
6614         stdint.
6615         * m4/human.m4 (gl_HUMAN): Likewise.
6616         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
6617         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
6618         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6619         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6620         * m4/xstrtol (gl_XSTRTOL): Likewise.
6621
6622         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
6623         AC_TYPE_LONG_LONG_INT.
6624         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
6625         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
6626         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
6627         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
6628
6629         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
6630         on stdbool.
6631
6632         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
6633         (gl_PREREQ_XSTRTOUL): Remove.
6634
6635         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
6636
6637         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
6638         mode.
6639
6640 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6641
6642         Add and change modules to make it easier for coreutils to use
6643         gnulib-tool.
6644         * modules/backupfile (Files): Remove m4/d-ino.m4.
6645         (Depends-on): Add d-ino.
6646         * modules/cycle-check (Depends-on): Add stdint.
6647         (lib_SOURCES): Add cycle-check.h.
6648         * modules/d-ino: New module.
6649         * modules/d-type: New module.
6650         * modules/error (Files): Remove m4/strerror_r.m4.
6651         * modules/filemode (Files): Add m4/st_dm_mode.m4.
6652         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
6653         m4/inttypes_h.m4, m4/uintmax_t.m4.
6654         (Depends-on): Add stdint.
6655         (lib_SOURCES): Add fsusage.h.
6656         * modules/getcwd (Files): Remove d-ino.m4.
6657         (Depends-on): Add d-ino.
6658         * modules/getndelim2 (Depends-on): Add stdint.
6659         * modules/glob (Files): Remove m4/d-type.m4.
6660         (Depends-on): Add d-type.
6661         * modules/host-os: New module.
6662         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
6663         m4/inttypes_h.m4, m4/uintmax_t.m4.
6664         * Depends-on: Add stdint.
6665         (lib_SOURCES): Add human.h.
6666         * modules/inttostr (Files): Remove m4/intmax_t.m4,
6667         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
6668         m4/uintmax_t.m4, m4/ulonglong.m4.
6669         (Depends-on): Add stdint.
6670         (EXTRA_DIST): Add inttostr.h.
6671         * modules/lchmod: New module.
6672         * modules/link-follow: New module.
6673         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
6674         (Depends-on): Add lchmod.
6675         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
6676         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
6677         (Depends-on): Add stdint.
6678         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
6679         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
6680         (Depends-on): Add stdint.
6681         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
6682         * modules/perl: New module.
6683         * modules/regex (Depends-on): Add stdint.
6684         * modules/rmdir-errno: New module.
6685         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6686         m4/intmax_t.m4.
6687         (Depends-on): Add stdint.
6688         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
6689         m4/uintmax_t.m4.
6690         (Depends-on): Add stdint.
6691         * modules/unlink-busy: New module.
6692         * modules/utimecmp (Depends-on): Add stdint.
6693         * modules/uptime: New module.
6694         * modules/winsz-ioctl: New module.
6695         * modules/winsz-termios: New module.
6696         * modules/xnanosleep (Depends-on): Add nanosleep.
6697         * modules/ullong_max: Remove.
6698         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
6699         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
6700         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
6701         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
6702         (Depends-on): Add inttypes.
6703         (lib_SOURCES): Add xstrtol.h.
6704         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
6705         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
6706         * MODULES.html.sh: Move 'assert' into the assert section.
6707         Move 'dummy' into the linking section.
6708         Remove ullong_max.
6709         Add section for compatibility checks for POSIX:2001 functions,
6710         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
6711         winsz-ioctl, and winsz-termios into it.
6712         Add lchmod.
6713         Add top-level Misc section and put host-os, perl, and uptime
6714         into it.
6715
6716 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6717
6718         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
6719         now assume the stdint module.  Do not include inttypes.h.
6720         * lib/fsusage.h: Likewise.
6721         * lib/getndelim2.c: Likewise.
6722         * lib/human.h: Likewise.
6723         * lib/inttostr.h: Likewise.
6724         * lib/obstack.c: Likewise.
6725         * lib/regex_internal.h: Likewise.
6726         * lib/tempname.c: Likewise.
6727         * lib/utimecmp.c: Likewise.
6728         * lib/xstrtol.h: Likewise.
6729
6730         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
6731
6732         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
6733         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
6734         * lib/xtime.h: Likewise.
6735
6736 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6737
6738         * modules/openat (Files): Add lib/fchmodat.c.
6739         Fixes problem reported by Jay Youngman.
6740
6741 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6742
6743         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
6744         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
6745
6746 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6747             Bruno Haible  <bruno@clisp.org>
6748
6749         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
6750         and is a script that invokes bison. Tighten the code. Add comments.
6751
6752 2006-08-18  Jim Meyering  <jim@meyering.net>
6753
6754         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
6755         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
6756         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
6757         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
6758
6759 2006-08-18  Bruno Haible  <bruno@clisp.org>
6760
6761         * modules/bison-i18n: New file.
6762         * MODULES.html.sh (Internationalization functions): Add it.
6763
6764 2006-08-18  Bruno Haible  <bruno@clisp.org>
6765
6766         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
6767         sys/statvfs.h. When getmntinfo was found, check its declaration and
6768         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
6769
6770 2006-08-18  Bruno Haible  <bruno@clisp.org>
6771
6772         * m4/bison-i18n.m4: New file, from bison.
6773
6774 2006-08-18  Bruno Haible  <bruno@clisp.org>
6775
6776         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
6777         (ME_DUMMY): Treat "kernfs" as a dummy.
6778         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
6779
6780 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6781
6782         Update from coreutils.
6783
6784         2006-08-15  Jim Meyering  <jim@meyering.net>
6785
6786         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
6787
6788         2006-01-17  Jim Meyering  <jim@meyering.net>
6789
6790         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
6791
6792         2006-01-11  Jim Meyering  <jim@meyering.net>
6793
6794         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
6795         Check for the lchmod function.
6796
6797 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
6798
6799         Update from coreutils.
6800
6801         * lib/__fpending.h: Add copyright notice.
6802         * lib/fprintftime.h: Likewise.
6803         * lib/savedir.c: Use (C) in copyright notice.
6804         * lib/savedir.h: Likewise.
6805
6806         2006-08-15  Jim Meyering  <jim@meyering.net>
6807
6808         * lib/at-func.c: New file, with the logic of all emulated at-functions.
6809         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
6810         in support of the EXPECTED_ERRNO macro.
6811         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
6812         definitions.  Instead, define the appropriate symbols and include
6813         "at-func.c".
6814         * lib/mkdirat.c (mkdirat): Likewise.
6815         * lib/fchmodat.c (fchmodat): Likewise.
6816         (ENOSYS): Remove definition.
6817         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
6818         it.  Don't include "unistd--.h" -- it wasn't ever used.
6819
6820         2006-01-17  Jim Meyering  <jim@meyering.net>
6821
6822         Rewrite fts.c not to change the current working directory,
6823         by using openat, fstatat, fdopendir, etc..
6824
6825         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
6826         (HAVE_OPENAT_SUPPORT): Define.
6827         [_LIBC] (fchdir): Don't undef or define; no longer used.
6828         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
6829         Now, this `function' always succeeds, and consumes its file descriptor
6830         parameter -- so callers must not close such FDs.  Update callers.
6831         (diropen_fd, opendirat, cwd_advance_fd): New functions.
6832         (diropen): Add parameter, SP.  Adjust all callers.
6833         Implement using diropen_fd, rather than open.
6834         (fts_open): Initialize new member, fts_cwd_fd.
6835         Remove fts_rft-setting code.
6836         (fts_close): Close fts_cwd_fd, if necessary.
6837         (__opendir2): Define in terms of opendir or opendirat,
6838         depending on whether the FST_NOCHDIR flag is set.
6839         (fts_build): Since fts_safe_changedir consumes its FD, and since
6840         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
6841         and close the dup'd file descriptor upon failure.
6842         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
6843         (fts_safe_changedir): Tweak semantics to reflect that this function
6844         now calls cwd_advance_fd and hence consumes its FD argument.
6845         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
6846         [struct FTS] (fts_rft): Remove now-unused member.
6847         [struct FTS] (fts_cycle.state): Improve comment.
6848
6849         * lib/openat.c (openat_needs_fchdir): New function.
6850         * lib/openat.h (openat_needs_fchdir): Declare it.
6851
6852 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
6853
6854         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
6855         Problem and fix reported by Pádraig Brady in
6856         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
6857
6858 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6859
6860         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
6861
6862 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6863
6864         * lib/memcoll.c (memcoll): Optimize for the common case where the
6865         arguments are bytewise equal.
6866
6867 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
6868
6869         * doc/regexprops-generic.texi: Add a copyright notice.
6870
6871 2006-08-15  Bruno Haible  <bruno@clisp.org>
6872
6873         * modules/tmpdir (License): Change to LGPL.
6874
6875 2006-08-15  Bruno Haible  <bruno@clisp.org>
6876
6877         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
6878         module.
6879
6880 2006-08-14  Simon Josefsson  <jas@extundo.com>
6881
6882         * config/srclist.txt: Add gnupload.
6883
6884 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6885
6886         Change copyright notice from LGPL 2 to GPL 2, since that's the
6887         standard form used in the gnulib repository.
6888         * tests/test-lock.c: Likewise.
6889         * tests/test-stdint.c: Likewise.
6890         * tests/test-tls.c: Likewise.
6891
6892         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
6893         prelude-manager.  User shorter URLs for GNU projects, without '?'.
6894         Add copyright notice.
6895
6896         * check-module: Add copyright notice.  Output a copyright
6897         notice if "--version" is specified.
6898         * modules/COPYING: New file.
6899         * tests/test-getaddrinfo.c: Add copyright notice.
6900         * tests/test-verify.c: Likewise.
6901
6902 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6903
6904         Change copyright notice from LGPL 2 to GPL 2, since that's the
6905         standard form used in the gnulib repository.
6906         * lib/lock.c: LGPL -> GPL.
6907         * lib/lock.h: Likewise.
6908         * lib/strnlen1.c: Likewise.
6909         * lib/strnlen1.h: Likewise.
6910         * lib/tls.c: Likewise.
6911         * lib/tls.h: Likewise.
6912         * lib/tmpdir.c: Likewise.
6913
6914         * lib/TODO: Remove; this belongs only in coreutils.
6915
6916 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6917
6918         Add copyright notices to long-enough files that lack them, since
6919         otherwise the files aren't clearly free.  Use the same notice that
6920         getdate.texi already uses.
6921         * doc/alloca-opt.texi: Add copyright notice.
6922         * doc/alloca.texi: Likewise.
6923         * doc/ctime.texi: Likewise.
6924         * doc/functions.texi: Likewise.
6925         * doc/gcd.texi: Likewise.
6926         * doc/gnulib-tool.texi: Likewise.
6927         * doc/inet_ntoa.texi: Likewise.
6928         * doc/visibility.texi: Likewise.
6929
6930         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
6931         * doc/quote.texi: Add copyright notice.
6932
6933         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
6934         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
6935         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
6936         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
6937         is now obsolete, and give a pointer to the Sun list.
6938         Add copyright notice.
6939
6940 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
6941
6942         * config/srclistvars.sh: Add copyright notice.
6943
6944 2006-08-14  Eric Blake  <ebb9@byu.net>
6945
6946         Import the following change from libc:
6947
6948         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
6949
6950         Upstream bug 2997.
6951         * lib/misc/error.c: Add space between program name and message if file
6952         name is missing.
6953
6954 2006-08-12  Karl Berry  <karl@gnu.org>
6955
6956         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
6957         remove, these originate in gnulib now.
6958
6959 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6960
6961         * doc/Makefile (standards.info standards.html standards.dvi):
6962         Also depend on make-stds.texi.
6963
6964 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
6965
6966         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
6967         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
6968
6969         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
6970         in wchar_t.  Problem reported by Eric Blake.
6971
6972         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
6973         LEN is smaller than SIZE.  Suggested by Bruno Haible.
6974         Also, help the compiler to keep LEN in a register.
6975
6976 2006-08-11  Eric Blake  <ebb9@byu.net>
6977
6978         * users.txt: Sort.  Add tar.
6979
6980 2006-08-11  Bruno Haible  <bruno@clisp.org>
6981
6982         * users.txt: New file.
6983
6984 2006-08-11  Bruno Haible  <bruno@clisp.org>
6985
6986         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
6987         before <wchar.h>. Needed for OSF/1 and BSD/OS.
6988
6989 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6990
6991         * modules/snprintf (Depends-on): Remove minmax.
6992         (Maintainer): Add self and Bruno.
6993
6994 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
6995
6996         * lib/.cppi-disable: Add snprintf.h, socket_.h.
6997         * lib/snprintf.c: Include <errno.h> and <limits.h>.
6998         (EOVERFLOW): Define if the system does not.
6999         Do not include "minmax.h"; it wasn't used.
7000         (snprintf): Don't assume size_t promotes to an unsigned type.
7001         Fix bug when generated string was too long for the buffer: the
7002         buffer's contents are supposed to be the initial prefix of the
7003         output.  Don't assume vasnprintf returns EOVERFLOW if the size
7004         exceeds INT_MAX; do the check ourselves.
7005
7006         Import the following changes from libc:
7007
7008         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
7009
7010         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
7011         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
7012         set wc to the byte which couldn't be converted.
7013         (re_string_reconstruct): Don't clear valid_raw_len before calling
7014         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
7015         tip_context using re_string_context_at.
7016
7017         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
7018
7019         * lib/posix/regex.h: g++ still cannot handled [restrict].
7020
7021         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
7022
7023         * lib/posix/regex.h: Remove special handling for VMS.
7024
7025 2006-08-10  Jim Meyering  <jim@meyering.net>
7026
7027         * modules/same-inode: New module.
7028         * modules/dev-ino: New module.
7029         * modules/cycle-check: Depend on these modules, rather than simply
7030         including their .h files.
7031         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
7032         required via m4/cycle-check.m4.
7033         * modules/same: Depend on new same-inode module, rather than
7034         including same-inode.h.
7035         * modules/chdir-safer: New file.
7036
7037         * modules/chown (Depends-on): Add stat-macros.
7038
7039 2006-08-10  Jim Meyering  <jim@meyering.net>
7040
7041         * m4/cycle-check.m4: New file.
7042         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
7043         * m4/dev-ino.m4, m4/same-inode.m4: New files.
7044
7045 2006-08-10  Eric Blake  <ebb9@byu.net>
7046
7047         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
7048         in from original proposal.
7049
7050 2006-08-10  Eric Blake  <ebb9@byu.net>
7051         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7052
7053         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
7054         namespace.
7055
7056 2006-08-10  Bruno Haible  <bruno@clisp.org>
7057
7058         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
7059         as well.
7060
7061 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
7062
7063         Sync from coreutils.
7064
7065         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
7066
7067         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
7068         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
7069
7070 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
7071
7072         * modules/restrict: Remove; no longer needed now that we assume
7073         Autoconf 2.59 or later.
7074         * MODULES.html.sh: Remove 'restrict'.
7075         * modules/argp (Depends-on): Remove 'restrict'.
7076         * modules/base64 (Depends-on): Likewise.
7077         * modules/gc (Depends-on): Likewise.
7078         * modules/getaddrinfo (Depends-on): Likewise.
7079         * modules/glob (Depends-on): Likewise.
7080         * modules/inet_ntop (Depends-on): Likewise.
7081         * modules/inet_pton (Depends-on): Likewise.
7082         * modules/memxor (Depends-on): Likewise.
7083         * modules/regex (Depends-on): Likewise.
7084         * modules/strtok_r (Depends-on): Likewise.
7085         * modules/time_r (Depends-on): Likewise.
7086
7087 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
7088
7089         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
7090         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
7091         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7092         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
7093         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
7094         * m4/memxor.m4 (gl_MEMXOR): Likewise.
7095         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
7096         gl_C_RESTRICT replaced by AC_C_RESTRICT.
7097
7098         Merge from coreutils.
7099         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
7100         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
7101         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
7102         * m4/time_r.m4 (gl_TIME_R): Likewise.
7103
7104 2006-08-09  Karl Berry  <karl@gnu.org>
7105
7106         * config/srclist.txt: no more gettext-tools, per Bruno.
7107
7108 2006-08-08  Eric Blake  <ebb9@byu.net>
7109
7110         * modules/verror: New module.
7111         * MODULES.html.sh: Document it.
7112
7113 2006-08-08  Eric Blake  <ebb9@byu.net>
7114
7115         * lib/verror.h, lib/verror.c: New files.
7116
7117 2006-08-08  Eric Blake  <ebb9@byu.net>
7118
7119         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
7120         verror_at_line output complies with GNU Coding Standards even when
7121         file is NULL.
7122
7123 2006-08-07  Bruno Haible  <bruno@clisp.org>
7124
7125         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
7126         versions of AIX.
7127         Reported by Ralf Wildenhues.
7128
7129 2006-08-07  Bruno Haible  <bruno@clisp.org>
7130
7131         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
7132         in an AC_DEFUN. Needed so that the autoconf snippets can use
7133         AC_REQUIRE.
7134
7135 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7136
7137         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7138         Initialize pkgdata_DATA.
7139         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
7140         overriding it.
7141
7142 2006-08-06  Eric Blake  <ebb9@byu.net>
7143
7144         * lib/error.h: Fold in some upstream changes from glibc.
7145         * lib/error.c: Likewise.
7146
7147 2006-08-04  Bruno Haible  <bruno@clisp.org>
7148
7149         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7150         Make the mostlyclean-local rule depend on mostlyclean-generic.
7151         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
7152
7153 2006-07-31  Bruno Haible  <bruno@clisp.org>
7154
7155         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
7156         <stdlib.h>, <string.h>.
7157
7158 2006-07-30  Bruno Haible  <bruno@clisp.org>
7159
7160         * modules/readlink (License): Change to LGPL.
7161
7162 2006-07-30  Bruno Haible  <bruno@clisp.org>
7163
7164         * modules/javaversion (Makefile.am): Distribute javaversion.java and
7165         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
7166         set PKGDATADIR to point to it.
7167
7168 2006-07-30  Bruno Haible  <bruno@clisp.org>
7169
7170         * modules/csharpexec (configure.ac): Comment out macro invocation.
7171         * modules/javaexec (configure.ac): Likewise.
7172         * modules/javacomp-script (configure.ac): Likewise.
7173
7174         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
7175
7176 2006-07-30  Bruno Haible  <bruno@clisp.org>
7177
7178         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
7179         linked-list.
7180
7181 2006-07-30  Bruno Haible  <bruno@clisp.org>
7182
7183         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
7184
7185 2006-07-30  Bruno Haible  <bruno@clisp.org>
7186
7187         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7188         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
7189         get removed.
7190
7191 2006-07-29  Bruno Haible  <bruno@clisp.org>
7192
7193         Make it possible for gnulib-tool to work with locally modified or
7194         augmented gnulib repositories.
7195         * gnulib-tool (func_usage): Document --local-dir option.
7196         (local_gnulib_dir): New variable.
7197         Handle --local-dir option.
7198         (func_lookup_file): New function.
7199         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
7200         (func_get_description, func_get_filelist, func_get_description,
7201         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
7202         func_get_automake_snippet, func_get_include_directive,
7203         func_get_license, func_get_maintainer): Use func_lookup_file.
7204         (func_import, func_create_testdir): Use func_lookup_file.
7205
7206 2006-07-29  Bruno Haible  <bruno@clisp.org>
7207
7208         * modules/setenv (Depends-on): Add unistd.
7209
7210 2006-07-29  Bruno Haible  <bruno@clisp.org>
7211
7212         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
7213
7214 2006-07-29  Bruno Haible  <bruno@clisp.org>
7215
7216         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
7217
7218 2006-07-29  Bruno Haible  <bruno@clisp.org>
7219
7220         * gnulib-tool (import, update): If there is no Makefile.am, look at
7221         aclocal.m4, instead of bailing out.
7222
7223 2006-07-29  Bruno Haible  <bruno@clisp.org>
7224
7225         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
7226         Categorize the options by when they are useful.
7227
7228 2006-07-29  Bruno Haible  <bruno@clisp.org>
7229
7230         * gnulib-tool (func_usage): Document option --no-libtool.
7231         Handle option --no-libtool.
7232         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
7233         for changed semantics of $libtool variable.
7234         (func_import): Likewise. If libtool is not used, show this through
7235         an option --no-libtool.
7236         (func_create_testdir): Update.
7237
7238 2006-07-29  Bruno Haible  <bruno@clisp.org>
7239
7240         * gnulib-tool (func_import): Extend error message about missing
7241         --doc-base.
7242
7243 2006-07-29  Bruno Haible  <bruno@clisp.org>
7244
7245         * gnulib-tool (func_import): Don't create the $docbase directory if
7246         there is no file to store there.
7247
7248 2006-07-29  Bruno Haible  <bruno@clisp.org>
7249
7250         * gnulib-tool (autoconf_minversion): If a --dir option is given and
7251         relevant, look for configure.ac there, not in the current directory.
7252         Also use a simple search for AC_PREREQ, not "autoconf --trace".
7253
7254 2006-07-29  Bruno Haible  <bruno@clisp.org>
7255
7256         * gnulib-tool (SORT): New variable.
7257         (func_usage): Undocument --assume-autoconf option.
7258         Remove --assume-autoconf option handling.
7259         (autoconf_minversion): Determine from the contents of configure.ac.
7260         (func_import): Remove autoconf_minversion handling.
7261         Suggested by Eric Blake.
7262
7263 2006-07-29  Bruno Haible  <bruno@clisp.org>
7264
7265         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
7266
7267 2006-07-29  Bruno Haible  <bruno@clisp.org>
7268
7269         * config/srclist.txt (*setenv.[ch]): Remove rules.
7270
7271 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7272
7273         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
7274
7275 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7276
7277         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
7278         arpa/inet.h.
7279
7280 2006-07-28  Simon Josefsson  <jas@extundo.com>
7281
7282         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
7283         * modules/inet_pton (Depends-on): Likewise.
7284
7285 2006-07-28  Simon Josefsson  <jas@extundo.com>
7286
7287         * m4/netinet_in_h.m4: New file.
7288
7289 2006-07-28  Simon Josefsson  <jas@extundo.com>
7290
7291         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
7292         #include's.
7293
7294 2006-07-28  Simon Josefsson  <jas@extundo.com>
7295
7296         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
7297         #include's.
7298
7299 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
7300
7301         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
7302         setgid on directories only if they set these bits.
7303         * lib/modechange.h: Remove obsolete comment about masks.
7304
7305 2006-07-28  Eric Blake  <ebb9@byu.net>
7306
7307         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
7308         macro expansion.
7309
7310 2006-07-28  Bruno Haible  <bruno@clisp.org>
7311
7312         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
7313
7314 2006-07-28  Bruno Haible  <bruno@clisp.org>
7315
7316         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
7317
7318 2006-07-28  Bruno Haible  <bruno@clisp.org>
7319
7320         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
7321         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
7322         Define fallbacks.
7323         Avoids link error on FreeBSD 4.x.
7324         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
7325
7326         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
7327         encoding.
7328         * lib/mbswidth.c (iswcntrl): Likewise.
7329
7330 2006-07-27  Bruno Haible  <bruno@clisp.org>
7331
7332         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
7333         test.
7334
7335 2006-07-27  Bruno Haible  <bruno@clisp.org>
7336
7337         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
7338         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
7339         defined.
7340
7341 2006-07-26  Eric Blake  <ebb9@byu.net>
7342
7343         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
7344
7345 2006-07-26  Eric Blake  <ebb9@byu.net>
7346
7347         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
7348         like mingw that lack mkstemp.
7349         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
7350         avoid compilation warning on mingw.
7351
7352 2006-07-26  Bruno Haible  <bruno@clisp.org>
7353
7354         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
7355         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
7356         INT_FAST*_MIN, INTPTR_MIN.
7357
7358 2006-07-25  Bruno Haible  <bruno@clisp.org>
7359
7360         * modules/version-etc (Depends-on): Add stdarg.
7361
7362 2006-07-25  Bruno Haible  <bruno@clisp.org>
7363
7364         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
7365         complex commands.
7366
7367 2006-07-25  Bruno Haible  <bruno@clisp.org>
7368
7369         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
7370         defined in <stdarg.h> or config.h.
7371
7372 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
7373
7374         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
7375         (gl_STDIO_SAFER): Remove.
7376
7377 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
7378
7379         * MODULES.html.sh (File stream based Input/Output):
7380         Add fopen-safer, tmpfile-safer; remove stdio-safer.
7381         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
7382         * modules/fopen-safer, modules/tmpfile-safer: New files.
7383         * modules/stdio-safer: Remove.
7384
7385 2006-07-24  Bruno Haible  <bruno@clisp.org>
7386
7387         * modules/tmpdir: New file.
7388         * MODULES.html.sh (File system functions): Add it.
7389
7390 2006-07-24  Bruno Haible  <bruno@clisp.org>
7391
7392         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
7393         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
7394
7395 2006-07-24  Bruno Haible  <bruno@clisp.org>
7396
7397         * modules/clean-temp: New file.
7398
7399 2006-07-24  Bruno Haible  <bruno@clisp.org>
7400
7401         * m4/tmpdir.m4: New file, from GNU gettext.
7402
7403 2006-07-24  Bruno Haible  <bruno@clisp.org>
7404
7405         * lib/tmpdir.h: New file, from GNU gettext.
7406         * lib/tmpdir.c: New file, from GNU gettext.
7407
7408 2006-07-24  Bruno Haible  <bruno@clisp.org>
7409
7410         * lib/clean-temp.h: New file, from GNU gettext.
7411         * lib/clean-temp.c: New file, from GNU gettext.
7412
7413 2006-07-23  Eric Blake  <ebb9@byu.net>
7414
7415         * modules/stdio-safer (Files): Add tmpfile-safer.c.
7416         (Depends-on): Add binary-io.
7417
7418 2006-07-23  Eric Blake  <ebb9@byu.net>
7419
7420         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
7421
7422 2006-07-23  Eric Blake  <ebb9@byu.net>
7423
7424         * lib/tmpfile-safer.c: New file.
7425         * lib/stdio-safer.h (fopen_safer): Add prototype.
7426         * lib/stdio--.h (tmpfile): Make safer.
7427
7428 2006-07-23  Bruno Haible  <bruno@clisp.org>
7429
7430         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
7431         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
7432         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
7433         gl_linked_remove_at): Use it.
7434
7435 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7436         and Simon Josefsson <jas@extundo.com>
7437
7438         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
7439
7440         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
7441
7442 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7443
7444         * modules/close-stream: New file.
7445         * modules/closeout (Description): Make it clear that it exits
7446         with a diagnostic on error.
7447         (Depends-on): Add close-stream.  Remove fpending, stdbool.
7448         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
7449
7450 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7451
7452         * m4/close-stream.m4: New file.
7453
7454 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7455
7456         * lib/close-stream.c, lib/close-stream.h: New files.
7457
7458 2006-07-22  Bruno Haible  <bruno@clisp.org>
7459
7460         Merge from GNU gettext 0.15.
7461
7462         2006-05-01  Bruno Haible  <bruno@clisp.org>
7463
7464                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
7465
7466         2006-07-22  Bruno Haible  <bruno@clisp.org>
7467
7468                 * modules/javaversion: New file.
7469                 * MODULES.html.sh (Java): Add javaversion.
7470
7471         2006-03-12  Bruno Haible  <bruno@clisp.org>
7472
7473                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
7474
7475         2005-12-04  Bruno Haible  <bruno@clisp.org>
7476
7477                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
7478                 (untested).
7479
7480         2006-06-21  Bruno Haible  <bruno@clisp.org>
7481
7482                 Avoid warnings from recent versions of mcs.
7483                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
7484                 -o, -L, -r any more. Use options documented since mcs-1.0
7485                 instead. Similarly for -g.
7486
7487         2005-12-04  Bruno Haible  <bruno@clisp.org>
7488
7489                 * build-aux/csharpcomp.sh.in: Suffix for resources is
7490                 .resources, not .resource.
7491
7492         2005-07-09  Bruno Haible  <bruno@clisp.org>
7493
7494                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
7495                 add a .dll suffix.
7496                 Reported by Mark Junker <mjscod@gmx.de>.
7497
7498         2006-07-22  Bruno Haible  <bruno@clisp.org>
7499
7500                 * modules/gettext: Upgrade to gettext-0.15.
7501                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
7502                 m4/visibility.m4.
7503                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
7504
7505 2006-07-22  Bruno Haible  <bruno@clisp.org>
7506
7507         Merge from GNU gettext 0.15.
7508
7509         2006-03-25  Bruno Haible  <bruno@clisp.org>
7510
7511                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
7512
7513         2006-07-21  Bruno Haible  <bruno@clisp.org>
7514
7515                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
7516                 "1.1".
7517
7518         2006-05-09  Bruno Haible  <bruno@clisp.org>
7519
7520                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
7521                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
7522                 for the conftestver execution.
7523
7524         2006-05-01  Bruno Haible  <bruno@clisp.org>
7525
7526                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
7527                 optional target-version argument. Verify that the compiler
7528                 groks source of the specified source-version, or add -source
7529                 option as necessary. Verify that the compiler produces
7530                 bytecode in the specified target-version, or add -target and
7531                 -source options as necessary. Make the result of the test
7532                 available as variable CONF_JAVAC. Also log error output in
7533                 config.log.
7534
7535         2006-03-11  Bruno Haible  <bruno@clisp.org>
7536
7537                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
7538
7539         2006-05-09  Bruno Haible  <bruno@clisp.org>
7540
7541                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
7542                 CLASSPATH_SEPARATOR to a semicolon.
7543
7544         2006-03-12  Bruno Haible  <bruno@clisp.org>
7545
7546                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
7547                 available as variable CONF_JAVA, for subsequent autoconf
7548                 tests. Also log error output in config.log.
7549
7550         2006-07-19  Bruno Haible  <bruno@clisp.org>
7551
7552                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
7553                 that getline works on glibc2 systems. Needed to avoid trouble
7554                 in relocatable.c.
7555                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
7556
7557         2005-12-04  Bruno Haible  <bruno@clisp.org>
7558
7559                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
7560                 launcher (untested).
7561
7562         2005-12-04  Bruno Haible  <bruno@clisp.org>
7563
7564                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
7565
7566         2006-07-22  Bruno Haible  <bruno@clisp.org>
7567
7568                 * gettext.m4: Update from GNU gettext-0.15.
7569                 * nls.m4: Likewise.
7570                 * po.m4: Likewise.
7571                 * inttypes-pri.m4: Likewise.
7572                 * inttypes-h.m4: Renamed from inttypes.m4.
7573                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
7574
7575 2006-07-22  Bruno Haible  <bruno@clisp.org>
7576
7577         Merge from GNU gettext 0.15.
7578
7579         2005-07-05  Bruno Haible  <bruno@clisp.org>
7580
7581                 * printf-args.c (printf_fetchargs): Work around broken
7582                 definition of wint_t on mingw.
7583
7584         2005-02-12  Bruno Haible  <bruno@clisp.org>
7585
7586                 * xallocsa.h: Add extern "C" for C++.
7587
7588         2006-05-17  Bruno Haible  <bruno@clisp.org>
7589
7590                 Cygwin portability.
7591                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
7592
7593         2006-04-30  Bruno Haible  <bruno@clisp.org>
7594
7595                 * progreloc.c: Include <mach-o/dyld.h> if available.
7596                 (find_executable): Use _NSGetExecutablePath when possible.
7597
7598         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7599
7600                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
7601                 function.
7602
7603         2005-12-29  Bruno Haible  <bruno@clisp.org>
7604
7605                 * progreloc.c (set_program_name_and_installdir): Fix
7606                 compilation error.
7607
7608         2005-12-04  Bruno Haible  <bruno@clisp.org>
7609
7610                 Cygwin portability.
7611                 * progreloc.c: Include <windows.h> also on Cygwin.
7612                 (find_executable): Add support for Cygwin.
7613                 (set_program_name_and_installdir): Handle also platforms with
7614                 nonempty EXEEXT.
7615
7616         2006-07-11  Bruno Haible  <bruno@clisp.org>
7617
7618                 * javacomp.c: Fix a comment.
7619                 Reported by Jim Meyering.
7620
7621         2006-04-30  Bruno Haible  <bruno@clisp.org>
7622
7623                 * javacomp.h (compile_java_class): Add source_version,
7624                 target_version arguments.
7625                 * javacomp.c: Rewritten to choose only a compiler that
7626                 respects the specified source_version and target_version.
7627
7628         2006-06-27  Bruno Haible  <bruno@clisp.org>
7629
7630                 Assume correct S_ISDIR macro.
7631                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
7632
7633         2006-07-22  Bruno Haible  <bruno@clisp.org>
7634
7635                 * javaversion.h: New file, from GNU gettext.
7636                 * javaversion.c: New file, from GNU gettext.
7637                 * javaversion.java: New file, from GNU gettext.
7638                 * javaversion.class: New file, from GNU gettext.
7639
7640         2006-05-17  Bruno Haible  <bruno@clisp.org>
7641
7642                 Cygwin portability.
7643                 * javaexec.c (execute_java_class): Test for jview program
7644                 also on Cygwin.
7645
7646         2006-04-09  Bruno Haible  <bruno@clisp.org>
7647
7648                 * fatal-signal.c: Don't include string.h.
7649                 (at_fatal_signal): Use a copying loop instead of memcpy.
7650
7651         2005-12-04  Bruno Haible  <bruno@clisp.org>
7652
7653                 * csharpexec.c: Add support for 'clix' launcher (untested).
7654                 (execute_csharp_using_sscli): New function.
7655                 (execute_csharp_program): Call it.
7656
7657         2006-06-21  Bruno Haible  <bruno@clisp.org>
7658
7659                 Avoid warnings from recent versions of mcs.
7660                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
7661                 -o, -L, -r any more. Use options documented since mcs-1.0
7662                 instead. Similarly for -g.
7663
7664         2005-07-09  Bruno Haible  <bruno@clisp.org>
7665
7666                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
7667                 add a .dll suffix.
7668                 Reported by Mark Junker <mjscod@gmx.de>.
7669
7670         2006-06-17  Bruno Haible  <bruno@clisp.org>
7671
7672                 * config.charset: Update for NetBSD 3.0.
7673
7674         2006-05-17  Bruno Haible  <bruno@clisp.org>
7675
7676                 Cygwin portability.
7677                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
7678
7679         2006-05-16  Bruno Haible  <bruno@clisp.org>
7680
7681                 * localcharset.c [CYGWIN]: Include <windows.h>.
7682                 (get_charset_aliases): For Cygwin, return the same CPxxx
7683                 aliases list as under WIN32.
7684                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
7685                 the environment variables. Fall back to GetACP().
7686
7687         2006-04-05  Bruno Haible  <bruno@clisp.org>
7688
7689                 * config.charset: Update Juan Manuel Guerrero's address.
7690
7691         2005-02-12  Bruno Haible  <bruno@clisp.org>
7692
7693                 * allocsa.h: Add extern "C" for C++.
7694
7695         2005-02-10  Bruno Haible  <bruno@clisp.org>
7696
7697                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
7698                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
7699
7700         2006-07-22  Bruno Haible  <bruno@clisp.org>
7701
7702                 * gettext.h: Update to GNU gettext-0.15.
7703
7704 2006-07-22  Bruno Haible  <bruno@clisp.org>
7705
7706         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
7707         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
7708         lib-prefix.m4, longdouble.m4, ssize_t.m4.
7709
7710 2006-07-21  Eric Blake  <ebb9@byu.net>
7711
7712         * modules/stdlib-safer: New file.
7713         * MODULES.html.sh (File stream based Input/Output): Add
7714         stdlib-safer.
7715
7716 2006-07-21  Eric Blake  <ebb9@byu.net>
7717
7718         * lib/stdlib-safer.h: New file from coreutils, required by
7719         stdlib--.h.
7720
7721 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
7722
7723         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
7724
7725 2006-07-20  Bruno Haible  <bruno@clisp.org>
7726
7727         * gnulib-tool: Recognize new option --assume-autoconf.
7728         (autoconf_minversion): New variable.
7729         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
7730
7731 2006-07-20  Bruno Haible  <bruno@clisp.org>
7732
7733         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
7734
7735 2006-07-19  Derek R. Price  <derek@ximbiot.com>
7736
7737         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
7738         Reindent and repaginate.
7739
7740 2006-07-19  Derek Price  <derek@ximbiot.com>
7741
7742         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
7743         Correct grammar.
7744
7745 2006-07-17  Bruno Haible  <bruno@clisp.org>
7746
7747         * modules/list: New file.
7748         * modules/array-list: New file.
7749         * modules/carray-list, modules/carray-list-tests: New files.
7750         * modules/linked-list, modules/linked-list-tests: New files.
7751         * modules/avltree-list, modules/avltree-list-tests: New files.
7752         * modules/rbtree-list, modules/rbtree-list-tests: New files.
7753         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
7754         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
7755         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
7756         * modules/oset: New file.
7757         * modules/array-oset: New file.
7758         * modules/avltree-oset, modules/avltree-oset-tests: New files.
7759         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
7760         * tests/test-carray_list.c: New file.
7761         * tests/test-linked_list.c: New file.
7762         * tests/test-avltree_list.c: New file.
7763         * tests/test-rbtree_list.c: New file.
7764         * tests/test-linkedhash_list.c: New file.
7765         * tests/test-avltreehash_list.c: New file.
7766         * tests/test-rbtreehash_list.c: New file.
7767         * tests/test-avltree_oset.c: New file.
7768         * tests/test-rbtree_oset.c: New file.
7769         * MODULES.html.sh (Container data structures): New section.
7770
7771 2006-07-17  Bruno Haible  <bruno@clisp.org>
7772
7773         * m4/gl_list.m4: New file.
7774
7775 2006-07-17  Bruno Haible  <bruno@clisp.org>
7776
7777         * lib/gl_list.h: New file.
7778         * lib/gl_list.c: New file.
7779         * lib/gl_array_list.h: New file.
7780         * lib/gl_array_list.c: New file.
7781         * lib/gl_carray_list.h: New file.
7782         * lib/gl_carray_list.c: New file.
7783         * lib/gl_linked_list.h: New file.
7784         * lib/gl_linked_list.c: New file.
7785         * lib/gl_anylinked_list1.h: New file.
7786         * lib/gl_anylinked_list2.h: New file.
7787         * lib/gl_avltree_list.h: New file.
7788         * lib/gl_avltree_list.c: New file.
7789         * lib/gl_anyavltree_list1.h: New file.
7790         * lib/gl_anyavltree_list2.h: New file.
7791         * lib/gl_rbtree_list.h: New file.
7792         * lib/gl_rbtree_list.c: New file.
7793         * lib/gl_anyrbtree_list1.h: New file.
7794         * lib/gl_anyrbtree_list2.h: New file.
7795         * lib/gl_anytree_list1.h: New file.
7796         * lib/gl_anytree_list2.h: New file.
7797         * lib/gl_linkedhash_list.h: New file.
7798         * lib/gl_linkedhash_list.c: New file.
7799         * lib/gl_anyhash_list1.h: New file.
7800         * lib/gl_anyhash_list2.h: New file.
7801         * lib/gl_avltreehash_list.h: New file.
7802         * lib/gl_avltreehash_list.c: New file.
7803         * lib/gl_rbtreehash_list.h: New file.
7804         * lib/gl_rbtreehash_list.c: New file.
7805         * lib/gl_anytreehash_list1.h: New file.
7806         * lib/gl_anytreehash_list2.h: New file.
7807
7808         * lib/gl_oset.h: New file.
7809         * lib/gl_oset.c: New file.
7810         * lib/gl_array_oset.h: New file.
7811         * lib/gl_array_oset.c: New file.
7812         * lib/gl_avltree_oset.h: New file.
7813         * lib/gl_avltree_oset.c: New file.
7814         * lib/gl_rbtree_oset.h: New file.
7815         * lib/gl_rbtree_oset.c: New file.
7816         * lib/gl_anytree_oset.h: New file.
7817
7818 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7819
7820         * m4/mkancesdirs.m4: New file.
7821         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
7822         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
7823         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
7824         it.
7825
7826 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7827
7828         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
7829         * lib/mkancesdirs.h: New files.
7830         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
7831         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
7832         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
7833         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
7834         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
7835         callers changed.  Revamp internals significantly, by not
7836         attempting to create directories that are temporarily more
7837         permissive than the final results.  Do not attempt to use
7838         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
7839         This removes some race conditions, fixes some bugs, and simplifies
7840         things.  Use new dirchownmod function to do owner and mode changes.
7841         * lib/mkdir-p.h: Likewise.
7842         * lib/modechange.c (octal_to_mode): New function.
7843         (struct mode_change): New member mentioned.
7844         (make_node_op_equals): New arg mentioned.  All callers changed.
7845         (mode_compile): Keep track of which mode bits the user has explicitly
7846         mentioned.
7847         (mode_adjust): New arg DIR, so that we implement the X op correctly.
7848         New arg PMODE_BITS, to keep track of which mode bits the user
7849         mentioned; it treats S_ISUID and S_ISGID speciall.
7850         All callers changed.
7851         * lib/modechange.h: Likewise.
7852
7853 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
7854
7855         * MODULES.html.sh: Add mkancestors.
7856         * modules/mkancesdirs: New module.
7857         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
7858         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
7859         The chdir-safer and afs files are now orphans; I'll remove them
7860         unless someone speaks up.
7861         Add lib/dirchownmod.c, lib/dirchownmod.h.
7862         (Depends-on): Remove alloca, chown, save-cwd, dirname.
7863         Add lchown, mkancesdirs.
7864         (Maintainer): Add self.
7865
7866 2006-07-15  Karl Berry  <karl@gnu.org>
7867
7868         * gnulib-tool: help message wording/arrangement.
7869
7870 2006-07-14  Simon Josefsson  <jas@extundo.com>
7871
7872         * doc/gnulib.texi (Libtool and Windows): New section.
7873
7874 2006-07-12  Simon Josefsson  <jas@extundo.com>
7875
7876         * modules/gendocs (License): Fix license, approved by Karl.
7877
7878 2006-07-12  Eric Blake  <ebb9@byu.net>
7879
7880         * MODULES.html.sh: Add gendocs.
7881
7882 2006-07-11  Eric Blake  <ebb9@byu.net>
7883
7884         * modules/fdl: New module, to install doc/fdl.texi.
7885         * MODULES.html.sh: Add new section for documentation modules.
7886         * gnulib-tool: Avoid space-tab.
7887         (--doc-base): New option, to manage files from doc.
7888
7889 2006-07-11  Eric Blake  <ebb9@byu.net>
7890
7891         * m4/absolute-header.m4: Fix comments to match recent change.
7892
7893 2006-07-11  Eric Blake  <ebb9@byu.net>
7894
7895         * gnulib-tool: List --doc-base before --tests-base.
7896
7897 2006-07-11  Derek R. Price  <derek@ximbiot.com>
7898
7899         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
7900
7901 2006-07-11  Bruno Haible  <bruno@clisp.org>
7902
7903         * README: Mention where to put documentation.
7904
7905 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7906
7907         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
7908
7909 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7910
7911         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
7912         to stdint.m4.
7913
7914 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7915
7916         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
7917         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
7918         "no/such/file/stdint.h" when there is no such file, so that
7919         the resulting C code can be parsed by dodgy compilers.
7920         Problems reported by Bob Proulx.
7921
7922 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7923
7924         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
7925         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7926         macros into the GNU _D_EXACT_NAMLEN.
7927         * lib/savedir.c:  Likewise.
7928         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
7929
7930 2006-07-10  Derek R. Price  <derek@ximbiot.com>
7931         and Paul Eggert  <eggert@cs.ucla.edu>
7932
7933         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
7934         * m4/savedir.m4:
7935         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
7936         macros into the GNU _D_EXACT_NAMLEN.
7937
7938 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7939
7940         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
7941         around the absolute name, to work around a problem with the HP-UX
7942         11.23 native C compiler, reported by Bob Proulx.
7943
7944 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7945
7946         * doc/maintain.texi, make-stds.texi: Sync from
7947         <http://savannah.gnu.org/projects/gnustandards>.
7948
7949 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
7950
7951         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
7952
7953 2006-07-09  Jim Meyering  <jim@meyering.net>
7954
7955         * m4/glob.m4: Remove a doubled word in a comment.
7956
7957 2006-07-09  Jim Meyering  <jim@meyering.net>
7958
7959         * lib/argp-pv.c: Remove a doubled word in a comment.
7960         * lib/check-version.c (check_version): Likewise.
7961         * lib/javacomp.c (compile_java_class): Likewise.
7962
7963 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
7964
7965         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
7966         for the benefit of people using Autoconf 2.60.  If you want to
7967         support older Autoconf versions you can copy m4/onceonly_2_57.m4
7968         (or m4/onceonly.m4, if pre-2.57) manually.
7969
7970 2006-07-08  Jim Meyering  <jim@meyering.net>
7971
7972         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
7973         comment.
7974         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
7975         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
7976         comment.
7977
7978 2006-07-08  Jim Meyering  <jim@meyering.net>
7979
7980         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
7981
7982 2006-07-07  Simon Josefsson  <jas@extundo.com>
7983
7984         * tests/test-crc.c: Change expected crc value, the test vector
7985         were probably computed using the old broken crc.c?
7986
7987 2006-07-06  Simon Josefsson  <jas@extundo.com>
7988
7989         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
7990         now the canonical place for the M4 file).
7991
7992         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
7993         from the sys_socket dependency now.
7994
7995         * modules/inet_pton (Files): Ditto.
7996
7997         * modules/inet_ntop (Files): Ditto.
7998
7999 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
8000
8001         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
8002         not gl_PREREQ_GETUSERSHELL.
8003
8004 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8005
8006         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
8007         with only one argument, for Autoconf 2.60.
8008         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
8009         expand to nothing, so add a shell command to avoid syntax error.
8010         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
8011
8012 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8013
8014         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
8015
8016 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
8017
8018         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
8019         no longer needed.  Check for isblank decl.
8020         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
8021         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
8022         of existence.
8023
8024 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
8025
8026         * lib/getloadavg.c: Use __VMS, not VMS.
8027         * lib/getopt.c: Likewise.
8028         * lib/getpagesize.h: Likewise.
8029         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
8030         and probably does not work.
8031
8032 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
8033
8034         * lib/.cppi-disable: Add wcwidth.
8035         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
8036         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
8037         (ISGRAPH): Remove.  All uses changed to isgraph.
8038         (FOLD) [!defined _LIBC]: Remove special case.
8039         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
8040         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
8041         HAVE_ISBLANK.
8042         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
8043         case.
8044
8045 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
8046
8047         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
8048         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
8049         brackets.  Other minor changes to suppress some compiler
8050         warnings.
8051
8052 2006-07-06  Derek R. Price  <derek@ximbiot.com>
8053         and Paul Eggert  <eggert@cs.ucla.edu>
8054
8055         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
8056         of invoking obsolescent AC_HEADER_DIRENT macro.
8057         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
8058         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
8059         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
8060         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
8061         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
8062         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
8063         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
8064         * m4/readdir.m4: Remove; no longer needed.
8065
8066 2006-07-06  Derek R. Price  <derek@ximbiot.com>
8067         and Paul Eggert  <eggert@cs.ucla.edu>
8068
8069         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
8070         Don't worry about this obsolete case any more.
8071         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
8072         directories.
8073         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
8074         worry about this obsolete case any more.
8075         * lib/fts.c: Likewise.
8076         * lib/getcwd.c: Likewise.
8077         * lib/glob.h: Likewise.
8078         * lib/savedir.c: Likewise.
8079
8080 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
8081
8082         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
8083         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
8084         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
8085         needed.
8086         All uses removed.
8087         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
8088         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
8089         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
8090         needed.
8091         * m4/getdate.m4 (gl_GETDATE): Likewise.
8092         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
8093         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
8094         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
8095         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
8096         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
8097         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
8098         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
8099         needed.
8100
8101 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
8102
8103         * lib/memcasecmp.c: Include <limits.h>.
8104         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
8105         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
8106         Don't assume isdigit succeeds only on '0' through '9'.
8107
8108 2006-07-05  Eric Blake  <ebb9@byu.net>
8109
8110         * modules/getaddrinfo (Depends-on): Add snprintf.
8111
8112 2006-07-05  Eric Blake  <ebb9@byu.net>
8113
8114         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
8115         to avoid 'header present but could not be compiled' on cygwin.
8116
8117 2006-07-05  Eric Blake  <ebb9@byu.net>
8118
8119         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
8120         missing from netdb.h.
8121         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
8122
8123 2006-07-05  Derek R. Price  <derek@ximbiot.com>
8124
8125         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
8126         no longer needed.
8127         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
8128         * m4/getdate.m4 (gl_GETDATE): Likewise.
8129         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
8130         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
8131         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
8132         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
8133         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
8134
8135 2006-07-05  Derek R. Price  <derek@ximbiot.com>
8136
8137         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
8138         All uses of is_space replaced by isspace.
8139         * lib/exit.h: Don't talk about STDC_HEADERS.
8140         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
8141         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
8142         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
8143         replaced by isprint etc.
8144         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
8145         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
8146         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
8147         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
8148         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
8149         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
8150
8151 2006-07-05  Bruno Haible  <bruno@clisp.org>
8152
8153         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
8154         the function exists, before testing against AIX.
8155         Reported by Martin Lambers <marlam@marlam.de>.
8156
8157 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
8158
8159         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
8160         From Mark D. Baushke.
8161
8162 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
8163
8164         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
8165         to the absolute name, not just one, to bypass Sun C 5.8's
8166         "warning: #include of /usr/include/... may be non-portable".
8167
8168 2006-07-04  Eric Blake  <ebb9@byu.net>
8169
8170         * modules/dirname-tests: New test module.
8171         * tests/test-dirname.c: New file, replacing dirname.c
8172         TEST_DIRNAME section that was recently deleted.
8173
8174 2006-07-04  Bruno Haible  <bruno@clisp.org>
8175
8176         Assume ANSI C header files and <ctype.h> functions.
8177         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
8178         (mbsnwidth): Use isprint, iscntrl instead.
8179
8180 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
8181
8182         Merge from coreutils.
8183         * MODULES.html.sh: Add xstrtold.
8184         * modules/xstrtold: New file.
8185         * modules/cycle-check (Files): Add lib/same-inode.h.
8186         * modules/dirname (Files): Add m4/double-slash-root.m4.
8187         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
8188         * modules/mkdir-p (Files): Add lib/same-inode.h.
8189         * modules/same (Files): Add lib/same-inode.h.
8190
8191 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
8192
8193         * m4/absolute-header.m4: Renamed from full-header-path.m4.
8194         This is to keep the terminology clean; POSIX talks about
8195         "absolute pathnames", not "full pathnames", but the GNU
8196         Coding Standards say to use "path" for something else;
8197         so use "absolute" to keep both sides happy.
8198         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
8199         Set gl_absolute_header, not gl_full_header_path.
8200         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
8201         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
8202         All uses changed.
8203
8204         Merge from coreutils.
8205
8206         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
8207
8208         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
8209         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
8210         want to require the building of c-strtod.o.
8211         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
8212         needs -lm directly.
8213         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
8214
8215         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
8216
8217         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
8218         --as-needed option if available.  Problem reported by Albert Chin in
8219         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
8220         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
8221         cc merely issues a bunch of annoying warnings for --as-needed
8222         (this problem was reported by Bob Proulx).  Also, try linking with
8223         -lm to detect a bug in binutils 2.16 (this problem was reported
8224         by Ralf Wildenhues).
8225
8226         2006-06-18  Jim Meyering  <jim@meyering.net>
8227
8228         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
8229         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
8230         macro.
8231         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
8232         also check for glibc-2.4's abort-inducing bug.
8233
8234         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
8235         Low-probability clean-up should be to use rmdir to get rid of
8236         the just-created directory, not unlink.
8237
8238         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
8239         configure fail, and request a bug report to inform us about it.
8240         Add a comment that, barring reports to the contrary, in 2007 we'll
8241         assume ftruncate is universally available.
8242
8243         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
8244
8245         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
8246
8247         2006-03-12  Jim Meyering  <jim@meyering.net>
8248
8249         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
8250         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
8251         * m4/same.m4 (gl_SAME): Likewise.
8252         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
8253
8254         2006-03-11  Eric Blake  <ebb9@byu.net>
8255
8256         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
8257         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
8258         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
8259         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
8260
8261 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
8262
8263         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
8264         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
8265         reported by Mark D. Baushke, one in
8266         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
8267
8268         Merge from coreutils.
8269
8270         * lib/.cppi-disable: Add stdint_.h.
8271         * lib/.cvsignore: Add stdint.h.
8272
8273         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
8274
8275         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
8276         both double and long double versions.
8277         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
8278         * lib/xstrtold.c: New file.
8279         * lib/xstrtod.h (xstrtold): New decl.
8280
8281         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
8282
8283         * lib/filemode.c (setst): Remove.
8284         (strmode): Rewrite to avoid setst.  This makes the code shorter,
8285         (arguably) clearer, and the generated code is a bit smaller on my
8286         Debian GNU/Linux stable x86 host.
8287
8288         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
8289
8290         * lib/filemode.c: Include "filemode.h" first, to test the interface.
8291         Assume that filemode.h includes sys/types.h and sys/stat.h.
8292         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
8293         (ftypelet): Reorder to put common cases first, for efficiency.
8294         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
8295         to do 'M'.
8296         (strmode): Renamed from mode_string, and now stores 12 bytes instead
8297         of 10, for compatibility with FreeBSD.  All callers changed.
8298         (filemodestring): Now stores 12 bytes instead of 10, and sets file
8299         types that can't be deduced solely from st_mode.  First arg is now a
8300         const pointer.
8301         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
8302         (strmode): Renamed from mode_string.
8303         (filemodestring): New decl.
8304         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
8305         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
8306         needed.
8307         (S_ISPORT, S_ISWHT): New macros, if not already defined.
8308
8309         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
8310
8311         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
8312         fsusage.h now does that.  Include fsusage.h first, to test interface.
8313         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
8314         at most one method (the old code could have generated decls that
8315         didn't conform to C89, not that this was ever exercised).
8316         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
8317
8318         2006-03-19  Jim Meyering  <jim@meyering.net>
8319
8320         Work even in a chroot where d_ino values for entries in "/"
8321         don't match the stat.st_ino values for the same names.
8322         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
8323         number, iterate through all entries again, using lstat instead.
8324         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
8325         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
8326
8327         * lib/getcwd.c (__getcwd): Clarify a comment.
8328         Use memcpy in place of a call to strcpy.
8329
8330         2006-03-12  Jim Meyering  <jim@meyering.net>
8331
8332         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
8333         matches that of the current directory (which we're about to chdir ".."
8334         out of), then save the dev-ino of the parent, instead.
8335
8336         * lib/same-inode.h (SAME_INODE): New file/macro.
8337         * lib/chdir-safer.c (SAME_INODE): Remove definition.
8338         Include "same-inode.h", instead.
8339         * lib/same.c: Likewise.
8340         * lib/cycle-check.h: Include "same-inode.h".
8341         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
8342         * lib/cycle-check.c (SAME_INODE): Remove definition.
8343         * lib/root-dev-ino.h: Include "same-inode.h".
8344
8345         2006-03-11  Eric Blake  <ebb9@byu.net>
8346
8347         * lib/same.c (same_name): s/base_name/last_component/
8348         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
8349         * lib/filenamecat.c (file_name_concat): Likewise.
8350
8351         2006-03-11  Eric Blake  <ebb9@byu.net>,
8352                     Paul Eggert  <eggert@cs.ucla.edu>
8353
8354         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
8355         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
8356         drive prefix.
8357         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
8358         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
8359         (last_component): New method.
8360         * lib/dirname.c (dir_len): Determine when drive letters need a
8361         subsequent slash.  Preserve // when it is special.
8362         (dir_name): Don't append dot when drive letter is absolute.
8363         [TEST_DIRNAME]: Move into a full-blown gnulib test.
8364         * lib/basename.c (base_name): New semantics - malloc the result.
8365         Preserve // when it is special.  Preserve relative files that look
8366         like drive letters.
8367         (base_len): Preserve // when it is special.
8368         (last_component): New method, similar to old base_name semantics.
8369         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
8370         base_name.  Strip redundant slashes from ///.
8371
8372 2006-07-03  Jim Meyering  <jim@meyering.net>
8373
8374         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
8375         macro is used before the first cycle_check call.
8376
8377 2006-07-03  Eric Blake  <ebb9@byu.net>
8378
8379         * modules/dirname (Depends-on): Add xstrndup.
8380
8381 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
8382
8383         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
8384         test cases, so that config.log is a bit easier to follow.
8385
8386 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
8387
8388         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
8389         both are 64 bits, since this seems to be the tradition, and this
8390         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
8391         we ever run into a host that prefers long long to long in this
8392         case, we'll need another configure-time test.  Problem reported by
8393         Jim Meyering.
8394
8395 2006-07-02  Eric Blake  <ebb9@byu.net>
8396
8397         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
8398
8399 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8400
8401         * modules/inttypes (Depends-on): No longer depends on stdint.
8402         * modules/stdint (Description): Say more about assumptions.
8403         Say that the fast types might differ.  Say macros are used.
8404         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
8405         (Makefile.am): Revise list of substituted symbols to match
8406         new stdint.m4.
8407         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
8408         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
8409         * tests/test-stdint.c (verify_same_types)
8410         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
8411         the code conforms to C99/C89.
8412         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
8413         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
8414
8415 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8416
8417         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
8418         but fix a bug, by requiring at least 64 bits.
8419         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
8420         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
8421         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
8422         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
8423
8424         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
8425         changes.  Make 2.59 a prerequisite.  Check and substitute for
8426         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
8427         inttypes.h.  Do not use special include files; just use the
8428         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
8429         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
8430         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
8431         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
8432         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
8433         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
8434         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
8435         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
8436         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
8437         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
8438         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
8439         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
8440         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
8441         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
8442         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
8443         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
8444         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
8445         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
8446         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
8447         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
8448         WINT_MAX.  Check for C99 conformance more strictly, by detecting
8449         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
8450         not check for things that C99 does not require, e.g., int8_t.  If
8451         a test isn't needed unless <stdint.h> isn't working, and is
8452         unlikely to be needed for any other reason, then don't do it
8453         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
8454         size_t, since we assume C89 freestanding at least.  Do not check
8455         for sig_atomic_t, wchar_t, or wint_t, since the code now does
8456         the right thing even if the types are not defined.  Instead use:
8457         (gl_STDINT_TYPE_PROPERTIES): New macro.
8458         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
8459         testing whether <sys/types.h> clashes, as Autoconf does this for
8460         us now.  All uses removed.
8461         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
8462         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
8463         (gl_CHECK_TYPE_SAME):
8464         Remove; no longer needed.
8465         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
8466         exists, since we'll return 0 anyway in that case.
8467         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
8468
8469 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
8470
8471         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
8472         possible collision with system files.
8473         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
8474         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
8475         WCHAR_MIN and WCHAR_MAX in this case.
8476         (<stddef.h>): Do not include; no longer needed.
8477         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
8478         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
8479         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
8480         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
8481         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
8482         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
8483         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
8484         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
8485         !defined(__c99))]: Include in this case too, since it's harmless
8486         now.
8487         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
8488         dangerous to do so.
8489         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
8490         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
8491         (_STDINT_MIN, _STDINT_MAX): New macros.
8492         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
8493         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
8494         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
8495         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
8496         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
8497         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
8498         macros, not typedefs; this simplifies things quite a bit.
8499         Use long int for all types narrower than int64_t.
8500         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
8501         Define in terms of long long int or int64_t or long int,
8502         not int64_t or int32_t.  This saves some compile-time testing.
8503         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
8504         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
8505         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
8506         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
8507         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
8508         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
8509         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
8510         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
8511         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
8512         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
8513         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8514         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8515         undef any previous version and define our own version, for
8516         simplicity and consistency with the new macros for types.
8517         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
8518         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
8519         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
8520         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
8521         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
8522         @WINT_T_SUFFIX@ to keep things simple here.
8523         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
8524         Simplify by assuming typical 8/16/32/64 host, since we're
8525         already doing that elsewhere anyway.
8526         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
8527         and assume long long int is 64 bits if available.  This
8528         speeds up 'configure'.
8529
8530 2006-07-01  Eric Blake  <ebb9@byu.net>
8531
8532         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
8533         Reported by Andreas Buening.
8534
8535 2006-07-01  Eric Blake  <ebb9@byu.net>
8536
8537         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
8538
8539 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
8540
8541         * lib/getaddrinfo.c: fixed typo
8542
8543 2006-06-29  Jim Meyering  <jim@meyering.net>
8544
8545         * modules/strftime (Maintainer): Add my name, since with the
8546         FPRINTFTIME changes strftime.c has forked from glibc.
8547
8548 2006-06-29  Eric Blake  <ebb9@byu.net>
8549
8550         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
8551
8552 2006-06-29  Eric Blake  <ebb9@byu.net>
8553
8554         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
8555
8556 2006-06-29  Eric Blake  <ebb9@byu.net>
8557
8558         * lib/stat_.h: New file.
8559
8560 2006-06-29  Eric Blake  <ebb9@byu.net>
8561
8562         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
8563         unused static function.
8564
8565 2006-06-29  Eric Blake  <ebb9@byu.net>
8566
8567         * doc/functions.texi (Function Portability): Document missing lstat
8568         on mingw.
8569
8570 2006-06-29  Eric Blake  <ebb9@byu.net>
8571
8572         * MODULES.html.sh: Add sys_stat.
8573         * modules/sys_stat: New module.
8574         * modules/mkstemp (Depends-on): Add sys_stat.
8575
8576 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8577
8578         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
8579
8580 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8581
8582         * m4/c-bs-a.m4: Removed.
8583
8584 2006-06-29  Derek R. Price  <derek@ximbiot.com>
8585
8586         * lib/strftime.c: Assume strftime() exists.
8587
8588 2006-06-29  Derek Price  <derek@ximbiot.com>
8589
8590         * modules/c-bs-a: Removed - \a is C89.
8591         * MODULES.html.sh: Remove c-bs-a.
8592
8593 2006-06-29  Bruno Haible  <bruno@clisp.org>
8594
8595         * modules/wcwidth (License): Change to LGPL.
8596
8597 2006-06-28  Simon Josefsson  <jas@extundo.com>
8598
8599         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
8600         on _WIN32.
8601
8602         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
8603         getnameinfo.
8604
8605 2006-06-28  Simon Josefsson  <jas@extundo.com>
8606
8607         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
8608
8609 2006-06-28  Simon Josefsson  <jas@extundo.com>
8610
8611         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
8612         functions there.  It will succeed on Windows XP, but on Windows
8613         2000 and (presumably) earlier, it will fail, and use the internal
8614         re-implementation.
8615         (use_win32_p): New function.
8616         (getaddrinfo): Use strtoul on servname, to support numeric ports.
8617         Support AI_NUMERICSERV to disable getservbyname.
8618         (getnameinfo): New function, only supports
8619         NI_NUMERICHOST|NI_NUMERICSERV for now.
8620
8621         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
8622         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
8623         getnameinfo.
8624
8625 2006-06-28  Eric Blake  <ebb9@byu.net>
8626
8627         * modules/wcwidth: New file.
8628         * modules/mbchar (Depends-on): Add wcwidth.
8629         * modules/mbswidth (Depends-on): Add wcwidth.
8630         * MODULES.html.sh: Add wcwidth.
8631
8632 2006-06-28  Eric Blake  <ebb9@byu.net>
8633
8634         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
8635         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
8636
8637 2006-06-28  Eric Blake  <ebb9@byu.net>
8638
8639         * lib/xvasprintf.h: Fix comments.
8640
8641 2006-06-28  Eric Blake  <ebb9@byu.net>
8642
8643         * lib/mbchar.h (wcwidth): Include wcwidth.h.
8644         * lib/mbswidth.c (wcwidth): Move from here...
8645         * lib/wcwidth.h: ...to this new file.
8646
8647 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8648
8649         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
8650
8651         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
8652         it's obsolete.
8653         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
8654
8655 2006-06-28  Derek R. Price  <derek@ximbiot.com>
8656
8657         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
8658         Autoconf 2.60 says this stuff was obsolete.
8659
8660 2006-06-28  Bruno Haible  <bruno@clisp.org>
8661
8662         * modules/wcwidth (Files): Add m4/wchar_t.m4.
8663
8664 2006-06-28  Bruno Haible  <bruno@clisp.org>
8665
8666         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
8667         gt_TYPE_WCHAR_T.
8668
8669 2006-06-28  Bruno Haible  <bruno@clisp.org>
8670
8671         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
8672         declaration for wcwidth.
8673         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
8674
8675 2006-06-28  Bruno Haible  <bruno@clisp.org>
8676
8677         * lib/mkdtemp.c [MINGW]: Include <io.h>.
8678         (mkdir): Define using _mkdir.
8679
8680 2006-06-28  Bruno Haible  <bruno@clisp.org>
8681
8682         * lib/getaddrinfo.h: Fix POSIX URL.
8683         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
8684         _WIN32.
8685         (use_win32_p): Make static.
8686         (getaddrinfo): Reject service name if it is empty or does not consist
8687         solely of decimal digits, or if its value is > 65535.
8688         (getnameinfo): Remove useless casts.
8689
8690 2006-06-27  Simon Josefsson  <jas@extundo.com>
8691
8692         * modules/sys_select: New file, suggested by Bruno Haible, Paul
8693         Eggert and Martin Lambers.
8694
8695 2006-06-27  Simon Josefsson  <jas@extundo.com>
8696
8697         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
8698         Eggert and Martin Lambers.
8699
8700 2006-06-27  Bruno Haible  <bruno@clisp.org>
8701
8702         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
8703         result to 0, not to empty.
8704         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
8705
8706 2006-06-27  Bruno Haible  <bruno@clisp.org>
8707
8708         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
8709
8710 2006-06-26  Simon Josefsson  <jas@extundo.com>
8711
8712         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
8713         present.
8714
8715 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
8716
8717         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
8718         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
8719         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
8720
8721 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
8722
8723         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
8724
8725 2006-06-26  Bruno Haible  <bruno@clisp.org>
8726
8727         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
8728
8729 2006-06-26  Bruno Haible  <bruno@clisp.org>
8730
8731         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
8732
8733 2006-06-26  Bruno Haible  <bruno@clisp.org>
8734
8735         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
8736         SGI C compiler in pre-C99 mode.
8737         Suggested by Mark D. Baushke and Larry Jones.
8738
8739 2006-06-26  Bruno Haible  <bruno@clisp.org>
8740
8741         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
8742         WCHAR_MAX.
8743         Reported by Mark D. Baushke and Larry Jones.
8744
8745 2006-06-26  Bruno Haible  <bruno@clisp.org>
8746
8747         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
8748         in pre-C99 mode.
8749         Suggested by Mark D. Baushke and Larry Jones.
8750
8751 2006-06-23  Simon Josefsson  <jas@extundo.com>
8752             Bruno Haible  <bruno@clisp.org>
8753
8754         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
8755         Emit mostlyclean-local rule.
8756         (func_emit_tests_Makefile_am): Likewise.
8757         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
8758
8759 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
8760
8761         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
8762
8763 2006-06-23  Bruno Haible  <bruno@clisp.org>
8764
8765         * tests/test-stdint.c: Update to match ISO C 99 Technical
8766         Corrigendum 1.
8767
8768 2006-06-23  Bruno Haible  <bruno@clisp.org>
8769
8770         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
8771
8772 2006-06-23  Bruno Haible  <bruno@clisp.org>
8773
8774         * lib/stdint_.h: Treat IRIX like OpenBSD.
8775
8776 2006-06-23  Bruno Haible  <bruno@clisp.org>
8777
8778         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
8779         ISO C 99 Technical Corrigendum 1.
8780
8781 2006-06-22  Simon Josefsson  <jas@extundo.com>
8782
8783         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
8784         MinGW.
8785
8786 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
8787
8788         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
8789         needed.  Some compiler complained about some of them.  Problem reported
8790         by Larry Jones in
8791         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
8792
8793 2006-06-21  Simon Josefsson  <jas@extundo.com>
8794
8795         * tests/test-getaddrinfo.c: New file.
8796
8797         * modules/getaddrinfo-tests: New file.
8798
8799         * MODULES.html.sh: Add inet_pton.
8800
8801         * modules/inet_pton: New file.
8802
8803 2006-06-21  Simon Josefsson  <jas@extundo.com>
8804
8805         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
8806         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
8807         of using the (limited) gnulib implementation on Windows XP.
8808
8809         * m4/inet_pton.m4: New file.
8810
8811 2006-06-21  Simon Josefsson  <jas@extundo.com>
8812
8813         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
8814         variable.
8815
8816         * lib/socket_.h: Don't define WINVER.
8817
8818         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
8819         slightly modified to work in gnulib.
8820
8821 2006-06-21  Simon Josefsson  <jas@extundo.com>
8822
8823         * doc/gnulib.texi (Windows sockets): Add.
8824
8825 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
8826
8827         * lib/read-file.c (fread_file): Start with buffer allocation of
8828         0 bytes rather than 1 byte; this simplifies the code.
8829         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
8830         code to free buffer and save/restore errno.
8831         (internal_read_file): Remove unused local.
8832
8833 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8834
8835         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
8836         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
8837         Problem reported by Denis Excoffier in
8838         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
8839
8840 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8841
8842         * modules/sys_socket, modules/socklen: Include sys/types since
8843         FreeBSD 4.x's sys/socket.h needs it.
8844
8845 2006-06-19  Simon Josefsson  <jas@extundo.com>
8846
8847         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
8848
8849 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
8850
8851         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
8852
8853 2006-06-19  Bruno Haible  <bruno@clisp.org>
8854
8855         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
8856         and FULL_PATH_INTTYPES_H in angle brackets.
8857         Reported by Mark D. Baushke <mdb@gnu.org>.
8858
8859 2006-06-17  Eric Blake  <ebb9@byu.net>
8860
8861         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
8862         errno.
8863
8864 2006-06-17  Bruno Haible  <bruno@clisp.org>
8865
8866         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
8867         <sys/inttypes.h>.
8868
8869 2006-06-17  Bruno Haible  <bruno@clisp.org>
8870
8871         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
8872         whether errno is declared. Assume <errno.h> declares errno.
8873
8874 2006-06-17  Bruno Haible  <bruno@clisp.org>
8875
8876         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
8877
8878 2006-06-17  Bruno Haible  <bruno@clisp.org>
8879
8880         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
8881         problem on Solaris 2.5.1.
8882
8883 2006-06-16  Eric Blake  <ebb9@byu.net>
8884
8885         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
8886         * lib/unicodeio.c [!defined errno]: Likewise.
8887         * lib/strtol.c [!defined errno]: Likewise.
8888         * lib/strtod.c [!defined errno]: Likewise.
8889
8890 2006-06-15  Eric Blake  <ebb9@byu.net>
8891
8892         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
8893
8894 2006-06-15  Eric Blake  <ebb9@byu.net>
8895
8896         * config/srclist.txt (ssize_t.m4): Lose sync.
8897
8898 2006-06-15  Bruno Haible  <bruno@clisp.org>
8899
8900         * modules/stdint (Files): Include m4/full-header-path.m4,
8901         m4/size_max.m4, m4/wchar_t.m4.
8902         (Makefile.am): Many more substitutions.
8903         * modules/stdint-tests: New file.
8904         * tests/test-stdint.c: New file.
8905
8906 2006-06-15  Bruno Haible  <bruno@clisp.org>
8907
8908         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
8909         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
8910         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
8911         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
8912         gl_CHECK_TYPE_SAME): New macros.
8913
8914 2006-06-15  Bruno Haible  <bruno@clisp.org>
8915
8916         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
8917
8918 2006-06-15  Bruno Haible  <bruno@clisp.org>
8919
8920         * lib/stdint_.h: Rewritten to be fully auto-configured.
8921         Fixes bug on HP-UX/IA64.
8922
8923 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
8924
8925         * lib/getdate.y (__attribute__): Don't define if already defined.
8926         Problem reported by Larry Jones.
8927         * lib/utimens.c (__attribute__): Likewise.
8928
8929 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8930
8931         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
8932         reported by Andreas Schwab.
8933
8934 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8935             Bruno Haible  <bruno@clisp.org>
8936
8937         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
8938         check for the declaration of strnlen and a run test that exposes the
8939         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
8940         rpl_strndup.
8941
8942 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8943             Bruno Haible  <bruno@clisp.org>
8944
8945         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
8946
8947 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8948
8949         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
8950         compile test, for Tru64 4.0D.
8951
8952 2006-05-28  Karl Berry  <karl@gnu.org>
8953
8954         * config/srclist.txt (printf-args.c): lose sync.
8955
8956 2006-05-26  Martin Lambers  <marlam@marlam.de>
8957
8958         * lib/getpass.c: Updates the test for the native W32 API, and adds
8959         missing includes, thus fixing compilation warnings.
8960
8961 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
8962
8963         * lib/exclude.c (exclude_fnmatch): New function.
8964         (excluded_file_name): Call exclude_fnmatch.
8965         * lib/exclude.h (excluded_file_name): New prototype
8966
8967 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8968
8969         * lib/tempname.c (small_open, large_open): New macros.
8970         (__open, __open64) [!_LIBC]: Remove.
8971         (__gen_tempname): Use small_open and large_open instead of __open
8972         and __open64.  This fixes a portability bug on HP-UX 11.11i
8973         reported by Simon Wing-Tang in
8974         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
8975
8976 2006-05-24  Bruno Haible  <bruno@clisp.org>
8977
8978         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
8979         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
8980         Reported by Thorsten Maerz <torte@netztorte.de> via
8981         Aaron Stone <aaron@serendipity.cx>.
8982
8983 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8984
8985         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
8986         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
8987         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
8988         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
8989         not really conditional on the cache.
8990         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
8991
8992 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
8993
8994         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
8995         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
8996         (my_usleep): Don't mishandle maximum value.
8997
8998 2006-05-19  Jim Meyering  <jim@meyering.net>
8999
9000         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
9001
9002 2006-05-17  Bruno Haible  <bruno@clisp.org>
9003
9004         Cygwin portability.
9005         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
9006
9007 2006-05-17  Bruno Haible  <bruno@clisp.org>
9008
9009         * lib/stdint_.h: Fix recognition of Cygwin.
9010
9011 2006-05-15  Bruno Haible  <bruno@clisp.org>
9012
9013         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
9014         on libtool patch by Ralf Wildenhues.
9015
9016 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
9017
9018         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
9019         test for C99 conformance; (bool) 0.5 is an integer constant
9020         expression, but (bool) -0.5 is not.  Problem reported by Fedor
9021         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
9022
9023 2006-05-11  Simon Josefsson  <jas@extundo.com>
9024
9025         * m4/xvasprintf.m4: Fix obvious typo.
9026
9027 2006-05-11  Jim Meyering  <jim@meyering.net>
9028
9029         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
9030         James Lemley.
9031
9032 2006-05-10  Simon Josefsson  <jas@extundo.com>
9033
9034         * lib/md4.c: Typo fix, update copyright years.
9035         (K1, K2): Don't use L because it turn computations into 64-bit on
9036         64-bit platforms.
9037
9038 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
9039
9040         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
9041         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
9042         unwanted sign propagation, e.g., on hosts with 64-bit int.
9043         There still are some problems with reeelly weird theoretical hosts
9044         (e.g., 33-bit int) but it's not worth worrying about now.
9045         * lib/sha1.c (rol): Likewise.
9046         (K1, K2, K3, K4): Remove unnecessary L suffix.
9047
9048 2006-05-10  Bruno Haible  <bruno@clisp.org>
9049
9050         * lib/des.c: Cast to avoid warnings.
9051
9052 2006-05-09  Bruno Haible  <bruno@clisp.org>
9053
9054         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
9055         (Depends-on): Depend also on xsize, stdarg.
9056         (configure.ac): Add gl_XVASPRINTF.
9057
9058 2006-05-09  Bruno Haible  <bruno@clisp.org>
9059
9060         * m4/xvasprintf.m4: New file.
9061
9062 2006-05-09  Bruno Haible  <bruno@clisp.org>
9063
9064         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
9065         (EOVERFLOW): Define fallback value.
9066         (xstrcat): New function.
9067         (xvasprintf): Recognize the special case of a string concatenation.
9068
9069 2006-05-08  Eric Blake  <ebb9@byu.net>
9070
9071         * gnulib-tool (func_version): Base copyright year on CVS date.
9072         (func_emit_copyright_notice): New function.
9073         (func_emit_lib_Makefile_am): Use it.
9074         (func_emit_tests_Makefile_am): Likewise.
9075         (func_import): Likewise.
9076
9077 2006-05-08  Bruno Haible  <bruno@clisp.org>
9078
9079         * modules/stdarg: New file.
9080         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
9081
9082 2006-05-08  Bruno Haible  <bruno@clisp.org>
9083
9084         * m4/stdarg.m4: New file, from GNU gettext.
9085
9086 2006-05-08  Bruno Haible  <bruno@clisp.org>
9087
9088         * config/srclist.txt (build-aux/config.rpath): different from latest
9089         release.
9090
9091 2006-05-08  Bruno Haible  <bruno@clisp.org>
9092
9093         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
9094
9095 2006-05-05  Jim Meyering  <jim@meyering.net>
9096
9097         * m4/warning.m4: New file, derived from bison's file by the same name.
9098
9099 2006-05-03  Bruno Haible  <bruno@clisp.org>
9100
9101         * lib/stdint_.h: Shorter URL.
9102         * lib/inttypes.h: Likewise.
9103
9104 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9105
9106         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
9107
9108 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9109
9110         * lib/verify.h: Document the internals better.  Most of this change
9111         was written by Bruno Haible.
9112
9113 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9114
9115         * doc/verify.texi: New file, partly based on a proposal by
9116         Bruno Haible.
9117
9118 2006-05-02  Bruno Haible  <bruno@clisp.org>
9119
9120         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
9121         test from here...
9122         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
9123
9124 2006-04-29  Bruno Haible  <bruno@clisp.org>
9125
9126         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
9127         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
9128
9129 2006-04-29  Bruno Haible  <bruno@clisp.org>
9130
9131         * gnulib-tool: Make --update option actually work.
9132
9133 2006-04-29  Bruno Haible  <bruno@clisp.org>
9134
9135         * doc/gcd.texi: New file.
9136         * doc/gnulib.texi: Include it.
9137
9138 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
9139
9140         * lib/getdate.y (get_date): When adding relative date, start with the
9141         initial time, not with the result of the first mktime call.
9142
9143 2006-04-25  Bruno Haible  <bruno@clisp.org>
9144
9145         * gnulib-tool (func_import): Output the include directives in three
9146         blocks, sorted separately.
9147         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9148
9149 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
9150
9151         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
9152         to define main with arguments, for C++.  Reported by Eric Blake.
9153         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
9154         Prefer 'int main ()' to 'int main (void)', for C++.
9155         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
9156         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
9157         for 'main', for C99 and C++.
9158
9159 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
9160
9161         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
9162         Don't assume that exit status -1 is valid.
9163         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9164         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
9165         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
9166         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
9167         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
9168         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
9169         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
9170         functions can be used without declaring them, or that you can
9171         exit with status -1.
9172         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
9173
9174 2006-04-24  Karl Berry  <karl@gnu.org>
9175
9176         * config/srclist.txt (longdouble.m4): sync lost.
9177
9178 2006-04-24  Eric Blake  <ebb9@byu.net>
9179
9180         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
9181
9182 2006-04-24  Bruno Haible  <bruno@clisp.org>
9183
9184         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
9185         poll() implementation in AIX.
9186         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9187
9188 2006-04-24  Bruno Haible  <bruno@clisp.org>
9189
9190         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
9191         assigned exactly once.
9192
9193 2006-04-23  Claudio Fontana  <claudio@gnu.org>
9194             Bruno Haible  <bruno@clisp.org>
9195
9196         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
9197         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
9198         for AM_CPPFLAGS.
9199
9200 2006-04-23  Bruno Haible  <bruno@clisp.org>
9201
9202         * modules/copy-file: Depend on unistd.
9203         * modules/execute: Likewise.
9204         * modules/fatal-signal: Likewise.
9205         * modules/findprog: Likewise.
9206         * modules/mkdtemp : Likewise.
9207         * modules/pipe: Likewise.
9208         * modules/wait-process: Likewise.
9209
9210 2006-04-23  Bruno Haible  <bruno@clisp.org>
9211
9212         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
9213         condition was already detected.
9214         Reported by Ben Pfaff <blp@cs.stanford.edu>.
9215
9216 2006-04-23  Bruno Haible  <bruno@clisp.org>
9217
9218         * lib/copy-file.c: Include <unistd.h> unconditionally.
9219         * lib/execute.c: Likewise.
9220         * lib/fatal-signal.c: Likewise.
9221         * lib/findprog.c: Likewise.
9222         * lib/mkdtemp.c: Likewise.
9223         * lib/pipe.h: Likewise.
9224         * lib/pipe.c: Likewise.
9225         * lib/wait-process.h: Likewise.
9226
9227 2006-04-23  Bruno Haible  <bruno@clisp.org>
9228
9229         * gnulib-tool (func_usage): Fix --import description. Document
9230         --update.
9231         (func_import): Create temporary file in a temporary directory, if
9232         --dry-run is specified. Silence errors from 'grep' when there are no
9233         m4 files in $m4dir.
9234         (func_create_testdir): Silence errors from 'grep' when there are no
9235         m4 files in $m4dir.
9236         Reported by Karl Berry <karl@freefriends.org>.
9237
9238 2006-04-20  Bruno Haible  <bruno@clisp.org>
9239
9240         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
9241         one argument, so that the code will be portable to Autoconf 2.60.
9242         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
9243         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
9244         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
9245
9246 2006-04-19  Derek Price  <derek@ximbiot.com>
9247             Eric Blake  <ebb9@byu.net>
9248
9249         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
9250         rather than "/full/path.h".  Update comment to match.  Shorten &
9251         generalize m4_translit call via AS_TR_CPP.
9252
9253 2006-04-19  Derek Price  <derek@ximbiot.com>
9254             Eric Blake  <ebb9@byu.net>
9255
9256         * lib/inttypes.h: Correct grammar in comment.
9257
9258 2006-04-18  Derek Price  <derek@ximbiot.com>
9259             Paul Eggert  <eggert@cs.ucla.edu>
9260
9261         * modules/inttypes: New file.
9262         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
9263
9264 2006-04-18  Derek Price  <derek@ximbiot.com>
9265             Paul Eggert  <eggert@cs.ucla.edu>
9266
9267         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
9268         New files.
9269
9270 2006-04-18  Derek Price  <derek@ximbiot.com>
9271             Paul Eggert  <eggert@cs.ucla.edu>
9272
9273         * lib/inttypes.h: New file.
9274         * lib/strtoimax.c: Assume <inttypes.h>.
9275
9276 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
9277
9278         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
9279         isn't mounted.  Problem reported by Kir Kolyshkin.
9280
9281 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
9282
9283         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
9284         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
9285         Derek R. Price.
9286         * lib/regex.h (RE_DUP_MAX): Update comment to match current
9287         implementation.
9288
9289 2006-04-12  Eric Blake  <ebb9@byu.net>
9290
9291         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
9292         is now done automatically by the corresponding Autoconf macro.
9293
9294 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
9295
9296         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
9297         time_r.h.
9298
9299 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9300
9301         Merge regex changes from libc, removing some of our
9302         POSIX-conformance changes that were rejected and redoing them in a
9303         less-intrusive way.
9304
9305         * lib/regcomp.c (re_compile_internal, init_dfa):
9306         Length arg is now size_t, not Idx.  All uses changed.
9307         (peek_token): Forward decl now says internal_function.
9308         (__re_error_msgid, __re_error_msgid_idx):
9309         Now static rather than extern with attribute_hidden.
9310         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
9311         For some reason libc prefers K&R style defns for external functions.
9312         (regerror) [!defined _LIBC]: Likewise.
9313         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
9314         (seek_collating_symbol_entry, lookup_collation_sequence_value):
9315         (build_range_exp, build_collating_symbol):
9316         Use K&R-style defn.
9317         (re_compile_fastmap): Use '\0' to memset, not 0.
9318         (utf8_sb_map): Make the calculations more obvious.
9319         (init_dfa, parse_bracket_exp, build_charclass_op):
9320         Call calloc and cast result, as glibc does.
9321         (init_word_char, fetch_token, peek_token, peek_token_bracket):
9322         (build_range_exp, build_collating_symbol):
9323         Now internal functions.
9324
9325         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
9326
9327         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
9328         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
9329         Don't depend on VMS; depend on __VMS instead, for POSIX
9330         namespace cleanness.
9331         (regoff_t): Define to ssize_t, not long int.
9332
9333         Remove the REG_ macros named below.  Instead, make the old names
9334         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
9335         __USE_GNU_REGEX.
9336         (REG_BACKSLASH_ESCAPE_IN_LISTS):
9337         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
9338         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
9339         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
9340         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
9341         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
9342         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
9343         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
9344         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
9345         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
9346         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
9347         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
9348         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
9349         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
9350         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
9351         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
9352         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
9353         (REG_NREGS):
9354         Remove.  All uses replaced by the old RE_* names.
9355         (RE_BACKSLASH_ESCAPE_IN_LISTS):
9356         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
9357         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
9358         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
9359         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
9360         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
9361         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
9362         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
9363         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
9364         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
9365         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
9366         Don't bother having these macros be independent of each others'
9367         values, since they no longer exist in the POSIX name space.
9368
9369         Rename the following member names back to their old names,
9370         unless !__USE_GNU_REGEX.  All uses changed back.
9371         (buffer): Renamed from re_buffer.
9372         (allocated): Renamed from re_allocated.
9373         (used): Renamed from re_used.
9374         (syntax): Renamed from re_syntax.
9375         (fastmap): Renamed from re_fastmap.
9376         (translate): Renamed from re_translate.
9377         (can_be_null): Renamed from re_can_be_null.
9378         (regs_allocated): Renamed from re_regs_allocated.
9379         (fastmap_accurate): Renamed from re_fastmap_accurate.
9380         (no_sub): Renamed from re_no_sub.
9381         (not_bol): Renamed from re_not_bol.
9382         (not_eol): Renamed from re_not_eol.
9383         (newline_anchor): Renamed from re_newline_anchor.
9384         (num_regs): Renamed from rm_num_regs.
9385         (start): Renamed from rm_start.
9386         (end): Renamed from rm_end.
9387
9388         (free_state): Move up a bit.
9389
9390         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
9391         #define to be empty.
9392         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
9393         when that is what is intended.
9394         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
9395         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
9396         (MAX): New macro.
9397         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
9398         All uses changed back to re_malloc, etc.  It's now the caller's
9399         responsibility to check for overflow; all callers changed.
9400         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
9401         (re_x2nrealloc): Remove.
9402         (free_state): Remove decl.
9403
9404         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
9405         (re_set_registers, re_exec):
9406         Use K&R-style defn.
9407
9408         2006-01-31  Roland McGrath  <roland@redhat.com>
9409
9410         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
9411         Reported by Mike Frysinger <vapier@gentoo.org>.
9412
9413         2006-01-15  Andreas Jaeger  <aj@suse.de>
9414
9415         [BZ #1950]
9416         * lib/regex_internal.c (re_string_reconstruct): Adjust for
9417         build_wcs_upper_buffer change.
9418         (build_wcs_upper_buffer): Change return type.
9419
9420         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
9421
9422         * lib/regex_internal.h: Include <stdint.h> if available.
9423
9424         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
9425
9426         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
9427
9428         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
9429
9430         * lib/regcomp.c: Adjust for changed secondary hash function.
9431
9432         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
9433
9434         * lib/regex.h: Pretty printing.
9435         Clean up namespace a bit.
9436
9437         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
9438
9439         * lib/regexec.c (update_cur_sifted_state, check_arrival,
9440         check_arrival_add_next_nodes): Avoid using uninitialized variable.
9441
9442         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
9443                     Ulrich Drepper  <drepper@redhat.com>
9444
9445         [BZ #1302]
9446         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
9447         changed.
9448         (bitset_word_t): Renamed from bitset_word.  All uses changed.
9449
9450         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
9451
9452         [BZ #281]
9453         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
9454         * lib/regcomp.c: Remove unnecessary uses of
9455         unsigned RE_TRANSLATE_TYPE.
9456         * lib/regex_internal.h: Likewise.
9457         * lib/regex_internal.c: Likewise.
9458         * lib/regexec.c: Likewise.
9459         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
9460
9461         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
9462
9463         * lib/regexec.c (find_recover_state): Remove unnecessary
9464         initialization.
9465         (transit_state_bkref): Make DFA a const pointer.
9466         (get_subexp): Likewise.
9467         (check_arrival): Likewise.
9468         (update_cur_sifted_state): Likewise.
9469         (re_search_internal): Likewise.
9470         (prune_impossible_nodes): Likewise.
9471         (acquire_init_state_context): Likewise.
9472         (proceed_next_node): Likewise.
9473         (set_regs): Likewise.
9474         (free_fail_stack_return): Likewise.
9475         (check_arrival_expand_ecl): Mark DFA parameter as const.
9476         (check_arrival_expand_ecl_sub): Likewise.
9477         (check_subexp_limits): Likewise.
9478         (sub_epsilon_src_nodes):  Likewise.
9479         (add_epsilon_src_nodes):  Likewise.
9480         (merge_state_array): Likewise.
9481         (update_regs): Likewise.
9482         (build_trtable): Likewise.
9483         (sift_states_backward): Mark MCTX parameter as const.
9484         (build_sifted_states): Likewise.
9485         (update_cur_sifted_state): Likewise.
9486         (sift_states_mkref): Likewise.
9487         (check_arrival_expand_ecl): Mark eclosure as const.
9488         (check_dst_limits_calc_pos_1): Likewise.
9489         * lib/regex_internal.h (re_match_context_t): Make dfa a const
9490         pointer.
9491
9492         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
9493
9494         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
9495         (transit_state_sb): Likewise.
9496         (transit_state_mb): Likewise.
9497         (sift_states_iter_mb): Likewise.
9498         (check_arrival_add_next_nodes): Likewise.
9499         (check_node_accept_bytes): Change first parameter to pointer-to-const.
9500         [_LIBC] (re_search_2_stub): Use mempcpy.
9501
9502         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
9503         mbrtowc for very simple UTF-8 case.
9504
9505         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
9506         a pointer-to-const.
9507         (re_acquire_state_context): Likewise.
9508         * lib/regex_internal.h: Adjust prototypes.
9509
9510         * lib/regex.c: Prevent using C++ compilers.
9511
9512         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
9513         (re_acquire_state_context): Likewise.
9514
9515 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9516
9517         * modules/regex (Depends-on): Add ssize_t.
9518
9519 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9520
9521         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
9522         translation table.
9523
9524 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
9525
9526         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
9527
9528 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
9529             Bruno Haible  <bruno@clisp.org>
9530
9531         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
9532         <sys/types.h> and <inttypes.h>.
9533
9534 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9535
9536         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
9537         `__error_t_defined', so argp.h will not typedef the former.
9538
9539 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
9540
9541         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
9542         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
9543         glibc names.  Even if glibc is changed to conform to POSIX, the
9544         traditional names will be available anyway, since regex depends on
9545         the extensions module.  Also, fix a longstanding typo in the
9546         implementation of Spencer ERE test #75 from grep 2.3.  Problems
9547         reported by Emanuele Giaquinta.  Also, change sense of cached
9548         variable, so that the message makes sense.
9549
9550 2006-03-24  Simon Josefsson  <jas@extundo.com>
9551
9552         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
9553         including some doc fixes.
9554         (base64_encode_alloc): Fix +1 bug on allocation failures.
9555
9556 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9557
9558         * lib/base64.c (base64_encode): Do not read past end of array with
9559         unsanitized input on systems with CHAR_BIT > 8.
9560
9561 2006-03-24  Eric Blake  <ebb9@byu.net>
9562
9563         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
9564
9565 2006-03-22  Karl Berry  <karl@gnu.org>
9566
9567         * config/srclist.txt (*setenv.[ch]): get from coreutils.
9568         * config/srclistvars.sh (COREUTILS): new var.
9569
9570 2006-03-17  Jim Meyering  <jim@meyering.net>
9571
9572         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
9573         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
9574
9575 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9576
9577         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
9578         no longer needs it.  Instead, check that regoff_t is as least
9579         as wide as ptrdiff_t.
9580
9581         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
9582         so that our regex.h stays compatible with the installed regex.
9583         This is helpful for installers who configure --without-included-regex.
9584         Problem reported by Emanuele Giaquinta.
9585
9586 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
9587
9588         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
9589         Typedef to long int, not to off_, as POSIX will likely change
9590         in that direction.
9591
9592 2006-03-15  Eric Blake  <ebb9@byu.net>
9593
9594         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
9595
9596 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9597
9598         * lib/argp-help.c (validate_uparams): Fix typo
9599         * lib/argp-parse.c (argp_default_options): Consistently begin help
9600         messages with a lowercase letter.
9601
9602 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
9603
9604         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
9605         overrun buffers and shouldn't be used (much as gets shouldn't be
9606         used).
9607         * lib/time_r.c (asctime_r, ctime_r): Likewise.
9608
9609 2006-03-08  Simon Josefsson  <jas@extundo.com>
9610
9611         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
9612         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9613
9614 2006-03-08  Simon Josefsson  <jas@extundo.com>
9615
9616         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
9617         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9618
9619 2006-03-08  Simon Josefsson  <jas@extundo.com>
9620
9621         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
9622         signal that configure disabled the device.
9623
9624 2006-03-08  Simon Josefsson  <jas@extundo.com>
9625
9626         * build-aux/maint.mk: Fix refresh-po, to handle no translated
9627         languages.
9628
9629 2006-03-07  Simon Josefsson  <jas@extundo.com>
9630
9631         * modules/getopt (Depends-on): Add unistd.
9632
9633         * modules/unistd: New file.
9634
9635 2006-03-07  Simon Josefsson  <jas@extundo.com>
9636
9637         * modules/gc-random: New file.
9638
9639 2006-03-07  Simon Josefsson  <jas@extundo.com>
9640
9641         * m4/unistd_h.m4: New file.
9642
9643 2006-03-07  Simon Josefsson  <jas@extundo.com>
9644
9645         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
9646         test to be side-effect free by storing the result in the cache
9647         variable gl_cv_lib_readline, and moving the assignment of
9648         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
9649         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9650
9651 2006-03-07  Simon Josefsson  <jas@extundo.com>
9652
9653         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
9654         error on missing devices (the functions will return an error).
9655
9656         * m4/gc.m4: Move random stuff to gc-random.m4
9657
9658 2006-03-07  Simon Josefsson  <jas@extundo.com>
9659
9660         * lib/unistd_.h: New file.
9661
9662 2006-03-07  Simon Josefsson  <jas@extundo.com>
9663
9664         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
9665
9666 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9667
9668         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
9669         Problem reported by Juan Manuel Guerrero.
9670
9671 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9672
9673         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
9674         the unistd module.
9675         * lib/getlogin_r.c: Likewise.
9676         * lib/getlogin_r.h: Likewise.
9677         * lib/glob.c: Likewise.
9678         * lib/pagealign_alloc.c: Likewise.
9679         * lib/unistd_.h: Remove; no longer needed.
9680
9681 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
9682
9683         * MODULES.html.sh (Support for systems lacking POSIX:2001):
9684         Add unistd.
9685         * modules/c-stack (Depends-on): Add unistd.
9686         * modules/getlogin_r: Likewise.
9687         * modules/glob: Likewise.
9688         * modules/pagealign_alloc: Likewise.
9689         * modules/unistd (Files): Remove lib/unistd_.h.
9690         (EXTRA_DIST): Remove.
9691         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
9692         need unistd_.h.
9693         (MOSTLYCLEANFILES): Remove unistd.h-t.
9694
9695 2006-03-03  Simon Josefsson  <jas@extundo.com>
9696
9697         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
9698
9699 2006-03-03  Simon Josefsson  <jas@extundo.com>
9700
9701         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
9702         libidn and bison.
9703
9704 2006-03-03  Simon Josefsson  <jas@extundo.com>
9705
9706         * build-aux/maint.mk: Add indent target.
9707
9708 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
9709
9710         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
9711         our replacement poll.h in any case, to avoid a differing
9712         declaration from a system header.  Seen on AIX.
9713
9714 2006-03-01  Simon Josefsson  <jas@extundo.com>
9715
9716         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
9717         <kasal@ucw.cz>.
9718
9719 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9720
9721         * modules/gettime (Depends-on): Add extensions module.
9722         * modules/nanosleep (Depends-on): Likewise.
9723         * modules/settime (Depends-on): Likewise.
9724
9725 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
9726
9727         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
9728         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
9729         pedantically.
9730         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
9731         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
9732
9733         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
9734         not "==".  Reported by Ralf Wildenhues.
9735
9736 2006-03-01  Karl Berry  <karl@gnu.org>
9737
9738         * doc/Copyright/request-*: new files, synced from gnuorg.
9739
9740 2006-03-01  Karl Berry  <karl@gnu.org>
9741
9742         * config/srclist.txt (Copyright/*): new entries.
9743
9744 2006-02-28  Simon Josefsson  <jas@extundo.com>
9745
9746         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
9747
9748 2006-02-27  Simon Josefsson  <jas@extundo.com>
9749
9750         * lib/base64.h: Indent #define's.  From Jim Meyering
9751         <jim@meyering.net>.
9752
9753 2006-02-27  Jim Meyering  <jim@meyering.net>
9754
9755         Revert the change of 2006-02-24, so these files can continue
9756         to be sync'd from gettext.
9757         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
9758         of `config.h'.
9759
9760 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
9761
9762         * modules/intprops: New file.
9763         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
9764         Add intprops.
9765         * modules/getloadavg (Files): Remove lib/intprops.h.
9766         (Depends-on): Add intprops.
9767         * modules/human: Likewise.
9768         * modules/inttostr: Likewise.
9769         * modules/openat: Likewise.
9770         * modules/sig2str: Likewise.
9771         * modules/userspec: Likewise.
9772         * modules/utimecmp: Likewise.
9773         * modules/xnanosleep: Likewise.
9774         * modules/xstrtol: Likewise.
9775
9776 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
9777
9778         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
9779         * modules/lock-tests (TESTS): Use $(EXEEXT).
9780         * modules/tls-tests: Likewise.
9781         * modules/argp-tests: Likewise.
9782         (check_PROGRAMS): New var, replacing...
9783         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
9784
9785 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9786
9787         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
9788         `config.h'.
9789
9790 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
9791
9792         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
9793
9794 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9795
9796         Sync from coreutils.
9797         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
9798         gl_CHDIR_SAFER.
9799
9800 2006-02-22  Jim Meyering  <jim@meyering.net>
9801
9802         Sync from coreutils.
9803         * m4/chdir-safer.m4: New file.
9804
9805 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
9806
9807         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
9808         AT_FDCWD exceeds INT_MAX.
9809         * lib/openat.h (AT_FDCWD): Likewise.
9810
9811 2006-02-17  Eric Blake  <address@hidden>
9812
9813         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
9814
9815 2006-02-16  Simon Josefsson  <jas@extundo.com>
9816
9817         * modules/getaddrinfo (Depends-on): Add sys_socket.
9818
9819 2006-02-15  Simon Josefsson  <jas@extundo.com>
9820
9821         * build-aux/maint.mk: Add dsyntax-check rule.
9822
9823 2006-02-15  Eric Blake  <ebb9@byu.net>
9824
9825         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
9826         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
9827         'present but cannot compile' warnings on cygwin.
9828         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
9829         use ws2tcpip.h if sys/socket.h works.
9830         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
9831         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
9832
9833 2006-02-14  Simon Josefsson  <jas@extundo.com>
9834
9835         * modules/maintainer-makefile (Files): Rename.
9836
9837         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
9838         and (the local) Makefile.cfg to maint-cfg.mk.
9839
9840         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
9841         to the latter.
9842
9843         * modules/maintainer-makefile: New module.
9844
9845         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
9846         severaly stripped to make it possible to build it up from scratch
9847         with reliable tests.
9848
9849         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
9850         fixes to permit overriding the default actions when configure and
9851         makefile are not available.
9852
9853 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
9854
9855         Sync from coreutils.
9856         * modules/lstat (Depends-on): Don't depend on xalloc.
9857         (License): Change from GPL to LGPL, since this is now simply a
9858         replacement for a libc function.
9859
9860 2006-02-14  Jim Meyering  <jim@meyering.net>
9861
9862         Sync from coreutils.
9863
9864         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
9865         failure on deficient systems, and simplify gnulib lgpl dependencies.
9866         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
9867         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
9868
9869         * lib/xalloc-die.c: Remove unused definition of N_.
9870
9871 2006-02-14  Jim Meyering  <jim@meyering.net>
9872
9873         Sync from coreutils.
9874         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
9875         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
9876         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
9877         double-quote uses of that variable, to accommodate the rare case in
9878         which getmntent is available in none of the libraries checked.  This
9879         happens at least on FreeBSD 5.0.
9880
9881 2006-02-13  Simon Josefsson  <jas@extundo.com>
9882
9883         * gnulib-tool (Usage): Fix --import, from
9884         karl@freefriends.org (Karl Berry).
9885
9886 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
9887
9888         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
9889
9890 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
9891
9892         * lib/argp-namefrob.h: Restore changes accidentally lost during the
9893         "autoupdate" on 2005-12-12.
9894
9895 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9896
9897         * modules/closeout (Depends-on): Remove atexit.
9898
9899 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
9900
9901         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
9902         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
9903
9904 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
9905
9906         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
9907         __EXTENSIONS__ if this causes compilation to fail.  Problem
9908         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
9909         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
9910
9911 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
9912
9913         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
9914         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
9915         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
9916         All uses changed.
9917
9918 2006-01-26  Simon Josefsson  <jas@extundo.com>
9919
9920         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
9921         prototype is visible on mingw32.
9922
9923         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
9924         for mingw32.
9925
9926         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
9927         mingw32).
9928
9929 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
9930
9931         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
9932         attempt to open for write; this always fails, at least on POSIX
9933         hosts.  This reinstates the 2006-01-09 change, which was
9934         inadvertently removed.
9935
9936 2006-01-26  Bruno Haible  <bruno@clisp.org>
9937
9938         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
9939         Reported by Paul Eggert.
9940
9941 2006-01-26  Bruno Haible  <bruno@clisp.org>
9942             Paul Eggert  <eggert@cs.ucla.edu>
9943
9944         * lib/stdbool_.h (_Bool)
9945         [(! (defined __cplusplus || defined __BEOS__)
9946           && !defined __GNUC__
9947           && !(defined __HP_cc || defined __xlc__
9948                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
9949                || defined __sgi))]:
9950         #define to signed char in these cases too; this simplifies
9951         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
9952         etc., separately) and makes it more conservative.
9953
9954 2006-01-25  Simon Josefsson  <jas@extundo.com>
9955
9956         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
9957         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
9958         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
9959
9960 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
9961
9962         * lib/argp-namefrob.h: Bugfix. Remove stray #
9963
9964 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
9965
9966         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
9967         so that we test the test.
9968         Check for yet another HP-UX cc bug involving *bool |= bool.
9969
9970 2006-01-25  Karl Berry  <karl@gnu.org>
9971
9972         * config/srclist.txt (vasnprintf.c): sync lost.
9973
9974 2006-01-25  Jim Meyering  <jim@meyering.net>
9975
9976         Sync from the stable (b5) branch of coreutils:
9977
9978         * lib/fts.c (fts_children): Don't let close() clobber errno from
9979         failed fchdir().
9980
9981         * lib/fts.c (fts_stat): When following a symlink-to-directory,
9982         don't necessarily interpret stat-fails+lstat-succeeds as indicating
9983         a dangling symlink.  That can also happen at least for ELOOP.
9984         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
9985         FYI, this bug predates the inclusion of fts.c in coreutils.
9986
9987         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
9988         in their own block, so pre-c99 compilers don't object.
9989
9990         Avoid the double-free (first in fts_read, second in fts_close) that
9991         would occur when an `active' directory is made inaccessible (e.g.,
9992         via chmod a-x) during a traversal.
9993         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
9994         before returning.  Reproduce this failure by
9995         mkdir -p a/b; cd a; chmod a-x . b
9996         Reported by Stavros Passas.
9997
9998 2006-01-25  Jim Meyering  <jim@meyering.net>
9999
10000         * lib/fileblocks.c: Remove more useless parentheses.
10001         * lib/readutmp.h: Likewise.
10002
10003 2006-01-25  Bruno Haible  <bruno@clisp.org>
10004
10005         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
10006         warnings.
10007         Reported by Paul Eggert.
10008
10009 2006-01-25  Bruno Haible  <bruno@clisp.org>
10010
10011         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
10012         rid of a trap command. For Solaris sh.
10013         Reported by Mark D. Baushke <mdb@gnu.org>.
10014
10015 2006-01-24  Simon Josefsson  <jas@extundo.com>
10016
10017         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
10018         Bruno.
10019
10020 2006-01-24  Karl Berry  <karl@gnu.org>
10021
10022         * config/srclist.txt (argp-namefrob.h): sync lost.
10023
10024 2006-01-24  Jim Meyering  <jim@meyering.net>
10025
10026         * modules/openat (Files): Add lib/intprops.h.
10027         From Mark D. Baushke.
10028
10029 2006-01-24  Jim Meyering  <jim@meyering.net>
10030
10031         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
10032         Reported by Mark D. Baushke.
10033
10034 2006-01-24  Jim Meyering  <jim@meyering.net>
10035
10036         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
10037
10038 2006-01-24  Bruno Haible  <bruno@clisp.org>
10039
10040         * modules/strnlen (Maintainer): Change from glibc to all.
10041
10042 2006-01-24  Bruno Haible  <bruno@clisp.org>
10043
10044         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
10045         Patch by Paul Eggert.
10046
10047 2006-01-24  Bruno Haible  <bruno@clisp.org>
10048
10049         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
10050         already has it.
10051         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
10052         2005-11-26.
10053
10054         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
10055         'signed char' to avoid problems with the built-in _Bool type.
10056         Reported by Paul Eggert on 2005-11-26.
10057
10058 2006-01-24  Bruno Haible  <bruno@clisp.org>
10059
10060         * gnulib-tool (func_import): Avoid constructing complicated sed
10061         expressions inside backquote.
10062         Report and solution by Mark D. Baushke <mdb@gnu.org>.
10063
10064 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
10065
10066         These changes imported from libc.
10067         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
10068         test and two separate function calls.
10069         * lib/strndup.c (__strndup): Add libc_hidden_def.
10070
10071 2006-01-23  Simon Josefsson  <jas@extundo.com>
10072
10073         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
10074         Remove the test_*_SOURCES variable: automake infers it by default.
10075         * modules/tls-tests: Likewise.
10076
10077 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
10078
10079         Work around porting bugs reported by Dieter in
10080         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
10081         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
10082         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
10083         Include "getopt.h" first, to check interface.
10084         (getenv): Declare only if defined HAVE_DECL_GETENV &&
10085         !HAVE_DECL_GETENV.
10086         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
10087         (__strndup): Revert to K&R-style function dfns, the glibc style.
10088         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
10089         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
10090         Include strnlen.h first, to get prototype properly.
10091         (strnlen): Renamed from __strnlen.
10092         Remove weak alias.
10093
10094 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
10095
10096         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
10097
10098 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
10099
10100         * config/srclist.txt: Adjust to reflect glibc reorganization.
10101         This affects only comments.
10102
10103 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
10104
10105          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
10106          Reported by Bruce Korb <bkorb@gnu.org>.
10107
10108 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
10109
10110         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
10111         to pacify gcc -Wswitch-default.
10112
10113 2006-01-22  Bruno Haible  <bruno@clisp.org>
10114
10115         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
10116         temporary buffer for sprintf, take into account the precision also
10117         for 'd', 'i', 'u', 'o', 'x', 'X'.
10118
10119 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
10120
10121         * modules/argp-tests: New module
10122         * tests/test-argp.c: New file
10123         * tests/test-argp-2.sh: New file
10124
10125 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
10126
10127         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
10128         (__argp_base_name): Removed
10129         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
10130         typo.
10131         (__argp_base_name): Provide macro definition or extern declaration
10132         depending on the configuration
10133
10134 2006-01-20  Simon Josefsson  <jas@extundo.com>
10135
10136         * modules/inet_ntop (Depends-on): Depend on sys_socket.
10137
10138 2006-01-20  Simon Josefsson  <jas@extundo.com>
10139
10140         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
10141
10142 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
10143
10144         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
10145         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
10146         Suggested by Bruno Haible.
10147
10148 2006-01-20  Karl Berry  <karl@gnu.org>
10149
10150         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
10151         until changes propagate, I guess.
10152
10153 2006-01-19  Simon Josefsson  <jas@extundo.com>
10154
10155         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
10156
10157 2006-01-19  Simon Josefsson  <jas@extundo.com>
10158
10159         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
10160
10161 2006-01-19  Simon Josefsson  <jas@extundo.com>
10162
10163         * gnulib-tool: Set check_PROGRAMS.
10164
10165         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
10166         modules/des-tests, modules/gc-arcfour-tests,
10167         modules/gc-arctwo-tests, modules/gc-des-tests,
10168         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
10169         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
10170         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
10171         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
10172         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
10173         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
10174         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
10175         test_*_SOURCES.
10176
10177 2006-01-18  Simon Josefsson  <jas@extundo.com>
10178
10179         * modules/socklen (Depends-on): Depend on sys_socket.
10180
10181 2006-01-18  Simon Josefsson  <jas@extundo.com>
10182
10183         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
10184         modules/des-tests, modules/gc-arcfour-tests,
10185         modules/gc-arctwo-tests, modules/gc-des-tests,
10186         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
10187         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
10188         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
10189         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
10190         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
10191         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
10192         $(EXEEXT) to automake TESTS variable, for mingw32.
10193
10194 2006-01-17  Simon Josefsson  <jas@extundo.com>
10195
10196         * modules/socklen (Include): Need sys/socket.h.
10197
10198 2006-01-17  Bruno Haible  <bruno@clisp.org>
10199
10200         * modules/ssize_t (Include): Add <sys/types.h>.
10201
10202 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
10203
10204         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
10205         it's not portable and it doesn't work with cross-compiles.
10206         Problem reported by Bruno Haible.  Fix missing-$ typo in
10207         'test "gl_cv_ignore_unused_libraries" ...' that prevented
10208         -zignore from being used with Sun's C compiler.
10209
10210 2006-01-12  Simon Josefsson  <jas@extundo.com>
10211
10212         * lib/base64.c: Fix warning, reported by Bruno Haible
10213         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
10214
10215 2006-01-12  Bruno Haible  <bruno@clisp.org>
10216
10217         * modules/ldd: New file.
10218         * build-aux/ldd.sh.in: New file.
10219         * MODULES.html.sh (Support for building libraries and executables): Add
10220         ldd.
10221
10222 2006-01-12  Bruno Haible  <bruno@clisp.org>
10223
10224         * m4/ldd.m4: New file.
10225
10226 2006-01-12  Bruno Haible  <bruno@clisp.org>
10227
10228         * gnulib-tool (func_import, func_create_testdir): Don't go into an
10229         endless loop while replacing $auxdir with build-aux.
10230
10231 2006-01-11  Simon Josefsson  <jas@extundo.com>
10232
10233         * lib/stdint_.h (SIZE_MAX): Add missing (.
10234
10235 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
10236
10237         Sync from coreutils.
10238         * lib/md5.c: Fix commentary typos.
10239         (alignof, UNALIGNED_P): No need for a GCC-specific version.
10240         * lib/md5.h (__attribute__): Remove; unused.
10241         * lib/sha1.c: Fix commentary to match md5 better.
10242         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
10243         so that we don't need to worry about alignment.  All uses changed.
10244         This merges the 2005-10-28 md5 change into sha1.
10245
10246 2006-01-11  Jim Meyering  <jim@meyering.net>
10247
10248         Sync from coreutils.
10249         * lib/md5.c (OP): Fix spacing.
10250
10251 2006-01-11  Bruno Haible  <bruno@clisp.org>
10252
10253         Ensure automatic ordering between gl_LOCK and gl_ARGP.
10254         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
10255         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
10256
10257 2006-01-11  Bruno Haible  <bruno@clisp.org>
10258
10259         Ensure automatic ordering between gl_LOCK and gl_ARGP.
10260         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
10261         the "early" section as well.
10262
10263 2006-01-11  Bruno Haible  <bruno@clisp.org>
10264
10265         Avoid "ar: no archive members specified" error on MacOS X.
10266         * gnulib-tool (func_modules_add_dummy): New function.
10267         (func_import, func_create_testdir): Invoke it.
10268
10269 2006-01-11  Bruno Haible  <bruno@clisp.org>
10270
10271         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
10272         with $auxdir in AC_CONFIG_FILES statements.
10273
10274 2006-01-11  Bruno Haible  <bruno@clisp.org>
10275
10276         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10277         Initialize also noinst_HEADERS to empty.
10278
10279 2006-01-11  Bruno Haible  <bruno@clisp.org>
10280
10281         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
10282         variables.
10283         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
10284         autoreconf.
10285
10286 2006-01-11  Bruno Haible  <bruno@clisp.org>
10287
10288         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
10289         overridable by the user.
10290         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
10291
10292 2006-01-10  Simon Josefsson  <jas@extundo.com>
10293
10294         * modules/sys_socket: New file.
10295
10296 2006-01-10  Simon Josefsson  <jas@extundo.com>
10297
10298         * m4/sys_socket_h.m4: New file.
10299
10300 2006-01-10  Simon Josefsson  <jas@extundo.com>
10301
10302         * lib/socket_.h: New file.
10303
10304 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
10305
10306         * modules/readutmp (Maintainer): Add myself.
10307
10308 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
10309
10310         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
10311         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
10312         People who are still concerned with buggy memcmp implementations
10313         can invoke gl_FUNC_MEMCMP themselves.
10314
10315 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
10316
10317         * lib/regex_internal.h (BITSET_WORD_BITS):
10318         Work around a bug in 64-bit PGC (before version 6.1-2), where the
10319         preprocessor mishandles large unsigned values as if they were signed.
10320         Problem reported by Claudio Fontana in
10321         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
10322
10323 2006-01-10  Jim Meyering  <jim@meyering.net>
10324
10325         Avoid the double-free (first in fts_read, second in fts_close) that
10326         would occur when an `active' directory is made inaccessible (e.g.,
10327         via chmod a-x) during a traversal.
10328         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
10329         before returning.  Reproduce this failure by
10330         mkdir -p a/b; cd a; chmod a-x . b
10331         Reported by Stavros Passas.
10332
10333         Sync from coreutils.
10334         * lib/sha1.c: Tweak grammar in a comment.
10335
10336 2006-01-10  Jim Meyering  <jim@meyering.net>
10337
10338         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
10339         Patch by Joerg Sonnenberger.
10340
10341 2006-01-10  Bruno Haible  <bruno@clisp.org>
10342
10343         * modules/readutmp: Depend on module free.
10344         * modules/strtok_r: Depend on module restrict.
10345
10346 2006-01-10  Bruno Haible  <bruno@clisp.org>
10347
10348         * modules/gettext (configure.ac): Add an invocation of
10349         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
10350
10351 2006-01-10  Bruno Haible  <bruno@clisp.org>
10352
10353         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
10354         Reported by Werner Lemberg <wl@gnu.org>.
10355
10356 2006-01-10  Bruno Haible  <bruno@clisp.org>
10357
10358         * lib/localcharset.c: Update from GNU gettext.
10359
10360 2006-01-10  Bruno Haible  <bruno@clisp.org>
10361
10362         * lib/argp.h (__const): Remove macro. Use const instead.
10363         * lib/argp-fmtstream.h (__const): Likewise.
10364         * lib/glob_.h (__const): Remove macro.
10365         * lib/glob-libc.h: Use const instead of __const.
10366
10367 2006-01-10  Bruno Haible  <bruno@clisp.org>
10368
10369         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
10370         variable.
10371         Needed to avoid an automake error regarding the 'gettext' module.
10372
10373 2006-01-09  Simon Josefsson  <jas@extundo.com>
10374
10375         * modules/inet_ntop (Depends-on): Add restrict.
10376
10377 2006-01-09  Simon Josefsson  <jas@extundo.com>
10378
10379         * modules/gc-rijndael-tests (License): Put under LGPL.
10380
10381         * modules/gc-des-tests (License): Likewise.
10382
10383         * modules/gc-arcfour-tests (License): Likewise.
10384
10385         * modules/gc-arctwo-tests (License): Likewise.
10386
10387         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
10388
10389         * modules/gc-hmac-sha1-tests (Files): Likewise.
10390
10391         * modules/gc-hmac-md5-tests (License): Likewise.
10392
10393         * modules/gc-sha1-tests (License): Likewise.
10394
10395         * modules/gc-md5-tests (License): Likewise.
10396
10397         * modules/gc-md4-tests (License): Likewise.
10398
10399         * modules/gc-md2-tests (License): Likewise.
10400
10401         * modules/gc-tests (License): Likewise.
10402
10403         * modules/des-tests (License): Likewise.
10404
10405         * modules/md4-tests (License): Likewise.
10406
10407         * modules/md2-tests (License): Likewise.
10408
10409 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10410
10411         Sync from coreutils:
10412
10413         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
10414         * modules/lib-ignore: New file.
10415         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
10416         chdir-safer.m4, lchmod.m4.
10417         * modules/openat: Add mkdirat.c, openat-priv.h.
10418
10419 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10420
10421         Sync from coreutils.
10422         * m4/lib-ignore.m4: New file.
10423         * m4/lchmod.m4: New file.
10424
10425 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10426
10427         Sync from coreutils.
10428         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
10429         for write access: POSIX says that must fail.
10430         * lib/fts.c (diropen): Likewise.
10431         * lib/save-cwd.c (save_cwd): Likewise.
10432         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
10433         well, for minor improvements on hosts that lack O_DIRECTORY.
10434         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
10435         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
10436         Fall back on chown if open failed with EACCES.
10437
10438         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
10439         Report an error at compile-time if only a 1-second nominal clock
10440         resolution is found.
10441
10442         * lib/lchmod.h: New file.
10443         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
10444         (make_dir_parents): Use lchown rather than chown, and
10445         lchmod rather than chmod.
10446
10447         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
10448         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
10449         "proc" reported by n0dalus.
10450
10451         * lib/mountlist.c: Include <limits.h>.
10452         (dev_from_mount_options)
10453         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
10454         New function.  It no longer assumes "dev=" has the System V meaning
10455         on Linux (since it doesn't).  It also parses "dev=" more carefully.
10456         (read_file_system_list)
10457         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
10458         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
10459         dev= in that case.
10460
10461         * lib/posixtm.h (PDS_PRE_2000): New macro.
10462         * lib/posixtm.c (year): Arg is now syntax_bits rather than
10463         allow_century.  All usages changed.  Reject dates outside the range
10464         1969-1999 if PDS_PRE_2000 is used.
10465
10466 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
10467
10468         Sync from coreutils.
10469         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
10470         (Time of day items): Mention the possibility of leap seconds.
10471         Problem reported by Dr. David Alan Gilbert.
10472
10473 2006-01-09  Jim Meyering  <jim@meyering.net>
10474
10475         Sync from coreutils.
10476
10477         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
10478
10479         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
10480
10481         * lib/modechange.c (mode_compile): Reject an invalid mode string
10482         that starts with an octal digit.  From Andreas Gruenbacher.
10483
10484         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
10485         and dup to open_safer and dup_safer, respectively.
10486         (openat_permissive): Fix typo in comment.
10487
10488         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
10489         "gettext.h"; either no longer needed or are guaranteed by openat.h.
10490         (_): Remove; no longer needed.
10491         (openat): Renamed from rpl_openat; no need for rpl_openat
10492         since openat.h renames openat for us.
10493         Replace most of the body with a call to openat_permissive,
10494         to avoid duplicate code.
10495         Port to (probably hypothetical) environments were mode_t is
10496         wider than int.
10497         (openat_permissive): Require mode arg, so that we can check
10498         types better.  Put it just after flags.  Change cwd failure
10499         indicator from pointer-to-bool to pointer-to-errno-value.
10500         All callers changed.
10501         Invoke openat_save_fail and/or openat_restore_fail if
10502         cwd_errno is null, so that openat can call us.
10503         (openat_permissive, fdopendir, fstatat, unlinkat):
10504         Simplify errno handling to avoid some duplicate code,
10505         as it's OK to set errno on success.
10506         * lib/openat.h: Revamp code so that function macros depend on
10507         __OPENAT_PREFIX only, not also on AT_FDCWD.
10508         (openat_ro): Remove.  Caller changed to use openat_permissive.
10509         (openat_permissive): Now a macro, if not a function.
10510         (openat_restore_fail, openat_save_fail): Now always functions,
10511         since mkdirat needs them even if __OPENAT_PREFIX is defined.
10512
10513         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
10514         and openat.c.
10515         * lib/mkdirat.c: Include openat-priv.h.
10516         Remove definitions of macros defined therein.
10517         * lib/openat.c: Likewise.
10518
10519         * lib/mkdirat.c (mkdirat): New file and function.
10520         * lib/openat.h (mkdirat): Declare.
10521
10522         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
10523
10524         * lib/openat.h (openat_permissive): Declare.
10525         (openat_ro): Define.
10526
10527         * lib/openat.c (EXPECTED_ERRNO): New macro.
10528         (openat_permissive): New function -- used in remove.c rewrite.
10529         (all functions): Set errno just before returning, only if there
10530         was an actual failure.
10531         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
10532
10533         Emulate openat-family functions using Linux's procfs, if possible.
10534         Idea and some code based on Ulrich Drepper's glibc changes.
10535
10536         * lib/openat.c: (BUILD_PROC_NAME): New macro.
10537         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
10538         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
10539         before falling back on save_cwd and restore_cwd.
10540         (fdopendir, fstatat, unlinkat): Likewise.
10541
10542         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
10543         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
10544
10545         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
10546         as second argument to va_arg.  Otherwise, some versions of gcc
10547         warn that `if this code is reached, the program will abort'.
10548
10549 2006-01-09  Jim Meyering  <jim@meyering.net>
10550
10551         Sync from coreutils.
10552         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
10553         Require openat-priv.h.
10554
10555 2006-01-09  Bruno Haible  <bruno@clisp.org>
10556
10557         * modules/strnlen (Include): Use strnlen.h.
10558
10559 2006-01-09  Bruno Haible  <bruno@clisp.org>
10560
10561         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
10562
10563 2006-01-09  Bruno Haible  <bruno@clisp.org>
10564
10565         * lib/sysexit_.h (EX_OK): New macro.
10566         Suggested by Martin Lambers <marlam@marlam.de>.
10567
10568 2006-01-09  Bruno Haible  <bruno@clisp.org>
10569
10570         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
10571         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
10572
10573 2006-01-09  Bruno Haible  <bruno@clisp.org>
10574
10575         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
10576         numbers.
10577
10578 2006-01-09  Bruno Haible  <bruno@clisp.org>
10579
10580         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
10581         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
10582         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
10583         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
10584
10585 2006-01-09  Bruno Haible  <bruno@clisp.org>
10586
10587         * build-aux/javacomp.sh.in: New file, moved from lib/.
10588         * modules/javacomp-script (Files): Update.
10589         (configure.ac): Add AC_CONFIG_FILES invocation.
10590         (EXTRA_DIST): Remove variable.
10591
10592         * build-aux/javaexec.sh.in: New file, moved from lib/.
10593         * modules/javaexec (Files): Update.
10594         (configure.ac): Add AC_CONFIG_FILES invocation.
10595         (EXTRA_DIST): Remove javaexec.sh.in.
10596
10597         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
10598         * modules/csharpcomp-script (Files): Update.
10599         (configure.ac): Add AC_CONFIG_FILES invocation.
10600         (EXTRA_DIST): Remove variable.
10601
10602         * build-aux/csharpexec.sh.in: New file, moved from lib/.
10603         * modules/csharpexec (Files): Update.
10604         (configure.ac): Add AC_CONFIG_FILES invocation.
10605         (EXTRA_DIST): Remove csharpexec.sh.in.
10606
10607 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10608
10609         Sync from coreutils.
10610
10611         Add POSIX ACL support
10612         * lib/acl.h (copy_acl, set_acl): Add declarations.
10613         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
10614         systems other than Linux.
10615         (chmod_or_fchmod): New function: use fchmod when possible,
10616         and chmod otherwise.
10617         (file_has_acl): Add a POSIX ACL implementation, with a
10618         Linux-specific subcase.
10619         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
10620         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
10621         acls are unsupported.
10622         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
10623         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
10624         are unsupported.
10625
10626 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
10627
10628         Sync from coreutils.
10629         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
10630
10631 2006-01-07  Bruno Haible  <bruno@clisp.org>
10632
10633         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
10634         gl_EARLY.
10635
10636 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10637
10638         * lib/strftime.c (tzname): Don't declare if it is already #defined.
10639         Problem reported for Mingw by Mark Junker.
10640
10641 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
10642
10643         * README: Gnulib normally doesn't generate a tarball.
10644
10645 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
10646
10647         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
10648         long int, not int, for nanosecond counts, so that people who are
10649         used to POSIX struct timespec won't be surprised.  Reported by Jim
10650         Meyering.
10651
10652 2005-12-28  Bruno Haible  <bruno@clisp.org>
10653
10654         * build-aux/config.rpath: Update from GNU gettext.
10655
10656 2005-12-16  Jim Meyering  <jim@meyering.net>
10657
10658         * modules/fprintftime: New module.
10659         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
10660
10661 2005-12-16  Jim Meyering  <jim@meyering.net>
10662
10663         * m4/fprintftime.m4: New file.
10664
10665 2005-12-16  Jim Meyering  <jim@meyering.net>
10666
10667         * lib/fprintftime.c, lib/fprintftime.h: New files.
10668
10669 2005-12-15  Simon Josefsson  <jas@extundo.com>
10670
10671         * modules/socklen (configure.ac): Fix M4 macro name, to align with
10672         new m4/socklen.m4.
10673
10674 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10675
10676         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
10677         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
10678
10679 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
10680
10681         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
10682         * lib/argp-help.c (fill_in_uparams): Check if the constructed
10683         struct uparams is valid. Fall back to the default values if it is
10684         not.
10685
10686 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10687
10688         * modules/argp (Files): Add argp-pin.c
10689         (Depends-on): dirname
10690         (lib_SOURCES): Add argp-pin.c
10691
10692 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10693
10694         * m4/argp.m4:  Check if program_invocation_name and
10695         program_invocation_short_name are declared and define appropriate
10696         macros if they are not.
10697
10698 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
10699
10700         * lib/argp-help.c (__argp_base_name): New function
10701         (__argp_short_program_name): Rewrite using __argp_base_name
10702         * lib/argp-namefrob.h: Define program_invocation_name and
10703         program_invocation_short_name if requested
10704         (__argp_base_name): Add prototype
10705         * lib/argp-parse.c (argp_def): Use gettext wrappers
10706         (argp_default_parser): Use __argp_base_name
10707         * lib/argp-pin.c: New file. Defines program_invocation_name and
10708         program_invocation_short_name on systems that lack them.
10709
10710 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10711
10712         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
10713         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10714         porting problem reported by Georg Schwarz in
10715         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10716
10717 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
10718
10719         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
10720         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
10721         porting problem reported by Georg Schwarz in
10722         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
10723
10724 2005-12-05  Bruno Haible  <bruno@clisp.org>
10725
10726         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
10727         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
10728         Reported by Mark Junker <mjscod@gmx.de>.
10729
10730 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
10731
10732         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
10733         Use implementation from Albert Chin, with some
10734         comments/corrections by Stepan Kasal and myself.
10735
10736 2005-12-02  Bruno Haible  <bruno@clisp.org>
10737
10738         * gnulib-tool (func_import): Accept GPLed build tool modules when
10739         --lgpl is given.
10740         * modules/csharpcomp-script: New file.
10741         * modules/csharpcomp: Depend on it.
10742         * modules/javacomp-script: New file.
10743         * modules/javacomp: Depend on it.
10744         Suggested by Simon Josefsson.
10745
10746 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
10747
10748         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
10749         statement, to work around an HP-UX 10.20 compiler bug reported by
10750         Peter O'Gorman.
10751
10752 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10753
10754         * modules/savedir (Depends-on): Add openat.
10755
10756 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
10757
10758         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
10759         (uintmax_t) [defined uintmax_t]: Do not declare.
10760         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
10761         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
10762         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
10763         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
10764         sake of portability to weird hosts that C allows (though we don't
10765         know of any practical examples).
10766
10767         * lib/savedir.h (fdsavedir): New decl.
10768         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
10769         contains most of the former guts of savedir.
10770         (savedir): Use savedirstream.
10771         Include "openat.h".
10772
10773 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
10774
10775         * modules/obstack (Files): Add m4/ulonglong.m4.
10776         Problem reported by Davide Angelocola.
10777
10778 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
10779
10780         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
10781         coreutils no longer futzes with rounding modes.
10782
10783 2005-11-14  Jim Meyering  <jim@meyering.net>
10784
10785         * lib/mkstemp-safer.c: Include <config.h>, required for possible
10786         replacement of mkstemp.
10787
10788 2005-11-10  Simon Josefsson  <jas@extundo.com>
10789
10790         * lib/readline.c: Remove EOL.
10791
10792 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10793
10794         * modules/gethrxtime (Depends-on): Add gettime.
10795
10796 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10797
10798         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
10799         or gettimeofday; no longer needed.
10800
10801 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
10802
10803         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
10804         time business.
10805         (gethrxtime) [! (HAVE_NANOUPTIME
10806         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
10807         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
10808         our own approximation.
10809
10810 2005-11-08  Eric Blake  <ebb9@byu.net>
10811
10812         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10813
10814 2005-11-08  Eric Blake  <ebb9@byu.net>
10815
10816         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
10817
10818 2005-11-04  Bruno Haible  <bruno@clisp.org>
10819
10820         * gnulib-tool: Implement --update mode.
10821
10822 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10823
10824         Fix porting problem reported by Theodoros V. Kalamatianos.
10825         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
10826         Don't assume that futimes failing means we must fail.
10827
10828 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
10829
10830         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
10831         variables to suggest the intended function of the PATH_MAX check.
10832
10833 2005-10-30  Kean Johnston  <jkj@sco.com>
10834
10835         Trivial changes to support SCO systems.
10836         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
10837         as PATH_MAX.
10838         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
10839         where __ptr is null when no I/O is pending.
10840
10841 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
10842
10843         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
10844         leave errno alone.  Problem reported by Dmitry V. Levin.
10845
10846 2005-10-28  Simon Josefsson  <jas@extundo.com>
10847
10848         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
10849         Test more.
10850
10851         * tests/test-gc-md2.c, tests/test-md2.c: New files.
10852
10853         * modules/md2, modules/md2-tests: New files.
10854
10855 2005-10-28  Simon Josefsson  <jas@extundo.com>
10856
10857         * m4/inet_ntop.m4: More tests.
10858
10859         * m4/gc-md2.m4, md2.m4: New file.
10860
10861 2005-10-28  Simon Josefsson  <jas@extundo.com>
10862
10863         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
10864         "restrict" keywords, as per POSIX.  Protect the function
10865         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
10866         Don't use K&R prototypes.  Check the sprintf return values.
10867         Re-define EAFNOSUPPORT if not present.  Indent.
10868
10869         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
10870         suggested by Bruno Haible <bruno@clisp.org>.
10871
10872         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
10873
10874         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
10875
10876         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
10877         libgcrypt).
10878
10879         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
10880
10881         * lib/md2.h, lib/md2.c: New files.
10882
10883 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
10884
10885         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
10886         errno alone.  Problem reported by Frederic Jolliton.
10887
10888 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
10889
10890         * modules/verify (License): Change from GPL to LGPL.  This is a
10891         tiny module and there are apparently near-equivalents that are
10892         under the BSD license.
10893
10894 2005-10-24  Simon Josefsson  <jas@extundo.com>
10895
10896         * modules/sha1: Relicense to LGPL.
10897
10898 2005-10-24  Simon Josefsson  <jas@extundo.com>
10899
10900         * lib/md4.h: Shrink buffer size, now that we changed the type.
10901
10902 2005-10-23  Simon Josefsson  <jas@extundo.com>
10903
10904         * gnulib-tool (func_import): Fix --tests-base.
10905
10906 2005-10-22  Simon Josefsson  <jas@extundo.com>
10907
10908         * modules/arcfour (Depends-on): Need stdint.
10909
10910 2005-10-22  Simon Josefsson  <jas@extundo.com>
10911
10912         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
10913         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
10914
10915 2005-10-22  Simon Josefsson  <jas@extundo.com>
10916
10917         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
10918         suggested by Bruno Haible <bruno@clisp.org>.
10919
10920 2005-10-22  Simon Josefsson  <jas@extundo.com>
10921
10922         * lib/crc.h: Include stddef.h, for size_t.
10923
10924 2005-10-22  Simon Josefsson  <jas@extundo.com>
10925
10926         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
10927         arcfour_context struct (simplify test vector testing in GNU
10928         Shishi).
10929
10930 2005-10-21  Simon Josefsson  <jas@extundo.com>
10931
10932         * modules/des, modules/des-tests: New files.
10933
10934         * modules/gc-des, modules/gc-des-tests: New files.
10935
10936         * tests/test-des.c, tests/test-gc-des.c: New file.
10937
10938 2005-10-21  Simon Josefsson  <jas@extundo.com>
10939
10940         * modules/arctwo, modules/arctwo-tests: New files.
10941
10942         * tests/test-arctwo.c: New file.
10943
10944         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
10945
10946         * tests/test-gc-arctwo.c: New file.
10947
10948 2005-10-21  Simon Josefsson  <jas@extundo.com>
10949
10950         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
10951         Bruno Haible <bruno@clisp.org>.
10952
10953         * m4/gc-des.m4: New file.
10954
10955 2005-10-21  Simon Josefsson  <jas@extundo.com>
10956
10957         * m4/arctwo.m4: New file.
10958
10959         * m4/gc-arctwo.m4: New file.
10960
10961 2005-10-21  Simon Josefsson  <jas@extundo.com>
10962
10963         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
10964         block.
10965
10966 2005-10-21  Simon Josefsson  <jas@extundo.com>
10967
10968         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
10969         <bruno@clisp.org>.
10970
10971         * lib/hmac-sha1.c (hmac_sha1): Likewise.
10972
10973         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
10974         Bruno Haible <bruno@clisp.org>.
10975
10976         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
10977         <bruno@clisp.org>.
10978
10979 2005-10-21  Simon Josefsson  <jas@extundo.com>
10980
10981         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
10982
10983 2005-10-21  Simon Josefsson  <jas@extundo.com>
10984
10985         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
10986
10987 2005-10-21  Simon Josefsson  <jas@extundo.com>
10988
10989         * lib/des.h, lib/des.c: New files.
10990
10991         * lib/gc-gnulib.c: Support DES.c
10992
10993 2005-10-21  Simon Josefsson  <jas@extundo.com>
10994
10995         * lib/arctwo.h, lib/arctwo.c: New files.
10996
10997         * lib/gc-gnulib.c: Support ARCTWO.
10998
10999 2005-10-21  Simon Josefsson  <jas@extundo.com>
11000
11001         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
11002         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
11003
11004 2005-10-21  Simon Josefsson  <jas@extundo.com>
11005
11006         * gnulib-tool (func_import, func_create_testdir): Define automake
11007         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
11008         Makefile.am snippet),
11009         suggested by Bruno Haible <bruno@clisp.org>.
11010
11011         * modules/gc (Makefile.am): Use it.
11012
11013 2005-10-21  Bruno Haible  <bruno@clisp.org>
11014
11015         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
11016         patch.
11017
11018 2005-10-19  Simon Josefsson  <jas@extundo.com>
11019
11020         * tests/test-gc-rijndael.c: New file.
11021
11022         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
11023
11024 2005-10-19  Simon Josefsson  <jas@extundo.com>
11025
11026         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
11027         interface too.
11028
11029 2005-10-19  Simon Josefsson  <jas@extundo.com>
11030
11031         * tests/test-gc-arcfour.c: New file.
11032
11033         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
11034
11035 2005-10-19  Simon Josefsson  <jas@extundo.com>
11036
11037         * modules/gc-md4, modules/gc-md4-tests: New file.
11038
11039         * tests/test-gc-md4.c: New file.
11040
11041 2005-10-19  Simon Josefsson  <jas@extundo.com>
11042
11043         * m4/gc-md4.m4: New file.
11044
11045 2005-10-19  Simon Josefsson  <jas@extundo.com>
11046
11047         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
11048         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
11049         <kasal@ucw.cz>.
11050
11051 2005-10-19  Simon Josefsson  <jas@extundo.com>
11052
11053         * m4/gc-arcfour.m4: New file.
11054
11055         * m4/gc-rijndael.m4: New file.
11056
11057 2005-10-19  Simon Josefsson  <jas@extundo.com>
11058
11059         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
11060
11061 2005-10-19  Simon Josefsson  <jas@extundo.com>
11062
11063         * lib/gc-gnulib.c: Support ARCFOUR.
11064
11065 2005-10-19  Simon Josefsson  <jas@extundo.com>
11066
11067         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
11068         support.
11069
11070         * lib/gc.h: Add ECB enum type.
11071
11072         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
11073
11074 2005-10-18  Simon Josefsson  <jas@extundo.com>
11075
11076         * tests/test-md5.c: New file.
11077
11078         * modules/md5-tests: New file.
11079
11080 2005-10-18  Simon Josefsson  <jas@extundo.com>
11081
11082         * tests/test-md4.c: New file.
11083
11084         * modules/md4, modules/md4-tests: New files.
11085
11086 2005-10-18  Simon Josefsson  <jas@extundo.com>
11087
11088         * m4/md4.m4: New file.
11089
11090 2005-10-18  Simon Josefsson  <jas@extundo.com>
11091
11092         * lib/md4.h, lib/md4.c: New files, based on md5.?.
11093
11094 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
11095
11096         * gnulib-tool (func_create_testdir): Omit the second check whether
11097         BUILT_SOURCES in nonempty.
11098
11099 2005-10-17  Simon Josefsson  <jas@extundo.com>
11100
11101         * tests/test-rijndael.c: New file.
11102
11103 2005-10-17  Simon Josefsson  <jas@extundo.com>
11104
11105         * modules/sha1: Depend on stdint instead of md5.
11106
11107         * modules/md5: Depend on stdint, remove uint32_t.
11108
11109 2005-10-17  Simon Josefsson  <jas@extundo.com>
11110
11111         * modules/gc-sha1-tests: New file.
11112
11113         * tests/test-gc-sha1.c: New file.
11114
11115 2005-10-17  Simon Josefsson  <jas@extundo.com>
11116
11117         * m4/md5.m4: Remove call to uint32_t.m4.
11118
11119 2005-10-17  Simon Josefsson  <jas@extundo.com>
11120
11121         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
11122
11123         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
11124         md5.h.
11125
11126         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
11127
11128         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
11129
11130 2005-10-17  Simon Josefsson  <jas@extundo.com>
11131
11132         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
11133
11134 2005-10-17  Simon Josefsson  <jas@extundo.com>
11135
11136         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
11137
11138 2005-10-17  Simon Josefsson  <jas@extundo.com>
11139
11140         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
11141
11142         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
11143
11144 2005-10-17  Bruno Haible  <bruno@clisp.org>
11145
11146         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
11147         that it can also be used in a test.
11148
11149 2005-10-16  Bruno Haible  <bruno@clisp.org>
11150
11151         * gnulib-tool (func_emit_tests_Makefile_am): Also define
11152         TESTS_ENVIRONMENT, so that individual tests can augment it.
11153
11154         * gnulib-tool (func_create_testdir): Use an intermediate target for
11155         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
11156         macros, like $(ALLOCA_H), which cannot be passed through the command
11157         line.
11158
11159 2005-10-15  Simon Josefsson  <jas@extundo.com>
11160
11161         * modules/rijndael-tests: New file.
11162
11163         * modules/rijndael: New file.
11164
11165 2005-10-15  Simon Josefsson  <jas@extundo.com>
11166
11167         * m4/rijndael.m4: New file.
11168
11169 2005-10-15  Simon Josefsson  <jas@extundo.com>
11170
11171         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
11172
11173         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
11174
11175 2005-10-14  Simon Josefsson  <jas@extundo.com>
11176
11177         * tests/test-arcfour.c: New file.
11178
11179         * modules/arcfour, modules/arcfour-tests: New files.
11180
11181 2005-10-14  Simon Josefsson  <jas@extundo.com>
11182
11183         * m4/arcfour.m4: New file.
11184
11185 2005-10-14  Simon Josefsson  <jas@extundo.com>
11186
11187         * lib/arcfour.h, lib/arcfour.c: New files.
11188
11189 2005-10-14  Roland McGrath  <roland@redhat.com>
11190
11191         Import from libc.  [BZ #1331]
11192         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
11193         macro argument.
11194         Reported by Matej Vela <vela@debian.org>.
11195
11196 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
11197
11198         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
11199         include <wchar.h>; no longer needed.
11200
11201 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
11202
11203         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
11204
11205 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
11206         and  Ulrich Drepper  <drepper@redhat.com>
11207
11208         Import from libc.
11209         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
11210         instead of inline stream orientation test and two separate
11211         function calls.  Pay no attention to USE_IN_LIBIO.
11212
11213 2005-10-13  Simon Josefsson  <jas@extundo.com>
11214
11215         * modules/gc-hmac-md5-tests: New file.
11216
11217         * tests/test-gc-hmac-sha1.c: New file.
11218
11219         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
11220
11221         * modules/gc-hmac-md5-tests: New file.
11222
11223         * tests/test-gc-md5.c: New file.
11224
11225         * modules/gc-md5-tests: New file.
11226
11227 2005-10-13  Simon Josefsson  <jas@extundo.com>
11228
11229         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
11230         Move memory allocation outside of loop.
11231
11232 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
11233
11234         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
11235         intermediate directory is in a read-only file system.  Problem
11236         reported by Eric Blake.
11237
11238 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
11239
11240         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
11241
11242 2005-10-12  Simon Josefsson  <jas@extundo.com>
11243
11244         * tests/test-hmac-sha1.c: New file.
11245
11246         * modules/hmac-sha1-tests: New file.
11247
11248         * modules/hmac-sha1: New file.
11249
11250 2005-10-12  Simon Josefsson  <jas@extundo.com>
11251
11252         * modules/gc-sha1: New file.
11253
11254 2005-10-12  Simon Josefsson  <jas@extundo.com>
11255
11256         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
11257
11258         * tests/test-gc-pbkdf2-sha1.c: New file.
11259
11260 2005-10-12  Simon Josefsson  <jas@extundo.com>
11261
11262         * modules/gc-md5, modules/gc-hmac-md5: New files.
11263
11264         * modules/gc (Files): Remove md5, memxor and hmac files.
11265
11266 2005-10-12  Simon Josefsson  <jas@extundo.com>
11267
11268         * m4/gc-pbkdf2-sha1.m4: New file.
11269
11270         * m4/gc-hmac-sha1.m4: New file.
11271
11272         * m4/gc-sha1: New file.
11273
11274         * m4/hmac-sha1.m4: New file.
11275
11276 2005-10-12  Simon Josefsson  <jas@extundo.com>
11277
11278         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
11279
11280         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
11281
11282 2005-10-12  Simon Josefsson  <jas@extundo.com>
11283
11284         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
11285         suggested by Bruno Haible <bruno@clisp.org>.
11286
11287 2005-10-12  Simon Josefsson  <jas@extundo.com>
11288
11289         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
11290
11291 2005-10-12  Simon Josefsson  <jas@extundo.com>
11292
11293         * lib/gc-pbkdf2-sha1.c: New file.
11294
11295         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
11296
11297 2005-10-12  Simon Josefsson  <jas@extundo.com>
11298
11299         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
11300
11301         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
11302
11303 2005-10-12  Simon Josefsson  <jas@extundo.com>
11304
11305         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
11306         GC_USE_HMAC_MD5, respectively.
11307
11308         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
11309         (gc_md5): Fix typo.
11310
11311         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
11312
11313         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
11314
11315         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
11316
11317 2005-10-12  Bruno Haible  <bruno@clisp.org>
11318
11319         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
11320         Reported by Stepan Kasal <kasal@ucw.cz>.
11321
11322 2005-10-11  Simon Josefsson  <jas@extundo.com>
11323
11324         * tests/test-crc.c: New file.
11325
11326         * modules/crc, modules/crc-tests: New files.
11327
11328 2005-10-11  Simon Josefsson  <jas@extundo.com>
11329
11330         * m4/crc.m4: New file.
11331
11332 2005-10-11  Simon Josefsson  <jas@extundo.com>
11333
11334         * lib/gc.h: Add gc_hash and gc_hash_buffer.
11335
11336         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
11337
11338         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
11339
11340 2005-10-11  Simon Josefsson  <jas@extundo.com>
11341
11342         * lib/crc.h, lib/crc.c: New files.
11343
11344         * lib/gc.h (gc_hash_buffer): Add doc.
11345
11346 2005-10-11  Bruno Haible  <bruno@clisp.org>
11347
11348         * modules/c-strcasestr: New file.
11349         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
11350
11351 2005-10-11  Bruno Haible  <bruno@clisp.org>
11352
11353         * modules/c-strcase: New file.
11354         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
11355
11356 2005-10-11  Bruno Haible  <bruno@clisp.org>
11357
11358         * lib/strcasecmp.c: Include limits.h.
11359         (strcasecmp): Avoid integer overflow on exotic platforms.
11360         * lib/strncasecmp.c: Include limits.h.
11361         (strncasecmp): Avoid integer overflow on exotic platforms.
11362         Reported by Paul Eggert.
11363
11364 2005-10-11  Bruno Haible  <bruno@clisp.org>
11365
11366         * lib/c-strcasestr.h: New file, from GNU gettext.
11367         * lib/c-strcasestr.c: New file, from GNU gettext.
11368
11369 2005-10-11  Bruno Haible  <bruno@clisp.org>
11370
11371         * lib/c-strcase.h: New file, from GNU gettext.
11372         * lib/c-strcasecmp.c: New file, from GNU gettext.
11373         * lib/c-strncasecmp.c: New file, from GNU gettext.
11374
11375 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
11376
11377         * modules/mempcpy (License): GPL -> LGPL.
11378         * modules/strchrnul (License): Likewise.
11379         * modules/sysexits (License): Likewise.
11380
11381 2005-10-08  Simon Josefsson  <jas@extundo.com>
11382
11383         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
11384
11385 2005-10-07  Simon Josefsson  <jas@extundo.com>
11386
11387         * m4/memxor.m4: Remove gl_C_RESTRICT call.
11388
11389 2005-10-06  Simon Josefsson  <jas@extundo.com>
11390
11391         * tests/test-hmac-md5.c: New file.
11392
11393         * modules/hmac-md5-tests: New file.
11394
11395         * modules/hmac-md5: New file.
11396
11397 2005-10-06  Simon Josefsson  <jas@extundo.com>
11398
11399         * m4/hmac-md5.m4: New file.
11400
11401         * m4/memxor.m4: Require gl_C_RESTRICT.
11402
11403 2005-10-06  Simon Josefsson  <jas@extundo.com>
11404
11405         * lib/memxor.c (memxor): Avoid casts and warnings.
11406
11407 2005-10-06  Simon Josefsson  <jas@extundo.com>
11408
11409         * lib/hmac-md5.c: New file.
11410
11411         * lib/hmac.h: New file.
11412
11413 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
11414
11415         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
11416         promotes to int, not unsigned int, to catch the AIX 5.3
11417         compiler bug.
11418
11419 2005-10-05  Simon Josefsson  <jas@extundo.com>
11420
11421         * modules/memxor: New file.
11422
11423         * modules/iconv (Files): Move config.rpath to havelib, it is used
11424         there.
11425
11426         * modules/havelib (Files): Add config.rpath.
11427
11428 2005-10-05  Simon Josefsson  <jas@extundo.com>
11429
11430         * m4/memxor.m4: New file.
11431
11432 2005-10-05  Simon Josefsson  <jas@extundo.com>
11433
11434         * lib/memxor.c (memxor): Fix compiler error.
11435
11436         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
11437         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
11438
11439         * lib/memxor.h, lib/memxor.c: New files.
11440
11441         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
11442         we assume all systems have it, suggested by Jim Meyering
11443         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
11444         any systems lack sys/socket.h; mingw32 is known to lack it, but we
11445         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
11446         same reasons.
11447
11448 2005-10-05  Simon Josefsson  <jas@extundo.com>
11449
11450         * config/srclist.txt: Add glibc bug 1423 for md5.h.
11451
11452 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
11453
11454         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
11455         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
11456         needed, since the source code now assumes these .h files.
11457
11458 2005-10-05  Derek Price  <derek@ximbiot.com>
11459
11460         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
11461
11462 2005-10-05  Bruno Haible  <bruno@clisp.org>
11463
11464         * modules/stdint (License): Change to LGPL.
11465
11466 2005-10-04  Simon Josefsson  <jas@extundo.com>
11467
11468         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
11469         D. Baushke" <mdb@gnu.org>.
11470
11471 2005-10-04  Bruno Haible  <bruno@clisp.org>
11472
11473         * lib/verify.h (verify_true): Provide alternative definition for C++.
11474
11475 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
11476
11477         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
11478         (SSIZE_MAX): New macro, if not already defined.
11479         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
11480         than 2 GiB.
11481
11482 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11483
11484         Sync from coreutils.
11485         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
11486         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
11487         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
11488         ULLONG_MAX doesn't work with 2.7.2.1.
11489
11490 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11491
11492         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
11493         From Ben Pfaff.
11494
11495         * modules/exclude (Depends-on): Depend on verify.
11496         * modules/strtoimax (Depends-on): Likewise.
11497         * modules/utimecmp (Depends-on): Likewise.
11498
11499 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
11500
11501         * lib/exclude.c: Include verify.h.
11502         (verify): Remove.  All callers changed to use verify.h's version.
11503         * lib/strtoimax.c: Likewise.
11504         * lib/utimecmp.c: Likewis.e
11505
11506         Sync from coreutils.
11507         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
11508         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
11509         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
11510         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
11511         bother returning ENOSYS if settimeofday or stime fails; just let
11512         them return whatever errno they want to return.
11513         * lib/utimens.c: Include unistd.h, for dup2.
11514         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
11515         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
11516
11517 2005-10-02  Jim Meyering  <jim@meyering.net>
11518
11519         Sync from coreutils.
11520         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
11521         from glibc-2.2.5 that fails for read-only files.
11522
11523 2005-10-02  Jim Meyering  <jim@meyering.net>
11524
11525         Sync from coreutils.
11526         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
11527         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
11528         `#if HAVE_CONFIG_H'.
11529         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
11530         Remove AT_FDCWD test.
11531         Do not consume the fd unless successful.
11532         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
11533         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
11534         block, so that we don't even try to compile it if settimeofday is
11535         available.  This works around a compilation failure on OSF1 V5.1,
11536         due to stime requiring a `long int*' while tv_sec is `int'.
11537
11538 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
11539
11540         Sync from coreutils.
11541         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
11542         against `yes', rather than just testing for nonempty.
11543
11544 2005-10-01  Simon Josefsson  <jas@extundo.com>
11545
11546         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
11547         and Darwin.
11548
11549         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
11550         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
11551         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
11552         freeaddrinfo and gai_strerror are declared by the POSIX headers.
11553         Check if struct addrinfo is declared.
11554
11555 2005-10-01  Simon Josefsson  <jas@extundo.com>
11556
11557         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
11558         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
11559         AI_* and EAI_* definitions.  Protect function declarations.
11560
11561 2005-10-01  Jim Meyering  <jim@meyering.net>
11562
11563         Sync from coreutils.
11564
11565         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
11566         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
11567         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
11568         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11569         in the inet and nsl libraries.  Required on Solaris 5.7.
11570
11571 2005-10-01  Jim Meyering  <jim@meyering.net>
11572
11573         Sync from coreutils.
11574         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
11575         in the inet and nsl libraries.  Required on Solaris 5.7.
11576
11577 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
11578
11579         * lib/getdelim.c (getdelim): Remove unused variables.
11580
11581 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
11582
11583         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
11584         so that the code works even with ancient cpp.  Portability problem
11585         with GCC 2.7.2.1 reported by Thomas M.Ott.
11586
11587 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
11588
11589         * modules/regex (Depends-on): Add strcase.
11590
11591         * modules/gethostname (Licence): Change from GPL to LGPL, since
11592         gethostname.c is a trivial implementation of a standard library
11593         function.
11594         * modules/poll (License): Change from GPL to LGPL, since it's
11595         derived from LGPL code.
11596
11597 2005-09-27  Jim Meyering  <jim@meyering.net>
11598
11599         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
11600         HAVE_CONFIG_H.
11601
11602         * lib/intprops.h (signed_type_or_expr__): Define.
11603         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
11604         for unsigned types.
11605
11606 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
11607
11608         * lib/verify.h (verify_expr): Remove, replacing with:
11609         (verify_true): New macro that returns true instead of void.
11610         (verify_type__): Remove.
11611         (verify): Use verify_true rather than verify_type__.
11612
11613 2005-09-26  Bruno Haible  <bruno@clisp.org>
11614
11615         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
11616         is necessary.
11617         (lib_SOURCES): Remove mbchar.c.
11618         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
11619         (Files): Add m4/mbrtowc.m4.
11620         * modules/mbiter: Likewise.
11621         * modules/mbuiter: Likewise.
11622
11623 2005-09-26  Bruno Haible  <bruno@clisp.org>
11624
11625         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
11626         compile mbchar.c if they are not both present.
11627         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
11628         * m4/mbiter.m4 (gl_MBITER): Likewise.
11629         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
11630         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
11631         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
11632
11633 2005-09-25  Jim Meyering  <jim@meyering.net>
11634
11635         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
11636         also uses socklen_t.
11637
11638 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
11639
11640         * lib/utimens.c (ENOSYS): Define if not already defined.
11641         (futimens): Support having a null PATH if the file descriptor
11642         is nonnegative.
11643
11644         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
11645         Remove.
11646         (__attribute): Define to empty unless GCC 3.1 or later.
11647         This works around a core dump on OpenBSD 3.4, which has GCC
11648         2.95.3, which dumps core when given __attribute__(()).  It also
11649         simplifies other tests, since we really don't want to bother with
11650         worrying about which ancient version of GCC supported what.
11651         Original problem reported by Yoann Vandoorselaere, with part of
11652         the fix suggested by Derek Price.
11653
11654 2005-09-24  Jim Meyering  <jim@meyering.net>
11655
11656         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
11657         so we can once again use a positive bitfield width of 1 -- now we
11658         don't have to explain why we were using a bitfield width of 2.
11659
11660 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11661
11662         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
11663         and similarly for the other external symbols.  Problem reported
11664         by James Gallager.
11665
11666         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
11667         bug reported by Jim Meyering.
11668
11669         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
11670         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
11671         not needed, since socklen is a prerequisite module.
11672
11673 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
11674
11675         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
11676         Problem reported by Eric Blake.
11677         (getaddrinfo): Initialize se so that it's not garbage.
11678         Redo internal storage allocation so that it doesn't make unportable
11679         assumptions about alignment.
11680         Fix a memory leak.
11681
11682         * lib/utimens.c (futimens): Use futimesat if available.
11683         Prefer it to futimes since it doesn't have the futimes bug.
11684
11685         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
11686         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
11687         Instead, declare a function that returns a pointer to an array,
11688         and use verify_type__ to declare the size of the array.
11689         Problem and germ of a solution reported by Bruno Haible.
11690         (verify_type__): Use 2, not 1, for bitfield size, to avoid
11691         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
11692
11693 2005-09-23  Jim Meyering  <jim@meyering.net>
11694
11695         Sync from coreutils.
11696         Correct build failure (socklen_t not defined) on at least
11697         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
11698         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
11699
11700 2005-09-23  Jim Meyering  <jim@meyering.net>
11701
11702         * modules/getaddrinfo (Depends-on): Add socklen.
11703
11704 2005-09-23  Bruno Haible  <bruno@clisp.org>
11705
11706         * tests/test-verify.c: New file.
11707
11708 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11709
11710         Sync from coreutils.
11711
11712         * modules/argmatch (Depends-on): Add verify.
11713         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
11714         unistd-safer.
11715         * modules/save-cwd (Depends-on): Likewise.
11716
11717         * modules/openat (Files): Add lib/openat-die.c.
11718         (Depends-on): Remove error, exitfail.
11719         Add dirname.
11720
11721         * modules/verify: New file.
11722         * MODULES.html.sh (Diagnostics <assert.h>): New section,
11723         with "verify" module.
11724
11725 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11726
11727         Sync from coreutils.
11728
11729         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
11730         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
11731         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
11732         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
11733         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
11734         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
11735         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
11736         Don't bother checking for string.h, stdlib.h, unistd.h.
11737         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
11738         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
11739         module's job.
11740         * m4/jm-macros.m4 (gl_MACROS): Likewise.
11741         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
11742
11743         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
11744         (gl_GETDATE): Use it.
11745
11746         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
11747
11748 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11749
11750         Sync from coreutils.
11751
11752         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
11753         stat-time.h.
11754         * lib/argmatch.h: Include verify.h
11755         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
11756         (ARGMATCH_ASSERT): Remove; unused.
11757         * lib/canonicalize.c: Assume STDC_HEADERS.
11758         * lib/exclude.c: Include "strcase.h".
11759         * lib/regex_internal.h [!defined _LIBC]: Likewise.
11760         * lib/getusershell.c: Include stdio--.h rather than stdio.h
11761         and stdio-safer.h.
11762         (getusershell): Call fopen, not fopen_safer.
11763         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
11764         Do not include unistd-safer.h.
11765         (save_cwd): Don't call fd_safer; no longer needed
11766         now that we include fcntl--.h.
11767
11768         * lib/getdate.y (relative_time): New type.
11769         (RELATIVE_TIME_0): New constant.
11770         (parser_control): Use relative_time instead of doing it ourselves.
11771         (%union): Add new relative_time rel member.
11772         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
11773         Now typeless.
11774         (relunit, relunit_snumber): Now of type rel.
11775         (zone, rel, relunit, get_date): Adjust to above changes.
11776
11777         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
11778         Do not include unistd-safer.h.
11779         (getloadavg): Don't call fd_safer; no longer needed
11780         now that we include fcntl--.h.
11781
11782         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
11783         (make_dir_parents): Treat ENOSYS like EEXIST.
11784
11785         Improve quality of diagnostics on restore_cwd failure.
11786         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
11787         (make_dir_parents): Last arg is now int * (for errno), not bool *.
11788         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
11789         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
11790         each time through the loop.  Do not diagnose restore_cwd failure;
11791         that is the caller's job (and perhaps the caller does not care).
11792
11793         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
11794         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
11795         If the file already exists but is not a directory, don't bother
11796         to try to make its parents.
11797         Close potential file descriptor leak if we can't chdir("/") (!).
11798         Don't always return true if chdir($PWD) fails; return true only
11799         if the requested action was done successfully (except for the
11800         chdir($PWD)).
11801         Don't log final directory unless we actually made it.
11802         Refactor to avoid duplicate code to fix up permissions.
11803         Don't attempt to fix up parent permissions if chdir($PWD) fails.
11804
11805         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
11806         to make it a bit faster and (I hope) clearer.
11807         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
11808         Fix bug in formats like %2N.
11809
11810         * lib/verify.h: New file.
11811
11812 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
11813
11814         Sync from coreutils.
11815         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
11816
11817 2005-09-22  Jim Meyering  <jim@meyering.net>
11818
11819         Sync from coreutils.
11820
11821         * m4/lstat.m4 (gl_FUNC_LSTAT):
11822         Use AC_LIBSOURCES to require lstat.c and lstat.h.
11823         Remove obsolete comment.
11824         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
11825         * m4/xstrtod.m4: Likewise.
11826
11827         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
11828
11829 2005-09-22  Jim Meyering  <jim@meyering.net>
11830
11831         Sync from coreutils.
11832
11833         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
11834
11835         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
11836         the .tm_year member, since otherwise gcc-4.0 would now warn about
11837         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
11838
11839         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
11840         order to avoid an unsuppressible warning from gcc on 64-bit systems.
11841
11842         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
11843         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
11844         when run in a time zone for which daylight savings time is in effect
11845         for the starting date.
11846
11847         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
11848         stop us from restricting permissions of just-created absolute-named
11849         directories.
11850         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
11851         to restore initial working directory.
11852         * lib/mkdir-p.c (make_dir_parents): New parameter:
11853         different_working_dir, to tell caller if/when we change the working
11854         directory and are unable to return to the initial one.
11855         * lib/mkdir-p.h (make_dir_parents): Update prototype.
11856         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
11857         `return false'.  This fixes a bug introduced on 2004-07-30.
11858
11859         * lib/openat.c (fdopendir): Be sure to close the supplied
11860         file descriptor before returning.  This makes our replacement
11861         implementation a little closer to Solaris's, where fdopendir
11862         ties the file descriptor to the returned DIR* pointer.
11863         * lib/openat.c (unlinkat): New function.
11864         * lib/openat.h (unlinkat): Add prototype.
11865         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
11866         (openat_restore_fail): Rename from openat_restore_die.
11867         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
11868
11869         Provide an alternative to exiting immediately upon save_cwd or
11870         restore_cwd failure.  Now, an application can arrange e.g.,
11871         to perform a longjump in that case.
11872         * lib/openat.c: Include dirname.h.
11873         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
11874         (rpl_openat, fdopendir, fstatat): Call openat_save_die
11875         and openat_restore_die rather than calling error directly.
11876         Don't include "error.h" or "exitfail.h"; they're no longer needed.
11877
11878         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
11879         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
11880         define.
11881
11882         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
11883         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
11884                             int utc, int nanoseconds);
11885         Background:
11886         date should not have to allocate a megabyte of virtual memory to
11887         handle a format argument like +%1048575T.  When implemented with
11888         strftime, it must allocate such a buffer, use strftime to fill it
11889         in, print it, then free it.
11890         With fprintftime, it simply prints everything and exits.
11891         With no need for memory allocation, that's one fewer way to fail.
11892         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
11893         optional field width, not before, so we accept %9:z, not %:9z.
11894         (my_strftime): Be sure to use L_('x') for literals.
11895
11896         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
11897         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
11898         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
11899         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
11900         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
11901         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
11902         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
11903         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
11904         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
11905         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
11906         * lib/xgethostname.c, lib/xreadlink.c:
11907         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
11908
11909         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
11910         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
11911         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
11912         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
11913         and don't include <sys/file.h>).
11914
11915 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
11916
11917         Sync from coreutils.
11918
11919         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
11920         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
11921         [!LDAV_DONE]: Avoid unused variable warning.
11922
11923 2005-09-21  Bruno Haible  <bruno@clisp.org>
11924
11925         * lib/unicodeio.h (unicode_to_mb): New declaration.
11926
11927 2005-09-20  Derek Price  <derek@ximbiot.com>
11928
11929         * lib/getaddrinfo.c: Don't include <netdb.h> included from
11930         getaddrinfo.h.
11931
11932 2005-09-20  Bruno Haible  <bruno@clisp.org>
11933
11934         * gnulib-tool: Remove trailing slashes from the values specified for
11935         --source-base, --m4-base, --tests-base, --aux-dir.
11936         Suggested by Simon Josefsson <jas@extundo.com>.
11937
11938 2005-09-20  Bruno Haible  <bruno@clisp.org>
11939
11940         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
11941         func_modules_to_filelist, func_import, func_create_testdir): Make all
11942         sorting results locale-independent, so that gnulib-cache.m4 doesn't
11943         change when gnulib-tool is invoked in a different locale.
11944
11945 2005-09-19  Simon Josefsson  <jas@extundo.com>
11946
11947         * m4/socklen.m4: Fix typo.
11948
11949 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11950
11951         Use a consistent style for including <config.h>.
11952         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
11953         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
11954         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
11955         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
11956         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
11957         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
11958         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
11959         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
11960         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
11961         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
11962         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
11963         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
11964         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
11965         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
11966         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
11967         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
11968         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
11969         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
11970         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
11971         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
11972         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
11973         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
11974         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
11975         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
11976         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
11977         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
11978         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
11979         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
11980         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
11981         lib/xstrtoumax.c, lib/yesno.c:
11982         Standardize inclusion of config.h.
11983         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
11984         lib/inttostr.h:  Removed inclusion of config.h from header files.
11985         * lib/inttostr.c:  Adjusted in-tree users.
11986         * lib/timespec.h: Remove superfluous warning to include config.h.
11987         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
11988         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
11989         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
11990         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
11991         config.h with HAVE_CONFIG_H.
11992
11993 2005-09-19  Jim Meyering  <jim@meyering.net>
11994
11995         * modules/pathmax (License): Change to LGPL.
11996
11997 2005-09-19  Derek Price  <derek@ximbiot.com>
11998
11999         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
12000
12001 2005-09-19  Bruno Haible  <bruno@clisp.org>
12002
12003         * gnulib-tool (import): Provide default for --tests-base.
12004
12005 2005-09-19  Bruno Haible  <bruno@clisp.org>
12006
12007         * doc/quote.texi: New file, extracted from gnulib.texi.
12008         * doc/ctime.texi: New file, extracted from gnulib.texi.
12009         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
12010         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
12011         * doc/gnulib.texi: Include them.
12012
12013 2005-09-18  Bruno Haible  <bruno@clisp.org>
12014
12015         Portability fix.
12016         * gnulib-tool (func_readlink): New function.
12017         (func_ln_if_changed): Use it.
12018
12019 2005-09-18  Bruno Haible  <bruno@clisp.org>
12020
12021         * gnulib-tool: Support --with-tests also with --import.
12022         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
12023         (func_import): Use variables $testsbase and $inctests. Emit a
12024         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
12025         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
12026         SUBDIRS += $testsdir.
12027         (func_create_testdir): Update.
12028
12029 2005-09-18  Bruno Haible  <bruno@clisp.org>
12030
12031         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
12032         instead of $dry_run.
12033         (func_cp_if_changed, func_mv_if_changed): Remove functions.
12034         (func_ln_if_changed): Don't handle dry-run here.
12035         (func_import): In dry-run mode, detect more precisely which actions
12036         would be performed, and don't use "...ing" verbs.
12037
12038 2005-09-18  Bruno Haible  <bruno@clisp.org>
12039
12040         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
12041         (func_import): Use join on two temporary files instead of three nested
12042         loops, in order to determine which files are new or old.
12043
12044 2005-09-18  Bruno Haible  <bruno@clisp.org>
12045
12046         * gnulib-tool (func_import): Comment out code that spits out the
12047         new files with --dry-run.
12048
12049 2005-09-18  Bruno Haible  <bruno@clisp.org>
12050
12051         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
12052
12053 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
12054
12055         * lib/stat-time.h: New file.
12056         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
12057         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
12058         in a different way.
12059         (timespec_cmp): New function.
12060         * lib/utimecmp.c: Include stat-time.h.
12061         (SYSCALL_RESOLUTION): Depend on whether various struct stat
12062         members exist, not on the obsolescent ST_MTIM_NSEC.
12063         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
12064
12065 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
12066
12067         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
12068
12069 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
12070
12071         * MODULES.html.sh (File system functions): Add stat-time.
12072         * modules/stat-time: New file.
12073         * modules/timespec (Files): Remove m4/st_mtim.m4; this
12074         is now done in a different way, by the stat-time module.
12075         * modules/utimecmp (Depends-on): Add stat-time.
12076
12077 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
12078
12079         * m4/st_mtim.m4: Remove.  Superseded by...
12080         * m4/stat-time.m4: New file.
12081         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
12082         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
12083
12084 2005-09-15  Derek Price  <derek@ximbiot.com>
12085
12086         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
12087
12088 2005-09-15  Derek Price  <derek@ximbiot.com>
12089
12090         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
12091         * lib/regex_internal.c: Ditto, using this...
12092         (__GNUC_PREREQ): ...new macro.
12093         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
12094         using...
12095         (__GNUC_PREREQ): ...this new macro.
12096
12097         * lib/strstr.h: Include string.h. Define strstr as a macro here.
12098
12099 2005-09-15  Derek Price  <derek@ximbiot.com>
12100             Paul Eggert  <eggert@cs.ucla.edu>
12101
12102         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
12103         changes, consolidating in...
12104         * lib/regex_internal.h: ...this file.
12105
12106 2005-09-13  Jim Meyering  <jim@meyering.net>
12107
12108         * lib/canon-host.c: Filter through gnu indent and reword comments
12109         slightly.
12110         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
12111
12112 2005-09-13  Derek Price  <derek@ximbiot.com>
12113
12114         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
12115         failure.
12116         Reported by Jim Meyering  <jim@meyering.net>.
12117
12118 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
12119
12120         * lib/base64.c: Typo.
12121         (base64_encode): Put b64str in initialized data section.
12122
12123 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
12124
12125         Merge glibc and coreutils changes into gnulib, plus a few
12126         extra fixes.
12127         * lib/md5.c: Use #error rather than a string.
12128         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
12129         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
12130         (__attribute__): Define to empty for non recent-GCC.
12131         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
12132         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
12133         Renamed from their non-__ counterparts, with new macros replacing
12134         them if not _LIBC.  Add __THROW attribute.
12135         (rol): Remove.
12136         (struct md5_ctx): Align buffer if using GCC.
12137         * lib/sha1.h (struct sha1_ctx): Likewise.
12138         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
12139         The old name was backwards.
12140         (NOTSWAP): Remove; not used.
12141         (rol): New macro, moved here from md5.h.
12142         (sha1_process_block): Remove a FIXME that doesn't make sense.
12143
12144 2005-09-12  Derek Price  <derek@ximbiot.com>
12145
12146         Return usable errors from canon-host.
12147         * lib/canon-host.h: New file.
12148         * lib/canon-host.c (canon_host): Wrap...
12149         (canon_host_r): ...this new function, which now relies exclusively on
12150         getaddrinfo.
12151         (ch_strerror): New function.
12152         (last_cherror): New global.
12153         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
12154         interface.
12155         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
12156         void *.
12157         (freeaddrinfo): Free ai->ai_canonname when set.
12158
12159 2005-09-12  Derek Price  <derek@ximbiot.com>
12160
12161         Make canon-host require getaddrinfo.
12162         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
12163         AC_LIBSOURCE canon-host.h.  Call...
12164         (gl_PREREQ_CANON_HOST): ...this new function, which requires
12165         gl_GETADDRINFO.
12166         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
12167
12168 2005-09-12  Derek Price  <derek@ximbiot.com>
12169
12170         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
12171         LGPL.
12172         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
12173
12174 2005-09-12  Derek Price  <derek@ximbiot.com>
12175
12176         * lib/gai_strerror.c: Include config.h when available.  Include
12177         getaddrinfo.h before other headers to test interface.
12178         Reported by Larry Jones <lawrence.jones@ugs.com>.
12179
12180 2005-09-12  Derek Price  <derek@ximbiot.com>
12181             Paul Eggert  <eggert@cs.ucla.edu>
12182
12183         * modules/glob (Files): Add glob-libc.h.
12184
12185 2005-09-12  Derek Price  <derek@ximbiot.com>
12186             Paul Eggert  <eggert@cs.ucla.edu>
12187
12188         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
12189         glob_.h, glob-libc.h.
12190         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
12191
12192 2005-09-12  Derek Price  <derek@ximbiot.com>
12193             Paul Eggert  <eggert@cs.ucla.edu>
12194
12195         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
12196         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
12197         protecting things that should be done only in gnulib contexts.
12198         * lib/glob_.h: New file, containing only the glob things needed for
12199         gnulib.
12200         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
12201         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
12202         (glob, globfree, glob_pattern_p): Now defined simply in terms of
12203         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
12204         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
12205         and to respect the namespace rules better.
12206
12207 2005-09-08  Simon Josefsson  <jas@extundo.com>
12208
12209         * modules/socklen: New file.
12210
12211 2005-09-08  Simon Josefsson  <jas@extundo.com>
12212
12213         * m4/socklen.m4: New file.
12214
12215 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
12216
12217         * modules/utimens (Files): Add m4/utimbuf.m4, since
12218         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
12219         Reported by Sergey Poznyakoff.
12220
12221 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
12222
12223         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
12224         definitions, since that's the preferred style in glibc.
12225         Fix a minor spacing issue, and update copyright notice to match
12226         glibc's.
12227
12228 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
12229
12230         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
12231
12232 2005-09-06  Simon Josefsson  <jas@extundo.com>
12233
12234         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
12235         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
12236
12237 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
12238
12239         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
12240         warning.
12241
12242 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
12243
12244         * config/srclist.txt: Add glibc bug 1302.
12245
12246 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
12247
12248         Change bitset word type from unsigned int to unsigned long int,
12249         as this has better performance on typical 64-bit hosts.
12250         Port bitset code to hosts with unusual word sizes.
12251         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
12252         (build_collating_symbol):
12253         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
12254         argument is a bitset.  This is merely a style issue, but it makes
12255         it clearer that an entire array is expected.
12256         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
12257         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
12258         Port to the case where bitset_word is not the same as unsigned int.
12259         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
12260         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
12261         Likewise.
12262         * lib/regexec.c (check_dst_limits_calc_pos_1,
12263         check_subexp_matching_top):
12264         (build_trtable, group_nodes_into_DFAstates):
12265         Likewise.
12266         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
12267         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
12268         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
12269         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
12270         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
12271         * lib/regcomp.c (optimize_subexps, lower_subexp):
12272         Work even if bitset_word has holes in its bitwise representation.
12273         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
12274         * lib/regexec.c (check_dst_limits_calc_pos_1,
12275         check_subexp_matching_top):
12276         Likewise.
12277         * lib/regex_internal.c (re_string_reconstruct):
12278         Don't assume UCHAR_MAX == 255.
12279         * lib/regex_internal.h (bitset_set_all): Likewise.
12280         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
12281         All uses changed.
12282         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
12283         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
12284         All uses changed.
12285         (BITSET_WORD_MAX): New macro.
12286         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
12287         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
12288         (bitset_empty, bitset_copy):
12289         Prefer sizeof (bitset) to multiplying it out ourselves.
12290         (bitset_not_merge): Remove; unused.
12291         (bitset_contain): Return bool, not unsigned int with one bit on.
12292         All callers changed.
12293         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
12294         alignment than re_node_set; do this by defining a new internal
12295         type struct dests_alloc and using it to allocate memory.
12296
12297 2005-09-05  Bruno Haible  <bruno@clisp.org>
12298
12299         * gnulib-tool (func_import): Fix comparison in handling of symbolic
12300         links.
12301
12302 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
12303
12304         * modules/size_max (Makefile.am): Add size_max.h
12305
12306 2005-09-04  Derek Price  <derek@ximbiot.com>
12307
12308         * gnulib-tool (func_import): Fix reversed $symbolic logic.
12309
12310 2005-09-03  Simon Josefsson  <jas@extundo.com>
12311
12312         * gnulib-tool: Fix typo.
12313
12314 2005-09-03  Simon Josefsson  <jas@extundo.com>
12315
12316         * config/srclist.txt: Add glibc bug 1293.
12317
12318 2005-09-03  Derek Price  <derek@ximbiot.com>
12319
12320         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
12321         From Larry Jones <lawrence.jones@ugs.com>.
12322
12323 2005-09-02  Simon Josefsson  <jas@extundo.com>
12324
12325         * modules/socklen: New file.
12326
12327 2005-09-02  Simon Josefsson  <jas@extundo.com>
12328
12329         * modules/havelib: New module.
12330
12331         * modules/gettext, modules/iconv, modules/lock, modules/readline:
12332         Use havelib.
12333
12334 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
12335
12336         Check for arithmetic overflow when calculating sizes, to prevent
12337         some buffer-overflow issues.  These patches are conservative, in the
12338         sense that when I couldn't determine whether an overflow was possible,
12339         I inserted a run-time check.
12340         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
12341         macros.
12342         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
12343         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
12344         (re_xnrealloc, re_x2nrealloc): New inline functions.
12345         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
12346         parse_bracket_exp):
12347         (build_equiv_class, build_charclass): Check for arithmetic overflow
12348         in size expression calculations.
12349         * lib/regex_internal.c (re_string_realloc_buffers):
12350         (build_wcs_upper_buffer, re_node_set_add_intersect):
12351         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
12352         (re_dfa_add_node, register_state): Likewise.
12353         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
12354         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
12355         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
12356         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
12357
12358 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
12359
12360         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
12361         m4/ulonglong.m4.  Problem reported by Martin Lambers.
12362
12363 2005-09-02  Bruno Haible  <bruno@clisp.org>
12364
12365         Support for lib vs. lib64 distinction on biarch platforms.
12366         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
12367         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
12368         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
12369
12370 2005-09-02  Bruno Haible  <bruno@clisp.org>
12371
12372         * gnulib-tool (import): In the other first-use case, provide defaults
12373         as well.
12374
12375 2005-09-02  Bruno Haible  <bruno@clisp.org>
12376
12377         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
12378         patches not yet found in the latest gettext release.
12379
12380 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
12381
12382         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
12383         to avoid a collision with bits/local_lim.h in glibc.
12384         All uses changed.  Problem reported by Dmitry V. Levin in
12385         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
12386
12387         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
12388         bugs in int versus size_t comparisons.
12389         (re_string_context_at): Fix bug where the code assumed that
12390         Idx is signed.
12391
12392         Use bool where appropriate.
12393         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
12394         All callers changed.
12395         (calc_eclosure_iter): Likewise, for ROOT arg.
12396         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
12397         (build_charclass_op): Likewise, for NON_MATCH arg.
12398         * lib/regex_internal.c (re_string_allocate, re_string_construct):
12399         (re_string_construct_common): Likewise, for ICASE arg.
12400         * lib/regexec.c (re_search_2_stub, re_search_stub):
12401         Likewise, for RET_LEN arg.
12402         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
12403         (set_regs): Likewise, for FL_BACKTRACK arg.
12404         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
12405         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
12406         (calc_eclosure_iter, parse_bracket_exp):
12407         Use bool for internal variables that are booleans.
12408         * lib/regexec.c (re_search_internal, check_matching,
12409         proceed_next_node):
12410         (set_regs, build_sifted_states, sift_states_bkref):
12411         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
12412         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
12413         (find_collation_sequence_value):
12414         Likewise.
12415         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
12416         (re_node_set_compare):
12417         Return bool, not int. All callers changed.
12418         * lib/regexec.c (check_halt_node_context, check_dst_limits):
12419         (build_trtable, check_node_accept): Likewise.
12420         * lib/regex_internal.h: Include stdbool.h.
12421
12422         Fix bugs uncovered when converting to bool.
12423         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
12424         failure instead of charging ahead blindly.
12425         * lib/regex_internal.c (register_state): Likewise.
12426         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
12427         for freeing internal storage.
12428         (group_nodes_into_DFA_states): Use unsigned int, not int, for
12429         bitset pieces used as boolean, to avoid undefined behavior
12430         on hosts that do int overflow checking.
12431
12432 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
12433
12434         * config/srclist.txt: Add glibc bugs 1285-1287.
12435
12436 2005-09-01  Jim Meyering  <jim@meyering.net>
12437
12438         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
12439         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
12440         Require gl_STAT_MACROS, too.
12441
12442 2005-09-01  Bruno Haible  <bruno@clisp.org>
12443
12444         * gnulib-tool (import): In the first-use case, provide defaults.
12445
12446 2005-09-01  Bruno Haible  <bruno@clisp.org>
12447
12448         * gnulib-tool (func_import): Remove the .tmp files.
12449
12450 2005-09-01  Bruno Haible  <bruno@clisp.org>
12451
12452         * gnulib-tool (func_import): Fix handling of symbolic links.
12453
12454 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12455
12456         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
12457         old glibc regex code mishandles strings longer than 2**31 bytes.
12458         This patch fixes this when the regex code is used in gnulib
12459         (i.e., outside glibc).
12460
12461         This patch should not affect the use of the regex code inside
12462         glibc.  No doubt this problem also needs to be handled for glibc
12463         as well, but the result will be an incompatible change to the
12464         glibc ABI, and the old ABI will have to be supported too.  That
12465         can be the the subject for another patch.
12466
12467         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
12468         governing whether the rest of this patch is active.  By default,
12469         the macro is disabled and the patch has no effect.
12470         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
12471         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
12472         (struct re_pattern_buffer, re_search, re_search_2, re_match):
12473         (re_match_2, re_set_registers): Use the new types.
12474         * lib/regex_internal.h (Idx, re_hashval_t): New types.
12475         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
12476         New macros.
12477         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
12478         (re_string_context_at, bin_tree_t, re_dfastate_t):
12479         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
12480         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
12481         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
12482         (re_string_char_size_at, re_string_wchar_at):
12483         (re_string_elem_size_at):
12484         Use the new types and macros to port to 64-bit hosts.
12485         Use unsigned types for internal values, so that the code
12486         mostly works even for arrays larger than SSIZE_MAX.
12487         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
12488         (search_duplicated_node, calc_eclosure_iter, fetch_number):
12489         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
12490         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
12491         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
12492         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
12493         (calc_inveclosure, parse_dup_op, build_range_exp):
12494         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
12495         (fetch_number, create_token_tree, mark_opt_subexp):
12496         Likewise.
12497         * lib/regex_internal.c (re_string_construct_common,
12498         create_ci_newstate):
12499         (create_cd_newstate, re_string_allocate, re_string_construct):
12500         (re_string_realloc_buffers, build_wcs_upper_buffer):
12501         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
12502         (re_string_reconstruct, re_string_peek_byte_case):
12503         (re_string_fetch_byte_case, re_string_context_at):
12504         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
12505         (re_node_set_init_copy, re_node_set_add_intersect):
12506         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12507         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12508         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
12509         (re_acquire_state, re_acquire_state_context, register_state):
12510         Likewise.
12511         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
12512         search_cur_bkref_entry):
12513         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
12514         (re_search_internal, re_search_2_stub, re_search_stub)
12515         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
12516         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
12517         (update_cur_sifted_state, check_dst_limits):
12518         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12519         (check_subexp_limits, sift_states_bkref, merge_state_array):
12520         (check_subexp_matching_top, get_subexp, get_subexp_sub):
12521         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
12522         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
12523         (expand_bkref_cache, check_node_accept_bytes):
12524         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
12525         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
12526         (acquire_init_state_context, check_halt_node_context):
12527         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
12528         (sift_states_backward, clean_state_log_if_needed):
12529         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
12530         (find_recover_state, transit_state_sb, transit_state_mb):
12531         (transit_state_bkref, build_trtable, match_ctx_clean):
12532         Likewise.
12533         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
12534         to work around an assumption that REG_MISSING is negative.
12535
12536         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
12537         (seek_collating_symbol_entry) [defined _LIBC]:
12538         (lookup_collation_sequence_value) [defined _LIBC]:
12539         (build_range_exp, build_collating_symbol) [defined _LIBC]:
12540         Use prototypes rather than old-style function definitions.
12541         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
12542         (transit_state_sb) [0]:
12543         (find_collation_sequence_value) [defined _LIBC]: Likewise.
12544
12545         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
12546         rm_eo.
12547
12548         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
12549         (optimize_subexps, lower_subexp):
12550         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
12551         since the signed shift might overflow.  Use 1u<<31 instead.
12552         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
12553         Likewise.
12554         * lib/regexec.c (check_dst_limits_calc_pos_1,
12555         check_subexp_matching_top): Likewise.
12556
12557         * lib/regcomp.c (optimize_subexps, lower_subexp):
12558         Use CHAR_BIT rather than 8, for clarity.
12559         * lib/regexec.c (check_dst_limits_calc_pos_1):
12560         (check_subexp_matching_top): Likewise.
12561         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
12562         have to worry about portability issues when shifting it left.
12563         Remove no-longer-needed test for table_size > 0.
12564         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
12565         in a word, as the resulting behavior is undefined.
12566         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
12567         in one case, a <= should have been an <, and in another case the
12568         whole test was missing.
12569         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
12570         the standard name CHAR_BIT.
12571         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
12572         this is not true on one's complement and signed-magnitude hosts.
12573
12574         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
12575         next_last_offset.
12576         (struct re_dfa_t): Remove unused member states_alloc.
12577         * lib/regcomp.c (init_dfa): Don't initialize unused members.
12578
12579 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12580
12581         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
12582         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
12583         and large-file glibc and in 32-bit large-file Solaris.
12584
12585 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12586
12587         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
12588         lengths fit in regoff_t; this isn't true if regoff_t is the same
12589         width as size_t.
12590         * lib/regex.c (re_search_internal): 5th arg is LAST_START
12591         (= START + RANGE) instead of RANGE.  This avoids overflow
12592         problems when regoff_t is the same width as size_t.
12593         All callers changed.
12594         (re_search_2_stub): Check for overflow when adding the
12595         sizes of the two strings.
12596         (re_search_stub): Check for overflow when adding START
12597         to RANGE; if it occurs, substitute the extreme value.
12598
12599 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
12600
12601         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
12602
12603 2005-08-31  Jim Meyering  <jim@meyering.net>
12604
12605         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
12606         a pointer-to-const.
12607         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
12608         (register_state): Likewise.
12609         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
12610         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
12611         (group_nodes_into_DFAstates): Likewise.
12612
12613 2005-08-31  Jim Meyering  <jim@meyering.net>
12614
12615         * check-module: Add a FIXME comment.
12616
12617 2005-08-31  Eric Blake  <ebb9@byu.net>
12618
12619         * modules/unistd-safer (Files): Add unistd--.h.
12620         * modules/stdio-safer (Files): Add stdio--.h.
12621
12622 2005-08-31  Derek Price  <derek@ximbiot.com>
12623
12624         * lib/getdelim.c (getdelim): Return EOF on EOF.
12625         Reported by Larry Jones <lawrence.jones@ugs.com>.
12626
12627 2005-08-31  Bruno Haible  <bruno@clisp.org>
12628
12629         Avoid unnecessary diffs in the generated lib/Makefile.am.
12630         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
12631         the generated files.
12632         (func_import): Don't set cmd.
12633
12634 2005-08-31  Bruno Haible  <bruno@clisp.org>
12635
12636         * lib/strstr.c: Include <stddef.h>, for NULL.
12637         * lib/strcasestr.c: Likewise.
12638         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
12639
12640 2005-08-31  Bruno Haible  <bruno@clisp.org>
12641
12642         * gnulib-tool: New option --macro-prefix.
12643         (func_import): Use macro_prefix.
12644         (import): Handle option --macro-prefix.
12645
12646 2005-08-31  Bruno Haible  <bruno@clisp.org>
12647
12648         * gnulib-tool (import): Rename most ac_* variables to cached_*.
12649         Also use new variables cached_lgpl, cached_libtool.
12650
12651 2005-08-31  Bruno Haible  <bruno@clisp.org>
12652
12653         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
12654         always instantiating them.
12655
12656 2005-08-31  Bruno Haible  <bruno@clisp.org>
12657
12658         * gnulib-tool (func_import): Read the previous cached settings
12659         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
12660         earlier added by gnulib but are now dropped. Warn when a gnulib file
12661         overwrites a non-gnulib file.
12662
12663 2005-08-31  Bruno Haible  <bruno@clisp.org>
12664
12665         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
12666         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
12667         projects that don't keep autogenerated files in CVS. Put into
12668         actioncmd only the specified modules, not the transitive closure.
12669
12670 2005-08-31  Bruno Haible  <bruno@clisp.org>
12671
12672         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
12673         Create directories that shall be filled.
12674         (import): Don't look for gl_* macros in configure.ac. Recurse across
12675         all directories containing a gnulib-cache.m4 files, if meaningful.
12676
12677 2005-08-31  Bruno Haible  <bruno@clisp.org>
12678
12679         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
12680         (import): Set seen_libtool when we see gl_LIBTOOL.
12681
12682 2005-08-31  Bruno Haible  <bruno@clisp.org>
12683
12684         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
12685         declaration macro definitions from generated gnulib.m4.
12686
12687 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
12688
12689         * lib/iconvme.h: Add prototype for iconv_alloc.
12690
12691 2005-08-29  Simon Josefsson  <jas@extundo.com>
12692
12693         * lib/iconvme.c: Fix errno.
12694
12695 2005-08-29  Bruno Haible  <bruno@clisp.org>
12696
12697         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
12698         that it works when the directory contains spaces.
12699
12700 2005-08-29  Bruno Haible  <bruno@clisp.org>
12701
12702         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
12703
12704 2005-08-29  Bruno Haible  <bruno@clisp.org>
12705
12706         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
12707         Emit more advice.
12708
12709 2005-08-29  Bruno Haible  <bruno@clisp.org>
12710         and Stepan Kasal  <kasal@ucw.cz>
12711
12712         * check-module: If more parameters are given, check each of them
12713         separately; add more exceptions, as noted by Jim Meyering.
12714         (check_module): New procedure.
12715         (%exempt_header): Now contains all exceptions.
12716
12717 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
12718
12719         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
12720
12721 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
12722
12723         * lib/iconvme.c: Split iconv_string into iconv_alloc.
12724
12725 2005-08-28  Bruno Haible  <bruno@clisp.org>
12726
12727         * m4/gnulib-tool.m4: New file.
12728
12729 2005-08-27  Jim Meyering  <jim@meyering.net>
12730
12731         * modules/unistd-safer (Files): Add pipe-safer.c.
12732         * modules/fcntl-safer (Files): Add creat-safer.c.
12733
12734 2005-08-27  Jim Meyering  <jim@meyering.net>
12735
12736         * m4/stdlib-safer.m4: New file.  From coreutils.
12737         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
12738         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
12739         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
12740         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
12741         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
12742
12743 2005-08-27  Jim Meyering  <jim@meyering.net>
12744
12745         * lib/fopen-safer.c: Merge minor changes from coreutils.
12746         * lib/dup-safer.c: Likewise.
12747         * lib/fd-safer.c: Likewise.
12748
12749         Merge from coreutils.
12750         * lib/stdio--.h: New file.
12751         * lib/stdlib--.h: New file.
12752         * lib/mkstemp-safer.c: New file.
12753
12754         GNU tar needs these.
12755         * lib/pipe-safer.c: New file.
12756         * lib/creat-safer.c: New file.
12757         * lib/fcntl--.h (creat): Define to creat_safer.
12758         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
12759         * lib/unistd--.h (pipe): Define to pipe_safer.
12760         * lib/unistd-safer.h: Declare pipe_safer.
12761
12762 2005-08-26  Simon Josefsson  <jas@extundo.com>
12763
12764         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
12765         Haible <bruno@clisp.org>.
12766
12767 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
12768
12769         * lib/regex_internal.h: Remove all references to
12770         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
12771         or better.
12772         (bitset_not, bitset_merge, bitset_not_merge):
12773         (bitset_mask, re_string_allocate, re_string_construct):
12774         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
12775         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
12776         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
12777         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
12778         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
12779         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
12780         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
12781         (re_acquire_state_context):
12782         Remove unnecessary forward decls.
12783         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
12784         Put __attribute at function definition,
12785         now that the function decl has been removed.
12786         * lib/regex_internal.c (re_string_peek_byte_case):
12787         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
12788         Likewise.
12789
12790 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
12791
12792         * m4/regex.m4: Add AC_PREREQ(2.50).
12793         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
12794
12795 2005-08-25  Simon Josefsson  <jas@extundo.com>
12796
12797         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
12798         __fsetlocking.
12799
12800 2005-08-25  Simon Josefsson  <jas@extundo.com>
12801
12802         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
12803         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
12804         GLIBC specific code.
12805
12806 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12807
12808         Make regex safe for g++.  This fixes one real bug (an "err"
12809         that should have been "*err").  g++ problem reported by
12810         Sam Steingold.
12811         * lib/regex_internal.h (re_calloc): New macro, consistent with
12812         re_malloc etc.  All callers of calloc changed to use re_calloc.
12813         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
12814         not int.  All callers changed.
12815         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
12816         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
12817         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
12818         (find_recover_state): Change "err" to "*err"; this fixes what
12819         appears to be a real bug.
12820         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
12821         versus int.
12822
12823 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12824
12825         * modules/regex (Depends-on): Add malloc, since the code
12826         assumes that !malloc(0) means failure.
12827
12828 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12829
12830         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
12831
12832         alloca modernization/simplification for regex.
12833         * lib/regex.c: Remove portability cruft for alloca.  This no longer
12834         needs to be at the start of the file, and can be moved into
12835         regex_internal.h and simplified.
12836         * lib/regex_internal.h: Include <alloca.h>.
12837         (__libc_use_alloca) [!defined _LIBC]: New macro.
12838         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
12839         now works outside glibc.
12840
12841 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12842
12843         * config/srclist.txt: Add glibc bugs 1241, 1245.
12844
12845 2005-08-25  Jim Meyering  <jim@meyering.net>
12846
12847         * lib/open-safer.c: Include <config.h>.
12848         Otherwise, we'd lose LARGEFILE support in any file using
12849         e.g. "fcntl--.h"
12850
12851 2005-08-25  Bruno Haible  <bruno@clisp.org>
12852
12853         * m4/minmax.m4: Require autoconf 2.52.
12854         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
12855         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
12856         alternatives of translit over the alphabet.
12857         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
12858
12859 2005-08-24  Simon Josefsson  <jas@extundo.com>
12860
12861         * tests/test-getpass.c: New file.
12862
12863 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12864
12865         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
12866         for GNU regex features.
12867
12868 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
12869
12870         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
12871         * lib/regex.h (regerror): Likewise.
12872
12873         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
12874         requires this.  (The code never needed it.)
12875
12876         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
12877         All uses of recently-renamed identifiers changed to use the new,
12878         POSIX-compliant names.  The code will build and run just fine
12879         without these changes, but it's better to eat our own dog food
12880         and use the standard-conforming names.
12881
12882         * lib/regex.h: Fix a multitude of POSIX name space violations.
12883         These changes have an effect only for programs that define
12884         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
12885         do not change anything for programs compiled in the normal way.
12886         Also, there is no effect on the ABI.
12887
12888         (_REGEX_SOURCE): New macro.
12889         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
12890         defined and _GNU_SOURCE is not; this fixes a name space violation.
12891
12892         Rename the following macros to obey POSIX requirements.
12893         The old names are still visible as macros if _REGEX_SOURCE is defined.
12894         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
12895         RE_BACKSLASH_ESCAPE_IN_LISTS.
12896         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
12897         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
12898         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
12899         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
12900         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
12901         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
12902         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
12903         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
12904         (REG_INTERVALS): renamed from RE_INTERVALS.
12905         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
12906         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
12907         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
12908         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
12909         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
12910         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
12911         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
12912         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
12913         RE_UNMATCHED_RIGHT_PAREN_ORD.
12914         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
12915         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
12916         (REG_DEBUG): renamed from RE_DEBUG.
12917         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
12918         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
12919         unusual, since we can't clash with the POSIX REG_ICASE.
12920         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
12921         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
12922         (REG_NO_SUB): renamed from RE_NO_SUB.
12923         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
12924         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
12925         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
12926         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
12927         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
12928         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
12929         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
12930         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
12931         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
12932         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
12933         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
12934         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
12935         RE_SYNTAX_POSIX_MINIMAL_BASIC.
12936         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
12937         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
12938         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
12939         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
12940         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
12941         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
12942         (REG_FIXED): Renamed from REGS_FIXED.
12943         (REG_NREGS): Renamed from RE_NREGS.
12944
12945         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
12946         of other REG_* macros, since POSIX says the user is allowed to
12947         #undef these macros selectively.
12948
12949         (reg_errcode_t): Update comment stating what other tables need
12950         to be consistent.
12951
12952         Rename the following enum values to obey POSIX requirements.
12953         The old names are still visible as macros.
12954         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
12955         is not defined, since GNU is supposed to be a superset of POSIX as
12956         much as possible, and since we want reg_errcode_t to be a signed
12957         type for implementation consistency.
12958         (_REG_NOERROR): Renamed from REG_NOERROR.
12959         (_REG_NOMATCH): Renamed from REG_NOMATCH.
12960         (_REG_BADPAT): Renamed from REG_BADPAT.
12961         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
12962         (_REG_ECTYPE): Renamed from REG_ECTYPE.
12963         (_REG_EESCAPE): Renamed from REG_EESCAPE.
12964         (_REG_ESUBREG): Renamed from REG_ESUBREG.
12965         (_REG_EBRACK): Renamed from REG_EBRACK.
12966         (_REG_EPAREN): Renamed from REG_EPAREN.
12967         (_REG_EBRACE): Renamed from REG_EBRACE.
12968         (_REG_BADBR): Renamed from REG_BADBR.
12969         (_REG_ERANGE): Renamed from REG_ERANGE.
12970         (_REG_ESPACE): Renamed from REG_ESPACE.
12971         (_REG_BADRPT): Renamed from REG_BADRPT.
12972         (_REG_EEND): Renamed from REG_EEND.
12973         (_REG_ESIZE): Renamed from REG_ESIZE.
12974         (_REG_ERPAREN): Renamed from REG_ERPAREN.
12975         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
12976         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
12977         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
12978         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
12979
12980         (_REG_RE_NAME, _REG_RM_NAME): New macros.
12981         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
12982         changed.  But support the old name if the new one is not defined
12983         and if _REGEX_SOURCE.
12984
12985         Change the following member names in struct re_pattern_buffer.
12986         The old names are still supported if !_REGEX_SOURCE.
12987         The new names are always supported, regardless of _REGEX_SOURCE.
12988         (re_buffer): Renamed from buffer.
12989         (re_allocated): Renamed from allocated.
12990         (re_used): Renamed from used.
12991         (re_syntax): Renamed from syntax.
12992         (re_fastmap): Renamed from fastmap.
12993         (re_translate): Renamed from translate.
12994         (re_can_be_null): Renamed from can_be_null.
12995         (re_regs_allocated): Renamed from regs_allocated.
12996         (re_fastmap_accurate): Renamed from fastmap_accurate.
12997         (re_no_sub): Renamed from no_sub.
12998         (re_not_bol): Renamed from not_bol.
12999         (re_not_eol): Renamed from not_eol.
13000         (re_newline_anchor): Renamed from newline_anchor.
13001
13002         Change the following member names in struct re_registers.
13003         The old names are still supported if !_REGEX_SOURCE.
13004         The new names are always supported, regardless of _REGEX_SOURCE.
13005         (rm_num_regs): Renamed from num_regs.
13006         (rm_start): Renamed from start.
13007         (rm_end): Renamed from end.
13008
13009         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
13010         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
13011         Prepend __ to parameter names.
13012
13013         Undo yesterday's changes.
13014
13015 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
13016
13017         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
13018         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
13019         lib/regex.c.
13020
13021 2005-08-24  Jim Meyering  <jim@meyering.net>
13022
13023         Sync from coreutils.
13024         * m4/fcntl-safer.m4: New file.
13025
13026         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
13027         and object files for this module.
13028
13029 2005-08-24  Jim Meyering  <jim@meyering.net>
13030
13031         Sync from coreutils.
13032         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
13033
13034 2005-08-24  Jim Meyering  <jim@meyering.net>
13035
13036         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
13037         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
13038
13039 2005-08-24  Jim Meyering  <jim@meyering.net>
13040
13041         * modules/fcntl-safer: New module.
13042         * modules/fts (Depends-on): Add fcntl-safer.
13043         * MODULES.html.sh (File descriptor based Input/Output):
13044         Add fcntl-safer.
13045
13046 2005-08-24  Bruno Haible  <bruno@clisp.org>
13047
13048         Support for unit test modules.
13049         * modules/README: Mention tests modules.
13050         * modules/TEMPLATE-TESTS: New file.
13051         * gnulib-tool: New options --extract-tests-module, --with-tests and
13052         --tests-base (unused for the moment).
13053         (testsbase, inctests): New variables.
13054         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
13055         (func_verify_module): Exclude TEMPLATE-TESTS.
13056         (func_verify_nontests_module, func_verify_tests_module): New functions.
13057         (func_get_dependencies): Add implicit dependency for tests modules.
13058         (func_get_tests_module): New function.
13059         (func_modules_transitive_closure): When --with-tests was specified,
13060         include the unit tests as well, unless explicitly avoided.
13061         (func_emit_lib_Makefile_am): Ignore the tests modules here.
13062         (func_emit_tests_Makefile_am): New function.
13063         (func_create_testdir): When --with-tests was specified, emit a
13064         tests/ directory.
13065         * MODULES.html.sh (Future developments): Update.
13066
13067 2005-08-24  Bruno Haible  <bruno@clisp.org>
13068
13069         * modules/tls-tests: New file.
13070         * tests/test-tls.c: New file, from GNU gettext.
13071
13072 2005-08-24  Bruno Haible  <bruno@clisp.org>
13073
13074         * modules/lock-tests: New file.
13075         * tests/test-lock.c: New file, from GNU gettext.
13076
13077 2005-08-24  Bruno Haible  <bruno@clisp.org>
13078
13079         * lib/lock.h: Add multiple inclusion guard.
13080         * lib/tls.h: Add multiple inclusion guard.
13081
13082 2005-08-24  Bruno Haible  <bruno@clisp.org>
13083
13084         * gnulib-tool: Add support for the --aux-dir option to
13085         --create-testdir, --create-megatestdir, --test, --megatest.
13086         (func_create_testdir, func_create_megatestdir): Optionally emit a
13087         AC_CONFIG_AUX_DIR directive.
13088         (create-testdir, create-megatestdir, test, megatest): Provide a
13089         default value for $auxdir.
13090
13091 2005-08-24  Bruno Haible  <bruno@clisp.org>
13092
13093         * gnulib-tool (import): Use compound statement instead of subshell
13094         where possible.
13095
13096 2005-08-24  Bruno Haible  <bruno@clisp.org>
13097
13098         * gnulib-tool (import): Change --aux-dir default to "build-aux".
13099
13100 2005-08-24  Bruno Haible  <bruno@clisp.org>
13101
13102         * gnulib-tool (func_version): Update.
13103
13104 2005-08-24  Bruno Haible  <bruno@clisp.org>
13105
13106         * gnulib-tool (func_import, func_create_testdir,
13107         func_create_megatestdir): Quote all autoconf macro arguments.
13108
13109 2005-08-24  Bruno Haible  <bruno@clisp.org>
13110
13111         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
13112         option --force, because --force causes the aclocal.m4 of each
13113         subdirectory to be newer than the corresponding config.h.in.
13114
13115 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
13116
13117         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
13118         All contents moved to gl_REGEX.
13119         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
13120         assume that it does.
13121
13122 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
13123
13124         * lib/regex.h (REG_NOSYS)
13125         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
13126         Define, since POSIX requires it as of 2001.
13127         (_REG_ENOSYS)
13128         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
13129         New private symbol, used to keep the enum signed in all cases.
13130         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
13131         Youngman in
13132         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
13133
13134         * lib/regex_internal.c (re_string_skip_chars, register_state):
13135         (calc_state_hash):
13136         Remove forward decls; no longer needed now that we use prototypes.
13137         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
13138         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
13139         (clean_state_log_if_needed): Likewise.
13140
13141 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
13142
13143         * config/srclist.txt: Add glibc bugs 1231-1233.
13144
13145 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
13146
13147         Fix problems reported by Sam Steingold in
13148         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
13149         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
13150         assumed that reg_errcode_t is a signed type, which is not
13151         necessarily true if _XOPEN_SOURCE is not defined.
13152         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
13153         since some compilers warn about it otherwise.
13154
13155 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
13156
13157         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
13158         (init_word_char, create_initial_state, duplicate_node_closure):
13159         (fetch_token, peek_token_bracket, build_range_exp):
13160         (build_collating_symbol): Remove forward decls; no longer needed
13161         now that we use prototypes.
13162
13163         * lib/regcomp.c:
13164         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
13165         (re_compile_fastmap_iter, regcomp, regerror, regfree):
13166         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
13167         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
13168         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
13169         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
13170         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
13171         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
13172         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
13173         (build_range_exp, build_collating_symbol, parse_bracket_exp):
13174         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
13175         (build_charclass, build_charclass_op, fetch_number, create_tree):
13176         (create_token_tree, mark_opt_subexp, duplicate_tree):
13177         Use prototypes rather than old-style definitions.
13178
13179         * lib/regex_internal.c:
13180         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
13181         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
13182         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
13183         (re_string_reconstruct, re_string_peek_byte_case):
13184         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
13185         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
13186         (re_node_set_init_copy, re_node_set_add_intersect):
13187         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
13188         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
13189         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
13190         (re_acquire_state, re_acquire_state_context, register_state):
13191         (create_ci_newstate, create_cd_newstate, free_state):
13192         Likewise.
13193         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
13194         re_search_2):
13195         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
13196         (re_search_internal, prune_impossible_nodes):
13197         (acquire_init_state_context, check_matching, static):
13198         (check_halt_node_context, check_halt_state_context, proceed_next_node):
13199         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
13200         (update_regs, sift_states_backward, build_sifted_states):
13201         (clean_state_log_if_needed, merge_state_array):
13202         (update_cur_sifted_state, add_epsilon_src_nodes):
13203         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
13204         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
13205         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
13206         (find_recover_state, check_subexp_matching_top, transit_state_mb):
13207         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
13208         (check_arrival, check_arrival_add_next_nodes):
13209         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
13210         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
13211         (check_node_accept_bytes, check_node_accept, extend_buffers):
13212         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
13213         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
13214         (sift_ctx_init):
13215         Likewise.
13216
13217         * lib/regex_internal.h:
13218         (re_string_allocate, re_string_construct, re_string_reconstruct):
13219         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
13220         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
13221         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
13222         (re_string_context_at, re_string_peek_byte_case):
13223         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
13224         is defined, since we now use prototypes always.
13225
13226         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
13227         C89 or better.  All uses removed.
13228
13229 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
13230
13231         * config/srclist.txt: Add glibc bugs 1220-1227.
13232
13233 2005-08-20  Jim Meyering  <jim@meyering.net>
13234
13235         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
13236         of unused local, dfa.
13237
13238 2005-08-20  Bruno Haible  <bruno@clisp.org>
13239
13240         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
13241
13242 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13243
13244         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
13245         (re_node_set_insert_last, re_dfa_add_node):
13246         Rename local variables to avoid GCC shadowing warnings.
13247
13248 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13249
13250         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
13251         [defined lint]: Suppress bogus uninitialized-variable warnings.
13252
13253         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
13254         and let the caller return REG_ESPACE if out of space.  This
13255         removes an uninitialied-variable warning with GCC 4.0.1, and also
13256         avoids taking the address of a local variable.  All callers
13257         changed.
13258
13259 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
13260
13261         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
13262         $LIBCSRC/posix/regexec.c.
13263         Add glibc bug 1217 for regcomp.c.
13264
13265 2005-08-19  Jim Meyering  <jim@meyering.net>
13266
13267         * lib/regexec.c (proceed_next_node): Redo local variables to
13268         avoid GCC shadowing warnings.
13269
13270 2005-08-18  Bruno Haible  <bruno@clisp.org>
13271
13272         * lib/strstr.c (strstr): Fix return value in multibyte case.
13273         * lib/strcasestr.c (strcasestr): Likewise.
13274
13275 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
13276
13277         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
13278
13279 2005-08-17  Jim Meyering  <jim@meyering.net>
13280
13281         Make the %s format (seconds since the epoch) work for a negative
13282         number and when used with a zero-padded field width, e.g. %015s.
13283
13284         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
13285         label so that it precedes the code to set `digits'.  Otherwise,
13286         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
13287         print `00-22'.  Now, it prints `-0022', as it should.
13288
13289 2005-08-17  Bruno Haible  <bruno@clisp.org>
13290
13291         * modules/strstr (Files): Add m4/mbrtowc.m4.
13292         (Depends-on): Add mbuiter.
13293
13294 2005-08-17  Bruno Haible  <bruno@clisp.org>
13295
13296         * modules/strcasestr: New file.
13297         * MODULES.html.sh (String handling, based on ANSI C 89): Add
13298         strcasestr.
13299
13300 2005-08-17  Bruno Haible  <bruno@clisp.org>
13301
13302         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
13303
13304 2005-08-17  Bruno Haible  <bruno@clisp.org>
13305
13306         * modules/mbuiter: New file.
13307         * MODULES.html.sh (Extended multibyte and wide character utilities):
13308         Add mbuiter.
13309
13310 2005-08-17  Bruno Haible  <bruno@clisp.org>
13311
13312         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
13313         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
13314
13315 2005-08-17  Bruno Haible  <bruno@clisp.org>
13316
13317         * m4/strcasestr.m4: New file.
13318
13319 2005-08-17  Bruno Haible  <bruno@clisp.org>
13320
13321         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
13322         * lib/strstr.c: Completely rewritten, with multibyte locale support.
13323
13324 2005-08-17  Bruno Haible  <bruno@clisp.org>
13325
13326         * lib/strcasestr.h: New file.
13327         * lib/strcasestr.c: New file.
13328
13329 2005-08-17  Bruno Haible  <bruno@clisp.org>
13330
13331         * lib/strcasecmp.c: Use mbuiter.h.
13332
13333 2005-08-17  Bruno Haible  <bruno@clisp.org>
13334
13335         * lib/mbuiter.h: New file.
13336
13337 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
13338
13339         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
13340         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
13341         and gl_GETOPT are both invoked via different paths (as happens
13342         with GNU tar CVS because it uses both argp and getopt), the former
13343         wins.
13344
13345 2005-08-16  Bruno Haible  <bruno@clisp.org>
13346
13347         * modules/tls: New file.
13348         * MODULES.html.sh (Multithreading): Add tls.
13349
13350 2005-08-16  Bruno Haible  <bruno@clisp.org>
13351
13352         * modules/strnlen1: New file.
13353         * MODULES.html.sh (String handling): Add strnlen1.
13354
13355 2005-08-16  Bruno Haible  <bruno@clisp.org>
13356
13357         * modules/strcase (Files): Add m4/mbrtowc.m4.
13358         (Depends-on): Add strnlen1, mbchar.
13359
13360 2005-08-16  Bruno Haible  <bruno@clisp.org>
13361
13362         * modules/mbiter: New file.
13363         * MODULES.html.sh (Extended multibyte and wide character utilities):
13364         Add mbiter.
13365
13366 2005-08-16  Bruno Haible  <bruno@clisp.org>
13367
13368         * modules/mbfile: New file.
13369         * MODULES.html.sh (Extended multibyte and wide character utilities):
13370         Add mbfile.
13371
13372 2005-08-16  Bruno Haible  <bruno@clisp.org>
13373
13374         * modules/mbchar: New file.
13375         * MODULES.html.sh (Extended multibyte and wide character utilities):
13376         New section.
13377
13378 2005-08-16  Bruno Haible  <bruno@clisp.org>
13379
13380         * m4/tls.m4: New file, from GNU gettext.
13381
13382 2005-08-16  Bruno Haible  <bruno@clisp.org>
13383
13384         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
13385         always.
13386         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
13387
13388 2005-08-16  Bruno Haible  <bruno@clisp.org>
13389
13390         * m4/mbiter.m4: New file.
13391
13392 2005-08-16  Bruno Haible  <bruno@clisp.org>
13393
13394         * m4/mbfile.m4: New file.
13395
13396 2005-08-16  Bruno Haible  <bruno@clisp.org>
13397
13398         * m4/mbchar.m4: New file.
13399
13400 2005-08-16  Bruno Haible  <bruno@clisp.org>
13401
13402         * lib/tls.h: New file, from GNU gettext.
13403         * lib/tls.c: New file, from GNU gettext.
13404
13405 2005-08-16  Bruno Haible  <bruno@clisp.org>
13406
13407         * lib/strnlen1.h: New file.
13408         * lib/strnlen1.c: New file.
13409
13410 2005-08-16  Bruno Haible  <bruno@clisp.org>
13411
13412         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
13413         (mbi_init): Update.
13414         (mbi_avail, mbi_advance): Let the iteration end before the terminating
13415         NUL byte, not after it.
13416
13417 2005-08-16  Bruno Haible  <bruno@clisp.org>
13418
13419         * lib/strcase.h (strcasecmp): Add note in comments.
13420         * lib/strncasecmp.c: Use code from strcasecmp.c.
13421         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
13422         (strcasecmp): Work correctly in multibyte locales.
13423
13424 2005-08-16  Bruno Haible  <bruno@clisp.org>
13425
13426         * lib/mbiter.h: New file.
13427
13428 2005-08-16  Bruno Haible  <bruno@clisp.org>
13429
13430         * lib/mbfile.h: New file.
13431
13432 2005-08-16  Bruno Haible  <bruno@clisp.org>
13433
13434         * lib/mbchar.h: New file.
13435         * lib/mbchar.c: New file.
13436
13437 2005-08-16  Bruno Haible  <bruno@clisp.org>
13438
13439         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
13440         the valid ones. Makes the comparison operations transitive:
13441         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
13442         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
13443
13444 2005-08-15  Simon Josefsson  <jas@extundo.com>
13445
13446         * modules/ssize_t (License): Change to 'unlimited'.
13447
13448         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
13449
13450 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
13451
13452         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
13453         Add comments for each pending glibc patch.
13454
13455 2005-08-15  Bruno Haible  <bruno@clisp.org>
13456
13457         * lib/regex.h (__restrict_arr): Don't define to __restrict if
13458         __cplusplus is defined.
13459
13460 2005-08-14  Jim Meyering  <jim@meyering.net>
13461
13462         Sync from coreutils.
13463
13464         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
13465         Use the hash-table-based cycle-detection code not just when
13466         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
13467         Reported by James Youngman in
13468         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
13469         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
13470         FTS_TIGHT_CYCLE_CHECK.
13471         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
13472         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
13473         once again.
13474         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
13475         * lib/fts.c (fd_safer): Remove decl.
13476         Include fcntl--.h rather than unistd-safer.h
13477         (fts_safe_changedir): Don't call fd_safer; no longer needed
13478         now that we include fcntl--.h.
13479
13480 2005-08-12  Simon Josefsson  <jas@extundo.com>
13481
13482         * modules/getndelim2: Use ssize_t module.
13483         * modules/getnline: Likewise.
13484         * modules/safe-read: Likewise.
13485         * modules/xreadlink: Likewise.
13486
13487         * modules/ssize_t: New file.
13488
13489 2005-08-12  Simon Josefsson  <jas@extundo.com>
13490
13491         * m4/readline.m4: Look for termcap, curses or ncurses if required.
13492
13493 2005-08-12  Simon Josefsson  <jas@extundo.com>
13494
13495         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13496         ssize_t.
13497
13498 2005-08-12  Simon Josefsson  <jas@extundo.com>
13499
13500         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
13501         readline, getdelim and check_version.
13502         (Support for systems lacking ISO C 99: Sizes of integer types):
13503         Add size_max.
13504
13505 2005-08-12  Bruno Haible  <bruno@clisp.org>
13506
13507         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
13508
13509 2005-08-11  Simon Josefsson  <jas@extundo.com>
13510
13511         * modules/readline: New file.
13512
13513         * modules/strnlen (Files): Add strnlen.h.
13514
13515 2005-08-11  Simon Josefsson  <jas@extundo.com>
13516
13517         * m4/readline.m4: New file.
13518
13519 2005-08-11  Simon Josefsson  <jas@extundo.com>
13520
13521         * lib/readline.h, readline.c: New file.
13522
13523 2005-08-11  Simon Josefsson  <jas@extundo.com>
13524
13525         * doc/gnulib.texi (Initial import, Finishing touches): Mention
13526         gl_AVOID.
13527
13528 2005-08-11  Bruno Haible  <bruno@clisp.org>
13529
13530         * lib/strnlen.h (strnlen): Change parameter name to match comment.
13531
13532 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
13533
13534         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
13535
13536 2005-08-10  Simon Josefsson  <jas@extundo.com>
13537
13538         * tests/test-iconvme.c: New file.
13539
13540 2005-08-10  Simon Josefsson  <jas@extundo.com>
13541
13542         * m4/strnlen.m4: New file.
13543
13544         * m4/strndup.m4: Don't check for strnlen declaration, done in
13545         strnlen.m4.
13546
13547 2005-08-10  Simon Josefsson  <jas@extundo.com>
13548
13549         * lib/strndup.c: Use strnlen.h.
13550
13551         * lib/strnlen.h: New file.
13552
13553 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13554
13555         * README: Typos.
13556
13557 2005-08-02  Simon Josefsson  <jas@extundo.com>
13558
13559         * modules/readline: New file.
13560
13561 2005-08-02  Simon Josefsson  <jas@extundo.com>
13562
13563         * modules/getdelim: New file.
13564
13565         * modules/getline: Rewrite, don't use getndelim2.
13566
13567 2005-08-02  Simon Josefsson  <jas@extundo.com>
13568
13569         * m4/getline.m4: Separate out getdelim stuff into separate module.
13570
13571         * m4/getdelim.m4: New file.
13572
13573 2005-08-02  Simon Josefsson  <jas@extundo.com>
13574
13575         * lib/getline.h, getline.c: Rewrite.
13576
13577         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
13578
13579 2005-07-31  Bruno Haible  <bruno@clisp.org>
13580
13581         * lib/lock.h (gl_lock_initializer): New macro.
13582         (gl_lock_define_initialized): Use it.
13583         (gl_rwlock_initializer): New macro.
13584         (gl_rwlock_define_initialized): Use it.
13585         (gl_recursive_lock_initializer): New macro.
13586         (gl_recursive_lock_define_initialized): Use it.
13587
13588 2005-07-30  Karl Berry  <karl@gnu.org>
13589
13590         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
13591         Report from Ben Pfaff, regarding getopt.
13592
13593 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
13594
13595         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
13596         normal way.
13597         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
13598         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
13599         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
13600         (gl_GETOPT): Use the new macros.  Most of the implementation
13601         is moved to the new macros.  This is for programs like Emacs
13602         that don't want all the functionality of gl_GETOPT.
13603
13604 2005-07-26  Bruno Haible  <bruno@clisp.org>
13605
13606         * m4/lock.m4: Update from GNU gettext.
13607
13608 2005-07-26  Bruno Haible  <bruno@clisp.org>
13609
13610         * lib/lock.h: Update from GNU gettext.
13611         * lib/lock.c: Update from GNU gettext.
13612
13613 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
13614
13615         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
13616         obsolescent AC_TRY_RUN.  Include the default includes files, for
13617         'exit'.
13618
13619 2005-07-24  Bruno Haible  <bruno@clisp.org>
13620
13621         * modules/visibility: New file.
13622         * MODULES.html.sh (Misc): Add visibility.
13623
13624 2005-07-24  Bruno Haible  <bruno@clisp.org>
13625
13626         * m4/visibility.m4: New file.
13627
13628 2005-07-24  Bruno Haible  <bruno@clisp.org>
13629
13630         * doc/visibility.texi: New file.
13631
13632 2005-07-22  Bruno Haible  <bruno@clisp.org>
13633
13634         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
13635         $(ALLOCA_H), redundant through BUILT_SOURCES.
13636         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
13637         redundant through BUILT_SOURCES.
13638         * modules/byteswap (Makefile.am): Remove explicit dependency on
13639         $(BYTESWAP_H), redundant through BUILT_SOURCES.
13640         * modules/fnmatch (Makefile.am): Remove explicit dependency on
13641         $(FNMATCH_H), redundant through BUILT_SOURCES.
13642         * modules/getopt (Makefile.am): Remove explicit dependency on
13643         $(GETOPT_H), redundant through BUILT_SOURCES.
13644         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
13645         redundant through BUILT_SOURCES.
13646         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
13647         redundant through BUILT_SOURCES.
13648         * modules/stdbool (Makefile.am): Remove explicit dependency on
13649         $(STDBOOL_H), redundant through BUILT_SOURCES.
13650         * modules/stdint (Makefile.am): Remove explicit dependency on
13651         $(STDINT_H), redundant through BUILT_SOURCES.
13652         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
13653         Remove explicit dependency on $(SYSEXITS_H).
13654         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
13655
13656 2005-07-18  Simon Josefsson  <jas@extundo.com>
13657
13658         * lib/check-version.c (check_version): Accept identical versions too.
13659
13660 2005-07-18  Bruno Haible  <bruno@clisp.org>
13661
13662         * modules/lock: New file.
13663         * MODULES.html.sh (Multithreading): New section.
13664
13665 2005-07-18  Bruno Haible  <bruno@clisp.org>
13666
13667         * m4/lock.m4: New file, from GNU gettext.
13668
13669 2005-07-18  Bruno Haible  <bruno@clisp.org>
13670
13671         * lib/lock.h: New file, from GNU gettext.
13672         * lib/lock.c: New file, from GNU gettext.
13673
13674 2005-07-18  Bruno Haible  <bruno@clisp.org>
13675
13676         * lib/lock.h (gl_once_t): New type.
13677         (gl_once_define, gl_once): New macros.
13678         * lib/lock.c (fresh_once): New variable.
13679         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
13680         functions.
13681
13682 2005-07-16  Simon Josefsson  <jas@extundo.com>
13683
13684         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
13685         workaround, suggested by Bruno.
13686
13687 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13688
13689         * modules/xalloc (Depends-on): Add xalloc-die.
13690         * modules/xvasprintf (Depends-on): Add xalloc-die.
13691
13692 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
13693
13694         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
13695         with a minor change.
13696
13697 2005-07-15  Bruno Haible  <bruno@clisp.org>
13698
13699         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
13700         When using lib/poll.c, define poll as rpl_poll.
13701
13702 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
13703
13704         * modules/argp (Depends-on): Remove unlocked-io.
13705
13706 2005-07-14  Derek Price  <derek@ximbiot.com>
13707
13708         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
13709         for glob symlink bug.
13710
13711 2005-07-14  Bruno Haible  <bruno@clisp.org>
13712
13713         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
13714         Instead, test for *_unlocked function declarations directly.
13715
13716 2005-07-11  Simon Josefsson  <jas@extundo.com>
13717
13718         * modules/size_max: New file.
13719
13720         * modules/xsize: Depend on size_max module for size_max.m4.
13721
13722 2005-07-11  Simon Josefsson  <jas@extundo.com>
13723
13724         * lib/size_max.h: New file.
13725
13726 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
13727
13728         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
13729         copyright symbol and the year.
13730         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
13731         (version_etc_va): Use parameterized copyright notice.
13732         Reword to conform to the current GNU coding standards.
13733
13734 2005-07-11  Karl Berry  <karl@gnu.org>
13735
13736         * doc/gnulib.texi (Quoting): new node.
13737         (Initial import): more info, from Patrice.
13738
13739 2005-07-11  Bruno Haible  <bruno@clisp.org>
13740
13741         * gnulib-tool (func_usage): Document option --avoid.
13742         (Command line options): Handle --avoid.
13743         (func_acceptable): New function.
13744         (func_modules_transitive_closure): Use it.
13745
13746 2005-07-11  Bruno Haible  <bruno@clisp.org>
13747
13748         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
13749         Reported by Jim Meyering.
13750
13751 2005-07-10  Bruno Haible  <bruno@clisp.org>
13752
13753         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
13754         Needed when size_t is smaller than 'unsigned int'.
13755         Reported by Paul Eggert.
13756
13757 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13758
13759         * modules/argp (Depends-on): Add unlocked-io
13760
13761 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
13762
13763         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
13764         block of defines.
13765
13766 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
13767
13768         * config/srclist.txt: Comment out regcomp.c, since we have a porting
13769         fix now.
13770
13771 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
13772         and Paul Eggert  <eggert@cs.ucla.edu>
13773
13774         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
13775         in wint_t, not wchar_t.  Remove now-unnecessary cast.
13776
13777 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13778
13779         * modules/regex (Files): Add lib/regex_internal.c,
13780         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
13781         (Depends-on): Add extensions.
13782         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
13783
13784 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13785
13786         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
13787         pathconf.
13788         * m4/same.m4 (gl_SAME): Likewise.
13789         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
13790
13791         * m4/regex.m4: Adjust to new libc regex implementation.
13792         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
13793         all the .c and .h parts of (the new) regex.
13794         Quote the m4 stuff better.
13795         Check for RE_ICASE bug of old gnulib.
13796         Check for REG_STARTEND of recent libc.
13797         Rename local variables from jm_* to gl_*.
13798         Quote operand of "test -f".
13799         Say "recent enough" version of libc, not "version 2".
13800         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
13801         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
13802         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
13803         Remove check for btowc, isascii.
13804         Require AM_LANGINFO_CODESET.
13805
13806 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13807
13808         * lib/regex.c, regex.h: Sync from libc.
13809         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
13810         * lib/regexec.c:
13811         New files, synced from libc, except that regex_internal.h
13812         currently has a small porting fix.
13813
13814 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13815
13816         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
13817         regex_internal.c, regexec.c.
13818         Add regex_internal.h too, but as a comment, since the libc version
13819         is currently broken in gnulib mode.
13820
13821 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13822
13823         Support programs like Emacs that use gnulib but not gettext.
13824         * MODULES.html.sh (Internationalization functions): Add gettext-h.
13825         * modules/gettext-h: New file.
13826         * modules/gettext (Files): Remove lib/gettext.h.
13827         (Depends-on): Add gettext-h.
13828         (Makefile.am): Remove lib_SOURCES.
13829         * modules/argmatch, modules/c-stack, modules/closeout:
13830         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
13831         * modules/execute, modules/file-type, modules/getaddrinfo:
13832         * modules/getopt, modules/human, modules/javacomp:
13833         * modules/javaexec, modules/mkdir-p, modules/obstack:
13834         * modules/openat, modules/pagealign_alloc, modules/pipe:
13835         * modules/quotearg, modules/regex, modules/rpmatch:
13836         * modules/unicodeio, modules/userspec, modules/version-etc:
13837         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
13838         * modules/xsetenv:
13839         Depend on gettext-h, not gettext.
13840
13841 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
13842
13843         * gnulib-tool (func_import): Add support for 'public domain' license.
13844         * modules/alloca, modules/atexit, modules/memmove:
13845         Now public domain, not GPL.
13846         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
13847         * modules/realloc, modules/strerror, modules/strtod:
13848         Now LGPL, not GPL.
13849
13850 2005-07-05  Bruno Haible  <bruno@clisp.org>
13851
13852         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
13853         autoconf CVS. Needed for mingw.
13854
13855 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13856
13857         Remove the dependency of the strftime module on the tzset module.
13858         * modules/strftime (Depends-on): Remove dependency on tzset.
13859
13860 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13861
13862         Remove the dependency of the strftime module on the tzset module.
13863         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
13864         gl_FUNC_TZSET_CLOBBER.
13865
13866 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13867
13868         Remove the dependency of the strftime module on the tzset module.
13869         * lib/strftime.c (my_strftime)
13870         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
13871         Copy the input structure, to work around some of the bug with
13872         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
13873         Solaris releases, you should also use the tzset module, but we won't
13874         require it as a dependency any more since we don't want LGPLed code
13875         to depend on GPLed code.
13876
13877 2005-07-02  Jim Meyering  <jim@meyering.net>
13878
13879         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
13880         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
13881         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
13882         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
13883
13884 2005-07-02  Jim Meyering  <jim@meyering.net>
13885
13886         * lib/backupfile.c (backup_args): Change a `0' to NULL.
13887
13888 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13889
13890         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
13891         declares only 'struct timespec;' (!).
13892
13893 2005-07-01  Jim Meyering  <jim@meyering.net>
13894
13895         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
13896         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
13897         * lib/save-cwd.c, tempname.c:
13898         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
13899         and don't include <sys/file.h>).
13900
13901 2005-06-29  Jim Meyering  <jim@meyering.net>
13902
13903         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
13904         type name.  Use the variable name instead.
13905         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
13906         Likewise.
13907
13908 2005-06-28  Simon Josefsson  <jas@extundo.com>
13909
13910         * modules/check-version (Files): Add check-version.m4.
13911
13912 2005-06-28  Simon Josefsson  <jas@extundo.com>
13913
13914         * m4/check-version.m4: New file, suggested by Jim Meyering
13915         <jim@meyering.net>.
13916
13917 2005-06-28  Simon Josefsson  <jas@extundo.com>
13918
13919         * lib/check-version.h, lib/check-version.c: New files.
13920
13921 2005-06-28  Simon Josefsson  <jas@extundo.com>
13922
13923         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
13924         collision with global variable.  Better indentation.  Don't
13925         increment buffer pointer beyond buffer end.  Based on comments
13926         from Paul Eggert <eggert@cs.ucla.edu>.
13927
13928         * lib/base64.h: Indent.
13929
13930 2005-06-28  Simon Josefsson  <jas@extundo.com>
13931
13932         * doc/gnulib.texi (Library version handling): New section.
13933
13934 2005-06-28  Jim Meyering  <jim@meyering.net>
13935
13936         * check-module (find_included_lib_files): Hard-code another
13937         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
13938         but modules/fts-lgpl (correctly) does not list those files.
13939
13940         * modules/canonicalize (Files): Add lib/pathmax.h.
13941
13942 2005-06-25  Simon Josefsson  <jas@extundo.com>
13943
13944         * modules/check-version: New file.
13945
13946 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
13947
13948         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
13949         initializer of struct addrinfo, as an indication that we don't
13950         care how many members the structure has.
13951
13952 2005-06-24  Derek Price  <derek@ximbiot.com>
13953         and Bruno Haible  <bruno@clisp.org>
13954
13955         Remove stat module & update lstat.
13956         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
13957         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
13958         * m4/stat.m4: Remove this file.
13959
13960 2005-06-24  Derek Price  <derek@ximbiot.com>
13961         and Bruno Haible  <bruno@clisp.org>
13962
13963         Remove stat module & update lstat.
13964         * lib/stat.c: Remove this file...
13965         (slash_aware_lstat): ...moving this content and its support...
13966         * lib/lstat.c (rpl_lstat): ...into here.
13967         * lib/lstat.h: New file.
13968
13969 2005-06-24  Derek Price  <derek@ximbiot.com>
13970         and Bruno Haible  <bruno@clisp.org>
13971
13972         Remove stat module & update lstat.
13973         * config/srclist.txt (libc sources): Remove stat.
13974
13975 2005-06-24  Derek Price  <derek@ximbiot.com>
13976         and Bruno Haible  <bruno@clisp.org>
13977
13978         Remove stat module & update lstat.
13979         * MODULES.html.sh (stat): Remove.
13980         * MODULES.html: Regenerated.
13981         * modules/lstat (Description): Correct function name.
13982         (Files): Add "lstat.h".
13983         (Depends-on): Remove stat, add xalloc, stat-macros.
13984         * modules/stat: Remove this file.
13985         (Include): Add "lstat.h", remove <sys/stat.h>.
13986
13987 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13988
13989         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
13990         (ranged_convert): Don't save conversion in a temporary struct.
13991         This causes a warning with GCC 4.0.0, and anyway in the typical
13992         case it's not worth the extra 100 bytes or so of code.
13993         (ranged_convert, __mktime_internal): When calling a function via a
13994         pointer P, use P () rather than (*P) (), as we now assume C89 or
13995         better.
13996
13997 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
13998
13999         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
14000         "who -r" failed to give output.  Problem reported by Tim Waugh.
14001
14002         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
14003         (xcalloc): Use it to avoid needless tests.
14004         Problem reported by Jim Meyering.
14005
14006 2005-06-20  Derek Price  <derek@ximbiot.com>
14007
14008         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
14009         unnecessary for Autoconfs > 2.59c.
14010
14011 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14012
14013         * lib/argp.h (__option_is_short): Check upper limit of
14014         __key. Isprint() requires its argument to have the value
14015         of an unsigned char or EOF.
14016
14017 2005-06-16  Jim Meyering  <jim@meyering.net>
14018
14019         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
14020         when either N or S is zero.
14021
14022 2005-06-16  Derek Price  <derek@ximbiot.com>
14023
14024         * m4/bison.m4: Declare YACC & YFLAGS precious.
14025
14026 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
14027
14028         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
14029         multibyte string or pattern, fall back on unibyte matching.
14030         Problem reported by James Youngman.
14031
14032 2005-06-08  Bruno Haible  <bruno@clisp.org>
14033
14034         * modules/csharpcomp: New file.
14035         * MODULES.html.sh (C#): Add csharpcomp.
14036
14037 2005-06-08  Bruno Haible  <bruno@clisp.org>
14038
14039         * m4/csharpcomp.m4: New file, from GNU gettext.
14040
14041 2005-06-08  Bruno Haible  <bruno@clisp.org>
14042
14043         * lib/csharpcomp.h: New file, from GNU gettext.
14044         * lib/csharpcomp.c: New file, from GNU gettext.
14045         * lib/csharpcomp.sh.in: New file, from GNU gettext.
14046
14047 2005-06-08  Bruno Haible  <bruno@clisp.org>
14048
14049         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
14050         warning on mingw.
14051
14052 2005-06-07  Derek Price  <derek@ximbiot.com>
14053
14054         Sync from CVS.
14055         * lib/glob_.h: Indent nested #ifdef.
14056
14057 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
14058
14059         Sync from coreutils.
14060         Use "file name" when talking about file names, instead of "filename"
14061         or "path", as per the GNU coding standards.
14062         * lib/mkdir-p.c: Renamed from makepath.c.
14063         (make_dir_parents): Renamed from make_path.  All callers changed.
14064         * lib/mkdir-p.h: Likewise.  All includers changed.
14065         * lib/filenamecat.c: Renamed from path-concat.c.
14066         (file_name_concat): Renamed from path_concat.  All callers changed.
14067         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
14068         * lib/filenamecat.h: Likewise.  All includers changed.
14069         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
14070         in comments or local variable names.
14071         * lib/basename.c: Likewise.
14072         * lib/canonicalize.c, canonicalize.h: Likewise.
14073         * lib/dirname.c, dirname.h: Likewise.
14074         * lib/euidaccess.c: Likewise.
14075         * lib/exclude.c: Likewise
14076         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
14077         * lib/fsusage.c, fsuage.h: Likewise.
14078         * lib/fts.c, fts_.h: Likewise.
14079         * lib/getcwd.c: Likewise.
14080         * lib/getloadavg.c: Likewise.
14081         * lib/mkstemp.c: Likewise.
14082         * lib/mountlist.c, mountlist.h: Likewise.
14083         * lib/openat.c, openat.h: Likewise.
14084         * lib/readlink-stub.c: Likewise.
14085         * lib/readutmp.c, readutmp.h: Likewise.
14086         * lib/rename.c: Likewise.
14087         * lib/rmdir.c: Likewise.
14088         * lib/same.c: Likewise.
14089         * lib/savedir.c: Likewise.
14090         * lib/stripslash.c: Likewise.
14091         * lib/tempname.c: Likewise.
14092         * lib/xreadlink.c: Likewise.
14093         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
14094         All uses changed.
14095         * lib/exclude.h: Likewise.
14096
14097         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
14098         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
14099         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
14100         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
14101         * lib/pathmax.h: Include <limits.h> unconditionally, since other
14102         files have been getting away with it for years (MORE/BSD 4.3
14103         is extinct now).
14104         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
14105         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
14106
14107         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
14108         Define to 256, not 255, as per modern POSIX.
14109
14110 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
14111
14112         Sync from coreutils.
14113         Use "file name" when talking about file names, instead of "filename"
14114         or "path", as per the GNU coding standards.
14115         * MODULES.html.sh: mkdir-p renamed from makepath.
14116         filenamecat renamed from path-concat.
14117         * modules/filenamecat: Renamed from modules/path-concat.
14118         (Files): filenamecat.h and filenamecat.c renamed from
14119         path-concat.h and path-concat.c.
14120         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
14121         (Include): filenamecat.h, not path-concat.h.
14122         * modules/mkdir-p: Renamed from modules/makepath.
14123         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
14124         makepath.c.
14125         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
14126         (Include): mkdir-p.h, not makepath.h.
14127
14128 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
14129
14130         Sync from coreutils.
14131         * m4/mkdir-p.m4: Renamed from makepath.m4.
14132         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
14133         Rename files from makepath.c to mkdir-p.c, and from
14134         makepath.h to mkdir-p.h.
14135         * m4/filenamecat.m4: Renamed from path-concat.m4.
14136         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
14137         Rename files from path-concat.c to filenamecat.c,
14138         and from path-concat.h to filenamecat.h.
14139         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
14140         "file name" in local variables or comments.
14141         * m4/rename.m4: Likewise.
14142
14143 2005-06-01  Bruno Haible  <bruno@clisp.org>
14144
14145         * modules/csharpexec: New file.
14146         * MODULES.html.sh (C#): New section.
14147
14148 2005-06-01  Bruno Haible  <bruno@clisp.org>
14149
14150         * m4/csharp.m4: New file, from GNU gettext.
14151         * m4/csharpexec.m4: New file, from GNU gettext.
14152
14153 2005-06-01  Bruno Haible  <bruno@clisp.org>
14154
14155         * lib/csharpexec.h: New file, from GNU gettext.
14156         * lib/csharpexec.c: New file, from GNU gettext.
14157         * lib/csharpexec.sh.in: New file, from GNU gettext.
14158
14159 2005-05-31  Derek Price  <derek@ximbiot.com>
14160             Paul Eggert  <eggert@cs.ucla.edu>
14161
14162         Sync from cvs.
14163         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
14164
14165 2005-05-31  Derek Price  <derek@ximbiot.com>
14166             Paul Eggert  <eggert@cs.ucla.edu>
14167
14168         Sync from cvs.
14169         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
14170
14171 2005-05-29  Derek Price  <derek@ximbiot.com>
14172
14173         * config/srclist.txt (glob_.h, glob.c): Add these files.
14174
14175 2005-05-29  Derek Price  <derek@ximbiot.com>
14176
14177         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
14178         * modules/glob: New file.
14179         * modules/getlogin_r: Add link to POSIX spec in description.
14180
14181 2005-05-29  Derek Price  <derek@ximbiot.com>
14182             Paul Eggert  <eggert@cs.ucla.edu>
14183
14184         * m4/glob.m4: New file.
14185
14186 2005-05-29  Derek Price  <derek@ximbiot.com>
14187             Paul Eggert  <eggert@cs.ucla.edu>
14188
14189         * lib/glob_.h, lib/glob.c: New files.
14190
14191 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
14192
14193         * modules/fts (Files): Remove m4/inttypes-pri.m4.
14194         * modules/fts-lgpl (Depends-on): Remove gettext.
14195
14196 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
14197
14198         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
14199         and don't require gt_INTTYPES_PRI.
14200
14201 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
14202
14203         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
14204
14205         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
14206         the configuration hassle isn't worth it.
14207         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
14208         (LONGEST_MODIFIER, PRIuMAX): Remove.
14209
14210 2005-05-27  Bruno Haible  <bruno@clisp.org>
14211
14212         * lib/getlogin_r.h: Remove second include of <stddef.h>.
14213
14214 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
14215
14216         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
14217         _POSIX_PTHREAD_SEMANTICS for Solaris.
14218
14219 2005-05-25  Derek Price  <derek@ximbiot.com>
14220
14221         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
14222
14223 2005-05-25  Derek Price  <derek@ximbiot.com>
14224             Paul Eggert  <eggert@cs.ucla.edu>
14225
14226         * modules/getlogin_r, m4/getlogin_r.m4: New files.
14227         * lib/getlogin_r.c, getlogin_r.h: New files.
14228
14229 2005-05-25  Bruno Haible  <bruno@clisp.org>
14230             Derek Price  <derek@ximbiot.com>
14231
14232         * lib/getlogin_r.h: Simplify API documentation.
14233
14234 2005-05-23  Derek Price  <derek@ximbiot.com>
14235
14236         * modules/minmax (Files): Add m4/minmax.m4.
14237         (configure.ac): Add gl_MINMAX.
14238
14239 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
14240
14241         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
14242         so that unistd-safer.h (GPL'ed code) need not be included.
14243
14244 2005-05-22  Bruno Haible  <bruno@clisp.org>
14245
14246         * m4/minmax.m4: New file.
14247         Based on a patch by Derek Price <derek@ximbiot.com>.
14248
14249 2005-05-22  Bruno Haible  <bruno@clisp.org>
14250
14251         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
14252         (INT64_MIN): Fix definition.
14253         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
14254
14255         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
14256         NEED_SIGNED_INT_TYPES.
14257
14258         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
14259         HAVE_SYSTEM_INTTYPES.
14260
14261 2005-05-22  Bruno Haible  <bruno@clisp.org>
14262
14263         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
14264         Also include <sys/param.h> if it defines MIN, MAX.
14265         Based on a patch by Derek Price <derek@ximbiot.com>.
14266
14267 2005-05-21  Jim Meyering  <jim@meyering.net>
14268
14269         * modules/fts (Files): Add m4/inttypes-pri.m4.
14270         (Depends-on): Add lstat and remove gettext.  Alphabetize.
14271
14272 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14273
14274         New fts module.
14275         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
14276         (setup_dir, free_dir): New functions.
14277         (enter_dir, leave_dir): Define trivial
14278         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
14279         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
14280         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
14281         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
14282         Move to fts-cycle.c.
14283         (fts_open): Use setup_dir.
14284         (fts_close): Use free_dir.
14285         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
14286         This adds a label and some gotos, but the alternatives were messier.
14287         Check for memory allocation failure when entering a dir.
14288         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
14289         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
14290         (FTS): New member fts_cycle, that is a union that contains the
14291         old active_dir_ht and cycle_state.  All uses changed to mention
14292         fts_cycle.ht and fts_cycle.state.
14293         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
14294         fts.c, with the following changes:
14295         (setup_dir, free_dir): New functions.
14296         (enter_dir): Now returns bool.  Return true if successful, false
14297         if memory exhausted.  All callers changed.
14298         Do not bother partly cleaning up on
14299         memory allocation failure; that is free_dir's job.
14300         However, free ad if hash_insert fails, to avoid memory leak.
14301         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
14302         fts->fts_options to see which union member to use.
14303
14304 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14305
14306         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
14307         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
14308
14309 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
14310
14311         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
14312
14313 2005-05-20  Jim Meyering  <jim@meyering.net>
14314
14315         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
14316         Now a macro, to pacify GCC.
14317
14318 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
14319
14320         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
14321         of -1.
14322
14323 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
14324
14325         * lib/chown.c (rpl_chown): Return -1 on failure.
14326
14327 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
14328
14329         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
14330         Don't check for stddef.h.
14331         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
14332         don't use its results.
14333         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
14334         since we include them unconditionally.  Don't require
14335         AM_STDBOOL_H, since stdbool is a prerequisite.
14336         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
14337         since we assume C89 or better.
14338         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
14339         as we don't use their results.
14340         Don't check for fchdir, memmove, memset, strrchr, as we use
14341         them unconditionally.
14342         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
14343         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
14344
14345 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
14346
14347         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
14348         Include <stddef.h> unconditionally, since we assume C89 now.
14349         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
14350         * lib/fts.c: Include fts_.h first, to check interface.
14351         Do not include intprops.h; no longer needed.
14352         Include cycle-check.h and hash.h, since fts_.h no longer does.
14353         Remove unnecessary casts of closedir to void.
14354         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
14355         decide whether to decrement nlinks.
14356         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
14357         (FTS): Use struct hash_table * instead of Hash_table, so that
14358         we no longer need to include hash.h here.
14359
14360 2005-05-18  Jim Meyering  <jim@meyering.net>
14361
14362         * modules/dirfd (License): Change to LGPL.  Most of the code
14363         is already in the public domain.
14364
14365 2005-05-18  Jim Meyering  <jim@meyering.net>
14366
14367         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
14368         Reported by Yoann Vandoorselaere.
14369
14370 2005-05-17  Jim Meyering  <jim@meyering.net>
14371
14372         * m4/fts.m4: New file, from coreutils.
14373
14374 2005-05-17  Jim Meyering  <jim@meyering.net>
14375
14376         * lib/fts.c, lib/fts_.h: New files, from coreutils.
14377
14378 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14379
14380         Sync from coreutils.
14381         * m4/unlinkdir.m4: New file.
14382
14383 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14384
14385         Sync from coreutils.
14386         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
14387         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
14388         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
14389         White space changes only.
14390         * lib/makepath.c (make_path): Port to hosts where leading "//" is
14391         special.
14392         * lib/yesno.c: Include getline.h, not ctype.h.
14393         (yesno): Don't remove leading white space; POSIX doesn't allow it.
14394         Use getline to remove arbitrary restriction on response length.
14395
14396 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14397
14398         * config/srclist-update: Spell out "Street" in FSF postal
14399         mail address; this is the style the FSF seems to prefer.
14400
14401         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
14402         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
14403         this updates FSF postal mail address.
14404
14405         Sync from coreutils.
14406         * modules/unlinkdir: New file.
14407         * modules/yesno (Depends-on): Add getline.
14408         * MODULES.html.sh (File system functions): Add unlinkdir.
14409
14410 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14411
14412         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
14413         lib/strsep.h:
14414         Change the initial comment to refer to GPL, not LGPL.
14415         gnulib-tool will change it to LGPL as needed.
14416
14417         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
14418         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
14419         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
14420         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
14421         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
14422         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
14423         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
14424         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
14425         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
14426         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
14427         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
14428         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
14429         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
14430         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
14431         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
14432         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
14433         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
14434         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
14435         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
14436         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
14437         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
14438         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
14439         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
14440         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
14441         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
14442         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
14443         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
14444         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
14445         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
14446         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
14447         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
14448         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
14449         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
14450         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
14451         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
14452         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
14453         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
14454         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
14455         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
14456         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
14457         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
14458         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
14459         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
14460         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
14461         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
14462         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
14463         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
14464         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
14465         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
14466         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
14467         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
14468         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
14469         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
14470         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
14471         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
14472         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
14473         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
14474         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
14475         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
14476         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
14477         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
14478         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
14479         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
14480         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
14481         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
14482         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
14483         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
14484         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
14485         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
14486         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
14487         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
14488         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
14489         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
14490         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
14491         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
14492         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
14493         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
14494         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
14495         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
14496         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
14497         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
14498         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
14499         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
14500         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
14501         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
14502         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
14503         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
14504         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
14505         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
14506         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
14507         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
14508         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
14509         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
14510         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
14511         lib/yesno.c, lib/yesno.h:
14512         Update FSF postal mail address.
14513
14514 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
14515
14516         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
14517         tests/test-memmem.c, tests/test-stpncpy.c:
14518         Update FSF postal mail address.
14519
14520 2005-05-13  Bruno Haible  <bruno@clisp.org>
14521
14522         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
14523         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
14524         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
14525         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
14526         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
14527         Add support for 64-bit integers in the MSVC compiler.
14528
14529 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
14530
14531         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
14532
14533 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
14534
14535         * gnulib-tool (func_import): Sort and uniquify recommended includes.
14536
14537 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
14538
14539         * doc/getdate.texi (General date syntax): Don't say that date
14540         date --iso-8601=ns generates acceptable dates; it doesn't yet.
14541         Problem reported by Nic Ferrier.
14542
14543 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14544
14545         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
14546         specified in ai_socktype. Fix invalid ai_protocol
14547         check. ai_protocol is usually set to 0 or depending on
14548         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
14549         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
14550         ai_socktype / ai_protocol in the returned addrinfo structure.
14551
14552 2005-05-10  Simon Josefsson  <jas@extundo.com>
14553
14554         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
14555         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14556
14557 2005-05-10  Karl Berry  <karl@gnu.org>
14558
14559         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
14560         (from http://www.gnu.org/licenses).
14561         * doc/COPYING.LIB: also rename to COPYING.LESSER.
14562         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
14563         fdl.texi suffices.
14564
14565 2005-05-10  Karl Berry  <karl@gnu.org>
14566
14567         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
14568         (COPYING.DOC): remove.
14569
14570         * config/srclist-update: new FSF address.
14571
14572 2005-05-10  Derek Price  <derek@ximbiot.com>
14573
14574         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
14575         possible.
14576
14577 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14578             Bruno Haible  <bruno@clisp.org>
14579
14580         * modules/inet_ntop: New file.
14581         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14582         inet_ntop.
14583
14584 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14585             Bruno Haible  <bruno@clisp.org>
14586
14587         * m4/inet_ntop.m4: New file.
14588
14589 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14590             Bruno Haible  <bruno@clisp.org>
14591
14592         * lib/inet_ntop.h: New file.
14593         * lib/inet_ntop.c: New file, from glibc with modifications.
14594
14595 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
14596
14597         * modules/time_r (License): Change to LGPL.
14598         * modules/extensions (License): Change to LGPL.  Actually,
14599         the license is more permissive than that, but currently gnulib-tool
14600         doesn't know how to handle more-permissive licenses.
14601
14602         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
14603         Problem reported by Dave Love.
14604
14605 2005-05-08  Jim Meyering  <jim@meyering.net>
14606
14607         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
14608         blank.
14609
14610 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
14611
14612         * modules/argmatch (Depends-on): Add stdbool.
14613         * modules/backupfile (Depends-on): Likewise.
14614         * modules/chdir-long (Depends-on): Likewise.
14615         * modules/closeout (Depends-on): Likewise.
14616         * modules/cycle-check (Depends-on): Likewise.
14617         * modules/dirname (Depends-on): Likewise.
14618         * modules/fnmatch (Depends-on): Likewise.
14619         * modules/fsusage (Depends-on): Likewise.
14620         * modules/fwriteerror (Depends-on): Likewise.
14621         * modules/getcwd (Depends-on): Likewise.
14622         * modules/getloadavg (Depends-on): Likewise.
14623         * modules/hard-locale (Depends-on): Likewise.
14624         * modules/makepath (Depends-on): Likewise.
14625         * modules/mountlist (Depends-on): Likewise.
14626         * modules/nanosleep (Depends-on): Likewise.
14627         * modules/posixtm (Depends-on): Likewise.
14628         * modules/quotearg (Depends-on): Likewise.
14629         * modules/readtokens (Depends-on): Likewise.
14630         * modules/readtokens0 (Depends-on): Likewise.
14631         * modules/readutmp (Depends-on): Likewise.
14632         * modules/save-cwd (Depends-on): Likewise.
14633         * modules/strftime (Depends-on): Likewise.
14634         * modules/userspec (Depends-on): Likewise.
14635         * modules/utimecmp (Depends-on): Likewise.
14636         * modules/xgetcwd (Depends-on): Likewise.
14637         * modules/xnanosleep (Depends-on): Likewise.
14638         * modules/xstrtod (Depends-on): Likewise.
14639         * modules/yesno (Depends-on): Likewise.
14640
14641 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
14642
14643         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
14644         needless checks.
14645
14646 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14647
14648         Merge from coreutils.  Among other things,
14649         add bulletproofing for cases where stdin, stdout, or stderr are closed.
14650         * lib/fd-safer.c: New file.
14651         * lib/fcntl-safer.h, open-safer.c: Remove.
14652         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
14653         * lib/dup-safer.c: Include unistd-safer.h first.
14654         Don't include errno.h.
14655         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
14656         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
14657         * lib/file-type.c: Rely on file-type.h change.
14658         * lib/getloadavg.c: Include unistd-safer.h.
14659         (getloadavg): Use safer open.
14660         * lib/getusershell.c: Include "stdio-safer.h".
14661         (getusershell): Use safer fopen.
14662         * lib/long-options.c (long_options): Use NULL rather than 0.
14663         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
14664         'free'.
14665         * lib/modechange.c: Likewise.
14666         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
14667         (MODE_DONE): New constant.
14668         (struct mode_change): Remove 'next' member.
14669         (make_node_op_equals): New function; like the old one of the
14670         same name, except it allocates an array.
14671         (mode_compile, mode_create_from_ref): Use it.
14672         (mode_compile): Allocate result as an array, not a linked list.
14673         Parse octal string ourself, so that we catch mistakes like "+0".
14674         (mode_adjust): Arg is an array, not a linked list.
14675         * lib/modechange.c: Include stat-macros.h, xalloc.h.
14676         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
14677         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
14678         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
14679         Remove.  This is now stat-macros.h's job.
14680         (talloc): Remove.  All callers replaced by xalloc, so that
14681         our invokers don't have to worry about reporting memory failures.
14682         (make_node_op_equals): Remove.
14683         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14684         New constants.
14685         (struct mode_change): Moved here from modechange.h.
14686         (mode_append_entry): Remove.
14687         (mode_compile): Remove MASKED_OPS arg, since it encouraged
14688         apps to have incorrect behavior.  Use simpler algorithm for head
14689         and tail.  Don't futz with umask; that's now the job of mode_adjust.
14690         Detect more invalid usages rather than having somewhat-random behavior.
14691         Don't insert an "a=" action, as that leads to incorrect behavior.
14692         (mode_compile, mode_create_from_ref): Return NULL on error instead
14693         of an enum, since now there's only one way to have an error.  All
14694         callers changed.
14695         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
14696         at the correct time.  Simplify calculation of "+u" and its ilk.
14697         Don't mishandle "+X".
14698         (mode_free): Remove "register" and localize decls.
14699         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
14700         (struct mode_change): Move to modechange.c; callers don't
14701         need to see this stuff.
14702         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
14703         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
14704         (mode_change, mode_adjust): Reflect the new signatures noted above.
14705         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
14706         that might redefine system include files.
14707         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
14708         (my_usleep): Use NULL rather than (void *) 0.
14709         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
14710         Use siginterrupt to specify that system calls should be interrupted.
14711         (rpl_nanosleep): Move initialization of suspended closer to call of
14712         my_usleep.
14713         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
14714         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
14715         (desirable_utmp_entry): New function.
14716         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
14717         using x2nrealloc, to simplify logic.
14718         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
14719         size calculation.  Do not assume utmp file is a regular file.
14720         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
14721         (READ_UTMP_CHECK_PIDS): New constant.
14722         * lib/save-cwd.c: Include unistd-safer.h.
14723         (save_cwd): Use fd_safer.
14724         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
14725         [!_LIBC] Include "stat-macros.h" instead.
14726         * lib/unistd-safer.h (fd_safer): New decl.
14727
14728 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14729
14730         * modules/getloadavg (Depends-on): Add unistd-safer.
14731         * modules/getusershell (Depends-on): Add stdio-safer.
14732         * modules/lstat (Depends-on): Remove xalloc.
14733         * modules/mkstemp (Depends-on): Add stat-macros.
14734         * modules/modechange (Depends-on): Remove xstrtol.
14735         Add stat-macros, xalloc.
14736         * modules/save-cwd (Depends-on): Add unistd-safer.
14737         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
14738         * modules/unistd-safer (Files): Add lib/fd-safer.c
14739         (Makefile.am): Remove lib_SOURCES.
14740
14741         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
14742         Remove fcntl-safer; unistd-safer supersedes it.
14743
14744 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14745
14746         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
14747         AC_HEADER_STAT.
14748         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
14749         (gl_PREREQ_CHOWN): Remove.
14750         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
14751         it.  Don't require AC_HEADER_STAT.
14752         (gl_PREREQ_LSTAT): Remove.
14753         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
14754         Don't require AC_HEADER_STAT.
14755         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
14756         (gl_PREREQ_RMDIR): Remove.
14757         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
14758         mention stat-macros.h or AC_HEADER_STAT, since we'll make
14759         the stat-macros module a prerequisite.
14760         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
14761         * m4/filemode.m4 (gl_FILEMODE): Likewise.
14762         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
14763         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
14764         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
14765         variable names.
14766         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
14767         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
14768         variable prefixes.
14769         * m4/fcntl-safer.m4: Remove.
14770         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
14771         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
14772         Invoke gl_PREREQ_FD_SAFER.
14773         (gl_PREREQ_FD_SAFER): New macro.
14774         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
14775         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
14776         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
14777         Remove duplicate call to AC_LIBOBJ(readutmp).
14778         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
14779
14780         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
14781         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
14782
14783 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
14784
14785         * MODULES.html.sh (Misc): Add byteswap.
14786
14787 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14788
14789         * modules/getcwd (Depends-on): Add extensions.
14790         * modules/openat (Depends-on): Likewise.
14791
14792 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14793
14794         * modules/byteswap: New file.
14795
14796 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14797
14798         * m4/byteswap.m4: New file.
14799
14800 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
14801
14802         * lib/byteswap_.h: New file.
14803
14804 2005-04-25  Karl Berry  <karl@gnu.org>
14805
14806         * m4/gettext.m4: Update from GNU gettext 0.14.4.
14807
14808 2005-04-25  Albert Chin  <china@thewrittenword.com>
14809
14810         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
14811         Toolkit C bug.
14812
14813 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
14814
14815         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
14816         (func_ln_if_changed) Remove forcibly for no error message
14817         in case file does not exist.
14818
14819 2005-04-19  Simon Josefsson  <jas@extundo.com>
14820
14821         * gnulib-tool (Options): Make --symlink mean --symbolic.
14822
14823 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
14824
14825         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
14826
14827 2005-04-16  Simon Josefsson  <jas@extundo.com>
14828
14829         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
14830
14831 2005-04-15  Simon Josefsson  <jas@extundo.com>
14832
14833         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
14834
14835 2005-04-15  Simon Josefsson  <jas@extundo.com>
14836
14837         * gnulib-tool: Rename --symlink to --symbolic.
14838
14839 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
14840
14841         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
14842         symbolic links to files instead of copying/moving.  Add --aux-dir,
14843         specifying directory relative --dir where auxiliary build tools
14844         are placed.
14845
14846 2005-04-14  Bruno Haible  <bruno@clisp.org>
14847
14848         * modules/allocsa (License): Change to LGPL.
14849         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
14850
14851 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
14852
14853         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
14854         that "UTC +1 second" continues to work.  Problem reported
14855         by Dmitry V. Levin.
14856         (relunit_snumber): New rule.
14857         (relunit): Use it.
14858
14859 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
14860
14861         * lib/getdate.y (universal_time_zone_table): New constant.
14862         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
14863         universal_time_zone_table.
14864         (lookup_zone): Prefer universal_time_zone_table to
14865         local_time_zone_table, so that "GMT" time stamps are allowed in
14866         London during the summer.  Problem reported by Ian Abbott.
14867
14868 2005-04-12  Jim Meyering  <jim@meyering.net>
14869
14870         * lib/human.c (humblock): Set *options even when returning due to
14871         xstrtoumax conversion failure.  Thanks to a used-uninitialized
14872         warning from gcc-4.
14873
14874 2005-04-09  Jim Meyering  <jim@meyering.net>
14875
14876         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
14877         -Wuninitialized: initialize tm0.tm_year.
14878
14879 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
14880
14881         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
14882         count, since there's no maximum.  All uses changed.
14883         Add member dsts_seen.
14884         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
14885         not being INT_MAX.
14886         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
14887         Use pc_rels_seen to decide whther a date is absolute.
14888
14889         * lib/getdate.y (number): Don't overwrite year.
14890         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
14891         check.
14892
14893 2005-04-02  Simon Josefsson  <jas@extundo.com>
14894
14895         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
14896         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
14897
14898 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
14899
14900         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
14901         where no absolute path name can be longer than PATH_MAX.
14902
14903 2005-03-27  Jim Meyering  <jim@meyering.net>
14904
14905         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
14906
14907 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
14908
14909         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
14910         "one's complement" -> "ones' complement" in comment, as per Knuth.
14911         "value of type" -> "type or expression" in comment.
14912         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
14913
14914 2005-03-26  Jim Meyering  <jim@meyering.net>
14915
14916         Comment nits.
14917         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
14918         Correct typos: s/or/of/.
14919
14920 2005-03-26  Jim Meyering  <jim@meyering.net>
14921
14922         * modules/check-include-files: Move to ../ and rename to...
14923         * check-module: ...this.
14924
14925 2005-03-25  Jim Meyering  <jim@meyering.net>
14926
14927         * modules/xvasprintf (Files): Add xalloc.h.
14928
14929 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14930
14931         * modules/gettext (Files): config/config.rpath ->
14932         build-aux/config.rpath
14933         * modules/iconv (Files): Likewise.
14934         Problem reported by Oskar Liljeblad.
14935
14936 2005-03-23  Jim Meyering  <jim@meyering.net>
14937
14938         * modules/check-include-files: New script to check for
14939         missing dependencies, multiple includes, etc.
14940
14941         * modules/c-strtold (Depends-on): Add xalloc.
14942         * modules/c-strtod (Depends-on): Add xalloc.
14943         * modules/hash (Depends-on): Add xalloc.
14944         (Files): Remove lib/xalloc.h.
14945
14946         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
14947         * modules/userspec (Files): Add lib/inttostr.h.
14948
14949 2005-03-23  Jim Meyering  <jim@meyering.net>
14950
14951         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
14952
14953 2005-03-22  Jim Meyering  <jim@meyering.net>
14954
14955         * modules/stat-macros: New module.
14956         * modules/canonicalize, modules/euidaccess, modules/file-type,
14957         * modules/filemode, modules/lchown, modules/makepath,
14958         * modules/rmdir, modules/stat: Depend on new stat-macros module
14959         rather than listing lib/stat-macros.h manually.
14960         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
14961
14962 2005-03-22  Jim Meyering  <jim@meyering.net>
14963
14964         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
14965
14966 2005-03-22  Bruno Haible  <bruno@clisp.org>
14967
14968         * config/srclist.txt: Replace target directory 'config' with
14969         'build-aux'.
14970         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
14971         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
14972         ../build-aux/.
14973
14974 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
14975
14976         * modules/chdir-long (Depends-on): Add mempcpy.
14977
14978         * modules/acl, modules/backupfile, modules/c-strtod,
14979         modules/c-strtold, modules/canon-host, modules/canonicalize,
14980         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
14981         modules/exclude, modules/exitfail, modules/file-type,
14982         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
14983         modules/getdate, modules/getline, modules/getpagesize,
14984         modules/getpass, modules/getugroups, modules/group-member,
14985         modules/hard-locale, modules/hash, modules/human, modules/idcache,
14986         modules/inttostr, modules/long-options, modules/makepath,
14987         modules/md5, modules/memcasecmp, modules/memcoll,
14988         modules/modechange, modules/mountlist, modules/path-concat,
14989         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
14990         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
14991         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
14992         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
14993         modules/strftime, modules/strndup, modules/strverscmp,
14994         modules/timespec, modules/unlocked-io, modules/userspec,
14995         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
14996         modules/yesno:
14997         Remove lib_SOURCES line from Makefile.am section, as this is now
14998         done automatically by the corresponding Autoconf macro.
14999
15000 2005-03-21  Jim Meyering  <jim@meyering.net>
15001
15002         Changes imported from coreutils.
15003
15004         * lib/cycle-check.c: Don't include xalloc.h.
15005
15006         * lib/path-concat.c: Don't include assert.h.
15007         (path_concat): Remove assertion that would have triggered
15008         for ABASE starting with more than one slash.
15009         Reported by Andreas Schwab.
15010
15011         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
15012         properly when ABASE is an absolute file name.
15013         Correct the description of this function.
15014         Include <assert.h>.
15015         Add an assertion and a test driver.
15016         This fixes a bug introduced on 2004-07-02.
15017         Andreas Schwab reported the resulting failure of cp --parents:
15018         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
15019
15020 2005-03-21  Jim Meyering  <jim@meyering.net>
15021
15022         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
15023         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
15024
15025 2005-03-21  Jim Meyering  <jim@meyering.net>
15026         and  Paul Eggert  <eggert@cs.ucla.edu>
15027
15028         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
15029         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
15030         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
15031         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
15032         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
15033         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
15034         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
15035         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
15036         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
15037         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
15038         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
15039         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
15040         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
15041         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
15042         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
15043         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
15044         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
15045         for these modules.
15046
15047 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
15048
15049         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
15050         (which shouldn't happen), generate nothing instead of returning 0
15051         immediately, so that nstrftime (NULL, ...) doesn't return 0.
15052
15053 2005-03-16  Bruno Haible  <bruno@clisp.org>
15054
15055         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
15056         HAVE_LONGLONG_64BIT.
15057
15058 2005-03-16  Bruno Haible  <bruno@clisp.org>
15059
15060         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
15061         HAVE_LONGLONG_64BIT.
15062
15063 2005-03-16  Bruno Haible  <bruno@clisp.org>
15064
15065         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
15066         HAVE_LONGLONG_64BIT.
15067
15068 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
15069
15070         * lib/strftime.c (my_strftime): Prepend space to format so that we can
15071         reliably distinguish strftime failure from empty output on POSIX
15072         hosts.
15073
15074 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
15075
15076         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
15077         (iconv_string): Don't guess a size-zero buffer, as that might cause
15078         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
15079         result would be 'too large', where 'too large' is (heuristically)
15080         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
15081         overflow concerns.  This will prevent some unwanted malloc failures
15082         when the inputs are very large.
15083
15084 2005-03-15  Karl Berry  <karl@gnu.org>
15085
15086         * config/srclist.txt (config.rpath): from gettext.
15087         * config/config.rpath: update.
15088
15089 2005-03-15  Bruno Haible  <bruno@clisp.org>
15090
15091         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
15092         to 'negate'.
15093
15094         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
15095         variable.
15096
15097         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
15098         results.
15099
15100 2005-03-14  Simon Josefsson  <jas@extundo.com>
15101
15102         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
15103         <fx@gnu.org>.
15104
15105 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
15106
15107         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
15108         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
15109         intprops.h.
15110         * lib/strtol.c: Likewise.
15111
15112 2005-03-14  Jim Meyering  <jim@meyering.net>
15113
15114         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
15115         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
15116         to be nonzero so that we (and caller) can detect the difference
15117         between a valid zero-length expansion and an error return, even
15118         when the underlying strftime fails before writing anything into
15119         that location.
15120
15121 2005-03-14  Bruno Haible  <bruno@clisp.org>
15122
15123         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
15124         Update from GNU gettext 0.14.3.
15125
15126 2005-03-10  Jim Meyering  <jim@meyering.net>
15127
15128         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
15129
15130 2005-03-10  Jim Meyering  <jim@meyering.net>
15131
15132         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
15133         so that this module works on systems without fchdir.
15134
15135 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
15136
15137         Factor int-properties macros into a single file, except for
15138         glibc-related files.
15139         * lib/intprops.h: New file.
15140         * lib/getloadavg.c: Include it instead of limits.h.
15141         (INT_STRLEN_BOUND): Remove.
15142         * lib/human.c: Include intprops.h.
15143         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
15144         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
15145         302/1000.
15146         * lib/inttostr.h: Include intprops.h instead of limits.h.
15147         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
15148         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
15149         for consistency with intprops.h.
15150         (time_t_is_integer, twos_complement_arithmetic): Use them.
15151         * lib/sig2str.h: Include <signal.h>, intprops.h.
15152         (INT_STRLEN_BOUND): Remove.
15153         * lib/strftime.c (TYPE_SIGNED): Remove.
15154         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
15155         * lib/strtol.c: Adjust comments to match intprops.h.
15156         * lib/userspec.c: Include intprops.h.
15157         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
15158         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
15159         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
15160         instead of rolling our own expressions.
15161         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
15162
15163         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
15164         instead of int.
15165         (my_strftime): Do not mishandle years close to INT_MAX, by doing
15166         the right thing even if adding 1900 would overflow.  Similarly
15167         for tm_mon + 1 and tm_yday + 1.
15168         Make %Y always equivalent to %C%y, and similarly for %G and %g.
15169         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
15170         (DO_SIGNED_NUMBER): New macro.
15171         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
15172
15173 2005-03-07  Bruno Haible  <bruno@clisp.org>
15174
15175         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
15176
15177 2005-03-07  Bruno Haible  <bruno@clisp.org>
15178
15179         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
15180
15181 2005-03-04  Derek R. Price  <derek@ximbiot.com>
15182
15183         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
15184         (func_import): Only replace files via --import when they have actually
15185         changed.
15186
15187 2005-03-03  Derek R. Price  <derek@ximbiot.com>
15188
15189         * m4/mmap-anon.m4: New file.
15190         * m4/pagealign_alloc.m4: New file.
15191
15192 2005-03-03  Derek R. Price  <derek@ximbiot.com>
15193             Bruno Haible  <bruno@clisp.org>
15194
15195         * modules/pagealign_alloc: New file.
15196         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
15197
15198 2005-03-03  Derek R. Price  <derek@ximbiot.com>
15199             Bruno Haible  <bruno@clisp.org>
15200
15201         * lib/pagealign_alloc.h: New file.
15202         * lib/pagealign_alloc.c: New file.
15203
15204 2005-03-03  Bruno Haible  <bruno@clisp.org>
15205
15206         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
15207         Use an all-permissive copyright notice, recommended by RMS.
15208
15209 2005-03-02  Bruno Haible  <bruno@clisp.org>
15210
15211         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
15212         of AIX, the replacement has to be done only after <string.h> is
15213         included, therefore not in config.h. stpncpy.h does the replacement,
15214         and stpncpy.c uses it.
15215
15216 2005-03-02  Bruno Haible  <bruno@clisp.org>
15217
15218         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
15219         stpncpy.c uses it.
15220
15221 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
15222
15223         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
15224         The workaround isn't strictly needed for POSIX conformance, and
15225         it's too much of a pain to configure and maintain.  We'll ask
15226         people to fix their kernels instead.
15227         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
15228         (NANOSLEEP_BUG_WORKAROUND): Remove.
15229         (xnanosleep): Remove the workaround.
15230
15231 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
15232
15233         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
15234         Reported by Derek Price.
15235         (Include): Add "timespec.h".
15236
15237         * modules/xnanosleep (Depends-on): Remove gethrxtime.
15238
15239 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
15240
15241         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
15242         to detect nanosleep bug.
15243
15244 2005-03-01  Bruno Haible  <bruno@clisp.org>
15245
15246         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
15247
15248 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
15249
15250         * modules/gethrxtime: New file.
15251         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
15252         (Depends-on): Add gethrxtime.
15253         (configure.ac): Add gl_XNANOSLEEP.
15254         (Makefile.am): Remove lib_SOURCES line.
15255
15256 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
15257
15258         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
15259         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
15260
15261 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
15262
15263         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
15264         * lib/timespec.h (gettime): Return void, since it always
15265         succeeds now.  All uses changed.
15266         * lib/gettime.c (gettime) Likewise.
15267         [HAVE_NANOTIME]: Prefer nanotime.
15268         Assume gettimeofday succeeds, as POSIX requires.
15269         Assime time () succeeds, since other code already does.
15270         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
15271         (timespec_subtract): Remove.
15272         (NANOSLEEP_BUG_WORKAROUND): New constant.
15273         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
15274         things considerably.  Use it only on GNU/Linux hosts, since the
15275         workaround shouldn't be needed elsewhere.
15276
15277 2005-02-24  Bruno Haible  <bruno@clisp.org>
15278
15279         * modules/gettext (Files): Add m4/glibc2.m4.
15280
15281 2005-02-24  Bruno Haible  <bruno@clisp.org>
15282
15283         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
15284         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
15285         * m4/progtest.m4:
15286         Update from GNU gettext 0.14.2.
15287         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
15288
15289 2005-02-24  Bruno Haible  <bruno@clisp.org>
15290
15291         * lib/localcharset.c: Update from GNU gettext 0.14.2.
15292         * lib/config.charset: Update from GNU gettext 0.14.2.
15293
15294 2005-02-24  Bruno Haible  <bruno@clisp.org>
15295
15296         * lib/gettext.h: Update from GNU gettext 0.14.2.
15297
15298 2005-02-23  Simon Josefsson  <jas@extundo.com>
15299
15300         * m4/iconvme.m4: New file.
15301
15302 2005-02-23  Jim Meyering  <jim@meyering.net>
15303
15304         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
15305         change.
15306         Thanks to Bruno Haible for catching it.
15307
15308 2005-02-22  Simon Josefsson  <jas@extundo.com>
15309
15310         * modules/iconvme: New file.
15311
15312         * MODULES.html.sh: Add iconvme.
15313
15314 2005-02-22  Simon Josefsson  <jas@extundo.com>
15315
15316         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
15317
15318 2005-02-22  Simon Josefsson  <jas@extundo.com>
15319
15320         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
15321
15322 2005-02-22  Jim Meyering  <jim@meyering.net>
15323
15324         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
15325         s/ifndef/ifdef/.
15326
15327 2005-02-20  Neil Conway  <neilc@samurai.com>
15328
15329         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
15330         returned by OSX/Darwin if the specified buffer is not large
15331         enough for the hostname.
15332
15333 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15334
15335         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
15336         pass it to _help, otherwise the latter coredumps trying to
15337         dereference state.root_argp.
15338
15339 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
15340
15341         * modules/chdir-long (Depends-on): Add memrchr.
15342         * modules/memrchr (Files): Add lib/memrchr.h.
15343         (Include): "memrchr.h".
15344
15345 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
15346
15347         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
15348
15349 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
15350
15351         * lib/memrchr.h: New file.
15352         * lib/chdir-long.c: Include it.
15353         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
15354         Don't bother including stddef.h.
15355
15356 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
15357
15358         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
15359         inclusion.
15360         Include <sys/types.h>, for dev_t.
15361         (ME_DUMMY, ME_REMOTE): Move from here....
15362         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
15363         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
15364         Dmitry V. Levin.
15365         Include mountlist.h first, to test the interface.
15366
15367 2005-01-29  Bruno Haible  <bruno@clisp.org>
15368
15369         * lib/progname.c (program_name): Initialize.
15370         Needed when linking statically on MacOS X.
15371
15372 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
15373
15374         Sync from coreutils.
15375         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
15376         (Depends-on): Add c-strtod.
15377         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
15378
15379 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
15380
15381         Sync from coreutils.
15382         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
15383
15384         Remove files that are specific to coreutils.
15385         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
15386
15387 2005-01-28  Bruno Haible  <bruno@clisp.org>
15388
15389         * modules/javacomp: New file.
15390         * MODULES.html.sh (Java): Add javacomp.
15391
15392 2005-01-28  Bruno Haible  <bruno@clisp.org>
15393
15394         * m4/javacomp.m4: New file, from GNU gettext.
15395
15396 2005-01-28  Bruno Haible  <bruno@clisp.org>
15397
15398         * lib/javacomp.sh.in: New file, from GNU gettext.
15399         * lib/javacomp.h: New file, from GNU gettext.
15400         * lib/javacomp.c: New file, from GNU gettext.
15401
15402 2005-01-26  Simon Josefsson  <jas@extundo.com>
15403
15404         * lib/gai_strerror.c: Use GPL in header.
15405
15406 2005-01-26  Bruno Haible  <bruno@clisp.org>
15407
15408         * modules/javaexec: New file.
15409         * MODULES.html.sh (Java): Add javaexec.
15410
15411 2005-01-26  Bruno Haible  <bruno@clisp.org>
15412
15413         * m4/javaexec.m4: New file, from GNU gettext.
15414
15415 2005-01-26  Bruno Haible  <bruno@clisp.org>
15416
15417         * lib/javaexec.sh.in: New file, from GNU gettext.
15418         * lib/javaexec.h: New file, from GNU gettext.
15419         * lib/javaexec.c: New file, from GNU gettext.
15420
15421 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15422
15423         * modules/lchown (Depends-on): Remove lchown.h
15424
15425 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15426
15427         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
15428         must be defined if the header file was not found, in order
15429         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
15430
15431 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15432
15433         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
15434         initializers for struct pentry_state.
15435         (__argp_error): Check return value of __asprintf
15436         (__argp_failure): Translate error message
15437
15438         * lib/argp-parse.c: Removed braces around the expansion of N_()
15439
15440 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15441
15442         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
15443         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
15444         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
15445         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
15446         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
15447         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
15448         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
15449         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
15450         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
15451         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
15452         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
15453         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
15454         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
15455         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
15456         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
15457         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
15458         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
15459         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
15460         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
15461         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
15462         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
15463         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
15464         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
15465         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
15466         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
15467         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
15468         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
15469         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
15470         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
15471         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
15472         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
15473         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
15474         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
15475         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
15476         xstrtol.m4, xstrtoumax.m4, yesno.m4:
15477         Use an all-permissive copyright notice, recommended by RMS.
15478
15479 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
15480
15481         * modules/chdir-long (Depends-on): Remove mempcpy.
15482
15483 2005-01-21  Jim Meyering  <jim@meyering.net>
15484
15485         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
15486         same value as for Solaris 9.
15487
15488         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
15489         component length.  This included changing the parameter to be
15490         of type `char *' rather than `char const *'.
15491         * lib/chdir-long.h (chdir_long): Update prototype.
15492
15493         * lib/openat.c (fdopendir, fstatat): New functions.
15494         * lib/openat.h: Include headers required for use of DIR and struct
15495         stat.
15496         [AT_SYMLINK_NOFOLLOW]: Define.
15497         (fdopendir, fstatat): Add prototypes.
15498
15499 2005-01-21  Bruno Haible  <bruno@clisp.org>
15500
15501         * modules/classpath: New file.
15502         * MODULES.html.sh (Java): Add classpath.
15503
15504 2005-01-21  Bruno Haible  <bruno@clisp.org>
15505
15506         * lib/classpath.h: New file, from GNU gettext.
15507         * lib/classpath.c: New file, from GNU gettext.
15508
15509 2005-01-20  Simon Josefsson  <jas@extundo.com>
15510
15511         * modules/version-etc-fsf: New file.
15512
15513 2005-01-20  Simon Josefsson  <jas@extundo.com>
15514
15515         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
15516         * lib/version-etc.c: Remove version_etc_copyright.
15517         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
15518         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
15519
15520 2005-01-20  Simon Josefsson  <jas@extundo.com>
15521
15522         * lib/base64.h (isbase64): Add.
15523
15524         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
15525         using a unsigned prototype, don't inline.
15526         (base64_decode): Use it.
15527
15528 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15529
15530         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
15531         it.
15532
15533 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15534
15535         * lib/save-cwd.c (save_cwd): Remove code to support the case
15536         where fchdir is missing or flaky.
15537
15538 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
15539
15540         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
15541
15542 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
15543
15544         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
15545         AC_LIBSOURCES now does this.
15546         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
15547         with new ullong_max module.
15548
15549 2005-01-19  Bruno Haible  <bruno@clisp.org>
15550
15551         * modules/sh-quote: New file.
15552         * MODULES.html.sh (Executing programs): Add sh-quote.
15553
15554 2005-01-19  Bruno Haible  <bruno@clisp.org>
15555
15556         * lib/sh-quote.h: New file, from GNU gettext.
15557         * lib/sh-quote.c: New file, from GNU gettext.
15558
15559 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15560
15561         Merge from coreutils.
15562         * m4/ullong_max.m4: New file.
15563         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
15564         (gl_MACROS): Assume localeconv exists.
15565
15566 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15567
15568         Merge changes from coreutils, as described below in several
15569         changelogs dated today.
15570
15571         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
15572         (O_DIRECTORY): Remove; not needed here, since "." must be
15573         a directory.  All uses removed.
15574         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
15575         universal on Suns, and we also need to test for IRIX.
15576         Revamp code to use 'if' rather than '#if'.
15577         Avoid unnecessary comparison of cwd->desc to 0.
15578
15579         * lib/utimens.c (futimens): Robustify the previous patch, by checking
15580         for known valid error numbers rather than observed invalid ones.
15581
15582 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
15583
15584         * modules/ullong_max: New file.
15585
15586         * modules/chdir-long, modules/openat: New files.
15587         * modules/save-cwd (Depends-on): Depend on chdir-long.
15588         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
15589
15590 2005-01-18  Jim Meyering  <jim@meyering.net>
15591
15592         Merge from coreutils.
15593         * m4/chdir-long.m4, m4/openat.m4: New files.
15594         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
15595         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
15596         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
15597         is sane and DOES follow symlinks.  Besides, testing 20 different
15598         systems found no broken chown implementations.
15599         Prompted by a change in rsync's copy of this macro.
15600         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
15601
15602         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
15603
15604         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
15605         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
15606         NULL-means-set-to-current-time semantics.
15607         Remove temporary file immediately, rather than waiting
15608         for configure's at-exit trap code to do it.
15609
15610 2005-01-18  Jim Meyering  <jim@meyering.net>
15611
15612         * lib/version-etc.c (version_etc_copyright): Update copyright date.
15613
15614         * lib/utimens.c (futimens): Account for the fact that futimes
15615         can also fail with errno == ENOSYS or errno == ENOENT.
15616         Patch from Dmitry V. Levin.
15617
15618         Change the name of the robust chdir function from chdir to chdir_long.
15619         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
15620         (restore_cwd): Use chdir_long, not chdir.
15621         * lib/chdir-long.c: Renamed from chdir.c.
15622         * lib/chdir-long.h: Renamed from chdir.h.
15623         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
15624         Hurd.
15625
15626 2005-01-18  Bruno Haible  <bruno@clisp.org>
15627
15628         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
15629         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
15630         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
15631         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
15632         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
15633         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
15634         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
15635         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
15636         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
15637         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
15638         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
15639         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
15640         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
15641         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
15642         Use an all-permissive copyright notice, recommended by RMS.
15643
15644 2005-01-18  Bob Proulx  <bob@proulx.com>
15645
15646         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
15647         simplify offsetof() macro construct to avoid compile failure with
15648         native HP-UX 11.0 ANSI C compiler.
15649
15650 2005-01-17  Bruno Haible  <bruno@clisp.org>
15651
15652         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
15653         redundant because stpncpy.m4 takes care of it.
15654
15655 2005-01-17  Bruno Haible  <bruno@clisp.org>
15656
15657         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
15658
15659 2005-01-17  Bruno Haible  <bruno@clisp.org>
15660
15661         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
15662         used.
15663
15664 2005-01-17  Bruno Haible  <bruno@clisp.org>
15665
15666         * lib/fwriteerror.h (fwriteerror): Change specification to include
15667         fclose.
15668         * lib/fwriteerror.c: Include <stdbool.h>.
15669         (fwriteerror): At the end, close the file stream. Record whether
15670         stdout was already closed.
15671
15672 2005-01-17  Bruno Haible  <bruno@clisp.org>
15673
15674         * lib/execute.c (environ): Declare if needed.
15675         * lib/pipe.c (environ): Likewise.
15676         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
15677
15678 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15679
15680         * modules/argp: Depend on vsnprintf
15681
15682 2005-01-10  Jim Meyering  <jim@meyering.net>
15683
15684         * modules/closeout (Depends-on): Add atexit.
15685
15686 2005-01-06  Bruno Haible  <bruno@clisp.org>
15687
15688         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
15689
15690 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15691
15692         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
15693         definitions to be after all include files, to avoid collisions.
15694         Problem reported by Bob Proulx.
15695
15696 2005-01-04  Jim Meyering  <jim@meyering.net>
15697
15698         Changes imported from coreutils.
15699         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
15700         as the mkstemp template, use a temporary directory and an
15701         8.3-friendly template to avoid trouble on systems like DJGPP.
15702         Reported by Juan M. Guerrero via Stepan Kasal.
15703         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
15704         close. Remove the temporary directory right away, rather than waiting
15705         for configure's at-exit trap code to do it.
15706         Suggestion from Stepan Kasal.
15707
15708 2005-01-01  Simon Josefsson  <jas@extundo.com>
15709
15710         * gnulib-tool: Print #include directives when --import'ing.
15711
15712 2004-12-28  Simon Josefsson  <jas@extundo.com>
15713
15714         * tests/test-base64.c: Include required header files.  Remove
15715         unused variables.
15716
15717 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15718
15719         * modules/error (Depends-on): Remove gettext.
15720
15721 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15722
15723         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
15724         not needed.  This removes a dependency on the gettext module.
15725         [defined _LIBC]: Do not include <libintl.h>; not needed.
15726
15727 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15728
15729         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
15730         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
15731
15732 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
15733
15734         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
15735         HAVE_DECL_STRTOLD.
15736
15737 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15738
15739         * modules/getdate (Depends-on): Remove alloca-opt.
15740
15741 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15742
15743         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
15744
15745 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15746
15747         * lib/argp-parse.c: Include <stddef.h>.
15748         (alignof, alignto): New macros.
15749         (parser_init): Don't assume that void * is aligned sufficiently
15750         for struct option.
15751
15752         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
15753         need to extend the stack.
15754         (YYINITDEPTH): New macro, so that the initial stack isn't overly
15755         large.
15756
15757 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
15758
15759         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
15760
15761 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15762
15763         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
15764         (2004-10-24) change.  Apparently this was a false alarm.
15765
15766         * modules/getdate: Depend on alloca-opt, not alloca.
15767
15768 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
15769
15770         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
15771         Remove now-obsolete comment about AIX.
15772         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
15773         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
15774         (YYMAXDEPTH): New macro.
15775
15776 2004-12-18  Simon Josefsson  <jas@extundo.com>
15777
15778         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
15779
15780 2004-12-18  Bruno Haible  <bruno@clisp.org>
15781
15782         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
15783
15784 2004-12-18  Bruno Haible  <bruno@clisp.org>
15785
15786         * lib/fatal-signal.c (fatal_signals): Make non-const.
15787         (init_fatal_signals): New function.
15788         (uninstall_handlers, install_handlers): Ignore signals that were set to
15789         SIG_IGN.
15790         (at_fatal_signal): Call init_fatal_signals.
15791         (init_fatal_signal_set): Likewise. Ignore signals that were set to
15792         SIG_IGN.
15793         Reported by Paul Eggert.
15794
15795 2004-12-18  Bruno Haible  <bruno@clisp.org>
15796
15797         * doc/alloca.texi: New file.
15798         * doc/alloca-opt.texi: New file.
15799
15800 2004-12-17  Jim Meyering  <jim@meyering.net>
15801
15802         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
15803         Otherwise, install-sh could exit with improper exit status when
15804         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
15805
15806 2004-12-16  Simon Josefsson  <jas@extundo.com>
15807
15808         * tests/test-base64.c: Add license.
15809
15810 2004-12-15  Stepan Kasal  <address@hidden>
15811
15812         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
15813
15814 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
15815
15816         * modules/getcwd (Files): Add m4/d-ino.m4.
15817         Suggested by Mark D. Baushke.
15818
15819 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15820
15821         * lib/getdate.y (textint): New member "negative".
15822         (time_zone_hhmm): New function.
15823         Expect 14 shift-reduce conflicts, not 13.
15824         (o_colon_minutes): New rule.
15825         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
15826         (yylex): Set the "negative" member of signed numbers.
15827
15828 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
15829
15830         * doc/getdate.texi (Time of day items, Time zone items):
15831         Describe new formats +00:00, UTC+00:00.
15832
15833 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
15834
15835         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
15836         spurious "-l"s.  Problem reported by Stepan Kasal.
15837
15838 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
15839
15840         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
15841         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
15842
15843 2004-12-04  Simon Josefsson  <jas@extundo.com>
15844
15845         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
15846         Vandoorselaere <yoann@prelude-ids.org>.
15847
15848 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15849
15850         Changes imported from coreutils.
15851         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
15852         exist.
15853         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
15854
15855 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15856
15857         Changes imported from coreutils.
15858         * lib/hard-locale.c: Assume <locale.h> exists.
15859         Include "strdup.h".
15860         (GLIBC_VERSION): New macro.
15861         (hard_locale): Assume setlocale exists.
15862         Rewrite to avoid #ifdef.
15863         Use strdup rather than malloc + strcpy.
15864         * lib/human.c: Assume <locale.h> exists.
15865         (human_readable): Assume localeconv exists.
15866
15867 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
15868
15869         * modules/hard-locale (Depends-on): Add strdup.
15870
15871 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
15872
15873         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
15874         convert T2, not T.  (Imported from libc.)
15875
15876 2004-11-30  Simon Josefsson  <jas@extundo.com>
15877
15878         * modules/restrict (License): Change to LGPL.
15879
15880 2004-11-30  Simon Josefsson  <jas@extundo.com>
15881
15882         * m4/restrict.m4: Add copyright and copying conditions.
15883
15884 2004-11-30  Simon Josefsson  <jas@extundo.com>
15885
15886         * m4/base64.m4: New file.
15887
15888 2004-11-30  Simon Josefsson  <jas@extundo.com>
15889
15890         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
15891         base64.
15892
15893         * tests/test-base64.c: New file.
15894
15895         * modules/base64: New file.
15896
15897 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15898
15899         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
15900         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
15901
15902         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
15903
15904 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
15905
15906         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
15907         (__getcwd.c): Don't restore errno; glibc doesn't.
15908         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
15909         first, falling back to our code only if its results look suspicious.
15910         Ensure that the resulting buffer is only as large as necessary.
15911
15912         * lib/readutmp.c: Include readutmp.h first.
15913         Include <errno.h>, since readutmp.h no longer does that.
15914         * lib/readutmp.h: Don't include <errno.h>,
15915         <sys/param.h>, <time.h>; not needed to establish interface.
15916         (errno): Remove decl.
15917         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
15918         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
15919         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
15920
15921 2004-11-28  Simon Josefsson  <jas@extundo.com>
15922
15923         * lib/base64.h, base64.c: New file.
15924
15925 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15926
15927         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
15928
15929 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15930
15931         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
15932         (Depends-on): Remove pathmax, same.  Add mempcpy.
15933         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
15934         (Makefile.am): Append getcwd.h to lib_SOURCES.
15935         (Include): Add getcwd.h.
15936         (Maintainer): Change from Jim Meyering to "all, glibc",
15937         since getdate now uses intended-for-glibc code.
15938         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
15939         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
15940
15941 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
15942
15943         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
15944         HP's ANSI C compiler.
15945         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
15946         Declaring int functions causes warnings on some modern systems and
15947         shouldn't be needed to compile on ancient ones.
15948         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
15949         defined.
15950
15951         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
15952         with the following changes.
15953         (__set_errno): Parenthesize properly.
15954         Include <stdbool.h>.
15955         (MIN, MAX, MATCHING_INO): New macros.
15956         (__getcwd): Define with prototype, not K&R form.
15957         Use heuristics to allocate default buffer on stack if possible.
15958         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
15959         behavior, and to avoid the PATH_MAX limit when computing
15960         ../../../../...
15961         Use MATCHING_INO to compare inode number to file.
15962         Check for arithmetic overflow in size calculations.
15963         Fix bug in reallocation of dot array that caused getcwd to fail
15964         on directories nested deeper than 75.
15965         Be more careful about saving errno on error.
15966         Do not use realloc; use only free+malloc, as this is a bit
15967         more flexible and avoids a needless copy operation.
15968         Do not inspect st_dev and st_ino for symbolic links; POSIX
15969         doesn't specify the latter.
15970         Check for closedir errors.
15971         Avoid needless casts.
15972         Use "#ifdef weak_alias" around weak_alias, to be like other
15973         glibc code.
15974         The following changes to getcwd.c have effect only when used in
15975         gnulib; they have no effect inside glibc proper.
15976         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
15977         as alloca isn't used.
15978         (alloca, __alloca): Likewise.
15979         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
15980         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
15981         unconditionally, as gnulib assumes C89 or better.
15982         Do not include <sys/param.h>.
15983         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
15984         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
15985         better.
15986         (NULL) [!defined NULL]: Remove; we assume C89 or better.
15987         Include <dirent.h> in a way that is compatible with modern Autoconf.
15988         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
15989         New macros, if not already defined.
15990         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
15991         Use "_LIBC", not "defined _LIBC", for consistency.
15992         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
15993         a mempcpy module.
15994         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
15995         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
15996         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
15997         credit only to Jim Meyering and adjust the copyright dates.
15998         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
15999         <stdlib.h>, <unistd.h>, "pathmax.h".
16000         Instead, include "xgetcwd.h" (first) and "getcwd.h".
16001         (INITIAL_BUFFER_SIZE): Remove.
16002         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
16003
16004 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
16005
16006         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
16007         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
16008         Use the _ONCE methods, for efficiency.
16009         Check for fcntl.h.  In test program, include <errno.h>
16010         and <fcntl.h> if available.  Remove old K&R cruft from
16011         test program.  Check for common errors in GNU/Linux,
16012         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
16013         don't do AC_LIBOBJ, as that's getcwd.m4's job.
16014         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
16015         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
16016         name accordingly.
16017         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
16018         accommodate new getcwd.c.
16019         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
16020         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
16021         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
16022         that's all we need now.
16023
16024 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
16025
16026         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
16027         argp-parse.c depends on getopt internals, that means we should
16028         always use our getopt, to be on the safe side.
16029         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
16030         order not to spoil the result of an eventual previous invocation
16031         of gl_GETOPT_SUBSTITUTE.
16032
16033 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
16034
16035         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
16036         redefinition warnings. To avoid them, include the defines
16037         in `#if !defined __need_getopt ... #endif'. The only place
16038         where __getopt_argv_const is used is in definitions
16039         of getopt_long and getopt_long_only below, which are as well
16040         protected by `#ifndef __need_getopt'.
16041         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
16042         __need_getopt after including <stdio.h> and <unistd.h> These
16043         headers might have defined it.
16044
16045 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
16046
16047         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
16048
16049 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
16050
16051         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
16052         (futimens): New function, which uses futimes if available.
16053         (futimens, utimens): Support timespec==NULL, with same semantics
16054         as utime and utimens.
16055         * lib/utimens.h (futimens): New decl.
16056
16057 2004-11-23  Jim Meyering  <jim@meyering.net>
16058
16059         * lib/getopt_.h: Remove trailing blanks.
16060
16061 2004-11-23  Jim Meyering  <jim@meyering.net>
16062
16063         * lib/__fpending.c: Add comment.
16064
16065 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
16066
16067         * modules/canonicalize (Depends-on): Add xreadlink.
16068         Problem reported by James Youngman.
16069
16070 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
16071
16072         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
16073         New macros.
16074         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
16075         optopt): Use them instead of invoking ## directly; otherwise, the
16076         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
16077
16078 2004-11-19  Bruno Haible  <bruno@clisp.org>
16079
16080         * lib/strtok_r.c: Move comments from here...
16081         * lib/strtok_r.h: ... to here.
16082
16083 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
16084
16085         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
16086         implementations that mishandle size_t overflow.
16087
16088 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
16089
16090         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
16091         might fail.  Problem reported by Yoann Vandoorselaere.
16092         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
16093         implementations that mishandle size_t overflow.
16094
16095 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
16096
16097         * modules/canon-host (Depends-on): Add strdup.
16098
16099 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
16100
16101         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
16102
16103 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
16104
16105         * lib/canon-host.c: Include "strdup.h".
16106         (canon_host): Use getaddrinfo if available, so that IPv6 works.
16107         Use strdup instead of malloc/strcpy to duplicate strings.
16108
16109         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
16110         (human_space_before_unit): New constant.
16111         * lib/human.c (human_readable): Support it.
16112
16113         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
16114         (xgetcwd): Set errno correctly when failing.
16115         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
16116         the failure is actually due to a PATH_MAX problem.
16117
16118         Further getopt changes to make it more likely that glibc will
16119         buy the changes back.
16120         * lib/getopt.c (POSIXLY_CORRECT): New constant.
16121         (getopt): Use it, so to preserve glibc semantic
16122         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
16123         when compiling for libc.
16124         * lib/getopt_.h (__getopt_argv_const): Bring it back.
16125         (getopt_long, getopt_long_only): Use it.
16126
16127         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
16128         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
16129         (getopt): Argv is now char * const *, as per standard.
16130         (_getopt_internal_r, _getopt_internal): Argv is now char **,
16131         not char *__getopt_argv_const *.
16132         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
16133         _getopt_long_only_r): Likewise.
16134         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
16135         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
16136         _getopt_long_r, _getopt_long_only_r): Likewise.
16137         * lib/getopt_.h (__getopt_argv_const): Remove.
16138         (getopt): Argv is now char * const *, as per standard.
16139
16140         * lib/getdate.y (tORDINAL): New token.
16141         (day, relunit): Allow it for relative times.
16142         (relative_time_table): Use tORDINAL for ordinals.
16143
16144 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
16145
16146         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
16147         Document that "second" isn't allowed as an ordinal number.
16148
16149 2004-11-16  Jim Meyering  <jim@meyering.net>
16150
16151         * modules/closeout (Depends-on): Add fpending.
16152
16153 2004-11-15  Jim Meyering  <jim@meyering.net>
16154
16155         * lib/closeout.c: Include "__fpending.h" once again.
16156         Include <stdbool.h>.
16157         (close_stdout): Don't fail just because stdout was closed initially,
16158         since some programs don't write to stdout in the normal course of
16159         operation (other than --version and --help), and we don't want this
16160         function to make e.g. `touch file >&-' fail.
16161         But do fail if it was closed and someone has tried to write to it.
16162         E.g., `printf foo >&-' must fail.
16163
16164 2004-11-13  Jim Meyering  <jim@meyering.net>
16165
16166         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
16167
16168 2004-11-12  Simon Josefsson  <jas@extundo.com>
16169
16170         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
16171         small doc fix is still pending.
16172
16173 2004-11-11  Simon Josefsson  <jas@extundo.com>
16174
16175         * modules/strtok_r: New file.
16176
16177         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16178         strtok_r.
16179
16180 2004-11-11  Simon Josefsson  <jas@extundo.com>
16181
16182         * m4/strtok_r.m4: New file.
16183
16184         * m4/getopt.m4: Replace opterr.
16185
16186 2004-11-11  Simon Josefsson  <jas@extundo.com>
16187
16188         * lib/strtok_r.h, strtok_r.c: New file.
16189
16190 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
16191
16192         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
16193         of replacing opterr, getopt, etc.  This should handle the
16194         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
16195
16196 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
16197
16198         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
16199         we can stop lying to compilers about the constness of argv when we
16200         are compiled outside glibc.
16201         (getopt, getopt_long, getopt_long_only): Use it.
16202         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
16203         _getopt_internal, getopt): Likewise.
16204         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
16205         _getopt_long_only_r): Likewise.
16206         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
16207         _getopt_long_r, _getopt_long_only_r): Likewise.
16208
16209         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
16210         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
16211         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
16212         the other external symbols.
16213         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
16214         declaration, since the above renaming now works around collisions.
16215
16216 2004-11-11  Jim Meyering  <jim@meyering.net>
16217
16218         * lib/linebreak.c: Remove trailing blanks.
16219         * lib/alloca_.h: Likewise.
16220         * lib/acosl.c: Likewise.
16221         * lib/euidaccess.c: Likewise.
16222         * lib/allocsa.h: Likewise.
16223
16224 2004-11-10  Simon Josefsson  <jas@extundo.com>
16225
16226         * m4/getaddrinfo.m4: New file.
16227
16228 2004-11-10  Simon Josefsson  <jas@extundo.com>
16229
16230         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
16231
16232 2004-11-10  Simon Josefsson  <jas@extundo.com>
16233
16234         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16235         getaddrinfo.
16236
16237         * modules/getaddrinfo: New file.
16238
16239 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16240
16241         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
16242
16243 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
16244
16245         * lib/mktime.c (SHR): New macro, which is a portable
16246         substitute for >> that should work even on Crays.
16247         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
16248         Problem reported by Mark D. Baushke in
16249         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
16250         * lib/getdate.y (SHR): Likewise.
16251         (tm_diff): Use it.
16252         * lib/strftime.c (SHR): Likewise.
16253         (tm_diff): Use it.
16254         * lib/quotearg.c (struct quoting_options): Use unsigned int for
16255         quote_these_too, so that right shifts are well defined.  All uses
16256         changed.
16257
16258 2004-11-10  Jim Meyering  <jim@meyering.net>
16259
16260         Ensure that no close failure goes unreported.
16261         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
16262         return early when it seems there's nothing to flush.
16263         Don't include __fpending.h.
16264
16265 2004-11-10  Jim Meyering  <jim@meyering.net>
16266
16267         * modules/closeout (Depends-on): Remove fpending.
16268
16269 2004-11-10  Jim Meyering  <jim@meyering.net>
16270
16271         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
16272
16273 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16274
16275         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
16276         gl_FUNC_STRFTIME.
16277         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
16278         and AC_REQUIRE when possible, to avoid duplicate checks.
16279         Check for <wchar.h>.
16280
16281 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16282
16283         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
16284
16285 2004-11-09  Bruno Haible  <bruno@clisp.org>
16286
16287         * m4/sockpfaf.m4: New file.
16288
16289 2004-11-05  Bruno Haible  <bruno@clisp.org>
16290
16291         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
16292         Reported by Mark D. Baushke <mdb@cvshome.org>.
16293
16294 2004-11-04  Bruno Haible  <bruno@clisp.org>
16295
16296         2004-09-11  Bruno Haible  <bruno@clisp.org>
16297                 * allocsa.valgrind: New file.
16298         2004-02-06  Bruno Haible  <bruno@clisp.org>
16299                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
16300                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
16301                 Reported by Christopher Seip <chris.seip@hp.com>.
16302
16303 2004-11-04  Bruno Haible  <bruno@clisp.org>
16304
16305         * modules/allocsa (Files): Add lib/allocsa.valgrind.
16306         (Makefile.am): Distribute it.
16307
16308 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
16309
16310         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
16311         with errno == ERANGE if the buffer is too small.
16312         Problem reported by Mark D. Baushke.
16313
16314 2004-11-03  Albert Chin  <china@thewrittenword.com>
16315             Paul Eggert  <eggert@cs.ucla.edu>
16316
16317         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
16318         equivalent, substitute $ac_type for equivalent type rather than
16319         blindly using uint32_t *always* which won't work if uint32_t is not
16320         available.  Define _UINT32_T to work around typedef of uint32_t if
16321         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
16322         2.5.1.
16323
16324 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
16325
16326         * m4/jm-macros.m4: Sync from coreutils.
16327         (gl_MACROS): Check for mbrlen, for pathchk.
16328         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
16329
16330 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
16331
16332         * lib/xreadlink.c (MAXSIZE): New macro.
16333         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
16334         size does not exceed MAXSIZE.  Avoid cast.
16335         As suggested by Mark D. Baushke in
16336         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
16337         if readlink fails with buffer size just under MAXSIZE, try again
16338         with MAXSIZE.
16339
16340 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
16341
16342         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
16343
16344 2004-11-02  Derek R. Price  <derek@ximbiot.com>
16345         and  Paul Eggert  <eggert@cs.ucla.edu>
16346
16347         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
16348         (get_date): Overparenthesize to avoid GCC warning.
16349
16350 2004-11-02  Bruno Haible  <bruno@clisp.org>
16351
16352         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
16353         returns void.
16354
16355 2004-11-02  Bruno Haible  <bruno@clisp.org>
16356
16357         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
16358         function returns void.
16359
16360 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
16361
16362         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
16363         fflush_unlocked, flockfile, funlockfile, funlockfile,
16364         fputs_unlocked, putc_unlocked.
16365
16366 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
16367
16368         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
16369         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
16370         already declared.
16371
16372 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16373
16374         * modules/getdate (Files): Add doc/getdate.texi.
16375         (Depends-on): Add setenv, xalloc.
16376
16377 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16378
16379         * lib/getdate.y: Add support for TZ="foo" within a date string.
16380         Fix some bugs near time_t boundaries.  Reject dates with
16381         out-of-range components, e.g., "Sept 31".
16382         Include <stdlib.h>, "setenv.h", "xalloc.h".
16383         (ISDIGIT_LOCALE): Remove; unused.
16384         Note that the TZ and time functions used here are not reentrant.
16385         (mktime_ok, get_tz): New functions.
16386         (TZBUFSIZE): New constant.
16387         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
16388         This requires that we sometimes generate our own TZ="XXX..." setting.
16389
16390 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16391
16392         * doc/getdate.texi: New file, from coreutils with modifications for
16393         the new TZ parsing.
16394
16395 2004-10-27  Derek R. Price  <derek@ximbiot.com>
16396
16397         * lib/mktime.c (not_equal_tm): Remove redundant check.
16398
16399 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16400
16401         * modules/regex (lib_SOURCES): Add regex.c.
16402         Reported by James Youngman in
16403         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
16404
16405 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16406
16407         * lib/getdate.y: Use Bison 1.875 features, and some minor
16408         code cleanups.  This change does not affect semantics.
16409         Don't include <stdlib.h>; no longer needed.
16410         Don't include unlocked-io.h; only the "#if TEST" code uses
16411         stdio, and performance isn't crucial there.
16412         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
16413         Bison 1.875 features as described below.
16414         All uses of "PC." replaced by "pc->".
16415         (YYSTYPE): Add a forward declaration.
16416         (yylex, yyerror): Use full prototypes in forward decls.
16417         Use "%pure-parser" rather than obsolescent "%pure_parser".
16418         Use %parse-param and %lex-param instead of obsolescent
16419         YYPARSE_PARAM and YYLEX_PARAM.
16420         (meridian_table, month_and_day_table, time_units_table,
16421         relative_time_table, time_zone_table, military_table,
16422         lookup_zone, lookup_word, get_date):
16423         Use NULL instead of 0 where appropriate.
16424         (to_hour): Avoid abort (), to avoid a dependency on
16425         stdlib.h.
16426         (yyerror, yylex): Now accepts parser_control * arg.
16427         (main) [TEST]: Use '\0' rather than 0 for char.
16428
16429 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16430
16431         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
16432
16433 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
16434
16435         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
16436         It's now the caller's responsibility to handle the case where
16437         !HAVE_GETPAGESIZE && !defined getpagesize.
16438
16439         * lib/mktime.c (leapyear): Arg is long int, not int.
16440
16441 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
16442
16443         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
16444
16445 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16446
16447         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
16448         missing.  Problem reported by James Youngman.
16449
16450 2004-10-16  Simon Josefsson  <jas@extundo.com>
16451
16452         * gnulib-tool: Fix comments.  Fix parse problem.
16453         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
16454
16455 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
16456
16457         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
16458         implementation of getopt_long.  Problem reported by Alexander Taler in:
16459         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
16460
16461 2004-10-15  Bruno Haible  <bruno@clisp.org>
16462
16463         * gnulib-tool: Untabify. Initialize supplied_libname.
16464         (func_usage): More homogenous output.
16465         (func_modules_transitive_closure, func_modules_to_filelist,
16466         func_emit_lib_Makefile_am): New functions.
16467         (func_import): New function, extracted from big case statement. Use
16468         func_get_license, func_modules_transitive_closure,
16469         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
16470         opt_lgpl. Don't use test -a, as it's not portable.
16471         (func_create_testdir): Use func_modules_transitive_closure,
16472         func_modules_to_filelist, func_emit_lib_Makefile_am.
16473
16474 2004-10-15  Bruno Haible  <bruno@clisp.org>
16475
16476         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
16477
16478 2004-10-15  Bruno Haible  <bruno@clisp.org>
16479
16480         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
16481         the portions belonging to each module.
16482         Suggested by Derek Robert Price <derek@ximbiot.com>.
16483
16484 2004-10-12  Simon Josefsson  <jas@extundo.com>
16485
16486         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
16487         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
16488         to real functions.
16489
16490 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16491
16492         * modules/vsnprintf: New file.
16493
16494 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16495
16496         * m4/vsnprintf.m4: New file.
16497
16498 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16499
16500         * lib/vsnprintf.h: New file.
16501         * lib/vsnprintf.c: New file.
16502
16503 2004-10-11  Bruno Haible  <bruno@clisp.org>
16504
16505         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
16506         vsnprintf.
16507
16508 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
16509
16510         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
16511
16512 2004-10-07  Bruno Haible  <bruno@clisp.org>
16513
16514         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
16515         fits into the provided buffer.
16516
16517 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
16518
16519         * lib/diacrit.c, diacrit.h: Add GPL notice.
16520
16521         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
16522         notice.
16523         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
16524         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
16525         This avoids a potential constant-folding bug.
16526
16527 2004-10-05  Bruno Haible  <bruno@clisp.org>
16528
16529         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
16530         for the declaration of strsep.
16531
16532 2004-10-05  Bruno Haible  <bruno@clisp.org>
16533
16534         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
16535
16536 2004-10-04  Simon Josefsson  <jas@extundo.com>
16537
16538         * modules/memmem: New file.
16539         * tests/test-memmem.c: New file.
16540         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
16541
16542 2004-10-04  Simon Josefsson  <jas@extundo.com>
16543
16544         * m4/memmem.m4: New file.
16545
16546 2004-10-04  Simon Josefsson  <jas@extundo.com>
16547
16548         * lib/memmem.h: New file.
16549         * lib/memmem.c: New file, taken from glibc.
16550
16551 2004-10-04  Simon Josefsson  <jas@extundo.com>
16552
16553         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
16554         '#ifdef USE_UNLOCKED_IO'.
16555
16556 2004-10-04  Simon Josefsson  <jas@extundo.com>
16557
16558         * config/srclist.txt: Add memmem from glibc.
16559
16560 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16561
16562         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
16563
16564         * modules/argmatch, modules/argp, modules/closeout, modules/error,
16565         modules/exclude, modules/getdate, modules/getline,
16566         modules/getndelim2, modules/getpass, modules/getpass-gnu,
16567         modules/getusershell, modules/linebuffer, modules/md5,
16568         modules/mountlist, modules/posixtm, modules/readtokens,
16569         modules/readutmp, modules/regex, modules/sha1,
16570         modules/version-etc, modules/yesno:
16571         Remove dependency on unlocked-io.
16572
16573 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16574
16575         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
16576
16577         * m4/unlocked-io.m4: Add copyright notice.
16578         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
16579
16580 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16581
16582         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
16583         * lib/xmalloc.c (xmemdup): Likewise.
16584         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
16585         XFREE): Remove these long-obsolescent macros.
16586         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
16587         * lib/xstrdup.c: Remove.
16588
16589         * lib/regex.c (re_comp): Cast gettext return value to char *,
16590         Problem reported by Martin Neitzel via Mark D. Baushke.
16591
16592 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
16593
16594         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
16595         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
16596         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
16597         regex.c, sha1.c, version-etc.c, yesno.c:
16598         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
16599         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
16600         the includer's responsibility.
16601
16602         Sync from coreutils.
16603
16604         * lib/modechange.c (mode_compile): Don't decrement a pointer that
16605         points to the start of a string, as the C Standard says the
16606         resulting behavior is undefined.
16607
16608         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
16609         simple -> simple_backups, numbered_existing ->
16610         numbered_existing_backups, numbered -> numbered_backups
16611         to avoid shadowing problems.  All uses changed.
16612         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
16613         * lib/backupfile.c (check_extension, numbered_backup):
16614         Rename locals to avoid shadowing 'basename'.
16615         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
16616         once.
16617
16618         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
16619         * lib/.cvsignore: Add getopt.h.
16620
16621 2004-10-04  Bruno Haible  <bruno@clisp.org>
16622
16623         * modules/README: New file.
16624         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
16625         not a module.
16626
16627 2004-10-02  Jim Meyering  <jim@meyering.net>
16628
16629         * lib/dirfd.h, getpagesize.h: Add copyright notice.
16630
16631 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16632
16633         * modules/strsep: New file.
16634
16635 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16636
16637         * m4/strsep.m4: New file.
16638
16639 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
16640
16641         * lib/strsep.h: New file.
16642         * lib/strsep.c: New file.
16643
16644 2004-10-01  Simon Josefsson  <jas@extundo.com>
16645
16646         * lib/snprintf.c (snprintf): Handle size==0.
16647
16648 2004-10-01  Simon Josefsson  <jas@extundo.com>
16649             Bruno Haible  <bruno@clisp.org>
16650
16651         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
16652         (snprintf): Declare 'args'.
16653
16654 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
16655
16656         * lib/snprintf.c: Remove comments as to why each header is needed.
16657
16658 2004-10-01  Bruno Haible  <bruno@clisp.org>
16659
16660         * MODULES.html.sh: Add strsep.
16661
16662 2004-09-30  Simon Josefsson  <jas@extundo.com>
16663
16664         * modules/snprintf: New file.
16665
16666 2004-09-30  Simon Josefsson  <jas@extundo.com>
16667
16668         * m4/snprintf.m4: New file.
16669
16670 2004-09-30  Simon Josefsson  <jas@extundo.com>
16671
16672         * lib/snprintf.h, lib/snprintf.c: New files.
16673
16674 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
16675
16676         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
16677         (hol_entry_help): Never translate an empty string.
16678         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
16679         * lib/argp.h (OPTION_NO_TRANS): New option.
16680
16681 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16682
16683         * modules/argp (Maintainer): Replace Simon Josefsson
16684         by Sergey Poznyakoff.
16685
16686 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16687
16688         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
16689         changes merged back into glibc.
16690
16691 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16692
16693         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
16694
16695 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16696
16697         * lib/xvasprintf.c: Include xalloc.h.
16698         (xvasprintf): Use xalloc_die, not xmalloc_die.
16699
16700 2004-09-29  Bruno Haible  <bruno@clisp.org>
16701
16702         * modules/alloca-opt: New file, derived from modules/alloca.
16703         * modules/allocsa: Depend on alloca-opt instead of alloca.
16704         * modules/setenv: Likewise.
16705         * modules/vasnprintf: Likewise.
16706         * MODULES.html.sh: Add alloca-opt.
16707
16708 2004-09-28  Simon Josefsson  <jas@extundo.com>
16709
16710         * gnulib-tool: New parameter --lgpl, to asseert that modules are
16711         LGPL, and to replace license template from GPL to LGPL.
16712
16713 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16714
16715         * modules/dummy: Change license to LGPL.
16716
16717 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
16718
16719         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
16720
16721 2004-09-24  Simon Josefsson  <jas@extundo.com>
16722
16723         * modules/minmax (License): Change from GPL to LGPL.
16724
16725 2004-09-23  Simon Josefsson  <jas@extundo.com>
16726
16727         * gnulib-tool (--import): Typo.
16728
16729 2004-09-23  Simon Josefsson  <jas@extundo.com>
16730
16731         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
16732
16733 2004-09-22  Bruno Haible  <bruno@clisp.org>
16734
16735         * modules/*: Add 'License' field.
16736         * gnulib-tool: Accept --extract-license option.
16737         (func_get_license): New function.
16738
16739 2004-09-21  Bruno Haible  <bruno@clisp.org>
16740
16741         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
16742         Reported by Simon Josefsson.
16743
16744 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16745
16746         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
16747         gl_AC_TYPE_LONG_LONG.
16748
16749 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
16750
16751         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
16752
16753 2004-09-18  Simon Josefsson  <jas@extundo.com>
16754         and  Paul Eggert  <eggert@cs.ucla.edu>
16755
16756         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
16757         calls with autoreconf.  Define GL_LIB.
16758
16759 2004-09-14  Karl Berry  <karl@gnu.org>
16760
16761         * config/srclist.txt: unsync setenv.c, sigh.
16762
16763 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16764
16765         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
16766         Problem reported by Bruno Haible in:
16767         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
16768
16769 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
16770
16771         * config/srclist.txt: Comment out argp-pvh.c.
16772
16773 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
16774
16775         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
16776         in case some system header has #define'd it.  Problem reported by
16777         Soeren D. Schulze in
16778         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
16779
16780 2004-09-09  Karl Berry  <karl@gnu.org>
16781
16782         * regex.[ch]: delete from the root.  These were supposed to be
16783                 synced with emacs cvs, but this has not happened for about
16784                 a year, and anyway nothing else uses emacs regex.[ch].
16785                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
16786                 lib/regex[.ch] is untouched.
16787
16788 2004-09-09  Bruno Haible  <bruno@clisp.org>
16789
16790         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
16791
16792 2004-09-09  Bruno Haible  <bruno@clisp.org>
16793
16794         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
16795         modifications.
16796         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
16797
16798 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16799
16800         * modules/xvasprintf: New file.
16801         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
16802
16803 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
16804
16805         * lib/xvasprintf.h: New file.
16806         * lib/xvasprintf.c: New file.
16807         * lib/xasprintf.c: New file.
16808
16809 2004-09-08  Bruno Haible  <bruno@clisp.org>
16810
16811         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
16812
16813 2004-09-08  Bruno Haible  <bruno@clisp.org>
16814
16815         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
16816         length is > INT_MAX.
16817         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
16818         more.
16819
16820 2004-09-08  Bruno Haible  <bruno@clisp.org>
16821
16822         * lib/stdint_.h: New file, taken from GNU clisp.
16823
16824 2004-09-08  Bruno Haible  <bruno@clisp.org>
16825             Oskar Liljeblad  <oskar@osk.mine.nu>
16826
16827         * modules/stdint: New file.
16828         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
16829
16830 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16831
16832         Import from coreutils.
16833         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
16834         strings on unbounded length.  alloca's performance benefits aren't
16835         that important here.
16836         (V_STRDUP): Remove.
16837         (parse_with_separator): New function, with most of the internals
16838         of the old parse_user_spec.  Allow user to omit both user and group,
16839         for compatibility with FreeBSD.
16840         Clone only the user name, not the entire spec.
16841         Do not set *uid, *gid unless entirely successful.
16842         Avoid memory leak in some failing cases.
16843         Fix regression for USER.GROUP reported by Dmitry V. Levin in
16844         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
16845         (parse_user_spec): Rewrite to use parse_with_separator.
16846
16847 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16848
16849         * modules/userspec: Don't depend on alloca.
16850
16851 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16852
16853         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
16854
16855 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16856
16857         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
16858         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
16859         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
16860
16861 2004-08-16  Simon Josefsson  <jas@extundo.com>
16862
16863         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
16864         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
16865         Add --dry-run for --import.
16866         Let user provided command line parameters override configure.ac
16867         settings.
16868
16869 2004-08-12  Simon Josefsson  <jas@extundo.com>
16870
16871         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
16872         as discussed with Paul Eggert in threads rooted at
16873         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
16874         and
16875         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
16876         Before, the test was empty, and relied on ELIDE_CODE in source
16877         code.)
16878         (gl_PREREQ_GETOPT): New macro.
16879         (gl_GETOPT): Use them.
16880
16881 2004-08-12  Simon Josefsson  <jas@extundo.com>
16882
16883         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
16884         * lib/getopt_.h: Renamed from getopt.h.
16885
16886 2004-08-12  Simon Josefsson  <jas@extundo.com>
16887
16888         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
16889         Change default library name from libfoo to libgnu.
16890         Now, if you have a configure.ac that says:
16891                 gl_SOURCE_BASE(gl)
16892                 gl_M4_BASE(gl/m4)
16893                 gl_MODULES(error getopt etcetera)
16894                 gl_INIT
16895         you can import all you need by running:
16896                 ../gnulib/gnulib-tool --import
16897
16898         * modules/getopt (Files): Rename getopt.h to getopt_.h.
16899         (Makefile.am): Rewrite, use logic from argz.
16900         (Include): Use <getopt.h> instead of "getopt.h".
16901
16902 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16903
16904         * modules/argp (Files): Add m4/unlocked-io.m4.
16905         (Depends-on): Add extensions.
16906
16907 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16908
16909         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
16910         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
16911         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
16912         Check for program_invocation_name, program_invocation_short_name,
16913         flockfile, funlockfile, features.h, _getopt_long_only_r.
16914
16915 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16916
16917         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
16918         its complicated substitute.
16919         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
16920         and program_invocation_name.
16921         (__argp_basename) [!_LIBC]: Remove; the only use was
16922         replaced by its body.
16923         (__argp_short_program_name): Change condition from
16924         !defined __argp_short_program_name to
16925         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
16926         to match argp-namefrob.h.
16927         (__argp_failure): Don't assume strerror_r returns char *.
16928         * lib/argp-parse.c (N_): Define unconditionally.
16929         (argp_default_options): Fill out initializers with 0 to avoid
16930         gcc warnings.
16931
16932 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
16933
16934         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
16935         getopt1.c.
16936
16937 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16938
16939         Merge from coreutils.
16940
16941         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
16942
16943         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
16944         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
16945
16946 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16947
16948         Merge from coreutils.
16949
16950         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
16951         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
16952         for Reliant Unix 5.43.
16953
16954         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
16955         (union fooround): Use uintmax_t, not long int.
16956         The rest is a merge from libc:
16957         [defined _LIBC]: Include <shlib-compat.h>.
16958         (_obstack) [defined _LIBC]: Remove after 2.3.4.
16959
16960         * lib/settime.c (settime): Recode to avoid warning with
16961         Sun Forte C 6U2.
16962
16963         * lib/strverscmp.c: Convert to UTF-8.
16964
16965 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
16966
16967         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
16968         m4/uintmax_t.m4.
16969
16970 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16971
16972         * modules/xalloc-die: New file.
16973         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
16974
16975         * modules/md5 (Files): Add m4/uint32_t.m4.
16976         * modules/sha1: Renamed from modules/sha.
16977         (Files):
16978         Rename lib/sha.h to lib/sha1.h.
16979         Rename lib/sha.c to lib/sha1.c.
16980         Rename m4/sha.m4 to m4/sha1.m4.
16981         (lib_SOURCES): Likewise.
16982         (configure.ac): Rename gl_SHA to gl_SHA1.
16983         (Include): sha.h -> sha1.h.
16984
16985 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16986
16987         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
16988         * m4/sha1.m4: Renamed from sha.m4.
16989         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
16990
16991 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
16992
16993         * lib/obstack.h (obstack_empty_p):
16994         Don't assume that chunk->contents is suitably aligned.
16995         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
16996         Likewise. Problem reported by Benno in
16997         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
16998
16999         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
17000         readable.  This could be improved further but it'd take some work.
17001
17002 2004-08-08  Simon Josefsson  <jas@extundo.com>
17003
17004         * modules/xgethostname (Depends-on): Remove exit and error (not
17005         used).
17006
17007         * modules/getpass-gnu: Add getpass.h.
17008         (Depends-on): Add stdbool.
17009         * modules/getpass: Add getpass.h.
17010
17011 2004-08-08  Simon Josefsson  <jas@extundo.com>
17012
17013         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
17014         Check getpass declaration.
17015
17016 2004-08-08  Simon Josefsson  <jas@extundo.com>
17017
17018         * lib/xgethostname.c: Don't include error.h (not used).
17019
17020         * lib/getpass.h: Add.
17021         * lib/getpass.c: Include getpass.h first.
17022
17023 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
17024
17025         * lib/xalloc-die.c: New file.
17026         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
17027         All uses removed.
17028         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
17029         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
17030         xalloc-die.c.
17031         (_, N_, xalloc_die): Move to xalloc-die.c.
17032         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
17033         so that we needn't mess with xalloc_msg_memory_exhausted.
17034
17035         * lib/sha1.h: Renamed from sha.h.
17036         (SHA1_H): Renamed from _SHA_H.
17037         (sha1_ctx): Renamed from sha_ctx.
17038         (sha1_init_ctx): Renamed from sha_init_ctx.
17039         (sha1_process_block): Renamed from sha_process_block.
17040         (sha1_process_bytes): Renamed from sha_process_bytes.
17041         (sha1_finish_ctx): Renamed from sha_finish_ctx.
17042         (sha1_read_ctx): Renamed from sha_read_ctx.
17043         (sha1_stream): Renamed from sha_stream.
17044         (sha1_buffer): Renamed from sha_buffer.
17045         * lib/sha1.c: Likewise; renamed from sha.c.
17046         Do not include <sys/types.h>.
17047         Include <stddef.h> rather than <stdlib.h>.
17048
17049 2004-08-08  Bruno Haible  <bruno@clisp.org>
17050
17051         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
17052         FILESYSTEM_PREFIX_LEN.
17053         * lib/progreloc.c: Likewise.
17054         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
17055
17056 2004-08-06  Simon Josefsson  <jas@extundo.com>
17057
17058         * modules/progname (Depends-on): Don't depend on stdbool.
17059
17060 2004-08-06  Simon Josefsson  <jas@extundo.com>
17061
17062         * modules/getsubopt: New file.
17063         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17064         getsubopt.
17065
17066 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
17067
17068         More merge from coreutils.
17069
17070         * m4/utimens.m4, m4/utimecmp.m4: New files.
17071         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
17072         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
17073         prereq.m4, sha.m4: Import changes from coreutils.
17074
17075 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
17076
17077         More merge from coreutils.
17078         * modules/raise, modules/readtokens0, modules/utimens:
17079         * modules/utimecmp, module/xnanosleep: New files.
17080         * modules/strftime: Add lib/strftime.h.
17081         Change include from <time.h> to "strftime.h".
17082         * modules/yesno: Add lib/yesno.h.
17083         * modules/backupfile: Remove lib/addext.c.
17084         * modules/euidaccess: Add stat-macros.h.
17085         * modules/canonicalize, modules/euidaccess,
17086         modules/filemode, modules/lchown, modules/makepath,
17087         modules/rmdir, modules/stat: Likewise.
17088
17089 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
17090
17091         Merge from tar.
17092         * lib/argp-help.c (make_hol, hol_append): Don't assume that
17093         SIZE_MAX is a valid preprocessor constant.
17094         (__argp_basename): Change from "#ifndef _LIBC"
17095         to "#ifndef __argp_short_program_name", so that
17096         we don't compile these functions for tar.
17097
17098         More merges from coreutils.
17099         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
17100         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
17101         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
17102         * lib/addext.c: Remove; no longer needed.
17103         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
17104         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
17105         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
17106         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
17107         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
17108         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
17109         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
17110         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
17111         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
17112         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
17113         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
17114         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
17115         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
17116         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
17117         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
17118         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
17119         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
17120         Import changes from coreutils.
17121
17122 2004-08-05  Simon Josefsson  <jas@extundo.com>
17123
17124         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
17125
17126 2004-08-05  Simon Josefsson  <jas@extundo.com>
17127
17128         * m4/getsubopt.m4: New file.
17129
17130 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
17131
17132         Merge from coreutils.
17133
17134         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
17135         * m4/getcwd-path-max.m4: New files.
17136
17137         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
17138         FILESYSTEM_PREFIX_LEN ->
17139         FILE_SYSTEM_PREFIX_LEN.
17140         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
17141         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
17142         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
17143         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
17144
17145         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
17146         prerequisite modules now handle the DOS stuff.
17147         Don't check for unistd.h.
17148
17149 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
17150
17151         Merge from coreutils.
17152
17153         * lib/.gdb-history: Remove; this doesn't belong here.
17154
17155         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
17156         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
17157         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
17158         * lib/getcwd.c: New files.
17159
17160         * lib/dirname.h: Include <stdbool.h>.
17161         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
17162         for consistency with POSIX terminology.  All uses changed.
17163         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
17164         (strip_trailing_slashes): Use bool for booleans.
17165         * lib/stripslash.c (strip_trailing_slashes): Likewise.
17166
17167         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
17168         sometimes returns a positive errno value even when it succeeds.
17169         (print_errno_message) [!LIBC]: Fall back on strerror if
17170         __strerror_r fails.
17171
17172         * lib/path-concat.c (mempcpy): Don't define if a system header defines
17173         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
17174         (longest_relative_suffix): New function.
17175         (path_concat): Use it.  Assume first argument is not NULL.
17176         Port to DOS.  Omit redundant separators.
17177         Report an error instead of returning NULL.
17178         Use mempcpy instead of memcpy.
17179         (xpath_concat): Remove: not declared or used.
17180
17181         * lib/same.h: Include <stdbool.h>
17182         (same_name): Return bool, not int.
17183         * lib/same.c (same_name): Likewise.
17184         (errno): Don't declare; we assume C89 or better now.
17185
17186         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
17187         if not already defined.
17188
17189         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
17190         * lib/dup-safer.c (errno): Likewise.
17191
17192 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
17193
17194         Merge from coreutils.
17195         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
17196         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
17197         * modules/path-concat: Don't depend on strdup.
17198
17199 2004-08-03  Simon Josefsson  <jas@extundo.com>
17200
17201         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
17202         * lib/progname.h: Don't include stdbool.h.
17203
17204 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
17205
17206         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
17207         * MODULES.html.sh (func_all_modules): Remove fatal.
17208
17209 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
17210
17211         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
17212
17213 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
17214
17215         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
17216         working.
17217
17218 2004-08-02  Simon Josefsson  <jas@extundo.com>
17219
17220         * lib/getsubopt.h: New file, with comments from Bruno Haible.
17221         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
17222         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
17223
17224 2004-08-01  Simon Josefsson  <jas@extundo.com>
17225
17226         * lib/xgetdomainname.c: Include stdlib.h, for free().
17227
17228 2004-07-19  Bruno Haible  <bruno@clisp.org>
17229
17230         * MODULES.html.sh (func_all_modules): Add dummy.
17231
17232 2004-07-16  Simon Josefsson  <jas@extundo.com>
17233
17234         * modules/dummy: New file.
17235
17236 2004-07-16  Simon Josefsson  <jas@extundo.com>
17237
17238         * lib/dummy.c: New file.
17239
17240 2004-07-16  Bruno Haible  <bruno@clisp.org>
17241
17242         * lib/backupfile.h: Add extern "C" for C++.
17243         * lib/closeout.h: Likewise.
17244         * lib/copy-file.h: Likewise.
17245         * lib/findprog.h: Likewise.
17246         * lib/full-write.h: Likewise.
17247         * lib/pathname.h: Likewise.
17248         * lib/progname.h: Likewise.
17249         * lib/stpcpy.h: Likewise.
17250         * lib/stpncpy.h: Likewise.
17251         * lib/strcase.h: Likewise.
17252         * lib/strstr.h: Likewise.
17253         * lib/xalloc.h: Likewise.
17254
17255         * lib/mbswidth.h: Add extern "C" for C++.
17256         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
17257
17258 2004-07-13  Robert Millan  <robertmh@gnu.org>
17259
17260         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
17261
17262 2004-07-09  Simon Josefsson  <jas@extundo.com>
17263
17264         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
17265         failed without this.)
17266
17267 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
17268
17269         * modules/chown (Files): Add lib/fchown-stub.c, since
17270         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
17271
17272 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
17273
17274         * lib/fchown-stub.c: New file.
17275
17276 2004-06-24  Jim Meyering  <jim@meyering.net>
17277
17278         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
17279
17280 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17281
17282         * modules/argz: Omit "#include".
17283
17284         * MODULES.html.sh (func_all_modules): Add calloc, to match
17285         2004-06-01 addition of calloc module.
17286
17287 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17288
17289         * m4/argz.m4: New file, which is autoupdated from libtool.
17290
17291 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17292
17293         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
17294         libtool.
17295
17296 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17297
17298         * config/srclist-update: Don't insist on "USA." before the
17299         close-comment, as libtool omits the period and puts the */ on a
17300         separate line.
17301         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
17302         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
17303
17304 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
17305
17306         * modules/argz: New file.
17307         * MODULES.html.sh (func_all_modules): Add argz.
17308
17309 2004-06-12  Jim Meyering  <jim@meyering.net>
17310         and  Paul Eggert  <eggert@cs.ucla.edu>
17311
17312         * modules/hash (Files): Add lib/xalloc.h.
17313         * modules/pipe (Depends-on): Add wait-process.
17314         * modules/stat (Depends-on): Add xalloc.
17315         * modules/userspec (Files): Add lib/userspec.h.
17316         * modules/xstrto
17317
17318         Upgrade from gettext-0.13.
17319         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
17320         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
17321         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
17322
17323 2004-06-10  Jim Meyering  <jim@meyering.net>
17324
17325         * lib/calloc.c: New file.
17326
17327 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
17328
17329         * lib/getdate.y (yylex): Allow space between sign and number.
17330         Problem reported by Dan Jacobson.
17331
17332 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
17333
17334         Merge from coreutils CVS.
17335
17336         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
17337         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
17338         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
17339         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
17340         xstrtol.m4: Fix copyright date and/or serial number.
17341
17342         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
17343         See if we need an fchown replacement.
17344         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
17345         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
17346         and use the replacement function if we detect either defect.
17347
17348         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
17349         gl_UTIMECMP.
17350
17351 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
17352         and  Jim Meyering  <jim@meyering.net>
17353
17354         Merge from coreutils CVS.
17355
17356         * lib/stat-macros.h: New file, with contents from file-type.h
17357         and coreutils' system.h.
17358         * lib/file-type.c: Include "stat-macros.h".
17359         * lib/file-type.h (file_type): Move all macro definitions to new file,
17360         stat-macros.h.
17361
17362         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
17363         Wrap old code with this conditional.
17364         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
17365         function that does not dereference symlinks.
17366         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
17367
17368         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
17369         dependency problems.
17370         (xreadlink): Accept new arg SIZE, for efficiency.
17371         All decls and uses changed.
17372         * lib/xreadlink.h: Include <stddef.h>, for size_t.
17373
17374         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
17375         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
17376
17377         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
17378         sysexits.h.
17379
17380 2004-06-01  Jim Meyering  <jim@meyering.net>
17381
17382         * m4/calloc.m4: New file.
17383
17384 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
17385
17386         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
17387         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
17388         Also, fix a typo in a diagnostic.
17389
17390 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
17391
17392         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
17393         or AC_FUNC_REALLOC.
17394
17395 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
17396
17397         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
17398         macros to be defined.
17399         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
17400         the allocator returns NULL because the requested size is zero.
17401
17402 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17403
17404         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
17405         var.  Add comment explaining why libc still defines it.  This
17406         merges the following patch from glibc:
17407         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
17408
17409 2004-05-20  Andreas Schwab  <schwab@suse.de>
17410
17411         * m4/free.m4: Replace free if it not known to work, not the other
17412         way round.
17413
17414 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
17415
17416         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
17417         present in glibc since revision 1.1 of this file.
17418         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
17419         obstack_alignment_mask, obstack_alloc, obstack_base,
17420         obstack_blank, obstack_blank_fast, obstack_chunk_size,
17421         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
17422         obstack_grow0, obstack_init, obstack_int_grow,
17423         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
17424         obstack_next_free, obstack_object_size, obstack_ptr_grow,
17425         obstack_ptr_grow_fast, obstack_room): Remove declarations of
17426         nonexistent functions.
17427
17428 2004-05-18  Karl Berry  <karl@gnu.org>
17429
17430         * config/srclist.txt: break link for vasnprintf.c.
17431
17432 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17433
17434         Port obstack to the AS/400, where pointers are 16 bytes wide and
17435         you cannot cast an integer to a valid pointer.  This patch is
17436         currently waiting to be integrated into glibc; see
17437         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
17438
17439         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
17440         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
17441         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
17442         (struct obstack): temp member is now a union of a pointer and
17443         an integer, instead of an integer.  All integer uses changed.
17444         This does not affect the physical layout of struct obstack,
17445         except on hosts (like the AS/400) where the size or alignment of
17446         void * is greater than that of ptrdiff_t.
17447         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
17448         __STDC__)]: Store temporary in pointer member of union, not
17449         integer member.
17450         * lib/obstack.c: Include <stddef.h>, for offsetof.
17451         (struct fooalign): Remove; it doesn't need a name.
17452         (union fooround): Change double to long double, and add void *.
17453         (DEFAULT_ALIGNMENT): Use offsetof to compute.
17454         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
17455         not a macro.  Hence the values are always int; so remove all
17456         casts-to-int in uses.
17457
17458 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
17459
17460         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
17461         we can get this patch merged into glibc.
17462
17463 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17464             Paul Eggert  <eggert@cs.ucla.edu>
17465
17466         * m4/argp: Depend on alloca.
17467
17468 2004-05-17  Derek R. Price  <derek@ximbiot.com>
17469             Paul Eggert  <eggert@cs.ucla.edu>
17470
17471         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
17472         freecoding.
17473
17474 2004-05-17  Bruno Haible  <bruno@clisp.org>
17475
17476         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
17477         precision that consists of a '.' followed by an empty digit string.
17478         Patch by Tor Lillqvist <tml@iki.fi>.
17479
17480 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17481
17482         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
17483         for backward compatibility with older code.  We need our own
17484         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
17485         it under some other name, and our alloca.h will define it.
17486
17487 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
17488             Derek Price  <derek@ximbiot.com>
17489
17490         * lib/alloca.c: Include <alloca.h>, to get our interface.
17491         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
17492         include <alloca.h> first.  Use C89 prototype for alloca; this
17493         requires including <stddef.h> for size_t.  Use extern "C" if C++.
17494         Use #elif for simplicity, since we can assume C89 now.
17495         Don't try to source the system alloca.h since it will not be found
17496         and to prevent recursively including its replacement.
17497         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
17498         * lib/regex.c: Likewise.
17499
17500 2004-05-16  Derek Price  <derek@ximbiot.com>
17501             Paul Eggert  <eggert@cs.ucla.edu>
17502
17503         getline cleanup.  This changes the getndelim2 API: both order of
17504         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
17505         no delimiter).
17506
17507         * lib/getline.c: Don't include stddef.h or stdio.h, since our
17508         interface does that.
17509         (getline): Always use getdelim, so that we don't have two
17510         copies of this code.
17511         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
17512         if available.
17513         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
17514         (GETNDELIM2_MAXIMUM): New macro.
17515         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
17516         instead of the old practice of delim2==0.  All callers changed.
17517         Return -1 on overflow, instead of returning junk.
17518         Do not set *linesize unless allocation succeeds.
17519         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
17520         that we include sys/types.h.
17521         * lib/getnline.h: Likewise.
17522         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
17523         (getndelim2): Reorder arguments.
17524         * lib/getnline.c (getnline, getndelim):
17525         Don't discard the NMAX argument.
17526         (getnline): Invoke getndelim, to avoid code duplication.
17527         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
17528         of (size_t) -1 by callers of the getnline family.
17529
17530 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17531
17532         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
17533         Check for gettimeofday.
17534         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
17535         Check for settimeofday, stime.
17536
17537 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17538
17539         * lib/nanosleep.c (suspended): Change its type from int to
17540         sig_atomic_t volatile.
17541         (first_call): Make it private to rpl_nanosleep, and have it
17542         be zero initially as that's a bit faster.
17543         (my_usleep): Round up fractional times instead of truncating them,
17544         as this is the usual meaning for 'sleep'.
17545
17546         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
17547         doesn't work.
17548         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
17549         (ENOSYS): Define if not defined.
17550         (settime): Fall back on stime if it exists and settimeofday fails.
17551         But don't bother with fallbacks if a method fails with errno == EPERM.
17552
17553 2004-05-11  Jim Meyering  <jim@meyering.net>
17554
17555         Prior to this change, the save_cwd caller required read access to the
17556         current directory on most systems (ones with the fchdir function).
17557
17558         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
17559         fails, try write-only, and finally, resort to using xgetcwd.
17560
17561 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
17562
17563         * lib/obstack.c, obstack.h: Import changes from libc.
17564
17565 2004-04-28  Bruno Haible  <bruno@clisp.org>
17566
17567         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
17568         also implicitly appends .exe to executables.
17569         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
17570         accepts Windows pathnames.
17571         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17572         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17573         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
17574         Treat Cygwin like Windows, since it now accepts Windows pathnames.
17575         Reported by Derek Robert Price <derek@ximbiot.com>.
17576
17577 2004-04-21  Karl Berry  <karl@gnu.org>
17578
17579         * config/srclist.txt (localcharset.c): break sync.
17580
17581 2004-04-20  Paul Eggert  <eggert@twinsun.com>
17582
17583         * m4/host-os.m4: Add a copyright notice.
17584
17585 2004-04-20  Jim Meyering  <jim@meyering.net>
17586
17587         Change UTILS_ to gl_ in AC_DEFINE'd names.
17588         Change utils_- and jm_-prefixed variables, too.
17589         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
17590         UTILS_FUNC_MKDIR_TRAILING_SLASH.
17591         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
17592
17593         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
17594         Don't emit trailing blanks.
17595         Also rename jm_-prefixed variables to have gl_ prefix.
17596
17597         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
17598         Also rename jm_-prefixed variables to have gl_ prefix.
17599
17600         * m4/jm-macros.m4: Reflect the renamings.
17601         * m4/prereq.m4: Likewise.
17602
17603 2004-04-20  Jim Meyering  <jim@meyering.net>
17604
17605         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
17606         memory.
17607
17608 2004-04-20  Jim Meyering  <jim@meyering.net>
17609             Bruno Haible  <bruno@clisp.org>
17610
17611         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
17612         memory when realloc fails.
17613
17614 2004-04-19  Jim Meyering  <jim@meyering.net>
17615
17616         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
17617         now that readutmp.c may call `free (0)'.
17618
17619 2004-04-19  Bruno Haible  <bruno@clisp.org>
17620
17621         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
17622         * m4/inttypes_h.m4: Likewise.
17623         * m4/stdint_h.m4: Likewise.
17624         * m4/intmax_t.m4: Likewise.
17625         * m4/uintmax_t.m4: Likewise.
17626
17627 2004-04-18  Jim Meyering  <jim@meyering.net>
17628
17629         * m4/prereq.m4: Don't forbid jm_ prefix.
17630
17631         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
17632         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
17633         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
17634         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
17635         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
17636         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
17637         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
17638         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
17639         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
17640         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
17641         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
17642         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
17643         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
17644         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
17645         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
17646         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
17647         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
17648         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
17649         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
17650
17651 2004-04-18  Jim Meyering  <jim@meyering.net>
17652
17653         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
17654         failure, don't leak memory and do call END_UTMP_ENT.
17655
17656 2004-04-16  Jim Meyering  <jim@meyering.net>
17657
17658         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
17659         coreutils' stat program.
17660         (gl_PREREQ): Don't require jm_PREREQ_STAT.
17661
17662 2004-04-11  Paul Eggert  <eggert@twinsun.com>
17663
17664         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
17665         C89.
17666         (CHAR_BIT): Remove, since we assume C89.
17667         Include <stdint.h> if available, as per current Autoconf CVS advice.
17668
17669 2004-03-31  Jim Meyering  <jim@meyering.net>
17670
17671         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
17672         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
17673         * m4/xalloc.m4: Likewise.
17674
17675 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17676
17677         Merge from coreutils.
17678
17679         * m4/inttostr.m4: New file.
17680         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
17681         Require AM_STDBOOL_H and gl_TIMESPEC instead.
17682         Require gl_CLOCK_TIME.
17683         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
17684
17685 2004-03-30  Paul Eggert  <eggert@twinsun.com>
17686
17687         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
17688         not bool, to be more consistent with Unix conventions.
17689         Suggested by Bruno Haible.
17690
17691         Merge from coreutils.
17692
17693         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
17694         * lib/umaxtostr.c: New files.
17695
17696         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
17697         the usual <time.h> dance.
17698         (get_date): Change signature to support fractional time stamps.
17699         All callers changed.
17700         * lib/getdate.y: Include "getdate.h" first, as we can now
17701         assume C89 and don't need to worry about 'const'.
17702         Similarly, include "unlocked-io.h" near start, not in middle.
17703         Include <limits.h>.
17704         (textint.value): Use long int rather than int.
17705         (textint.digits): Use size_t rather than int.
17706         (BILLION, LOG10_BILLION): New constants.
17707         (parser_control): New member rel_ns.  Members day_ordinal,
17708         time_zone, month, day, hour, minutes, rel_year, rel_month,
17709         rel_day, rel_hour, rel_minutes, rel_seconds
17710         are now long int, not int.  Member seconds is now struct timespec,
17711         not int.  New member timespec_seen.  Members dates_seen, days_seen,
17712         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
17713         not int.
17714         (%union.intval): Now long int, not int.
17715         New member timespec.
17716         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
17717         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
17718         (spec): Now is a timespec or an item list.
17719         (timespec, items): New nonterminals.
17720         (time, rel, relunit, number, get_date):
17721         Add support for fractional seconds.
17722         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
17723         (gmtime, localtime, mktime): Remove decls; not needed with C89.
17724         (to_hour): First arg is now long int, not int.
17725         (to_year): Returns long int, not int.
17726         Don't treat year -70 like 70.
17727         (tm_diff): Returns long int, not int.
17728         (lookup_word): Use bool instead of int when appropriate.
17729         (yylex): Use size_t for count, not int.
17730         Detect overflow when parsing large integer constants.
17731         Add support for fractions.
17732         (get_date): Make pointers 'const' if possible.
17733         Use more-portable code to detect integer overflow.
17734         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
17735         Don't use ctime; it's not reliable if the year has >4 digits.
17736
17737         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
17738         This is for compatibility with BSD.
17739
17740         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
17741         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
17742         From coreutils' system.h.
17743
17744         * lib/userspec.c: Don't include "posixver.h".
17745         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
17746         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
17747         compatible extension.  Simplify code by removing a boolean int
17748         that was always nonzero if a string was nonnull.
17749
17750 2004-03-30  Jim Meyering  <jim@meyering.net>
17751
17752         Merge from coreutils.
17753
17754         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
17755         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
17756         on some systems one must include <grp.h> before it.
17757         Reported by Christian Krackowizer.
17758
17759 2004-03-30  Jim Meyering  <jim@meyering.net>
17760
17761         Merge from coreutils.
17762
17763         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
17764
17765         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
17766         an empty input stream.
17767
17768         * lib/readtokens.c: Include <stdbool.h>.
17769         (readtoken): Use `size_t' rather than int/long.
17770         All callers adjusted.
17771         Use `bool' rather than `int' where appropriate.
17772         Use memset rather than an explicit loop.
17773         Use x2nrealloc rather than xrealloc.
17774         Allow the use of `\0' as a delimiter.
17775         (readtokens): Likewise.
17776         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
17777
17778 2004-03-30  Jim Meyering  <jim@meyering.net>
17779
17780         * m4/realloc.m4: Remove file, since now it does no more than
17781         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
17782         the `configure.ac' section of module/realloc.
17783         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
17784
17785 2004-03-30  Bruno Haible  <bruno@clisp.org>
17786
17787         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
17788         nonnull.
17789
17790 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17791
17792         Merge changes to getloadavg.c from coreutils and Emacs.
17793
17794         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
17795         Define to an expression, not to the empty string.
17796         Include cloexec.h and xalloc.h.
17797         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
17798         Use set_cloexec_flag rather than rolling our own.
17799         * lib/cloexec.c, lib/cloexec.h: New files.
17800
17801 2004-03-29  Paul Eggert  <eggert@twinsun.com>
17802
17803         * m4/cloexec.m4: New file.
17804
17805 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17806
17807         * lib/getopt.h: Sync with libc CVS.
17808
17809 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17810             Bruno Haible  <bruno@clisp.org>
17811
17812         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
17813         mbswidth.
17814
17815 2004-03-18  Paul Eggert  <eggert@twinsun.com>
17816             Bruno Haible  <bruno@clisp.org>
17817
17818         * lib/mbswidth.h: Include <wchar.h> only if
17819         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
17820         <wchar.h>.
17821         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
17822
17823 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17824
17825         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
17826         Sync with libc CVS.
17827         * lib/getopt_int.h: New file, also synced from libc.
17828
17829 2004-03-09  Paul Eggert  <eggert@twinsun.com>
17830
17831         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
17832         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
17833         Bring back getopt.c, getopt.h, getopt1.c.
17834
17835 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17836
17837         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
17838         All uses changed.  Check for sa_sigaction member; this fixes
17839         a bug first reported by Jason Andrade in
17840         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17841
17842 2004-03-07  Paul Eggert  <eggert@twinsun.com>
17843
17844         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
17845         '#if' expressions.  Unlike the code it replaces, it does not
17846         depend on (defined _SC_PAGESIZE).  However, it does depend on
17847         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
17848         first reported by Jason Andrade in
17849         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
17850
17851 2004-02-25  Simon Josefsson  <jas@extundo.com>
17852
17853         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
17854
17855 2004-02-25  Simon Josefsson  <jas@extundo.com>
17856
17857         * lib/strdup.h: New file.
17858         * lib/strdup.c: Include it.
17859         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
17860         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
17861
17862 2004-02-23  Karl Berry  <karl@gnu.org>
17863
17864         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
17865         (from fencepost.gnu.org:/gd/gnuorg).
17866
17867 2004-02-23  Karl Berry  <karl@gnu.org>
17868
17869         * config/srclistvars.sh (GNUORG) [karl]: redefine.
17870         * config/srclist.txt: add maintain/standards documents.
17871
17872 2004-02-18  Bruno Haible  <bruno@clisp.org>
17873
17874         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
17875         Reported by Derek Robert Price <derek@ximbiot.com>.
17876
17877 2004-02-16  Karl Berry  <karl@gnu.org>
17878
17879         * config/mkinstalldirs, install-sh: update from automake.
17880
17881 2004-02-06  Karl Berry  <karl@gnu.org>
17882
17883         * m4/po.m4: update from gettext 0.14.1.
17884
17885 2004-02-06  Karl Berry  <karl@gnu.org>
17886
17887         * lib/config.charset: update from gettext 0.14.1.
17888
17889 2004-02-05  Paul Eggert  <eggert@twinsun.com>
17890
17891         Add comments and code, prompted by suggestions from Bruno Haible
17892         for sh-quote.
17893         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
17894         describing the enum quoting_style values.
17895         * lib/quotearg.c (quotearg_alloc): New function.
17896         (quotearg_buffer_restyled): Treat lone { and } as special.
17897         Treat = as special.  Work around bug with older shells
17898         that "see" a '\' that is really the 2nd byte of a multibyte char.
17899         Quote empty string with shell_quoting_style.
17900
17901 2004-02-03  Bruno Haible  <bruno@clisp.org>
17902
17903         * m4/pipe.m4: New file, from GNU gettext.
17904
17905 2004-02-03  Bruno Haible  <bruno@clisp.org>
17906
17907         * lib/pipe.h: New file, from GNU gettext.
17908         * lib/pipe.c: New file, from GNU gettext.
17909
17910 2004-01-27  Bruno Haible  <bruno@clisp.org>
17911
17912         * m4/execute.m4: New file, from GNU gettext.
17913
17914 2004-01-27  Bruno Haible  <bruno@clisp.org>
17915
17916         * lib/execute.h: New file, from GNU gettext.
17917         * lib/execute.c: New file, from GNU gettext.
17918         * lib/w32spawn.h: New file, from GNU gettext.
17919
17920 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17921
17922         Merge from diffutils.
17923
17924         * lib/file-type.c (file_type): Add typed memory objects.
17925         * lib/file-type.h (S_TYPEISTMO): New macro.
17926
17927         * lib/c-stack.h (c_stack_action): Remove argv argument.
17928         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
17929         (die): Don't calculate message unless segv_action returns.
17930         (get_stack_location, min_address_from_argv, max_address_from_argv,
17931         volatile stack_base, volatile_stack_size): Remove.
17932         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
17933         that every segmentation violation is a stack overflow.  (Ouch!)
17934         See Debian bug 136249 (still outstanding) for more info about why
17935         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
17936
17937 2004-01-24  Paul Eggert  <eggert@twinsun.com>
17938
17939         Exit-status fix from coreutils.
17940
17941         Use exit_failure consistently in place of EXIT_FAILURE,
17942         so that program exit statuses are consistent on failure.
17943
17944         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
17945         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
17946         * lib/argmatch.h: Comment fix to match the above.
17947         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
17948         Now a macro referring to exit_failure, instead of a separate
17949         variable.  Include "exitfail.h" to get it.
17950         * lib/xstrtol.h: Include "exitfail.h".
17951         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
17952
17953         * lib/long-options.c (parse_long_options): Use prototype
17954         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
17955         for clarity.
17956
17957 2004-01-21  Jim Meyering  <jim@meyering.net>
17958
17959         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
17960         so as not to conflict with a different-sized __mktime_internal
17961         function in GNU libc.
17962         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
17963         Problem building statically-linked `ls' reported by Michael Brunnbauer.
17964
17965 2004-01-20  Karl Berry  <karl@gnu.org>
17966
17967         * config/config.guess: update from config.
17968
17969         * config/srclistvars.sh: GNUWWWLICENSES for karl.
17970
17971 2004-01-20  Bruno Haible  <bruno@clisp.org>
17972
17973         Safer stack allocation.
17974         * lib/setenv.c: Include allocsa.h.
17975         (alloca): Remove fallback definition.
17976         (freea): Remove macro.
17977         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
17978         instead of freea.
17979
17980 2004-01-20  Bruno Haible  <bruno@clisp.org>
17981
17982         * m4/eealloc.m4: New file, from GNU gettext.
17983
17984 2004-01-20  Bruno Haible  <bruno@clisp.org>
17985
17986         * m4/allocsa.m4: New file, from GNU gettext.
17987
17988 2004-01-20  Bruno Haible  <bruno@clisp.org>
17989
17990         * lib/xallocsa.h: New file, from GNU gettext.
17991         * lib/xallocsa.c: New file, from GNU gettext.
17992
17993 2004-01-20  Bruno Haible  <bruno@clisp.org>
17994
17995         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
17996
17997 2004-01-20  Bruno Haible  <bruno@clisp.org>
17998
17999         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
18000         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
18001         specially.
18002
18003 2004-01-20  Bruno Haible  <bruno@clisp.org>
18004
18005         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
18006         patch.
18007
18008 2004-01-20  Bruno Haible  <bruno@clisp.org>
18009
18010         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
18011
18012 2004-01-20  Bruno Haible  <bruno@clisp.org>
18013
18014         * lib/eealloc.h: New file.
18015
18016 2004-01-20  Bruno Haible  <bruno@clisp.org>
18017
18018         * lib/binary-io.h: Avoid warnings on Cygwin.
18019
18020 2004-01-20  Bruno Haible  <bruno@clisp.org>
18021
18022         * lib/allocsa.h: New file, from GNU gettext.
18023         * lib/allocsa.c: New file, from GNU gettext.
18024
18025 2004-01-18  Karl Berry  <karl@gnu.org>
18026
18027         * doc/gpl.texi, doc/lgpl.texi: new files.
18028
18029 2004-01-18  Karl Berry  <karl@gnu.org>
18030
18031         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
18032         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
18033
18034 2004-01-15  Paul Eggert  <eggert@twinsun.com>
18035
18036         Merge from coreutils.
18037
18038         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
18039         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
18040         (gl_DEFAULT_POSIX2_VERSION): Move
18041         the documentation from 'configure' into 'config.hin',
18042         so that 'configure --help' isn't burdened by it and
18043         we don't have to worry about its formatting there.
18044         Reword the documentation so that it's more succinct
18045         and can be run together into a single paragraph.
18046         * m4/same.m4 (gl_SAME): Check for pathconf.
18047
18048 2004-01-15  Paul Eggert  <eggert@twinsun.com>
18049
18050         Merge from coreutils.
18051
18052         * lib/posixver.c: Include posixver.h.
18053
18054         * lib/same.c: Include <stdbool.h>, <limits.h>.
18055         (_POSIX_NAME_MAX): Define if not defined.
18056         (MIN): New macro.
18057         (same_name): If file names are silently truncated, report
18058         that the file names are the same if they are the same after
18059         the silent truncation.
18060
18061         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
18062         conversion function.
18063         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
18064         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
18065         longer needed.
18066
18067 2004-01-15  Jim Meyering  <jim@meyering.net>
18068
18069         Merge from coreutils.
18070
18071         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
18072         if no library is required.
18073         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
18074         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
18075         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
18076         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
18077         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
18078         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
18079         value, $ac_cv_search_crypt, if it's "none required".
18080         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
18081         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
18082         not gl_FUNC_GETLOADAVG.
18083         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
18084         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
18085
18086 2004-01-15  Jim Meyering  <jim@meyering.net>
18087
18088         Merge from coreutils.
18089
18090         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
18091         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
18092         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
18093
18094         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
18095         optional configure-time default.
18096
18097         * lib/version-etc.c (version_etc_copyright): Update copyright date.
18098
18099         * lib/xreadlink.c (xreadlink): Correct outdated comment.
18100
18101 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
18102
18103         Merge from coreutils.
18104
18105         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
18106         value, $ac_cv_search_nanosleep, if it's "none required".
18107
18108 2004-01-14  Paul Eggert  <eggert@twinsun.com>
18109
18110         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
18111         with like-named macro in fnmatch.c.
18112         (EXT): Use an internal constant instead.
18113
18114         Merge fnmatch patches from glibc.
18115         * lib/fnmatch.c (mbsinit): Remove define.
18116         Add libc_hidden_ver (__fnmatch, fnmatch).
18117         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
18118         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
18119
18120 2004-01-14  Karl Berry  <karl@gnu.org>
18121
18122         * config/install-sh: update from automake.
18123
18124 2004-01-13  Karl Berry  <karl@gnu.org>
18125
18126         * config/install-sh: update from automake.
18127
18128 2004-01-09  Karl Berry  <karl@gnu.org>
18129
18130         * config/install-sh: update from automake.
18131
18132 2004-01-05  Karl Berry  <karl@gnu.org>
18133
18134         * config/config.{sub,guess}: update from config.
18135
18136 2003-12-31  Karl Berry  <karl@gnu.org>
18137
18138         * config/depcomp: update from automake.
18139
18140 2003-12-14  Karl Berry  <karl@gnu.org>
18141
18142         * lib/config.charset: update from gettext-runtime.
18143
18144 2003-12-03  Paul Eggert  <eggert@twinsun.com>
18145
18146         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
18147         Bug reported by Alfred M. Szmidt.
18148
18149 2003-12-03  Bruno Haible  <bruno@clisp.org>
18150
18151         * m4/gettext.m4: Upgrade from gettext-0.13.
18152         * m4/po.m4: Upgrade from gettext-0.13.
18153         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
18154         * m4/intmax.m4: New file, from gettext-0.13.
18155         * m4/printf-posix.m4: New file, from gettext-0.13.
18156
18157 2003-11-29  Karl Berry  <karl@gnu.org>
18158
18159         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
18160
18161 2003-11-25  Paul Eggert  <eggert@twinsun.com>
18162             Bruno Haible  <bruno@clisp.org>
18163
18164         * lib/printf-parse.h: Don't include sys/types.h.
18165         (ARG_NONE): New macro.
18166         (char_directive): Change type of *arg_index fields to size_t.
18167         * lib/printf-parse.c: Don't include sys/types.h.
18168         (SSIZE_MAX): Remove macro.
18169         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
18170         Remove unnecessary overflow check.
18171         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
18172         fields.
18173
18174 2003-11-25  Bruno Haible  <bruno@clisp.org>
18175
18176         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
18177
18178 2003-11-25  Bruno Haible  <bruno@clisp.org>
18179
18180         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
18181         gt_TYPE_SSIZE_T.
18182
18183 2003-11-24  Paul Eggert  <eggert@twinsun.com>
18184
18185         * modules/alloca: Remove dependency on xalloc.
18186
18187 2003-11-24  Paul Eggert  <eggert@twinsun.com>
18188
18189         * lib/alloca.c: Remove dependency on xalloc module.
18190         (xalloc_die): Remove.
18191         (memory_full) [!defined emacs]: New macro.
18192         [!defined emacs]: Don't include xalloc.h.
18193         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
18194         address arithmetic overflows.  Change datatypes a bit to avoid
18195         unnecessary casts.
18196
18197 2003-11-22  Jim Meyering  <jim@meyering.net>
18198
18199         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
18200         s/size/size_t/.
18201
18202 2003-11-21  Karl Berry  <karl@gnu.org>
18203
18204         * config/config.{sub,guess}: update from config.
18205
18206 2003-11-18  Karl Berry  <karl@gnu.org>
18207
18208         * config/config.{sub,guess}: update from config.
18209
18210         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
18211
18212 2003-11-17  Paul Eggert  <eggert@twinsun.com>
18213
18214         * README: Mention that S+T cannot overflow if S is the size of
18215         an existing object and T is sufficiently small.
18216
18217 2003-11-17  Jim Meyering  <jim@meyering.net>
18218
18219         On systems without utime and without a utimes function capable of
18220         dealing with a NULL struct utimbuf* argument, this utime replacement
18221         could -- in unusual circumstances -- leak a file descriptor.
18222         * lib/utime.c: Include <unistd.h> and <errno.h>.
18223         (utime_null): Be sure to close `fd' and to preserve errno.
18224         Reported by Geoff Collyer via Arnold Robbins.
18225
18226 2003-11-17  Bruno Haible  <bruno@clisp.org>
18227
18228         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
18229         (Depends-on): Add xsize.
18230
18231 2003-11-17  Bruno Haible  <bruno@clisp.org>
18232
18233         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
18234
18235 2003-11-17  Bruno Haible  <bruno@clisp.org>
18236
18237         * lib/vasnprintf.c (alloca): Remove fallback definition.
18238         (freea): Remove definition.
18239         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
18240         Reported by Paul Eggert.
18241
18242 2003-11-16  Paul Eggert  <eggert@twinsun.com>
18243             Bruno Haible  <bruno@clisp.org>
18244
18245         Protect against address arithmetic overflow.
18246         * lib/printf-args.h: Include stddef.h.
18247         (arguments): Change type of field 'count' to size_t.
18248         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
18249         'unsigned int' where appropriate.
18250         * lib/printf-parse.h: Include sys/types.h.
18251         (char_directive): Change type of *arg_index fields to ssize_t.
18252         (char_directives): Change type of fields 'count', max_*_length to
18253         size_t.
18254         * lib/printf-parse.c: Include sys/types.h and xsize.h.
18255         (SSIZE_MAX): Define fallback value.
18256         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
18257         instead of 'int' where appropriate. Check a_allocated, d_allocated
18258         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
18259         * lib/vasnprintf.c: Include xsize.h.
18260         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
18261         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
18262         overflow. Avoid wraparound when converting a width or precision from
18263         decimal to binary.
18264
18265 2003-11-16  Bruno Haible  <bruno@clisp.org>
18266
18267         Update from GNU gettext.
18268         * lib/printf-parse.c: Generalize to it can be compiled for wide
18269         strings.
18270         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
18271         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
18272         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
18273         SNPRINTF): New macros.
18274         Don't include <alloca.h> if the file is used inside libintl.
18275         (local_wcslen): New function, for Solaris 2.5.1.
18276         (VASNPRINTF): Use it instead of wcslen.
18277
18278 2003-11-16  Bruno Haible  <bruno@clisp.org>
18279
18280         * lib/xsize.h (xmax): New function.
18281         (xsum, xsum3, xsum4): Declare as "pure" functions.
18282
18283 2003-11-12  Paul Eggert  <eggert@twinsun.com>
18284
18285         * modules/xalloc (Files): Undo latest change, since xalloc.h
18286         no longer needs SIZE_MAX or PTRDIFF_MAX.
18287
18288 2003-11-12  Paul Eggert  <eggert@twinsun.com>
18289
18290         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
18291         gl_PTRDIFF_MAX.
18292
18293 2003-11-12  Paul Eggert  <eggert@twinsun.com>
18294
18295         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
18296         "return", to pacify some unknown compiler.  Problem reported
18297         by Joerg Schilling.
18298
18299 2003-11-12  Paul Eggert  <eggert@twinsun.com>
18300
18301         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
18302         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
18303         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
18304         heuristic is just as accurate as far as we know, and it removes a
18305         dependency on size_max.m4 and ptrdiff_max.m4.
18306
18307 2003-11-11  Bruno Haible  <bruno@clisp.org>
18308
18309         * modules/xsize (Files): Add m4/size_max.m4.
18310         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
18311
18312 2003-11-11  Bruno Haible  <bruno@clisp.org>
18313
18314         * m4/size_max.m4: New file.
18315         * m4/ptrdiff_max.m4: New file.
18316         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
18317         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
18318         (gl_XALLOC): Invoke it.
18319
18320 2003-11-11  Bruno Haible  <bruno@clisp.org>
18321
18322         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
18323         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
18324         defined.
18325
18326 2003-11-10  Paul Eggert  <eggert@twinsun.com>
18327
18328         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
18329         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
18330         rejected some allocations of exactly SIZE_MAX - 2 bytes.
18331         From Bruno Haible.
18332         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
18333         not (size_t) -1, since it's defined here.
18334
18335 2003-11-09  Karl Berry  <karl@gnu.org>
18336
18337         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
18338
18339 2003-11-06  Paul Eggert  <eggert@twinsun.com>
18340
18341         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
18342         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
18343         Reject sizes of exactly SIZE_MAX bytes.
18344         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
18345         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
18346
18347 2003-11-05  Bruno Haible  <bruno@clisp.org>
18348
18349         * lib/xsize.h: Include limits.h, to avoid a possible collision with
18350         SIZE_MAX defined in <limits.h> on Solaris.
18351
18352 2003-11-04  Jim Meyering  <jim@meyering.net>
18353
18354         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
18355         variable names, rather than @VAR@.
18356         * modules/poll: Likewise.
18357
18358 2003-11-04  Bruno Haible  <bruno@clisp.org>
18359
18360         * modules/xsize: New file.
18361         * modules/linebreak: Depend on xsize.
18362         * MODULES.html.sh (func_all_modules): Add xsize.
18363
18364 2003-11-04  Bruno Haible  <bruno@clisp.org>
18365
18366         * m4/xsize.m4: New file.
18367
18368 2003-11-04  Bruno Haible  <bruno@clisp.org>
18369
18370         * lib/xsize.h: New file.
18371         * lib/linebreak.c: Include xsize.h.
18372         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
18373         argument for overflow.
18374         Suggested by Paul Eggert.
18375
18376 2003-11-03  Karl Berry  <karl@gnu.org>
18377
18378         * config/config.{guess,sub}: update from config.
18379
18380 2003-11-03  Jim Meyering  <jim@meyering.net>
18381
18382         * modules/userspec (lib_SOURCES): Add userspec.h.
18383         (Include): Add "userspec.h".
18384         Improve description.
18385
18386 2003-11-03  Jim Meyering  <jim@meyering.net>
18387
18388         * lib/userspec.c: Include "userspec.h".
18389         * lib/userspec.h: New file.
18390
18391 2003-11-03  Bruno Haible  <bruno@clisp.org>
18392
18393         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
18394
18395 2003-11-03  Bruno Haible  <bruno@clisp.org>
18396
18397         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
18398         available, to avoid (extremely rare) race condition.
18399         Suggested by Paul Eggert.
18400
18401 2003-11-02  Karl Berry  <karl@gnu.org>
18402
18403         * config/srclist.txt (vasprintf.c): sync broken, sigh.
18404
18405 2003-10-31  Paul Eggert  <eggert@twinsun.com>
18406
18407         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
18408         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
18409         (read_filesystem_list): Set and use me_type_malloced.
18410         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
18411         whatever the type happens to be), for brevity and consistency.
18412         Check for size calculation overflow on Alphas running OSF/1.
18413
18414 2003-10-31  Jim Meyering  <jim@meyering.net>
18415
18416         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
18417
18418         * lib/linebuffer.c: Include <string.h> for declaration of memset.
18419
18420 2003-10-30  Paul Eggert  <eggert@twinsun.com>
18421             Bruno Haible  <bruno@clisp.org>
18422
18423         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
18424         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
18425
18426 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
18427
18428         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
18429         netbsd*-gnu*.  Suggested by Robert Millan.
18430
18431 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18432
18433         * modules/group-member: Depend on stdbool.
18434
18435 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18436
18437         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
18438
18439 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18440
18441         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
18442         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
18443         after the 'gnu' in these cases.  This fixes some bugs in the
18444         previous change, and is based on suggestions by Robert Millan.
18445
18446 2003-10-29  Paul Eggert  <eggert@twinsun.com>
18447
18448         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
18449         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
18450         no longer needed.
18451         * lib/quotearg.c (quotearg_n_options): Use it.
18452         * lib/group-member.c: Include <stdbool.h>.
18453         (free_group_info): Arg is now const *; don't free arg.
18454         (get_group_info): Now returns bool and accepts struct group_info *,
18455         rather than returning a malloc'ed struct group_info *.
18456         All uses changed.  Check for overflow in internal size calculation.
18457
18458         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
18459         rather than xmalloc/xrealloc.
18460         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
18461         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
18462         conformance bug: the old code used a pointer after freeing the
18463         storage that it addressed.
18464         * lib/hash.c (hash_initialize): Simplify the code by using
18465         xalloc_oversized rather than doing it by hand.
18466         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
18467         the buffer preserved.  Use free and xmalloc instead.
18468         * lib/quotearg.c (quotearg_n_options): Likewise.
18469         Use a simpler test for size overflow.  Don't use xalloc_oversized
18470         because unsigned int might be wider than size_t (!); this suggests
18471         that we should switch from unsigned int to size_t for slot numbers.
18472
18473 2003-10-28  Paul Eggert  <eggert@twinsun.com>
18474
18475         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
18476         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
18477         NetBSD kernels.  Requested by Richard Stallman.
18478
18479 2003-10-27  Paul Eggert  <eggert@twinsun.com>
18480
18481         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
18482         to allocate the returned structure.  Do not allocate a subarray,
18483         as x2nrealloc will do that.
18484         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
18485         instead of xnrealloc.
18486         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
18487
18488 2003-10-27  Bruno Haible  <bruno@clisp.org>
18489
18490         * lib/stdbool_.h: Better support for BeOS.
18491
18492 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18493
18494         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
18495         now uses inline.
18496
18497 2003-10-26  Paul Eggert  <eggert@twinsun.com>
18498
18499         * lib/xalloc.h (xalloc_oversized): New static inline function, for
18500         callers that want to do their own size-overflow checking.  Include
18501         <stdbool.h>, since xalloc_oversized returns bool.
18502         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
18503         to use xalloc_oversized.
18504
18505         Add two functions x2realloc, x2nrealloc, for programs that grow
18506         arrays dynamically by doubling their sizes.
18507         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
18508         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
18509         New functions.
18510
18511         Port to C99 semantics for 'inline' of external functions.
18512         Bug reported by Bruno Haible.
18513         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
18514         with the old contents of xnmalloc.
18515         (xnmalloc, xmalloc): Use it.
18516         (xnrealloc_inline): New static inline function,
18517         with the old contents of xnrealloc.
18518         (xnrealloc, xrealloc): Use it.
18519
18520         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
18521         that.
18522
18523 2003-10-26  Karl Berry  <karl@gnu.org>
18524
18525         * config/srclist.txt (COPYING.DOC): no longer available from
18526         /gd/gnuorg; don't know where the ultimate source is.
18527
18528 2003-10-25  Paul Eggert  <eggert@twinsun.com>
18529
18530         Fix several address-calculation bugs in the hash modules,
18531         plus some minor code cleanup.
18532
18533         * lib/hash.h: Include <stdbool.h>, for bool.
18534         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
18535         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
18536         hash_get_n_entries, hash_get_max_bucket_length,
18537         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
18538         hash_rehash): Use size_t rather than unsigned.
18539         * lib/hash.c (struct hash_table, hash_get_n_buckets,
18540         hash_get_n_buckets_used, hash_get_n_entries,
18541         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
18542         hash_get_entries, hash_do_for_each, hash_string, is_prime,
18543         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
18544         Likewise.
18545         (SIZE_MAX): Define if not defined.
18546         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
18547         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
18548         hash_print):
18549         Use const * when possible.
18550         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
18551         (check_tuning): Fix bug: if tuning parameters were very close to
18552         0 or 1, rounding errors could have caused subscript violations.
18553         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
18554         (hash_initialize): Add 'fail:' label
18555         to free table and return NULL, and use it to simplify code.
18556         Use calloc rather than clearing the storage ourself.
18557         (hash_initialize, hash_rehash): Check for arithmetic overflow in
18558         buffer size calculations.
18559         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
18560         Include <stddef.h>, for size_t.
18561         * lib/hash-pjw.c (hash_pjw): Likewise.
18562         Switch to method described by Bruno Haible.
18563         Include <limits.h>, for CHAR_BIT.
18564         (SIZE_BITS): New macro.
18565
18566 2003-10-23  Paul Eggert  <eggert@twinsun.com>
18567
18568         * m4/getline.m4 (AM_FUNC_GETLINE):
18569         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
18570         hosts.  Problem reported by Derek Robert Price in
18571         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
18572         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
18573         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
18574
18575 2003-10-21  Paul Eggert  <eggert@twinsun.com>
18576
18577         * lib/getndelim2.c (getndelim2): When size calculation overflows,
18578         ceiling the allocation at NMAX bytes rather than silently
18579         discarding input bytes before NMAX is reached.  This makes
18580         a difference only if NMAX exceeds SIZE_MAX / 2.
18581
18582         * lib/obstack.c: Merge from glibc.
18583         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
18584         Add libc_hidden_def (_obstack_newchunk).
18585         (_obstack_free) [! defined _LIBC]: Remove.
18586         [defined _LIBC]: Make a strong alias from obstack_free, rather than
18587         a clone of the function body.
18588         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
18589         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
18590
18591         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
18592         glibc.
18593         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
18594         arg to memcpy.
18595
18596         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
18597         (obstack_ptr_grow_fast, obstack_int_grow_fast):
18598         Don't use lvalue casts, as GCC plans to remove support for them
18599         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
18600         was also present in the non-GCC version, indicating that this
18601         code had always been buggy and had never been widely used.
18602         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
18603         Use the fast variant of each macro, rather than copying the
18604         definiens of the fast variant; that way, we'll be more likely to
18605         catch future bugs in the fast variants.
18606
18607 2003-10-20  Bruno Haible  <bruno@clisp.org>
18608
18609         * modules/wait-process: New file.
18610         * MODULES.html.sh (func_all_modules): Add wait-process.
18611
18612 2003-10-20  Bruno Haible  <bruno@clisp.org>
18613
18614         * m4/wait-process.m4: New file.
18615
18616 2003-10-20  Bruno Haible  <bruno@clisp.org>
18617
18618         * lib/wait-process.h: New file, from GNU gettext.
18619         * lib/wait-process.c: New file, from GNU gettext.
18620
18621 2003-10-19  Jim Meyering  <jim@meyering.net>
18622
18623         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
18624         HPUX 10.20.
18625
18626 2003-10-18  Karl Berry  <karl@gnu.org>
18627
18628         * config/config.guess: update from config.
18629
18630 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18631
18632         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
18633         (getgroups): First arg is int, not size_t.
18634         Don't let 'free' mangle errno.
18635
18636 2003-10-16  Paul Eggert  <eggert@twinsun.com>
18637
18638         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
18639
18640 2003-10-16  Karl Berry  <karl@gnu.org>
18641
18642         * config/config.{guess,sub}: update from config.
18643
18644 2003-10-16  Jim Meyering  <jim@meyering.net>
18645
18646         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
18647         memcpy.
18648
18649 2003-10-15  Paul Eggert  <eggert@twinsun.com>
18650
18651         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
18652         (SIZE_MAX): Remove.
18653         (new_exclude, add_exclude_file): Initial size no longer needs to
18654         be a power of 2.
18655         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
18656         our own address arithmetic overflow checking.
18657
18658         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
18659         (fnmatch): Do not alloca more than 2000 wide characters;
18660         instead, use malloc for large buffers.
18661         Check for address arithmetic overflow, and return -1
18662         with errno set to ENOMEM in that case.
18663         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
18664         (NEW_PATTERN): Do not alloca more than 8000 bytes;
18665         instead, return -1.  Check for address arithmetic overflow.
18666
18667 2003-10-14  Paul Eggert  <eggert@twinsun.com>
18668
18669         Handle invalid suffixes and overflow independently, so that
18670         callers can treat them independently as needed.  Fix some bugs in
18671         suffix handling, e.g., "100k@" was not diagnosed as an invalid
18672         suffix for a human-readable blocksize.  The major caller-visible
18673         change is the addition of a new
18674         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
18675         that both overflow and suffix chars were found.
18676
18677         * lib/human.c (humblock): Don't check separately for invalid suffix
18678         char; that is xstrtoumax's job (now that its bug is fixed).
18679         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
18680         INTMAX_MAX]: New macros.
18681         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
18682         TYPE_MAXIMUM): New macros.
18683         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
18684         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
18685         if overflow occurs, as it's what __strtol does and it's more useful
18686         in practice.
18687         (__xstrtol): If __strtol reports some error other than ERANGE,
18688         reflect it to the caller as LONGINT_INVALID.  If it reports
18689         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
18690         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
18691         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
18692         value.
18693         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
18694         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
18695         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
18696         [defined UINTMAX_MAX]: New macros.
18697
18698 2003-10-14  Bruno Haible  <bruno@clisp.org>
18699
18700         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
18701
18702 2003-10-14  Bruno Haible  <bruno@clisp.org>
18703
18704         * m4/sig_atomic_t: New file, from GNU gettext.
18705         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
18706
18707 2003-10-14  Bruno Haible  <bruno@clisp.org>
18708
18709         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
18710         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
18711         Also use volatile where needed.
18712
18713 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18714
18715         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
18716         Change maintainer from Bruno Haible to 'all'.
18717
18718 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18719
18720         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
18721
18722 2003-10-12  Paul Eggert  <eggert@twinsun.com>
18723
18724         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
18725         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
18726         and define in terms of the other primitives.
18727         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
18728         (SIZE_MAX): Define if not already defined.
18729         (array_size_overflow): New function.
18730         (xalloc_die): Abort instead of exiting if 'error' returns.
18731         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
18732         (xmalloc, xrealloc): Use them.
18733         (xcalloc): Check for address arithmetic overflow.
18734         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
18735         a bit faster than strcpy.
18736
18737 2003-10-10  Simon Josefsson  <jas@extundo.com>
18738
18739         * modules/argp (Depends-on): Add restrict and strcase.
18740
18741 2003-10-10  Simon Josefsson  <jas@extundo.com>
18742
18743         * m4/argp.m4: Add AC_C_INLINE.
18744
18745 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18746
18747         Merge getpass from libc, plus a few fixes.
18748
18749         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
18750         Include <stdbool.h>.
18751         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
18752         __fsetlocking to empty.
18753         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
18754         do include <bits/libc-lock.h>.
18755         Do not include <fcntl.h>; not needed.
18756         [_LIBC]: Include <wchar.h>.
18757         (NOTCANCEL_MODE): New macro.
18758         (flockfile, funlockfile) [_LIBC]: New macros.
18759         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
18760         [!_LIBC]: New macros.
18761         (call_fclose): New function.
18762         (getpass): Use it.  Save tty stream separately; this simplifies the
18763         code and makes it more reliable if stdin happens to equal stdout.
18764         Invoke __fsetlocking on tty.
18765         Handle thread cancellation if needed.
18766         Namespace cleanup (use __tcgetattr, __getline).
18767         Use bool for Booleans.
18768         [USE_IN_LIBIO]: Handle wide streams.
18769         [!_LIBC]: Unconditionally do the fseek, since we don't know what
18770         stream might go where.
18771
18772         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
18773         doesn't have to include <stdio.h> before us.
18774         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
18775         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
18776         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
18777         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
18778         if not declared, so that we can use getpass.c code from libc without
18779         rewriting it.
18780         (flockfile, ftrylockfile, funlockfile): New macros.
18781
18782 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18783
18784         * modules/getpass: Depend on stdbool.
18785
18786 2003-10-08  Paul Eggert  <eggert@twinsun.com>
18787
18788         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
18789
18790 2003-10-07  Karl Berry  <karl@gnu.org>
18791
18792         * config/config.{guess,sub}: update from config.
18793
18794 2003-10-06  Jim Meyering  <jim@meyering.net>
18795             Bruno Haible  <bruno@clisp.org>
18796
18797         This lets translators provide better translations for the
18798         "Written by ..." part of --version output.
18799         * lib/version-etc.h: Include stdarg.h.
18800         (version_etc_copyright): Declare as readonly.
18801         (version_etc): Make this function variadic with a NULL-terminated list
18802         of author name strings.
18803         (version_etc_va): New declaration.
18804         * lib/version-etc.c: Include stdarg.h, stdlib.h.
18805         (version_etc_copyright): Declare as readonly.
18806         (version_etc_va): New function. Provide a different translatable string
18807         for each possible number of authors < 10. Abbreviate when there are 10
18808         authors or more.
18809         (version_etc): Make this function variadic. Call version_etc_va.
18810         Suggestion from Gary V. Vaughan.
18811
18812         * lib/long-options.h (parse_long_options): Change prototype: the
18813         authors string is moved to the end and becomes variadic.
18814         * lib/long-options.c: Include stdarg.h.
18815         (parse_long_options): Make this function variadic, too.
18816         Call version_etc_va, not version_etc.
18817
18818 2003-10-06  Bruno Haible  <bruno@clisp.org>
18819
18820         * modules/version-etc-2: Remove file.
18821         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
18822
18823 2003-10-06  Bruno Haible  <bruno@clisp.org>
18824
18825         * modules/fatal-signal: New file.
18826         * MODULES.html.sh (func_all_modules): Add fatal-signal.
18827
18828 2003-10-06  Bruno Haible  <bruno@clisp.org>
18829
18830         * m4/fatal-signal.m4: New file.
18831         * m4/signalblocking.m4: New file, from GNU gettext.
18832
18833 2003-10-06  Bruno Haible  <bruno@clisp.org>
18834
18835         * lib/version-etc-2.h: Remove file.
18836         * lib/version-etc-2.c: Remove file.
18837
18838 2003-10-06  Bruno Haible  <bruno@clisp.org>
18839
18840         * lib/fatal-signal.h: New file, from GNU gettext.
18841         * lib/fatal-signal.c: New file, from GNU gettext.
18842
18843 2003-10-05  Paul Eggert  <eggert@twinsun.com>
18844
18845         * README: Rework advice for preventing empty .o files.
18846         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
18847         not <sys/types.h>.
18848
18849 2003-10-04  Karl Berry  <karl@gnu.org>
18850
18851         * lib/argp*: update from libc.
18852
18853 2003-10-04  Karl Berry  <karl@gnu.org>
18854
18855         * config/config.{guess,sub}: update from config.
18856
18857 2003-10-02  Bruno Haible  <bruno@clisp.org>
18858
18859         * modules/lchown (Include): Add lchown.h.
18860         * modules/time_r (Include): Use "..." syntax.
18861         * modules/xgetdomainname (Include): Add xgetdomainname.h.
18862
18863 2003-10-01  Simon Josefsson  <jas@extundo.com>
18864
18865         * MODULES.html.sh (func_all_modules): Move gethostname from section
18866         'based on' to section 'lacking' POSIX:2001.
18867
18868 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
18869
18870         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
18871         to output mode on the same stream.
18872
18873 2003-09-29  Paul Eggert  <eggert@twinsun.com>
18874
18875         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
18876         Fix arg typo in previous patch.
18877
18878 2003-09-28  Jim Meyering  <jim@meyering.net>
18879
18880         * lib/error.c: Correct cpp indentation.
18881
18882 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18883
18884         * modules/free: New file.
18885
18886 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18887
18888         * m4/free.m4: New file.
18889
18890 2003-09-27  Paul Eggert  <eggert@twinsun.com>
18891
18892         * lib/minmax.h (MIN, MAX)
18893         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
18894         Omit the special code that used __typeof__, since we worry that
18895         it could be more trouble than it's worth.  See:
18896         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
18897         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
18898
18899         * lib/free.c: New file.
18900
18901 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
18902
18903         Trivial fixes to Makefile.am parts of module listings.
18904         * modules/strstr: Append strstr.h to lib_SOURCES.
18905         * modules/strcase: Likewise, for strcase.h.
18906
18907 2003-09-27  Karl Berry  <karl@gnu.org>
18908
18909         * config/mkinstalldirs: update from automake.
18910
18911 2003-09-26  Paul Eggert  <eggert@twinsun.com>
18912
18913         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
18914         (error_tail): Do not loop, reallocating temporary buffer, since
18915         the output cannot contain more wide characters than the input
18916         contains bytes, the size must be big enough already.  This avoids
18917         one potential size overflow calculation.  Check for size overflow
18918         when calculating temporary buffer size.  Free temporary buffer
18919         when done, if it was allocated with malloc; this plugs a memory
18920         leak.  Remove casts from void * to pointers, that are no longer
18921         needed now that we're assuming C89 or better.
18922
18923         Merge error changes from glibc.
18924
18925         * lib/error.c, error.h: Update copyright notice header to match glibc.
18926         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
18927         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
18928         Disable cancellation while printing error.
18929         * lib/error.h: Prepend __ to parameter names.
18930
18931 2003-09-26  Jim Meyering  <jim@meyering.net>
18932
18933         * lib/error.c (error_tail): Move some declarations
18934         into inner scope where the local variables are used.
18935
18936 2003-09-26  Bruno Haible  <bruno@clisp.org>
18937
18938         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
18939         stpncpy().
18940         Don't define stpncpy through config.h; it's now done through stpncpy.h.
18941
18942 2003-09-26  Bruno Haible  <bruno@clisp.org>
18943
18944         * lib/stpncpy.h (gnu_stpncpy): New declaration.
18945         (stpncpy): Define as alias for gnu_stpncpy.
18946         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
18947
18948 2003-09-25  Simon Josefsson  <jas@extundo.com>
18949
18950         * lib/xgetdomainname.h: New file.
18951         * lib/xgetdomainname.c: New file.
18952
18953 2003-09-25  Simon Josefsson  <jas@extundo.com>
18954             Bruno Haible  <bruno@clisp.org>
18955
18956         * modules/getdomainname: New file.
18957         * modules/xgetdomainname: New file.
18958         * MODULES.html.sh (func_all_modules): Add getdomainname,
18959         xgetdomainname.
18960
18961 2003-09-25  Simon Josefsson  <jas@extundo.com>
18962             Bruno Haible  <bruno@clisp.org>
18963
18964         * m4/getdomainname.m4: New file.
18965
18966 2003-09-25  Simon Josefsson  <jas@extundo.com>
18967             Bruno Haible  <bruno@clisp.org>
18968
18969         * lib/getdomainname.h: New file.
18970         * lib/getdomainname.c: New file.
18971
18972 2003-09-25  Karl Berry  <karl@gnu.org>
18973
18974         * lib/argp-fmtstream.c, argp-help.c: update from libc.
18975
18976 2003-09-25  Karl Berry  <karl@gnu.org>
18977
18978         * config/install-sh: update from automake.
18979
18980 2003-09-25  Bruno Haible  <bruno@clisp.org>
18981
18982         * modules/version-etc-2: New file, from modules/version-etc with
18983         modifications.
18984         * MODULES.html.sh (func_all_modules): Add version-etc-2.
18985
18986 2003-09-25  Bruno Haible  <bruno@clisp.org>
18987
18988         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
18989         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
18990
18991 2003-09-24  Simon Josefsson  <jas@extundo.com>
18992
18993         * modules/xgethostname: Add xgethostname.h.
18994
18995 2003-09-24  Paul Eggert  <eggert@twinsun.com>
18996
18997         * lib/linebuffer.c (freebuffer): Don't free the argument, just
18998         the buffer associated with the argument.  Bug reported by
18999         Simon Josefsson.
19000
19001 2003-09-24  Paul Eggert  <eggert@twinsun.com>
19002
19003         * README: Document assumptions that 'int' is at least 32 bits
19004         wide, that integer arithmetic is 2's complement without overflow,
19005         that there are no holes in integer values, that adding sizes of
19006         two nonoverlapping objects can't overflow, and that all-bits-zero
19007         yields scalar zero.  Fix spelling and capitalization typos.
19008
19009 2003-09-19  Karl Berry  <karl@gnu.org>
19010
19011         * lib/argp.h: update from libc.
19012
19013 2003-09-17  Paul Eggert  <eggert@twinsun.com>
19014
19015         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
19016         to avoid spurious warnings like "AC_RUN_IFELSE was called before
19017         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
19018
19019 2003-09-17  Paul Eggert  <eggert@twinsun.com>
19020
19021         * gnulib-tool: Use "test -h", not "test -L", for portability
19022         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
19023         (tags_regexp): Remove, since \| doesn't conform to POSIX.
19024         (sed_extract_prog): Issue s commands one-by-one, rather than
19025         using \| in one s command.
19026
19027 2003-09-16  Paul Eggert  <eggert@twinsun.com>
19028
19029         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
19030         input error, instead of returning NULL the next time we are called
19031         (and therefore losing track of errno).
19032
19033 2003-09-16  Bruno Haible  <bruno@clisp.org>
19034
19035         * gnulib-tool (func_create_testdir): Warn about duplicated
19036         dependencies.
19037
19038 2003-09-15  Paul Eggert  <eggert@twinsun.com>
19039
19040         * modules/argmatch, modules/fatal, modules/obstack,
19041         modules/xalloc, modules/xgethostname: Sort dependencies by
19042         importance, not alphabetically.
19043
19044 2003-09-15  Paul Eggert  <eggert@twinsun.com>
19045
19046         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
19047         fails, so that the caller gets the proper errno.
19048
19049         * lib/readutmp.c (read_utmp): Likewise.
19050         Check for fstat error.  Close stream and free storage
19051         when failing.
19052
19053 2003-09-14  Karl Berry  <karl@gnu.org>
19054
19055         * config/srclist.txt (strdup.c): disable for c89 changes.
19056
19057 2003-09-14  Jim Meyering  <jim@meyering.net>
19058
19059         * lib/getloadavg.c: Correct cpp indentation.
19060         * lib/strdup.c: Likewise.
19061         * lib/vasnprintf.c: Likewise.
19062
19063 2003-09-14  Bruno Haible  <bruno@clisp.org>
19064
19065         * modules/fwriteerror: New file.
19066         * MODULES.html.sh (func_all_modules): Add fwriteerror.
19067
19068 2003-09-14  Bruno Haible  <bruno@clisp.org>
19069
19070         * lib/fwriteerror.h: New file.
19071         * lib/fwriteerror.c: New file.
19072
19073 2003-09-12  Paul Eggert  <eggert@twinsun.com>
19074
19075         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
19076         modules/xgethostname, modules/xalloc: Depend on exit.
19077
19078 2003-09-12  Paul Eggert  <eggert@twinsun.com>
19079
19080         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
19081
19082         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
19083         and AC_MINIX, too, so that their extensions are available.
19084
19085         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
19086         This macro has been superseded by gl_BACKUPFILE.
19087
19088         More patches to assume C89 or better.
19089
19090         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
19091
19092         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
19093         unconditionally.
19094         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
19095         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
19096         Include <string.h>, <stdlib.h> unconditionally.
19097         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
19098         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
19099         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
19100         headers or for string.h.
19101         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
19102         or strtoul.
19103
19104         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
19105         headers.
19106         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
19107         * m4/userspec.m4 (gl_USERSPEC): Likewise.
19108         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
19109         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
19110         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
19111         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
19112         memcpy, memset.
19113         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
19114         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
19115         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
19116         strtol.
19117         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
19118         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
19119         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
19120         strtoul.
19121
19122 2003-09-12  Paul Eggert  <eggert@twinsun.com>
19123
19124         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
19125         * lib/obstack.c [!defined _LIBC]: Likewise.
19126         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
19127         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
19128         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
19129
19130         More changes to assume C89 or better.
19131
19132         * lib/error.c (error_tail): Assume vprintf.
19133
19134         * lib/argmatch.c (getenv): Remove decl.
19135         * lib/progreloc.c (get_full_program_name): Define via prototype.
19136         * lib/setenv.c (clearenv): Likewise.
19137         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
19138         needed.
19139         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
19140         (malloc, memcpy): Remove decls.
19141         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
19142         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
19143         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
19144         (memcpy): Remove macro.
19145         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
19146         (__P): Remove.  All uses removed.
19147         (PTR): Remove.  All uses changed to void *.
19148         (CHAR_BIT, NULL): Remove.
19149         (spaces, zeros, memset_space, memset_zero)
19150         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
19151         Remove.
19152         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
19153         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
19154         Define with prototype.
19155         Remove now-unnecessary prototype decl.
19156         (extra_args_spec): Assume ANSI C.  All uses changed.
19157         (extra_args_spec_iso): Remove.
19158         (my_strftime, emacs_strftimeu): Define via prototype.
19159         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
19160         unconditionally.
19161         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
19162         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
19163         (strtoul, strtol): Remove decls.
19164         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
19165         LONG_MAX): Remove.
19166         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
19167         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
19168         (LOCALE_PARAM_PROTO): New macro.
19169         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
19170         (INTERNAL (strtol), strtol): Define with a prototype.
19171         (PARAMS): Remove.  All uses removed.
19172         * lib/tempname.c: Include <string.h> unconditionally.
19173         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
19174         * lib/xgethostname.c (main): Define with a prototype.
19175         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
19176         Include <stdlib.h> unconditionally.
19177         (calloc, malloc, realloc, free): Remove decls.
19178         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
19179         Include <stdlib.h> unconditionally.  Sort include file names.
19180         (strtod): Remove.
19181         (xstrtod): Define with a prototype.
19182         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
19183         (strtol, strtoul): Remove decls.
19184
19185 2003-09-11  Paul Eggert  <eggert@twinsun.com>
19186
19187         More patches to assume C89 or better.
19188         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
19189         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
19190         string.h, memchr, STDC_HEADERS.
19191
19192 2003-09-11  Paul Eggert  <eggert@twinsun.com>
19193
19194         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
19195         Include <stdlib.h>, <string.h> unconditionally.
19196         Remove now-unnecessary cast to char *.
19197         * lib/strnlen.c: Include <string.h> unconditionally.
19198         * lib/yesno.c (yesno): Define with a prototype.
19199
19200 2003-09-11  Bruno Haible  <bruno@clisp.org>
19201
19202         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
19203
19204 2003-09-10  Jim Meyering  <jim@meyering.net>
19205
19206         * lib/error.c: Correct indentation of cpp directives.
19207
19208 2003-09-10  Bruno Haible  <bruno@clisp.org>
19209
19210         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
19211         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
19212         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
19213         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
19214         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
19215         <stdlib.h> and <string.h> checks.
19216         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
19217         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
19218
19219 2003-09-10  Bruno Haible  <bruno@clisp.org>
19220
19221         * lib/strcspn.c: Include <string.h> unconditionally.
19222         * lib/strpbrk.c: Include <string.h> unconditionally.
19223         * lib/strstr.c: Include <string.h> unconditionally.
19224         * lib/unicodeio.c: Include <string.h> unconditionally.
19225         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
19226         * lib/unsetenv.c: Likewise.
19227         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
19228         * lib/yesno.c: Include <stdlib.h> unconditionally.
19229         (rpmatch): Add prototype.
19230
19231 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19232
19233         More patches to assume C89 or better.
19234         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
19235         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
19236         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
19237         or for string.h.
19238         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
19239         stdlib.h.
19240         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
19241         C headers.
19242         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
19243         string.h.
19244         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
19245         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
19246         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
19247         or for string.h.
19248         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
19249         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
19250         C headers.
19251         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
19252         memcpy.
19253         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
19254         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
19255         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
19256         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
19257         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
19258         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
19259         string.h, free.
19260         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
19261         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
19262         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
19263         C headers, or for string.h.
19264         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
19265         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
19266         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
19267         headers, memory.h, stdlib.h, string.h, strings.h.
19268         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
19269         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
19270         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
19271         strchr.
19272         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
19273         headers, memory.h, string.h.
19274         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
19275         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
19276         free.
19277         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
19278         headers.
19279         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
19280         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
19281         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
19282         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
19283         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
19284
19285 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19286
19287         More K&R removal.
19288
19289         * lib/acosl.c (main): Use a prototype.
19290         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
19291         tanl.c: Likewise.
19292
19293         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
19294
19295         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
19296         (getopt, etopt_long, getopt_long_only, _getopt_internal)
19297         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
19298         with a prototype.
19299         * lib/getopt.c (const): Remove macro.
19300         Include <string.h> unconditionally.
19301         (my_index): Remove; all uses changed to strchr.
19302         (strlen): Remove decl.
19303         (exchange): Remove forward decl; no longer needed.
19304         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
19305         Define with prototype.
19306         * lib/getopt1.c (const): Remove macro.
19307         (getopt_long, getopt_long_only, main): Define with prototype.
19308
19309         * lib/getugroups.c: Include <string.h> unconditionally.
19310
19311         * lib/getusershell.c: Include <stdlib.h> unconditionally.
19312         (getusershell, setusershell, endusershell, readname, main):
19313         Define with prototypes.
19314
19315         * lib/group-member.c: Include group-member.h first.
19316         Include <stdlib.h> unconditionally.
19317
19318         * lib/hard-locale.c: Include hard-locale.h first.
19319         Include <stdlib.h>, <string.h> unconditionally.
19320
19321         * lib/hash.c (free, malloc): Remove decls.
19322         Include <stdlib.h> unconditionally.
19323
19324         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
19325         (getenv): Do not declare.
19326
19327         * lib/idcache.c: Include <string.h> unconditionally.
19328
19329         * lib/long-options.c: Include long-options.h first, to test interface.
19330         Include <stdlib.h> unconditionally.
19331
19332         * lib/makepath.c: Include makepath.h first, to test interface.
19333         Include <stdlib.h> and <string.h> unconditionally.
19334
19335         * lib/linebuffer.c: Include <stdlib.h>.
19336         (free): Remove decl.
19337
19338         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
19339         stddef.h. rpl_malloc returns void *, not char *.
19340         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
19341         prototype.
19342
19343         * lib/md5.h: Include <limits.h> unconditionally.
19344         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
19345         (__P): Remove; all uses removed.
19346         * lib/md5.c: Include "md5.h" first.
19347         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
19348         md5_buffer, md5_process_bytes, md5_process_block):
19349         Define with prototypes.
19350         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
19351         * lib/sha.c: Include "sha.h" first.
19352         Include <stdlib.h>, <string.h> unconditionally.
19353
19354         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
19355         * lib/memcmp.c (__ptr_t): Likewise.
19356         * lib/memrchr.c (__ptr_t): Likewise.
19357         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
19358         Include <string.h> unconditionally.
19359         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
19360         * lib/memchr.c: Include <stdlib.h> unconditionally.
19361         * lib/memchr.c (LONG_MAX): Remove.
19362         * lib/memrchr.c (LONG_MAX): Likewise.
19363         * lib/memchr.c (__memchr): Define via a prototype.
19364         * lib/memrchr.c (__memrchr): Likewise.
19365         * lib/memcmp.c (__P): Remove, and remove all uses.
19366         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
19367         Remove forward decls; no longer needed.
19368         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
19369         Use types required by C89 in prototype.
19370
19371         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
19372         * lib/savedir.c: Likewise.
19373         * lib/mkdir.c (free): Remove decl.
19374         * lib/rmdir.c (rmdir): Define with a prototype.
19375         * lib/savedir.c: Include savedir.h first, to test interface.
19376
19377         * lib/mktime.c (STDC_HEADERS): Remove.
19378         Include <stdlib.h>, <string.h> unconditionally.
19379
19380         * lib/modechange.c: Include <stdlib.h> unconditionally.
19381         (malloc): Remove decl.
19382
19383         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
19384         (free): Remove decl.
19385
19386         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
19387         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
19388         (This type really should be intptr_t, but that's a C99ism.)
19389         (_obstack_memcpy): Remove: all uses changed to memcpy.
19390         Include <string.h> unconditionally.
19391         (struct obstack): Assume __STDC__ for types of members
19392         chunkfun, freefun, extra_arg.
19393         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
19394         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
19395         obstack_begin, obstack_specify_allocation,
19396         obstack_specify_allocation_with_arg, obstack_chunkfun,
19397         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
19398         Remove unprototyped decls and the macros that use them.
19399         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
19400         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
19401         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
19402         (defined __STDC__ && __STDC__)]:
19403         Remove nonprototyped code.
19404         Include <stdlib.h> unconditionally.
19405         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
19406         _obstack_allocated_p, _obstack_free, obstack_free,
19407         _obstack_memory_used, print_and_abort):
19408         Define using prototypes.
19409         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
19410         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
19411         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
19412         obstack_next_free, obstack_object_size, obstack_room) [0]:
19413         Remove unused, unprototyped code.
19414
19415         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
19416
19417         * lib/physmem.c (physmem_total, physmem_available, main): Define
19418         with prototypes.
19419
19420         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
19421         (main): Define with a prototype.
19422
19423         * lib/posixver.c (getenv): Remove decl.
19424
19425         * lib/putenv.c (malloc): Returns void *, not char *.
19426         Include <string.h> unconditionally.
19427         (strchr, memcpy, NULL): Do not define.
19428
19429         * lib/readtokens.c: Include readtokens.h first, to test interface.
19430         Include <stdlib.h>, <string.h> unconditionally.
19431         (init_tokenbuffer): Define with a prototype.
19432
19433         * lib/regex.c (PARAMS): Remove.  All uses removed.
19434         All uses of _RE_ARGS removed, too.
19435         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19436         unconditionally.
19437         (bzero): Assume memset exists.
19438         (memcmp, memcpy, NULL): Remove.
19439         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
19440         char, or assignments to local vars of type signed char.
19441         (init_syntax_once, PREFIX(extract_number_and_incr),
19442         PREFIX(print_partial_compiled_pattern),
19443         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
19444         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
19445         PREFIX(regex_grow_registers), PREFIX(regex_compile),
19446         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
19447         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
19448         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
19449         wcs_compile_range, byte_compile_range, truncate_wchar,
19450         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
19451         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
19452         count_mbs_length, wcs_re_match_2_internal,
19453         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
19454         PREFIX(alt_match_null_string_p),
19455         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
19456         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
19457         regfree, PREFIX(extract_number)): Define with prototype.  Remove
19458         now-unnecessary declaration, if any.
19459         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
19460         regcomp, regexec):
19461         Remove now-unnecessary casts among pointer types.
19462         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
19463
19464         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
19465         (free): Remove decl.
19466
19467         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
19468
19469         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
19470         (free): Remove decl.
19471
19472         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
19473         * lib/xgetcwd.c: Likewise.
19474
19475         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
19476         (free): Remove decl.
19477
19478         * lib/strchrnul.c (strchrnul): Define with a prototype.
19479         Fix bug: c_in was not converted to char before searching.
19480
19481         The following changes are not K&R related:
19482
19483         * lib/group-member.h: Include <sys/types.h>, so that this file is
19484         self-contained.
19485         * lib/makepath.h: Likewise.
19486
19487         * lib/getusershell.c (readname, default_index, line_size, readname):
19488         Use size_t, not int, for sizes.
19489         (readname): If the size overflows, report an error instead of
19490         looping forever.
19491
19492 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19493
19494         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
19495         libc.
19496
19497 2003-09-09  Paul Eggert  <eggert@twinsun.com>
19498
19499         * README: New section: portability guidelines.
19500
19501 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19502
19503         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
19504         C89 spec.
19505
19506 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
19507
19508         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
19509
19510 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19511
19512         Assume C89 or better; remove K&R cruft.
19513         A few of these changes were first proposed by Derek Robert Price
19514         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
19515
19516         * lib/addext.c: Include <string.h> unconditionally.
19517         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
19518         Don't declare getenv or malloc.
19519
19520         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
19521         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
19522         (NULL): Remove.
19523         (find_stack_direction, alloca): Use prototypes.
19524
19525         * lib/atexit.c (atexit): Define using a prototype.
19526
19527         * lib/basename.c, dirname.c, stripslash.c:
19528         Include <string.h> unconditionally.
19529
19530         * lib/bcopy.c: Include <stddef.h>.
19531         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
19532
19533         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
19534
19535         * lib/error.h (error, error_at_line, error_print_progname)
19536         [! (defined (__STDC__) && __STDC__)]: Remove decls.
19537         * lib/error.c: Include error.h first, to check interface.
19538         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19539         (VA_START): Remove; all uses changeed to va_start.
19540         (exit, strerror): Remove decls.
19541         (error_print_progname): Prototype uncondionally.
19542         Don't include <errno.h>; no longer needed.
19543         (private_strerror): Remove.
19544         (error_tail): Always define.
19545         (error, error_at_line): Assume C89 or better; always use prototypes.
19546         * lib/fatal.c: Include "fatal.h" first, to test interface.
19547         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
19548         (VA_START): Remove; all uses changed to va_start.
19549         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
19550         this case.
19551         (exit): Remove decl.
19552         (fatal): Prototype unconditionally.  Assume va_start works.
19553         Abort at end, to pacify gcc.
19554
19555         * lib/euidaccess.c (main): Define with a prototype.
19556
19557         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
19558
19559         * lib/exitfail.c: Include <stdlib.h> unconditionally.
19560
19561         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
19562         prototypes.
19563         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
19564         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
19565         (getenv): Remove decl.
19566         (fnmatch): Define using a prototype.
19567         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
19568         (FCT): Define using a prototype.
19569
19570         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
19571
19572         * lib/gethostname.c: Include <stddef.h>.
19573         (gethostname): Define with prototype.  Length is size_t, not int.
19574
19575 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19576
19577         Assume C89 or better; remove K&R cruft.
19578         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
19579         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
19580         string.h, getenv, malloc.
19581         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
19582         headers.
19583         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
19584         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
19585         do not check for strerror.
19586         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
19587         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
19588         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
19589         do not check for doprnt or vprintf.
19590         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
19591         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
19592
19593 2003-09-08  Paul Eggert  <eggert@twinsun.com>
19594
19595         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
19596         getversion.c should have been removed then, but was accidentally
19597         preserved.
19598
19599         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
19600         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
19601
19602 2003-09-08  Karl Berry  <karl@gnu.org>
19603
19604         * config/config.sub, config.guess, srclistvars.sh: update from savannah
19605                 config, forget about prep.
19606
19607         * config/depcomp, missing: update from automake.
19608
19609 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19610
19611         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
19612         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19613
19614 2003-09-07  Paul Eggert  <eggert@twinsun.com>
19615
19616         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
19617         copy_tm_result.  Bug reported by Simon Josefsson in
19618         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
19619
19620 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19621
19622         * m4/time_r.m4: New file.
19623         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
19624         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
19625         is. Check for timegm declaration.
19626         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
19627         Do not check for gmtime_r.
19628         Replace mktime if __mktime_internal does not exist and if mktime
19629         hasn't been replaced already.
19630
19631 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19632
19633         * lib/time_r.c, lib/time_r.h: New files.
19634
19635         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
19636         __localtime_r.
19637         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
19638         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
19639
19640         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
19641         __gmtime_r.
19642         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
19643         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
19644         Include <time_r.h>.
19645
19646         * lib/timegm.c: Switch to glibc implementation, with the following
19647         changes:
19648         [defined HAVE_CONFIG_H]: Include <config.h>.
19649         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
19650         (__mktime_internal) [!defined _LIBC]: New decl.
19651         (__gmtime_r) [!defined _LIBC]: New macro and function.
19652         (timegm): Use a prototype, since gnulib assumes C89.
19653         Do not bother declaring tmp to be const, as it's not really usefu.
19654         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
19655         (timegm): Declare only if HAVE_DECL_TIMEGM.
19656
19657 2003-09-06  Paul Eggert  <eggert@twinsun.com>
19658
19659         * MODULES.html.sh (func_all_modules): Add time_r.
19660         * modules/time_r: New file.
19661         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
19662         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
19663
19664 2003-09-03  Paul Eggert  <eggert@twinsun.com>
19665
19666         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
19667         Bug reported by Lute Kamstra in
19668         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
19669
19670         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
19671         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
19672         course with correspondingly smaller numbers for tomorrow and
19673         yesterday.  From Tadayoshi Funaba.  Originally installed into
19674         sh-utils on 1999-08-07, but the patch got lost (I guess during the
19675         coreutils merge?).
19676
19677 2003-08-31  Simon Josefsson  <jas@extundo.com>
19678
19679         * modules/timegm: New file.
19680         * MODULES.html.sh (func_all_modules): Add timegm.
19681
19682 2003-08-31  Simon Josefsson  <jas@extundo.com>
19683
19684         * m4/timegm.m4: New file.
19685
19686 2003-08-31  Simon Josefsson  <jas@extundo.com>
19687
19688         * lib/timegm.h: New file.
19689         * lib/timegm.c: New file.  Based on
19690         wget-1.8.2/src/http.c:mktime_from_utc.
19691
19692 2003-08-31  Karl Berry  <karl@gnu.org>
19693
19694         * lib/argp.h: update from libc.
19695
19696 2003-08-28  Bruno Haible  <bruno@clisp.org>
19697
19698         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
19699         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
19700         followed by '#define fnmatch fnmatch_posix' gives an error.
19701
19702 2003-08-28  Bruno Haible  <bruno@clisp.org>
19703
19704         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
19705         warning on QNX, which defines O_BINARY to 000000.
19706
19707 2003-08-27  Jim Meyering  <jim@meyering.net>
19708
19709         * m4/mkstemp.m4: Require that the system mkstemp be able to create
19710         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
19711         would fail after 32.  Reported by Danny Levinson.  Details here:
19712         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
19713
19714 2003-08-24  Bruno Haible  <bruno@clisp.org>
19715
19716         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
19717         MSVC7 <stdio.h> is included later.
19718
19719 2003-08-22  Simon Josefsson  <jas@extundo.com>
19720
19721         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
19722
19723 2003-08-20  Karl Berry  <karl@gnu.org>
19724
19725         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
19726
19727 2003-08-20  Bruno Haible  <bruno@clisp.org>
19728
19729         * modules/progname: New file.
19730         * MODULES.html.sh (func_all_modules): Add progname.
19731
19732 2003-08-20  Bruno Haible  <bruno@clisp.org>
19733
19734         * lib/progname.h: New file, from GNU gettext.
19735         * lib/progname.c: New file, from GNU gettext.
19736         * lib/progreloc.c: New file, from GNU gettext.
19737
19738 2003-08-19  Jim Meyering  <jim@meyering.net>
19739
19740         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
19741         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
19742
19743 2003-08-19  Bruno Haible  <bruno@clisp.org>
19744
19745         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
19746         more.
19747
19748 2003-08-19  Bruno Haible  <bruno@clisp.org>
19749
19750         * lib/xstrdup.c: Assume <string.h> exists.
19751
19752 2003-08-18  Paul Eggert  <eggert@twinsun.com>
19753
19754         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
19755         in makefile rules.
19756
19757 2003-08-18  Jim Meyering  <jim@meyering.net>
19758
19759         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
19760         * m4/lib-ld.m4: Likewise.
19761
19762 2003-08-18  Jim Meyering  <jim@meyering.net>
19763
19764         * lib/setenv.h: Indent nested cpp directive.
19765         * lib/vasnprintf.c: Remove trailing blanks.
19766
19767 2003-08-17  Simon Josefsson  <jas@extundo.com>
19768
19769         * modules/xstrndup: New file.
19770         * MODULES.html.sh (func_all_modules): Add xstrndup.
19771
19772 2003-08-17  Simon Josefsson  <jas@extundo.com>
19773
19774         * modules/argp: Fix autoconf macro name. Add more dependencies.
19775
19776 2003-08-17  Simon Josefsson  <jas@extundo.com>
19777
19778         * m4/xstrndup.m4: New file.
19779
19780 2003-08-17  Simon Josefsson  <jas@extundo.com>
19781
19782         * m4/argp.m4: New file.
19783
19784 2003-08-17  Simon Josefsson  <jas@extundo.com>
19785             Bruno Haible  <bruno@clisp.org>
19786
19787         * lib/xstrndup.h: New file.
19788         * lib/xstrndup.c: New file.
19789
19790 2003-08-17  Bruno Haible  <bruno@clisp.org>
19791
19792         * modules/strndup (Files, Include): Add lib/strndup.h.
19793
19794 2003-08-17  Bruno Haible  <bruno@clisp.org>
19795
19796         * modules/euidaccess (Files): Add lib/euidaccess.h.
19797
19798 2003-08-17  Bruno Haible  <bruno@clisp.org>
19799
19800         * lib/strndup.h: New file.
19801
19802 2003-08-17  Bruno Haible  <bruno@clisp.org>
19803
19804         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
19805         like AC_GNU_SOURCE.
19806         * modules/extensions (configure.ac): Comment out the invocation of
19807         gl_USE_SYSTEM_EXTENSIONS.
19808
19809 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19810
19811         Merges from coreutils, etc.
19812         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
19813         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
19814         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
19815         fixing a typo.
19816         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
19817         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
19818
19819 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19820
19821         Document merge from coreutils.
19822         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
19823         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
19824         * modules/utime: Add m4/utimes-null.m4.
19825
19826 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19827
19828         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
19829         space, undoing this 2003-08-12 change:
19830         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19831
19832 2003-08-16  Paul Eggert  <eggert@twinsun.com>
19833
19834         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
19835         strtoul.c from libc, undoing this 2003-08-12 change:
19836         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
19837
19838 2003-08-16  Jim Meyering  <jim@meyering.net>
19839
19840         Merges from coreutils.
19841         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
19842         prefix.  Adjust cache variables similarly.  Create 500 rather than
19843         just 300 files, to exercise bug on Darwin6.5, too.
19844         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
19845         $missing_dir.
19846         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
19847         AM_SYS_POSIX_TERMIOS.
19848         Reported by mkc@mathdogs.com.
19849         Also change use of $am_cv_sys_posix_termios
19850         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
19851         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
19852         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
19853         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
19854         in /proc/mounts until it finds one with matching device number.  This
19855         is unnecessary when the FILE argument *is* a mount point.  No stat call
19856         is necessary in that case.  So, disable the statvfs-testing code on
19857         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
19858         as RedHat bug# 84846.
19859         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19860         to 1MB, so as not to render systems with no stack size limit (e.g.,
19861         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19862         Include <unistd.h>.  On some systems,
19863         it is required for the definition of _SC_PAGESIZE.
19864
19865 2003-08-16  Jim Meyering  <jim@meyering.net>
19866
19867         Merge from coreutils.
19868         * lib/xstrtoimax.c: #else #if -> #elif.
19869         * lib/xstrtoumax.c: Likewise.
19870
19871 2003-08-16  Jim Meyering  <jim@meyering.net>
19872
19873         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
19874         * m4/utimes.m4: Removed.
19875         * m4/utimes-null.m4: Renamed from utimes.m4.
19876
19877         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
19878         to 1MB, so as not to render systems with no stack size limit (e.g.,
19879         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
19880         Include <unistd.h>.  On some systems,
19881         it is required for the definition of _SC_PAGESIZE.
19882
19883 2003-08-16  Jim Meyering  <jim@meyering.net>
19884         and Paul Eggert  <eggert@cs.ucla.edu>
19885
19886         Merges from coreutils, etc.
19887
19888         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
19889         using the latest version from cvs.  This avoids problems with #line
19890         directives using a vendor (Sun) compiler.
19891         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
19892         Don't set GETGROUPS_LIB here; now it's
19893         done via getgroups.m4's wrapper function.
19894         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
19895         rather than just in sh-util/configure.in, so that the
19896         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
19897         same.
19898         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
19899         AC_FUNC_GETLOADAVG where to find getloadavg.c.
19900         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
19901         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
19902         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
19903         Remove code that is now done by the newly-required macros.
19904         Append $(EXEEXT) to DF_PROG.
19905         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
19906         Do not invoke or require the following here,
19907         since prereq.m4 or some gnulib .m4 now does this for us:
19908         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
19909         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
19910         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
19911         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
19912         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
19913         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
19914         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
19915         AC_FUNC_OBSTACK.
19916         Do not replace the following functions, as this is now the job
19917         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
19918         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
19919         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
19920         atexit getpass, strdup, getpagesize.
19921         Replace 'raise'.
19922         Do not check for the following functions, as this is now the job
19923         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
19924         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
19925         setregid.
19926         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
19927         Check for sys/sysctl.h.
19928         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
19929         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
19930         of checking for ssize_t ourselves.
19931
19932         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
19933         Require every macro that gnulib/modules/* suggests for us.
19934         (jm_PREREQ_ADDEXT): New macro.
19935         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
19936         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
19937
19938         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
19939         (gl_PHYSMEM): Use it.
19940         Also check for `table' function.
19941         Check for new headers and functions.
19942         Add check for sys/sysmp.h.
19943         With suggestions from Kaveh Ghazi.
19944         Ignore headers that are present but cannot be compiled.  This
19945         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
19946         C 5.4.
19947
19948 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19949
19950         Document merge from coreutils.
19951         * modules/userspec: Depend on posixver.
19952         * modules/strftime: Depend on tzset.
19953
19954 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19955
19956         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
19957         rather than tab, after '#' in shell-script copyright notices.
19958         Suggested by Bruno Haible.
19959
19960 2003-08-15  Paul Eggert  <eggert@twinsun.com>
19961
19962         * config/srclist-update: Use three spaces, rather than tab, after '#'
19963         in shell-script copyright notices.  Suggested by Bruno Haible.
19964         Remove unnecessary parenthesization in regular expression.
19965
19966 2003-08-15  Jim Meyering  <jim@meyering.net>
19967
19968         Merge from coreutils.
19969         * lib/xgethostname.c: Include <stdlib.h>.
19970         (xghostname): Don't exit for anything other than memory-related
19971         failure; just return NULL.
19972         * lib/userspec.c: Include "posixver.h".
19973         (parse_user_spec): Accept `.' as a separator only
19974         in pre-POSIX-200112 mode.
19975         * lib/strtoimax.c: Use #elif rather than #else #if.
19976         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
19977         Remove function, now that we can rely on a working tzset function.
19978         [!_LIBC]: Ensure that the required autoconf test has been run.
19979         [!defined _NL_CURRENT && HAVE_STRFTIME]:
19980         Use underlying_strftime for %r.
19981         * lib/sha.c: Merge in some clean-up and optimization changes from
19982         glibc.
19983         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
19984         Ensure that it is a multiple of 64.
19985         Rearrange loop exit tests so as to avoid performing an
19986         additional fread after encountering an error or EOF.
19987         * lib/realloc.c: Update copyright date.
19988
19989 2003-08-15  Jim Meyering  <jim@meyering.net>
19990         and Paul Eggert  <eggert@twinsun.com>
19991
19992         Merge from coreutils.
19993         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
19994         member but strut utmpx does not.  Needed for AIX 4.3.3.
19995         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
19996
19997 2003-08-15  Jim Meyering  <jim@meyering.net>
19998         and Paul Eggert  <eggert@cs.ucla.edu>
19999
20000         Merges from coreutils, etc.
20001         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
20002         Require gl_FUNC_TZSET_CLOBBER.
20003         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
20004         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
20005         members.
20006
20007 2003-08-14  Paul Eggert  <eggert@twinsun.com>
20008
20009         Help the merge from coreutils.
20010         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
20011         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
20012         * m4/tzset.m4: Use it too.
20013
20014 2003-08-14  Paul Eggert  <eggert@twinsun.com>
20015
20016         * modules/tzset: New file.
20017
20018 2003-08-14  Jim Meyering  <jim@meyering.net>
20019
20020         Merges from coreutils.
20021         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
20022         variable names, rather than @FNMATCH_H@.
20023         * modules/alloca: Likewise for $(ALLOCA_H).
20024
20025         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
20026         the three copies of the literal target, `fnmatch.h'.
20027         * modules/alloca (alloca.h): Likewise.
20028
20029 2003-08-14  Jim Meyering  <jim@meyering.net>
20030
20031         Merge from coreutils.
20032         * m4/tzset.m4: New file.
20033         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
20034         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
20035         otherwise, AIX 5.1 systems would end up using the latter.
20036         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
20037         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
20038         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
20039         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
20040
20041 2003-08-14  Jim Meyering  <jim@meyering.net>
20042
20043         Merge from coreutils.
20044         * lib/obstack.h: Whitespace changes.
20045         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
20046         and xcalloc return values.
20047         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
20048         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
20049         hang on OSF/1 5.1 for DIR on both local and remote file systems.
20050         Reported by (and fix confirmed by) Nelson H. F. Beebe.
20051         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
20052         error from mntctl.
20053         Use mntctl's return value to drive the entry-processing loop, since
20054         we can't rely on the value of the vmt_length member in the last
20055         entry.  On some systems doing so could result in exhausting
20056         virtual memory.  Based in part on a patch from Mike Jetzer.
20057
20058 2003-08-14  Jim Meyering  <jim@meyering.net>
20059         and Paul Eggert  <eggert@twinsun.com>
20060
20061         Merges from coreutils, plus other fixes.
20062         * lib/physmem.c: Merge in portability changes from gcc/libiberty
20063         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
20064         for credits and details.  Thanks to Kaveh Ghazi for helping
20065         to keep these files in sync.
20066         (ARRAY_SIZE): Define it.
20067         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
20068         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
20069         (memcasecmp): Don't assume size_t fits in unsigned int.
20070         Remove casts and duplicate code.
20071         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
20072         (memcpy): Remove definition.
20073         Merge in some clean-up and optimization changes from glibc.
20074         [BLOCKSIZE]: Move definition to top of file.
20075         Ensure that it is a multiple of 64.
20076         Rearrange loop exit tests so as to avoid performing an
20077         additional fread after encountering an error or EOF.
20078         * lib/md5.h (md5_uintptr): Define.
20079         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
20080         return to the initial working directory.  Preserve errno
20081         for caller.
20082         * lib/idcache.c: Include "xalloc.h".
20083         (xmalloc, xrealloc): Remove decls.
20084         (getuser): Remove casts no longer required in C89.
20085         * lib/human.c: Include stdio.h, for sprintf.
20086         * lib/group-member.c: Include "xalloc.h".
20087         (xmalloc, xrealloc): Remove decls.
20088         (get_group_info): Remove casts no longer required in C89.
20089         * lib/getusershell.c (readname): Remove casts no longer required in
20090         C89.
20091         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
20092         * lib/getline.c: Whitespace fix, from coreutils.
20093
20094 2003-08-13  Paul Eggert  <eggert@twinsun.com>
20095
20096         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
20097         Check for isascii.
20098
20099         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
20100         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
20101         Undo previous (whitespace-only) change.
20102
20103 2003-08-13  Paul Eggert  <eggert@twinsun.com>
20104
20105         * lib/exclude.c: Include <ctype.h>
20106         (IN_CTYPE_DOMAIN): New macro.
20107         (is_space): New fn.
20108         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
20109         and empty lines.
20110
20111         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
20112         Undo previous (whitespace-only) change.
20113
20114 2003-08-13  Paul Eggert  <eggert@twinsun.com>
20115
20116         * config/srclist-update: Change update back to the old behavior,
20117         leaving whitespace alone.  Use one 'sed' command rather than a
20118         pipeline.
20119         (fixlicense): Now a variable, not a function.
20120         (remove_trailing_blanks): Remove.
20121         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
20122         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
20123         Undo previous (whitespace-only) change.
20124
20125 2003-08-12  Paul Eggert  <eggert@twinsun.com>
20126
20127         Merge from coreutils.
20128         * modules/euidaccess: Add lib_SOURCES, include for new
20129         file euidaccess.h
20130
20131 2003-08-12  Paul Eggert  <eggert@twinsun.com>
20132
20133         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
20134         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
20135         Normalize leading white space and remove trailing white space.
20136
20137         Merge from coreutils
20138         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
20139
20140         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
20141         0.12.1.  These files are now being upgraded automatically by
20142         ../config/srclist-update.
20143
20144 2003-08-12  Paul Eggert  <eggert@twinsun.com>
20145
20146         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
20147         Normalize leading white space and remove trailing white space.
20148         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
20149         notice, as per ../config/srclist-update.
20150
20151         Merge from coreutils.
20152         * lib/euidaccess.h: New file.
20153         * lib/euidaccess.c: Include it.
20154         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
20155         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
20156         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
20157
20158 2003-08-12  Paul Eggert  <eggert@twinsun.com>
20159
20160         * config/srclist-update: Add copyright notice.
20161         (remove_id_lines, remove_trailing_blanks): New constants.
20162         (fixfile): Use them to normalize spacing a bit in copied files.
20163         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
20164         Normalize leading white space and remove trailing white space.
20165
20166         * config/texinfo.tex: Sync with texinfo.
20167
20168         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
20169         strtoul.c from libc, to merge coreutils whitespace changes.
20170
20171         * config/srclist.txt: Get the following m4 files from gettext:
20172         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
20173         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
20174         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
20175         wint_t.m4.
20176
20177 2003-08-12  Karl Berry  <karl@gnu.org>
20178
20179         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
20180         been made.
20181
20182 2003-08-11  Paul Eggert  <eggert@twinsun.com>
20183
20184         * modules/gnu-source, m4/gnu-source.m4:
20185         Remove; we're assuming Autoconf 2.54 or later now.
20186         Suggested by Bruno Haible.
20187         * MODULES.html.sh (func_all_modules): Remove gnu-source.
20188
20189 2003-08-11  Bruno Haible  <bruno@clisp.org>
20190
20191         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
20192
20193 2003-08-11  Bruno Haible  <bruno@clisp.org>
20194
20195         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
20196         (vasnprintf): Use it instead of wcslen.
20197
20198 2003-08-11  Bruno Haible  <bruno@clisp.org>
20199
20200         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
20201         value to ensure that _Bool promotes to int. Use #define for _Bool when
20202         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
20203
20204 2003-08-10  Karl Berry  <karl@gnu.org>
20205
20206         * lib/regex.h: update from libc (whitespace fix).
20207
20208 2003-08-09  Paul Eggert  <eggert@twinsun.com>
20209
20210         Merge some files from coreutils.  These changes were
20211         originally made by Jim Meyering.
20212         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
20213         many older Unixes require this.
20214         * lib/alloca.c (alloca): Remove cast to argument of free;
20215         no longer needed in C89.
20216         * lib/alloca_.h, regex.h: Fix white space to match
20217         what GNU indent does.
20218
20219 2003-08-09  Paul Eggert  <eggert@twinsun.com>
20220
20221         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
20222         apparently Emacs's Unicode mode got confused before my 2003-08-05
20223         checkin.
20224
20225 2003-08-08  Paul Eggert  <eggert@twinsun.com>
20226
20227         * m4/extensions.m4: New file.
20228         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
20229         Require gl_USE_SYSTEM_EXTENSIONS.
20230         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
20231         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
20232
20233 2003-08-08  Paul Eggert  <eggert@twinsun.com>
20234
20235         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
20236         * modules/extensions, modules/gnu-source: New files.
20237         * modules/timespec, modules/unlocked-io: Depend on extensions.
20238
20239 2003-08-07  Paul Eggert  <eggert@twinsun.com>
20240
20241         * modules/restrict: New file.
20242         * MODULES.html.sh (func_all_modules): Add restrict.
20243         * modules/regex: Depend on restrict.
20244
20245 2003-08-07  Paul Eggert  <eggert@twinsun.com>
20246
20247         * m4/restrict.m4: New file.
20248         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
20249
20250 2003-08-07  Bruno Haible  <bruno@clisp.org>
20251
20252         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
20253         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
20254
20255 2003-08-07  Bruno Haible  <bruno@clisp.org>
20256
20257         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
20258         makes the module 'getndelim2' compatible with the module 'getline'.
20259
20260 2003-08-05  Paul Eggert  <eggert@twinsun.com>
20261
20262         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
20263         byte with "\201" to avoid glitches when editing that source file
20264         with multi-gnome-terminal.
20265
20266 2003-08-05  Paul Eggert  <eggert@twinsun.com>
20267
20268         * lib/bumpalloc.h: Remove.
20269
20270 2003-08-05  Paul Eggert  <eggert@twinsun.com>
20271
20272         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
20273         * modules/bumpalloc: Remove.
20274
20275 2003-08-04  Paul Eggert  <eggert@twinsun.com>
20276
20277         * lib/getloadavg.c: Change copyright notice and spacing to conform to
20278         GNU coding style.
20279
20280         Merge from coreutils.
20281         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
20282         1. From glibc.
20283         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
20284         from Karl Berry, implemented by Jim Meyering.
20285         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
20286         from Dmitry V. Levin.
20287         Remove anachronistic cast of xrealloc.
20288         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
20289         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
20290         type. Otherwise, it wouldn't compile with at least /bin/cc on
20291         ymp-cray-unicos9.0.2.X.
20292         Combine two mostly-identical uses of alloca into one.
20293         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
20294
20295 2003-08-04  Dave Love  <d.love@dl.ac.uk>
20296
20297         [From Emacs.]
20298
20299         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
20300         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
20301         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
20302         obsolete NLIST_NAME_UNION.
20303         [__GNU__]: Undef BSD and FSCALE.
20304         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
20305
20306 2003-08-03  Paul Eggert  <eggert@twinsun.com>
20307
20308         * lib/stdbool_.h (_Bool): Make it signed char, instead of
20309         an enum type, so that it's guaranteed to promote to int.  See:
20310         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
20311
20312 2003-08-03  Karl Berry  <karl@gnu.org>
20313
20314         * config/depcomp: update from automake.
20315
20316 2003-07-31  Paul Eggert  <eggert@twinsun.com>
20317
20318         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
20319         (strerror): Don't assume that a printable int fits in 14 bytes.
20320
20321 2003-07-31  Bruno Haible  <bruno@clisp.org>
20322
20323         * modules/getpass-gnu: New file.
20324         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
20325
20326 2003-07-31  Bruno Haible  <bruno@clisp.org>
20327
20328         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
20329
20330 2003-07-24  Karl Berry  <karl@gnu.org>
20331
20332         * config/missing: update from automake.
20333
20334 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
20335             Bruno Haible  <bruno@clisp.org>
20336
20337         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
20338         * lib/getline.c (getline, getdelim): Likewise.
20339         Remove _GNU_SOURCE define; now it's defined in config.h through
20340         m4/getline.m4.
20341
20342 2003-07-23  Karl Berry  <karl@gnu.org>
20343
20344         * config/config.sub: update from prep.
20345
20346 2003-07-22  Paul Eggert  <eggert@twinsun.com>
20347
20348         * modules/xalloc (Depends-on): Add exitfail.
20349         * modules/xmemcoll: Likewise.
20350
20351 2003-07-22  Paul Eggert  <eggert@twinsun.com>
20352
20353         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
20354         over-parenthesization in macros.
20355
20356         Sync with coreutils.
20357
20358         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
20359         required by C99.
20360
20361         Use `exit_failure' for xalloc and xmemcoll instead of their own
20362         private exit-failure variables.
20363         * lib/xalloc.h (xalloc_exit_failure): Remove.
20364         * lib/xmalloc.c: Likewise.  Include exitfail.h.
20365         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
20366         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
20367         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
20368         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
20369
20370 2003-07-20  Jim Meyering  <jim@meyering.net>
20371
20372         * modules/closeout (Depends-on): Add exitfail.
20373         Suggestion from Bruno Haible.
20374
20375 2003-07-19  Karl Berry  <karl@gnu.org>
20376
20377         * config/config.sub: update from prep.
20378
20379 2003-07-18  Paul Eggert  <eggert@twinsun.com>
20380
20381         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
20382         Remove.
20383         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
20384         to test that it can stand by itself.  Include "exitfail.h".
20385         Clients should set exit_failure instead.
20386         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
20387
20388 2003-07-18  Bruno Haible  <bruno@clisp.org>
20389
20390         * modules/getndelim2: New file.
20391         * modules/getline: Share files with module getndelim2.
20392         * modules/getnline: Depend on getndelim2 instead of sharing files with
20393         it. Add getnline.c to lib_SOURCES.
20394         * MODULES.html.sh (func_all_modules): Add getndelim2.
20395
20396 2003-07-18  Bruno Haible  <bruno@clisp.org>
20397
20398         * m4/getndelim2.m4: New file.
20399         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
20400         invoke gl_PREREQ_GETNDELIM2.
20401         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
20402         gl_PREREQ_GETNDELIM2.
20403         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
20404         gl_GETNDELIM2.
20405
20406 2003-07-18  Bruno Haible  <bruno@clisp.org>
20407
20408         * lib/getndelim2.h: New file.
20409         * lib/getndelim2.c: Make into a module of its own. Include config.h,
20410         getndelim2.h.
20411         (getndelim2): Make non-static. Change return type to ssize_t.
20412         * lib/getline.h: Change argument names.
20413         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
20414         * lib/getnline.c: Include getndelim2.h.
20415
20416 2003-07-18  Andreas Schwab  <schwab@suse.de>
20417
20418         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
20419
20420 2003-07-17  Karl Berry  <karl@gnu.org>
20421
20422         * config/config.sub: update from prep.
20423
20424 2003-07-17  Bruno Haible  <bruno@clisp.org>
20425
20426         * modules/getnline: New file.
20427         * modules/getline: Add lib/getndelim2.c to source file list.
20428         * MODULES.html.sh (func_all_modules): Add getnline.
20429
20430 2003-07-17  Bruno Haible  <bruno@clisp.org>
20431
20432         * m4/getnline.m4: New file.
20433
20434 2003-07-17  Bruno Haible  <bruno@clisp.org>
20435
20436         * m4/Makefile.am.in: Remove file.
20437         * m4/Makefile.am: Remove file.
20438         * m4/Makefile.in: Remove file.
20439
20440 2003-07-17  Bruno Haible  <bruno@clisp.org>
20441
20442         * lib/getnline.h: New file.
20443         * lib/getnline.c: New file.
20444         * lib/getndelim2.c: New file, extracted from getline.c.
20445         (getndelim2): Renamed from getdelim2, with added nmax argument.
20446         * lib/getline.c: Include getndelim2.c.
20447         (getdelim2): Moved out to getndelim2.c.
20448         (getline, getdelim): Update.
20449
20450 2003-07-17  Bruno Haible  <bruno@clisp.org>
20451
20452         * lib/Makefile.am: Remove file.
20453         * lib/Makefile.in: Remove file.
20454
20455 2003-07-17  Bruno Haible  <bruno@clisp.org>
20456
20457         * configure.in: Remove file.
20458         * Makefile.in: Remove file.
20459
20460 2003-07-17  Bruno Haible  <bruno@clisp.org>
20461
20462         * MODULES.html.sh: Put the </BODY> right before </HTML>.
20463
20464 2003-07-16  Karl Berry  <karl@gnu.org>
20465
20466         * config/srclist-update: was running fixlicense twice, which caused
20467                 texinfo.tex to be nullified for some reason.  Simplify,
20468                 $gplsrc is no longer needed as far as I can see?
20469
20470 2003-07-16  Jim Meyering  <jim@meyering.net>
20471
20472         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
20473
20474 2003-07-15  Paul Eggert  <eggert@twinsun.com>
20475
20476         * config/srclist.txt: Get the following files from gettext-runtime/intl
20477         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
20478         ref-del.sin.  From Bruno Haible.
20479         * config/srclist-update (fixfile): Change grep pattern again, since the
20480         previous fix didn't work (there was another trailing $).  Use
20481         '[$]' to escape the $s.
20482
20483 2003-07-15  Karl Berry  <karl@gnu.org>
20484
20485         * lib/vasnprintf.c: update from gettext.
20486
20487 2003-07-15  Karl Berry  <karl@gnu.org>
20488
20489         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
20490         gets expanded when surrounded by '$'.
20491
20492 2003-07-15  Jim Meyering  <jim@meyering.net>
20493
20494         * modules/save-cwd: Don't depend on error.  From Derek Price.
20495
20496 2003-07-15  Jim Meyering  <jim@meyering.net>
20497
20498         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
20499
20500 2003-07-14  Simon Josefsson  <jas@extundo.com>
20501
20502         * modules/mempcpy: New file.
20503         * MODULES.html.sh (func_all_modules): Add mempcpy.
20504
20505 2003-07-14  Simon Josefsson  <jas@extundo.com>
20506
20507         * m4/mempcpy.m4: New file.
20508
20509 2003-07-14  Simon Josefsson  <jas@extundo.com>
20510
20511         * lib/mempcpy.h: New file.
20512         * lib/mempcpy.c: New file.
20513
20514 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20515
20516         * modules/getdate, modules/posixtm: Depend on mktime.
20517
20518 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20519
20520         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
20521         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
20522         unicodeio.c, unicodeio.h, unlocked-io.h:
20523         Switch from LGPL to GPL.
20524
20525 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20526
20527         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
20528         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
20529         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
20530         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
20531         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
20532         updated automatically by ../config/srclist-update.  This changes
20533         their license from LPGL to GPL.
20534
20535 2003-07-14  Paul Eggert  <eggert@twinsun.com>
20536
20537         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
20538         assumed to refer to the root of the most recent stable gettext version.
20539         * config/srclistvars.sh: Add defaults for eggert.
20540         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
20541         Match "This program" as well as "The program".  This is needed
20542         for gettext.
20543
20544 2003-07-14  Jim Meyering  <jim@meyering.net>
20545
20546         Don't emit diagnostics.  Let callers do that.
20547         * lib/save-cwd.c: Don't include "error.h".
20548         (save_cwd): Don't call error.  Ensure that errno is valid
20549         when returning nonzero.
20550
20551         * lib/save-cwd.h (restore_cwd): Update prototype.
20552         * lib/save-cwd.c (restore_cwd): Remove two parameters.
20553         Simplify.  Don't call error upon failure.  Let callers do that.
20554         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
20555         when auditing is enabled.  But don't bother updating the #if.
20556
20557 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
20558
20559         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
20560         it breaks C++ compilation.
20561         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
20562
20563 2003-07-10  Simon Josefsson  <jas@extundo.com>
20564
20565         * modules/strchrnul (Makefile.am): Add strchrnul.h.
20566
20567 2003-07-10  Jim Meyering  <jim@meyering.net>
20568
20569         * m4/clock_time.m4: Remove trailing blank.
20570         * m4/intmax_t.m4: Likewise.
20571
20572 2003-07-10  Jim Meyering  <jim@meyering.net>
20573
20574         * lib/vasnprintf.c: Remove trailing blanks.
20575         Make cpp indentation consistent.
20576
20577 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20578
20579         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
20580         posixver.c, strftime.c, strnlen.c, strverscmp.c:
20581         Switch from LGPL to GPL.
20582
20583 2003-07-09  Paul Eggert  <eggert@twinsun.com>
20584
20585         * config/srclist.txt: Sort sublists.  Add
20586         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
20587         that differ from gnulib for one reason or another; we'd like this list
20588         to be smaller but for now let's document what we have.
20589
20590 2003-07-08  Paul Eggert  <eggert@twinsun.com>
20591
20592         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
20593         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
20594         and sweeter "eval x=$x".
20595         * config/srclist.txt: Get lib/argp* from glibc.
20596
20597 2003-07-07  Paul Eggert  <eggert@twinsun.com>
20598
20599         * lib/mktime.c: Fix some boundary cases and remove need for floating
20600         point.
20601
20602         Issue a compile-time diagnostic if time_t is floating point, or if
20603         two's complement arithmetic is not in effect, or if arithmetic
20604         right shift does not propagate the sign.  These assumptions were
20605         all in the original code but they weren't checked.
20606
20607         (TIME_T_MIDPOINT, verify): New macros.
20608         (__isleap): Remove; it has integer overflow problems.
20609         (leapyear): New function, without those problems.
20610         (ydhms_tm_diff): Remove; splitting into two parts.
20611         (ydhms_diff): New function, containing the arithmetic part of
20612         the old ydhms_tm_diff function.  Issue a compile-time
20613         diagnostic if we are not using C99 integer division.
20614         Avoid casts when possible.
20615         (guess_time_tm): New function, containing the checking part of
20616         the old ydhms_tm_diff function.  Return the new value, rather than
20617         the difference between it and the old.  Accept a new argument T
20618         so that *T specifies the old value.  Check for overflow in the result.
20619
20620         (__mktime_internal): Use a time_t offset, not a long int offset.
20621         This undoes the 2003-06-04 change, which is no longer needed now
20622         that we have better overflow checking.
20623         (localtime_offset): Likewise.
20624
20625         (__mktime_internal): Avoid harmful overflow on hosts where time_t
20626         and long are 64-bit but int is only 32-bit.
20627         (ydhms_diff): Use long int to store year1 and yday1.
20628         Issue a compile-time diagnostic if long int is not wide enough.
20629
20630         (__mktime_internal): Use long int to store adjusted year and yday.
20631         Use plain C rather than preprocessor commands, if that doesn't
20632         affect efficiency.
20633         Check for overflow (and try to repair) after each probe
20634         rather than checking only at the very end.  This avoids some bugs
20635         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
20636         does not equal GMT offset at maximum time).
20637         Use integer to check for overflow rather than floating point; this
20638         is more portable to non-IEEE hosts, and is a tad faster.
20639         When we detect that we are oscillating between two values,
20640         don't check whether tm_isdst has the requested value, since
20641         we already know the answer.  When tm_isdst has the wrong value,
20642         use a different heuristic to find the right one, based on the
20643         extreme values actually observed in practice in tz2003a,
20644         rather than the (overly optimistic) "previous 3 calendar quarters".
20645
20646         (not_equal_tm, print_tm, check_result): Use "const T" rather than
20647         "T const" to accommodate glibc style.
20648         (check_result): Use less-confusing report format.  "long" -> "long int.
20649         (main): Likewise.
20650         Don't loop if the iteration overflows time_t.
20651         Allow a negative step in the iteration.
20652
20653 2003-07-06  Karl Berry  <karl@gnu.org>
20654
20655         * config/depcomp: update from automake.
20656         * config/config.sub: update from prep.
20657
20658 2003-07-03  Karl Berry  <karl@gnu.org>
20659
20660         * config/config.guess: update from prep.
20661
20662 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20663
20664         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
20665         xreadlink.c now includes it unconditionally.
20666
20667 2003-07-01  Paul Eggert  <eggert@twinsun.com>
20668
20669         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
20670         having it depend on HAVE_SYS_TYPES_H.
20671
20672 2003-07-01  Bruno Haible  <bruno@clisp.org>
20673
20674         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
20675         <sys/types.h> should be sufficient.
20676         Reported by Paul Eggert.
20677
20678 2003-06-26  Karl Berry  <karl@gnu.org>
20679
20680         * config/depcomp: update from automake.
20681
20682 2003-06-26  Bruno Haible  <bruno@clisp.org>
20683
20684         * modules/human: Depend on module stdbool.
20685
20686 2003-06-25  Bruno Haible  <bruno@clisp.org>
20687
20688         * modules/readlink: New file.
20689         * modules/xreadlink: Depend on it.
20690         * MODULES.html.sh (func_all_modules): Add readlink.
20691
20692 2003-06-25  Bruno Haible  <bruno@clisp.org>
20693
20694         * m4/readlink.m4: New file.
20695
20696 2003-06-25  Bruno Haible  <bruno@clisp.org>
20697
20698         * lib/readlink.c: New file.
20699
20700 2003-06-22  Karl Berry  <karl@gnu.org>
20701
20702         * config/srclist.txt: update mkinstalldirs from automake.
20703         * config/mkinstalldirs: update.
20704
20705 2003-06-22  Bruno Haible  <bruno@clisp.org>
20706
20707         Portability to mingw32.
20708         * m4/ssize_t.m4: New file, from GNU gettext.
20709         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
20710         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
20711
20712 2003-06-22  Bruno Haible  <bruno@clisp.org>
20713
20714         * modules/safe-read: Add m4/ssize_t.m4.
20715         * modules/xreadlink: Add m4/ssize_t.m4.
20716
20717 2003-06-20  Bruno Haible  <bruno@clisp.org>
20718
20719         Assume C89, so PARAMS isn't needed.
20720         * lib/unicodeio.h (PARAMS): Remove.
20721         * lib/unicodeio.c: Don't use PARAMS.
20722
20723 2003-06-18  Karl Berry  <karl@gnu.org>
20724
20725         * config/config.{guess,sub}: update from prep.
20726
20727 2003-06-18  Jim Meyering  <jim@meyering.net>
20728
20729         Merge changes from coreutils.
20730         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
20731         Remove explicit declarations of xmalloc and realloc.
20732         Include xalloc.h.
20733         (read_utmp): Remove anachronistic cast of xmalloc.
20734
20735 2003-06-17  Paul Eggert  <eggert@twinsun.com>
20736
20737         Assume C89, so PARAMS isn't needed.
20738         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
20739         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
20740         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
20741         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
20742         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
20743         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
20744         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
20745         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
20746         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
20747         lib/xstrtod.h, lib/xstrtol.h: Likewise.
20748         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
20749         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
20750         no longer needed. Anyway, config.h should always be included before any
20751         other file.
20752
20753 2003-06-11  Simon Josefsson  <jas@extundo.com>
20754
20755         * modules/sysexits: New file.
20756         * MODULES.html.sh (func_all_modules): Add sysexits.
20757
20758 2003-06-11  Simon Josefsson  <jas@extundo.com>
20759
20760         * lib/sysexit_.h: New file.
20761
20762 2003-06-11  Derek Price  <derek@ximbiot.com>
20763
20764         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
20765         necessary.
20766
20767 2003-06-11  Bruno Haible  <bruno@clisp.org>
20768
20769         * m4/sysexits.m4: New file.
20770
20771 2003-06-10  Simon Josefsson  <jas@extundo.com>
20772
20773         * lib/argp.h: New file, from glibc.
20774         * lib/argp-ba.c: New file, from glibc.
20775         * lib/argp-eexst.c: New file, from glibc.
20776         * lib/argp-fmtstream.c: New file, from glibc.
20777         * lib/argp-fmtstream.h: New file, from glibc.
20778         * lib/argp-fs-xinl.c: New file, from glibc.
20779         * lib/argp-help.c: New file, from glibc.
20780         * lib/argp-namefrob.h: New file, from glibc.
20781         * lib/argp-parse.c: New file, from glibc.
20782         * lib/argp-pv.c: New file, from glibc.
20783         * lib/argp-pvh.c: New file, from glibc.
20784         * lib/argp-xinl.c: New file, from glibc.
20785
20786 2003-06-10  Simon Josefsson  <jas@extundo.com>
20787
20788         * modules/strchrnul: New file.
20789
20790 2003-06-10  Simon Josefsson  <jas@extundo.com>
20791
20792         * modules/argp: New file.
20793
20794 2003-06-10  Simon Josefsson  <jas@extundo.com>
20795
20796         * m4/strchrnul.m4: New file.
20797
20798 2003-06-10  Simon Josefsson  <jas@extundo.com>
20799
20800         * lib/strchrnul.h: New file.
20801         * lib/strchrnul.c: New file.
20802
20803 2003-06-10  Bruno Haible  <bruno@clisp.org>
20804
20805         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
20806
20807 2003-06-07  Karl Berry  <karl@gnu.org>
20808
20809         * config/config.{guess,sub}: update from prep.
20810
20811 2003-06-07  Jim Meyering  <jim@meyering.net>
20812
20813         * modules/strtod: Use $(...) notation, not @...@ for
20814         AC_REPLACE'd variables.
20815         * modules/localcharset: Likewise.
20816
20817 2003-06-07  Jim Meyering  <jim@meyering.net>
20818
20819         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
20820         in place of my name in the copyright comment.
20821         Remove definition and uses of __P.
20822
20823         From coreutils.
20824         * lib/stat.c: Don't declare xmalloc explicitly.
20825         Instead, include "xalloc.h".
20826         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
20827         xrealloc, and xcalloc return values.
20828         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
20829         Improve comment.
20830         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
20831
20832 2003-06-07  Bruno Haible  <bruno@clisp.org>
20833
20834         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
20835         avoid AC_CONFIG_LINKS.
20836         * modules/fnmatch (Makefile.am): Use explicit creation rule for
20837         fnmatch.h, to avoid AC_CONFIG_LINKS.
20838         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
20839
20840 2003-06-07  Bruno Haible  <bruno@clisp.org>
20841
20842         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
20843         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
20844         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20845         directory.
20846         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
20847         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
20848         directory.
20849
20850 2003-06-06  Jim Meyering  <jim@meyering.net>
20851
20852         Merge from coreutils.
20853         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
20854         Consolidate declarations and initializations of *_base* locals.
20855
20856         Merge from coreutils.
20857         This avoids a core dump on systems without GNU putenv,
20858         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
20859         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
20860         (unsetenv): New static function, from GNU libc.
20861         (rpl_putenv): Use it.
20862
20863         * lib/modechange.c: Remove trailing blanks.
20864
20865         Merge from coreutils.
20866         * lib/fsusage.c: Remove declaration of statfs.
20867         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
20868
20869         * lib/posixtm.c: Include <stdbool.h> unconditionally.
20870
20871 2003-06-06  Jim Meyering  <jim@meyering.net>
20872
20873         * lib/stdbool_.h: Renamed from stdbool.h.in.
20874
20875 2003-06-06  Jim Meyering  <jim@meyering.net>
20876             Bruno Haible  <bruno@clisp.org>
20877
20878         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
20879         Adjust Makefile.am snippet not to redirect directly to target.
20880         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
20881
20882 2003-06-05  Paul Eggert  <eggert@twinsun.com>
20883
20884         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
20885         mismatch, look in future quarters as well as past.  This fixes a
20886         bug when processing fall-backwards gaps immediately after a long
20887         period of daylight-saving time.
20888
20889         * lib/mktime.c: Assume freestanding C89 or better.
20890         (HAVE_LIMITS_H): Remove.  Assume it's 1.
20891         (__P): Remove; not used.
20892         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
20893         (mktime, not_equal_tm, print_tm, check_result,
20894         main): Use prototypes.  Use const * where appropriate.
20895         (main): Fix typo in testing code that uncovered by above changes.
20896         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
20897
20898 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20899
20900         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
20901         locale.h, localeconv.  This merges changes from coreutils.
20902
20903         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
20904         It can be removed after the next Autoconf is released.
20905         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
20906         needed.
20907
20908 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20909
20910         * lib/mktime.c: Fix Debian bug 177940
20911         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
20912         (localtime_offset): Now long int, not time_t, because we want it
20913         to be guaranteed to be signed.  All uses changed.
20914         (__mktime_internal): If overflow would occur when adding offset,
20915         don't add it.
20916
20917         Merge 'human' changes from coreutils.  Rewrite to support
20918         locale-specific notations like thousands separators.
20919         * lib/human.c: Simplify authorship notice.
20920         Include human.h immediately after config.h.
20921         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
20922         <limits.h>: Do not include, since human.h does.
20923         (SIZE_MAX, UINTMAX_MAX): New macros.
20924         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
20925         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
20926         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
20927         (power_letter): Renamed from suffixes.
20928         (generate_suffix_backwards): Remove.
20929         (adjust_value): Now takes int style (because of human.h changes)
20930         and long double value (for greater precision on some platforms).
20931         (group_number): New function.
20932         (human_readable): Use it.  Use integer options, not enum.
20933         Put the options before the sizes in the arg list.
20934         Support all the new options.
20935         The old human_readable function has been removed;
20936         use inttostr.h instead.
20937         (human_readable, default_block_size, humblock):
20938         Use uintmax_t, not int, for block sizes.
20939         (human_readable_inexact, block_size_types): Remove.
20940         (block_size_opts): New constant.
20941         (human_options): Renamed from human_block_size, with new signature
20942         that allows block sizes up to UINTMAX_MAX.  All callers changed.
20943         * lib/human.h: Add copyright and authorship notice.
20944         Include <limits.h> and <stdbool.h> unconditionally.
20945         (PARAMS): Remove.  All uses removed.
20946         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
20947         (enum human_inexact_style): Remove tag; now a nameless enum.
20948         (human_floor, human_ceiling, human_round_to_even): Now have
20949         values 2, 0, 1 rather than -1, 1, 0.
20950         (human_group_digits, human_suppress_point_zero, human_autoscale,
20951         human_base_1024, human_SI, human_B): New constants.
20952         (human_readable_inexact, human_block_size): Remove.
20953         (human_readable): Size args are now uintmax_t, not int.
20954         (human_options): New decl.
20955
20956         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
20957         unnecessary now that we assume C89 or better.  This change
20958         imported from coreutils.
20959
20960         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
20961         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
20962         in the 2003-05-30 sync from glibc.
20963
20964         .h files should stand alone, but we shouldn't include <sys/types.h>
20965         if we can get away with just <stddef.h>.
20966
20967         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
20968         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
20969         rather than <sys/types.h>, as we merely need size_t.
20970         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
20971         to get size_t.
20972         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
20973         Include <stdio.h>, to get FILE.
20974         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
20975         memcasecmp.h has included <stddef.h> and all we need is size_t.
20976         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
20977         our interface, instead of including <sys/types.h>
20978
20979 2003-06-04  Paul Eggert  <eggert@twinsun.com>
20980
20981         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
20982         now, as glibc mktime is buggy on non-glibc systems.
20983
20984 2003-06-03  Karl Berry  <karl@gnu.org>
20985
20986         * config/config.sub: update from prep.
20987
20988 2003-06-02  Paul Eggert  <eggert@twinsun.com>
20989
20990         [from coreutils]
20991         Fix some minor time-related bugs with POSIX time arguments.
20992         Some valid time stamps were being rejected (notably -1, and
20993         time stamps before 1900 on 64-bit hosts).  And some invalid
20994         time stamps were being accepted, e.g. September 31.
20995
20996         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
20997         that we can return (time_t) -1 successfully.
20998         * lib/posixtm.c: Likewise.
20999         [HAVE_STDBOOL_H]: Include <stdbool.h>.
21000         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
21001         (t): Remove static var.
21002         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
21003         of static var.  All uses changed.
21004         (year): Do not reject years before 1900; they can occur with
21005         64-bit time_t.
21006         (posix_time_parse): Do not check for out-of-range components;
21007         that is now the caller's responsibility, since our checks were
21008         only approximations.
21009         (posixtime): Use mktime to check for out-of-range components,
21010         since it knows them exactly.
21011         If mktime returns (time_t) -1, check whether an error actually occurred
21012         by invoking localtime on -1.
21013         (main) [TEST_POSIXTIME]: Check for input data errors, and report
21014         posixtime failures better.
21015         Improve the test data (in comments only).
21016
21017 2003-06-02  Karl Berry  <karl@gnu.org>
21018
21019         * config/mkinstalldirs (version): new variable.
21020         (--version): new option.
21021         (usage): improve message.
21022
21023 2003-05-30  Karl Berry  <karl@gnu.org>
21024
21025         * lib/mktime.c: update from libc.
21026
21027 2003-05-30  Bruno Haible  <bruno@clisp.org>
21028
21029         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
21030         * config/config.rpath: Upgrade to gettext-0.12.1.
21031
21032 2003-05-30  Bruno Haible  <bruno@clisp.org>
21033
21034         * m4/gettext.m4: Upgrade to gettext-0.12.1.
21035         * m4/nls.m4: New file, from gettext-0.12.1.
21036         * m4/po.m4: New file, from gettext-0.12.1.
21037         * m4/progtest.m4: Upgrade to gettext-0.12.1.
21038
21039 2003-05-30  Bruno Haible  <bruno@clisp.org>
21040
21041         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
21042         * lib/localcharset.h: Likewise.
21043         * lib/localcharset.c: Likewise.
21044
21045 2003-05-29  Karl Berry  <karl@gnu.org>
21046
21047         * config/config.rpath: update from gettext.
21048
21049 2003-05-28  Paul Eggert  <eggert@twinsun.com>
21050
21051         Assume the headers required for C89 freestanding compilers.
21052         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
21053         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
21054         * m4/human.m4 (gl_HUMAN): Likewise.
21055         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
21056         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
21057         * m4/userspec.m4 (gl_USERSPEC): Likewise.
21058         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
21059         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
21060         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
21061
21062 2003-05-28  Paul Eggert  <eggert@twinsun.com>
21063
21064         Assume the headers required for C89 freestanding compilers.
21065         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
21066         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
21067         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
21068         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
21069         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
21070         define, since <limits.h> is guaranteed to do that.
21071         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
21072         * lib/exclude.c: Include <stdbool.h> unconditionally.
21073         * lib/tempname.c: Include <stddef.h> unconditionally.
21074         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
21075         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
21076         <stddef.h> does that.
21077         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
21078         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
21079         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
21080         needed.
21081         * lib/xstrtol.c: Likewise.
21082         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
21083         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
21084
21085         * lib/addext.c (addext): Use assignment rather than cast, to avoid
21086         warnings on some platforms.
21087
21088         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
21089         arbitrarily.
21090
21091 2003-05-26  Jim Meyering  <jim@meyering.net>
21092
21093         Merge in a change from coreutils:
21094         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
21095         that is guaranteed to be `no'.  Use `no_such_member' to indicate
21096         that condition, rather than `-1' which is slightly misleading.
21097         Change the name of the cache variable to have the gl_ prefix.
21098         Prompted by a patch from Richard Dawe for DJGPP.
21099
21100 2003-05-24  Karl Berry  <karl@gnu.org>
21101
21102         * config/config.guess: update from prep.
21103
21104 2003-05-22  Karl Berry  <karl@gnu.org>
21105
21106         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
21107
21108 2003-05-20  Karl Berry  <karl@gnu.org>
21109
21110         * config/config.guess: update from prep.
21111
21112 2003-05-18  Karl Berry  <karl@gnu.org>
21113
21114         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
21115         might actually be set by the user.
21116
21117         * config/depcomp, install-sh, mdate-sh: update from automake.
21118
21119 2003-05-17  Bruno Haible  <bruno@clisp.org>
21120
21121         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
21122         invalid expansion for AC_EGREP_CPP.
21123         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
21124         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
21125         Suggested by Akim Demaille <akim@epita.fr> in
21126         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
21127
21128 2003-05-12  Jim Meyering  <jim@meyering.net>
21129
21130         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
21131         the space-padded-by-default conversion specifiers, %e, %k, %l.
21132
21133 2003-05-12  Bruno Haible  <bruno@clisp.org>
21134
21135         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
21136         the string is longer than 4 KB.
21137
21138 2003-05-11  Karl Berry  <karl@gnu.org>
21139
21140         * config/config.{guess,sub}: update from prep.
21141
21142 2003-05-09  Bruno Haible  <bruno@clisp.org>
21143
21144         * modules/error: Add m4/strerror_r.m4 to file list.
21145
21146 2003-05-03  Bruno Haible  <bruno@clisp.org>
21147
21148         Upgrade to Unicode-4.0.
21149         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
21150         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
21151         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
21152         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
21153         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
21154         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
21155         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
21156         Change width of U+E0100..U+E01EF from 1 to 0.
21157
21158 2003-04-25  Jim Meyering  <jim@meyering.net>
21159
21160         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
21161         of type size_t, not int.
21162
21163 2003-04-25  Bruno Haible  <bruno@clisp.org>
21164
21165         * lib/copy-file.c: Include <stddef.h>, for size_t.
21166
21167 2003-04-21  Paul Eggert  <eggert@twinsun.com>
21168
21169         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
21170         code which expansion is under static control.  Patch imported from
21171         Akim Demaille's patch to Bison; see
21172         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
21173
21174 2003-04-14  Bruno Haible  <bruno@clisp.org>
21175
21176         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
21177
21178 2003-04-11  Jim Meyering  <jim@meyering.net>
21179
21180         Merge changes from Coreutils.
21181
21182         2003-03-22  Jim Meyering  <jim@meyering.net>
21183
21184         * lib/strftime.c (widen): Cast alloca return value to proper type.
21185
21186         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
21187
21188         From GNU libc.
21189         * lib/strftime.c (my_strftime): Handle very large width
21190         specifications for numeric values correctly.  Improve checks for
21191         overflow.
21192
21193         2003-01-19  Jim Meyering  <jim@meyering.net>
21194
21195         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
21196         definitions.
21197         (nl_get_alt_digit) [! defined my_strftime]: Define.
21198         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
21199         _nl_get_alt_digit and _nl_get_walt_digit.
21200
21201         * lib/strftime.c (my_strftime): Merge in locale-related changes from
21202         libc. These changes have no effect outside of _LIBC.
21203
21204 2003-04-10  Bruno Haible  <bruno@clisp.org>
21205
21206         * modules/findprog: New file.
21207         * MODULES.html.sh (func_all_modules): Add it.
21208
21209 2003-04-10  Bruno Haible  <bruno@clisp.org>
21210
21211         * m4/findprog.m4: New file.
21212         * m4/eaccess.m4: New file.
21213
21214 2003-04-10  Bruno Haible  <bruno@clisp.org>
21215
21216         * lib/findprog.h: New file, from GNU gettext.
21217         * lib/findprog.c: New file, from GNU gettext.
21218
21219 2003-04-05  Jim Meyering  <jim@meyering.net>
21220
21221         Merge changes from Coreutils.
21222
21223         * lib/exclude.h (PARAMS): Remove definition and uses.
21224         * lib/exclude.c: Remove uses of `PARAMS'.
21225
21226         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
21227         Add test-cases for DOS filenames. Declare program_name.
21228         (main): Set up program_name.  Patch by Rich Dawe.
21229
21230         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
21231         error from mntctl.
21232         Use mntctl's return value to drive the entry-processing loop, since
21233         we can't rely on the value of the vmt_length member in the last
21234         entry.  On some systems doing so could result in exhausting
21235         virtual memory.  Based in part on a patch from Mike Jetzer.
21236
21237 2003-04-04  Bruno Haible  <bruno@clisp.org>
21238
21239         * modules/linebreak: New file.
21240         * MODULES.html.sh (func_all_modules): Add it.
21241
21242 2003-04-04  Bruno Haible  <bruno@clisp.org>
21243
21244         * m4/linebreak.m4: New file.
21245
21246 2003-04-04  Bruno Haible  <bruno@clisp.org>
21247
21248         * lib/linebreak.h: New file, from GNU gettext.
21249         * lib/linebreak.c: New file, from GNU gettext with slight
21250         modifications.
21251         * lib/lbrkprop.h: New file, from GNU gettext.
21252
21253 2003-04-03  Bruno Haible  <bruno@clisp.org>
21254
21255         * modules/utf8-ucs4: New file.
21256         * modules/utf16-ucs4: New file.
21257         * modules/ucs4-utf8: New file.
21258         * modules/ucs4-utf16: New file.
21259         * MODULES.html.sh (func_all_modules): Add them.
21260
21261 2003-04-03  Bruno Haible  <bruno@clisp.org>
21262
21263         * m4/utf-ucs4.m4: New file.
21264         * m4/ucs4-utf.m4: New file.
21265
21266 2003-04-03  Bruno Haible  <bruno@clisp.org>
21267
21268         * lib/utf8-ucs4.h: New file, from GNU gettext.
21269         * lib/utf16-ucs4.h: New file, from GNU gettext.
21270         * lib/ucs4-utf8.h: New file, from GNU gettext.
21271         * lib/ucs4-utf16.h: New file, from GNU gettext.
21272
21273 2003-04-02  Bruno Haible  <bruno@clisp.org>
21274
21275         * modules/binary-io: New file.
21276         * MODULES.html.sh (func_all_modules): Add it.
21277
21278 2003-04-02  Bruno Haible  <bruno@clisp.org>
21279
21280         * lib/binary-io.h: New file, from GNU gettext.
21281
21282 2003-04-01  Bruno Haible  <bruno@clisp.org>
21283
21284         * modules/pathname: New file.
21285         * MODULES.html.sh (func_all_modules): Add it.
21286
21287 2003-04-01  Bruno Haible  <bruno@clisp.org>
21288
21289         * lib/pathname.h: New file, from GNU gettext.
21290         * lib/concatpath.c: New file, from GNU gettext.
21291
21292 2003-03-30  Bruno Haible  <bruno@clisp.org>
21293
21294         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
21295
21296 2003-03-30  Bruno Haible  <bruno@clisp.org>
21297
21298         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
21299         function chown() doesn't exist.
21300
21301 2003-03-28  Bruno Haible  <bruno@clisp.org>
21302
21303         * modules/copy-file: New file.
21304         * MODULES.html.sh (func_all_modules): Add it.
21305
21306 2003-03-28  Bruno Haible  <bruno@clisp.org>
21307
21308         * m4/copy-file.m4: New file.
21309
21310 2003-03-28  Bruno Haible  <bruno@clisp.org>
21311
21312         * lib/copy-file.h: New file, from GNU gettext.
21313         * lib/copy-file.c: New file, from GNU gettext.
21314
21315 2003-03-18  Jim Meyering  <jim@meyering.net>
21316
21317         * lib/quote.c (quote_n): Fix typo in comment.
21318
21319 2003-03-18  Bruno Haible  <bruno@clisp.org>
21320
21321         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
21322         checking.
21323         * m4/onceonly_2_57.m4: Likewise.
21324
21325 2003-03-17  Bruno Haible  <bruno@clisp.org>
21326
21327         * m4/onceonly.m4: Require autoconf 2.54 or newer.
21328         (m4_quote): Remove macro.
21329         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
21330
21331 2003-03-14  Jim Meyering  <jim@meyering.net>
21332
21333         Merge changes from Coreutils.
21334         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
21335         to be const, in order to avoid warnings.
21336         (obstack_room): Likewise.
21337         (obstack_empty_p): Likewise.
21338
21339 2003-03-14  Bruno Haible  <bruno@clisp.org>
21340
21341         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
21342         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
21343
21344 2003-03-13  Paul Eggert  <eggert@twinsun.com>
21345
21346         Merge changes from Bison.
21347         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
21348         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
21349         when compiling Bison 1.875's `bitset bset = obstack_alloc
21350         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
21351         * lib/hash.c: Include <stdbool.h> unconditionally.
21352
21353 2003-03-13  Paul Eggert  <eggert@twinsun.com>
21354
21355         * m4/onceonly.m4 (m4_quote): New macro.
21356         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
21357         Quote AC_FOREACH variable-expansions properly.
21358
21359 2003-03-13  Paul Eggert  <eggert@twinsun.com>
21360
21361         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
21362
21363 2003-03-09  Paul Eggert  <eggert@twinsun.com>
21364
21365         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
21366         Reported by Bruce Becker; see:
21367         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
21368
21369 2003-03-03  Paul Eggert  <eggert@twinsun.com>
21370             Bruno Haible  <bruno@clisp.org>
21371
21372         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
21373         Reported by John Hughes, see
21374         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
21375
21376 2003-02-20  Bruno Haible  <bruno@clisp.org>
21377
21378         * MODULES.html.sh (func_all_modules): Add poll.
21379
21380 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
21381
21382         * modules/poll: New file.
21383
21384 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
21385
21386         * lib/poll_.h: New file.
21387         * lib/poll.c: New file.
21388
21389 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
21390
21391         * m4/poll.m4: New file.
21392
21393 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
21394
21395         * modules/mathl: New file.
21396
21397 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
21398
21399         * lib/mathl.h: New file.
21400         * lib/acosl.c: New file.
21401         * lib/asinl.c: New file.
21402         * lib/atanl.c: New file.
21403         * lib/ceill.c: New file.
21404         * lib/cosl.c: New file.
21405         * lib/expl.c: New file.
21406         * lib/floorl.c: New file.
21407         * lib/frexpl.c: New file.
21408         * lib/ldexpl.c: New file.
21409         * lib/logl.c: New file.
21410         * lib/sincosl.c: New file.
21411         * lib/sinl.c: New file.
21412         * lib/sqrtl.c: New file.
21413         * lib/tanl.c: New file.
21414         * lib/trigl.c: New file.
21415         * lib/trigl.h: New file.
21416
21417 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
21418
21419         * m4/mathl.m4: New file.
21420
21421 2003-02-18  Bruno Haible  <bruno@clisp.org>
21422
21423         * MODULES.html.sh (func_all_modules): Add mathl.
21424
21425 2003-02-17  Bruno Haible  <bruno@clisp.org>
21426
21427         * modules/mkdtemp: New module.
21428         * MODULES.html.sh (func_all_modules): Add it.
21429
21430 2003-02-17  Bruno Haible  <bruno@clisp.org>
21431
21432         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
21433
21434 2003-02-17  Bruno Haible  <bruno@clisp.org>
21435
21436         * lib/mkdtemp.h: New file, from GNU gettext.
21437         * lib/mkdtemp.c: New file, from GNU gettext.
21438
21439 2003-02-02  Jim Meyering  <jim@meyering.net>
21440
21441         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
21442         e.g. glibc-2.2.93.
21443
21444 2003-01-31  Bruno Haible  <bruno@clisp.org>
21445
21446         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
21447         'rpl_rename'.
21448         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
21449         'rpl_strnlen'.
21450         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
21451         'rpl_strtod'.
21452         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
21453         'rpl_utime'.
21454
21455 2003-01-31  Bruno Haible  <bruno@clisp.org>
21456
21457         * lib/rename.c: #undef rename before defining rpl_rename.
21458         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
21459
21460 2003-01-30  Bruno Haible  <bruno@clisp.org>
21461
21462         * modules/vasnprintf, modules/vasprintf: New modules.
21463         * MODULES.html.sh (func_all_modules): Add them.
21464
21465 2003-01-30  Bruno Haible  <bruno@clisp.org>
21466
21467         * m4/signed.m4: New file, from GNU gettext.
21468         * m4/longdouble.m4: New file, from GNU gettext.
21469         * m4/wchar_t.m4: New file, from GNU gettext.
21470         * m4/wint_t.m4: New file, from GNU gettext.
21471         * m4/vasnprintf.m4: New file.
21472         * m4/vasprintf.m4: New file.
21473
21474 2003-01-30  Bruno Haible  <bruno@clisp.org>
21475
21476         * lib/printf-args.h: New file, from GNU gettext.
21477         * lib/printf-args.c: New file, from GNU gettext.
21478         * lib/printf-parse.h: New file, from GNU gettext.
21479         * lib/printf-parse.c: New file, from GNU gettext.
21480         * lib/vasnprintf.h: New file, from GNU gettext.
21481         * lib/vasnprintf.c: New file, from GNU gettext.
21482         * lib/asnprintf.c: New file, from GNU gettext.
21483         * lib/vasprintf.h: New file, from GNU gettext with modifications.
21484         * lib/vasprintf.c: New file, from GNU gettext.
21485         * lib/asprintf.c: New file, from GNU gettext.
21486
21487 2003-01-29  Bruno Haible  <bruno@clisp.org>
21488
21489         * modules/stpncpy: New module.
21490         * MODULES.html.sh (func_all_modules): Add it.
21491
21492 2003-01-29  Bruno Haible  <bruno@clisp.org>
21493
21494         * m4/stpncpy.m4: New file.
21495
21496 2003-01-29  Bruno Haible  <bruno@clisp.org>
21497
21498         * lib/stpncpy.h: New file, from GNU gettext with modifications.
21499         * lib/stpncpy.c: New file, from GNU gettext with modifications.
21500
21501 2003-01-28  Bruno Haible  <bruno@clisp.org>
21502
21503         * modules/c-ctype: New module.
21504         * MODULES.html.sh (func_all_modules): Add it.
21505
21506 2003-01-28  Bruno Haible  <bruno@clisp.org>
21507
21508         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
21509         Paul Eggert.
21510         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
21511         Paul Eggert.
21512
21513 2003-01-27  Bruno Haible  <bruno@clisp.org>
21514
21515         * modules/xsetenv: New module.
21516         * MODULES.html.sh (func_all_modules): Add it.
21517
21518 2003-01-27  Bruno Haible  <bruno@clisp.org>
21519
21520         * lib/xsetenv.h: New file, from GNU gettext.
21521         * lib/xsetenv.c: New file, from GNU gettext.
21522
21523 2003-01-23  Jim Meyering  <jim@meyering.net>
21524
21525         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
21526         from working on systems without dirfd (at least Irix and OSF1/Tru64).
21527
21528 2003-01-23  Bruno Haible  <bruno@clisp.org>
21529
21530         * modules/minmax: New module.
21531         * MODULES.html.sh (func_all_modules): Add it.
21532
21533 2003-01-23  Bruno Haible  <bruno@clisp.org>
21534
21535         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
21536         Eggert.
21537
21538 2003-01-22  Bruno Haible  <bruno@clisp.org>
21539
21540         * modules/exit: New module.
21541         * MODULES.html.sh (func_all_modules): Add it.
21542
21543 2003-01-22  Bruno Haible  <bruno@clisp.org>
21544
21545         * lib/exit.h: New file, from GNU gettext.
21546
21547 2003-01-19  Bruno Haible  <bruno@clisp.org>
21548
21549         * gnulib-tool: Recognize option --extract-maintainer.
21550         (func_get_maintainer): New function.
21551         * modules/*: Add Maintainer entry.
21552
21553 2003-01-16  Jim Meyering  <jim@meyering.net>
21554
21555         * m4/regex.m4: The `regex' struct is both input and output.
21556         Initialize it before each use.  Patch by Tim Waugh.
21557
21558 2003-01-16  Bruno Haible  <bruno@clisp.org>
21559
21560         * MODULES.html.sh: Add a table of contents. Add the module name as
21561         leftmost column. Add hyperlinks.
21562
21563 2003-01-15  Bruno Haible  <bruno@clisp.org>
21564
21565         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
21566
21567 2003-01-15  Bruno Haible  <bruno@clisp.org>
21568
21569         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
21570         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
21571         suffix.
21572
21573 2003-01-15  Bruno Haible  <bruno@clisp.org>
21574
21575         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
21576
21577 2003-01-15  Bruno Haible  <bruno@clisp.org>
21578
21579         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
21580         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
21581
21582 2003-01-14  Jim Meyering  <jim@meyering.net>
21583
21584         * lib/same.c (same_name): Tweak a comment.
21585
21586 2003-01-14  Bruno Haible  <bruno@clisp.org>
21587
21588         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
21589         when a string comparison is sufficient.
21590
21591 2003-01-14  Bruno Haible  <bruno@clisp.org>
21592
21593         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
21594         'unsigned int'.
21595
21596 2003-01-14  Bruno Haible  <bruno@clisp.org>
21597
21598         * lib/hash-pjw.c: Add comment about low quality of this function.
21599
21600 2003-01-13  Bruno Haible  <bruno@clisp.org>
21601
21602         * modules/stpcpy: Distribute lib/stpcpy.h.
21603         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
21604
21605 2003-01-13  Bruno Haible  <bruno@clisp.org>
21606
21607         * modules/*: Add a description.
21608         * modules/strpbrk: Fix Makefile.am snippet.
21609         * modules/strtoimax: Fix dependencies.
21610         * modules/strtoumax: Likewise.
21611
21612 2003-01-13  Bruno Haible  <bruno@clisp.org>
21613
21614         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
21615         * modules/alloca (Makefile.am): All object files depend on alloca.h.
21616         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
21617
21618 2003-01-13  Bruno Haible  <bruno@clisp.org>
21619
21620         * gnulib-tool (func_create_testdir): Store config/* files in the main
21621         directory.
21622         * config.rpath: Move to ...
21623         * config/config.rpath: ... here.
21624         * modules/gettext: Contains config/config.rpath, not config.rpath.
21625         * modules/iconv: Likewise.
21626
21627 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21628
21629         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21630         to avoid collisions with libcurses and libreadline.
21631
21632         * m4/getstr.m4: Remove.
21633         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
21634
21635 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21636
21637         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21638         to avoid collisions with libcurses and libreadline.
21639
21640         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
21641         * lib/getstr.h, getstr.c: Remove.
21642         * lib/getline.c: Include "getline.h", to check interface.
21643         Move body of old getstr.c here: this defines MIN_CHUNK and
21644         declares getdelim2, which is renamed from getstr.
21645         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
21646
21647         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
21648         All uses changed.
21649         * lib/linebuffer.h: Likewise.
21650         (readline): Remove backward-compatibility macro.
21651
21652 2003-01-12  Paul Eggert  <eggert@twinsun.com>
21653
21654         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
21655         to avoid collisions with libcurses and libreadline.
21656         * getstr: Remove.
21657         * MODULES.html.sh: Remove getstr.
21658         * modules/getline: Depend on unlocked-io, not getstr.
21659
21660 2003-01-12  Jim Meyering  <jim@meyering.net>
21661
21662         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
21663
21664 2003-01-10  Bruno Haible  <bruno@clisp.org>
21665
21666         * modules/alloca: Change Makefile.am requirements. Simplify Include
21667         requirements. Add lib/alloca_.h to file list.
21668
21669 2003-01-10  Bruno Haible  <bruno@clisp.org>
21670
21671         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
21672
21673 2003-01-10  Bruno Haible  <bruno@clisp.org>
21674
21675         * lib/alloca_.h: New file.
21676         * lib/getdate.y: Unconditionally include alloca.h.
21677         * lib/makepath.c: Likewise.
21678         * lib/setenv.c: Likewise.
21679         * lib/userspec.c: Likewise.
21680
21681 2003-01-09  Karl Berry  <karl@gnu.org>
21682
21683         * MODULES.html.sh: include `dirname $0` in PATH, to find
21684         gnulib-tool.
21685
21686 2003-01-09  Bruno Haible  <bruno@clisp.org>
21687
21688         * modules/stdbool: Change configure.ac, Makefile.am requirements.
21689         Simplify Include requirements. Add lib/stdbool.h.in to file list.
21690
21691 2003-01-09  Bruno Haible  <bruno@clisp.org>
21692
21693         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
21694
21695 2003-01-09  Bruno Haible  <bruno@clisp.org>
21696
21697         * lib/stdbool.h.in: New file.
21698
21699 2003-01-09  Bruno Haible  <bruno@clisp.org>
21700
21701         * gnulib-tool (func_all_modules): Ignore files ending in ~.
21702         * MODULES.html.sh: Likewise.
21703
21704 2003-01-08  Jim Meyering  <jim@meyering.net>
21705
21706         * lib/full-write.c: Undefine and define-away `const' after inclusion
21707         of errno.h, not before.  Suggestion from Bruno Haible.
21708
21709 2003-01-08  Bruno Haible  <bruno@clisp.org>
21710
21711         * modules/full-read: Depend on full-write.
21712
21713 2003-01-08  Bruno Haible  <bruno@clisp.org>
21714
21715         * lib/safe-read.c: Include specification header first, to ensure its
21716         selfcontainedness.
21717         * lib/full-write.c: Likewise.
21718
21719 2003-01-07  Jim Meyering  <jim@meyering.net>
21720
21721         * lib/full-write.c: Rework so that it may serve to define full_read,
21722         too.
21723         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
21724
21725 2003-01-07  Bruno Haible  <bruno@clisp.org>
21726
21727         * lib/strtoimax.c: Include <stdint.h> as an alternative to
21728         <inttypes.h>.
21729         * lib/xstrtol.h: Likewise.
21730         * lib/xstrtoimax.c: Likewise.
21731         * lib/xstrtoumax.c: Likewise.
21732         * lib/human.h: Likewise.
21733
21734         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
21735         on systems that have <inttypes.h> but not <stdint.h>.
21736
21737 2003-01-07  Bruno Haible  <bruno@clisp.org>
21738
21739         * MODULES.html.sh: Add copyright notice.
21740         (missed_files): Omit CVS directory entries.
21741         (func_module): Make it work with sed-3.02.
21742         * MODULES.txt: Remove file.
21743
21744 2003-01-06  Jim Meyering  <jim@meyering.net>
21745
21746         * lib/version-etc.c: Update year in translatable copyright string.
21747
21748 2003-01-03  Karl Berry  <karl@gnu.org>
21749
21750         * config/config.{guess,sub}: update from prep.
21751
21752 2003-01-02  Karl Berry  <karl@gnu.org>
21753
21754         * doc/COPYING.DOC: belatedly updated to 1.2.
21755
21756 2003-01-01  Karl Berry  <karl@gnu.org>
21757
21758         * gnulib-tool (func_verify_module): report module name $module in
21759         error message, not $1.
21760         * gnulib-tool (create-testdir): don't complain if destdir couldn't
21761         be created, only if it doesn't exist.
21762         * gnulib-tool (last_checkin_date): don't expand the $Date here.
21763
21764 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21765
21766         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
21767
21768 2002-12-31  Paul Eggert  <eggert@twinsun.com>
21769
21770         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
21771         memcmp if strcoll doesn't work.
21772
21773 2002-12-31  Bruno Haible  <bruno@clisp.org>
21774
21775         * lib/utime.c (utime_null): No need to call ftruncate if the file was
21776         nonempty.
21777
21778 2002-12-31  Bruno Haible  <bruno@clisp.org>
21779
21780         * lib/memcoll.c (STRCOLL): New macro.
21781         (memcoll): Use it.
21782
21783 2002-12-31  Bruno Haible  <bruno@clisp.org>
21784
21785         * lib/localcharset.h: New file.
21786         * lib/localcharset.c: Include it.
21787         * lib/unicodeio.c: Likewise.
21788
21789 2002-12-31  Bruno Haible  <bruno@clisp.org>
21790
21791         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
21792         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
21793
21794 2002-12-31  Bruno Haible  <bruno@clisp.org>
21795
21796         * lib/getline.h: Include <stddef.h>, for size_t.
21797
21798         * lib/unicodeio.h: Include <stddef.h>, for size_t.
21799         * lib/unicodeio.c: Don't include <stddef.h>.
21800
21801 2002-12-31  Bruno Haible  <bruno@clisp.org>
21802
21803         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
21804         HAVE_TM_ZONE.
21805
21806 2002-12-24  Karl Berry  <karl@gnu.org>
21807
21808         * config/config.guess: update from prep.
21809
21810 2002-12-24  Bruno Haible  <bruno@clisp.org>
21811
21812         General infrasructure.
21813         * m4/README: Rewritten.
21814         * m4/onceonly.m4: New file.
21815         * m4/onceonly_2_57.m4: New file.
21816
21817         Module atexit.
21818         * m4/atexit.m4: New file.
21819
21820         Module strtod.
21821         * m4/strtod.m4: New file.
21822
21823         Module strtol.
21824         * m4/strtol.m4: New file.
21825
21826         Module strtoul.
21827         * m4/strtoul.m4: New file.
21828
21829         Module memchr.
21830         * m4/memchr.m4: New file.
21831
21832         Module memcmp.
21833         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
21834         (jm_FUNC_MEMCMP): Invoke it.
21835
21836         Module memcpy.
21837         * m4/memcpy.m4: New file.
21838
21839         Module memmove.
21840         * m4/memmove.m4: New file.
21841
21842         Module memset.
21843         * m4/memset.m4: New file.
21844
21845         Module strcspn.
21846         * m4/strcspn.m4: New file.
21847
21848         Module strpbrk.
21849         * m4/strpbrk.m4: New file.
21850
21851         Module strstr.
21852         * m4/strstr.m4: New file.
21853
21854         Module strerror.
21855         * m4/strerror.m4: New file.
21856
21857         Module mktime.
21858         * m4/mktime.m4: Renamed from jm-mktime.m4.
21859         (gl_PREREQ_MKTIME): New macro.
21860         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
21861
21862         Module malloc.
21863         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
21864         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
21865         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
21866
21867         Module realloc.
21868         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
21869         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
21870         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
21871
21872         Module strftime.
21873         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
21874         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
21875         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
21876         gl_TM_GMTOFF.
21877         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
21878
21879         Module xalloc.
21880         * m4/xalloc.m4: New file.
21881
21882         Module alloca.
21883         * m4/alloca.m4: New file.
21884
21885         Module putenv.
21886         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
21887         (jm_FUNC_PUTENV): Invoke it.
21888
21889         Module setenv.
21890         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
21891         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
21892         when invoked twice.
21893         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
21894         gt_FUNC_SETENV.
21895
21896         Module memrchr.
21897         * m4/memrchr.m4: New file.
21898
21899         Module stpcpy.
21900         * m4/stpcpy.m4: New file.
21901
21902         Module strcase.
21903         * m4/strcase.m4: New file.
21904
21905         Module strdup.
21906         * m4/strdup.m4: New file.
21907
21908         Module strnlen.
21909         * m4/strnlen.m4: New file.
21910
21911         Module strndup.
21912         * m4/strndup.m4: New file.
21913
21914         Module xstrtod.
21915         * m4/xstrtod.m4: New file.
21916
21917         Module xstrtol.
21918         * m4/xstrtol.m4: New file.
21919
21920         Module getdate.
21921         * m4/getdate.m4: New file.
21922
21923         Module unlocked-io.
21924         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
21925         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
21926         * m4/jm-glibc-io.m4n: Remove file.
21927
21928         Module long-options.
21929         * m4/long-options.m4: New file.
21930
21931         Module md5.
21932         * m4/md5.m4: New file.
21933
21934         Module sha.
21935         * m4/sha.m4: New file.
21936
21937         Module getstr.
21938         * m4/getstr.m4: New file.
21939
21940         Module getline.
21941         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
21942         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
21943         <sys/types.h>, for size_t. Use the function name gnu_getline, not
21944         simply getline. Infoke gl_PREREQ_GETLINE.
21945
21946         Module obstack.
21947         * m4/obstack.m4: New file.
21948
21949         Module hash.
21950         * m4/hash.m4: New file.
21951
21952         Module readtokens.
21953         * m4/readtokens.m4: New file.
21954
21955         Module strverscmp.
21956         * m4/strverscmp.m4: New file.
21957
21958         Module stdbool.
21959         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
21960         OSF/1.
21961
21962         Module strtoll.
21963         * m4/strtoll.m4: New file.
21964
21965         Module strtoull.
21966         * m4/strtoull.m4: New file.
21967
21968         Module strtoimax.
21969         * m4/strtoimax.m4: New file.
21970
21971         Module strtoumax.
21972         * m4/strtoumax.m4: New file.
21973
21974         Module xstrtoimax.
21975         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
21976         jm_AC_PREREQ_XSTRTOIMAX.
21977         Moved the strtol prerequisites to strtol.m4.
21978         Moved the strtoll prerequisites to strtoll.m4.
21979         Moved the strtoimax prerequisites to strtoimax.m4.
21980
21981         Module xstrtoumax.
21982         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
21983         jm_AC_PREREQ_XSTRTOUMAX.
21984         Moved the strtoul prerequisites to strtoul.m4.
21985         Moved the strtoull prerequisites to strtoull.m4.
21986         Moved the strtoumax prerequisites to strtoumax.m4.
21987
21988         Module chown.
21989         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
21990         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
21991
21992         Module dup2.
21993         * m4/dup2.m4: New file.
21994
21995         Module ftruncate.
21996         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
21997         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
21998
21999         Module getgroups.
22000         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
22001         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
22002
22003         Module gettimeofday.
22004         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
22005         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
22006         gl_PREREQ_GETTIMEOFDAY.
22007
22008         Module mkdir.
22009         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
22010         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
22011
22012         Module mkstemp.
22013         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
22014         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
22015         jm_AC_TYPE_UINTMAX_T.
22016         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
22017
22018         Module stat.
22019         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
22020         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
22021
22022         Module lstat.
22023         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
22024         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
22025
22026         Module timespec.
22027         * m4/timespec.m4 (gl_TIMESPEC): New macro.
22028         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
22029         * m4/st_mtim.m4: Indentation.
22030
22031         Module nanosleep.
22032         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
22033         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
22034         gl_PREREQ_NANOSLEEP.
22035
22036         Module regex.
22037         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
22038         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
22039         (gl_REGEX): New macro.
22040
22041         Module rename.
22042         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
22043         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
22044
22045         Module rmdir.
22046         * m4/rmdir.m4: New file.
22047
22048         Module utime.
22049         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
22050         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
22051         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
22052
22053         Module dirname.
22054         * m4/dirname.m4: New file.
22055
22056         Module getopt.
22057         * m4/getopt.m4: New file.
22058
22059         Module unistd-safer.
22060         * m4/unistd-safer.m4: New file.
22061
22062         Module fnmatch.
22063         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
22064         declaration.
22065         (gl_PREREQ_FNMATCH_EXTRA): New macro.
22066         (gl_FUNC_FNMATCH_POSIX): New macro.
22067         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
22068         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
22069         simply fnmatch.
22070
22071         Module exclude.
22072         * m4/exclude.m4: New file.
22073
22074         Module human.
22075         * m4/human.m4: New file.
22076
22077         Module acl.
22078         * m4/acl.m4: Nop.
22079
22080         Module backupfile.
22081         * m4/backupfile.m4: New file.
22082         * m4/d-ino.m4: Indentation.
22083
22084         Module fsusage.
22085         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
22086         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
22087         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
22088
22089         Module dirfd.
22090         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
22091         requirements.
22092
22093         Module euidaccess.
22094         * m4/euidaccess.m4: New file.
22095
22096         Module file-type.
22097         * m4/file-type.m4: New file.
22098
22099         Module fileblocks.
22100         * m4/fileblocks.m4: New file.
22101
22102         Module filemode.
22103         * m4/filemode.m4: New file.
22104
22105         Module isdir.
22106         * m4/isdir.m4: New file.
22107
22108         Module lchown.
22109         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
22110         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
22111
22112         Module makepath.
22113         * m4/makepath.m4: New file.
22114
22115         Module modechange.
22116         * m4/modechange.m4: New file.
22117
22118         Module mountlist.
22119         * m4/mountlist.m4: New file.
22120         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
22121         Indentation.
22122
22123         Module path-concat.
22124         * m4/path-concat.m4: New file.
22125
22126         Module pathmax.
22127         * m4/pathmax.m4: New file.
22128
22129         Module same.
22130         * m4/same.m4: New file.
22131
22132         Module save-cwd.
22133         * m4/save-cwd.m4: New file.
22134
22135         Module savedir.
22136         * m4/savedir.m4: New file.
22137
22138         Module xgetcwd.
22139         * m4/xgetcwd.m4: New file.
22140         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
22141
22142         Module xreadlink.
22143         * m4/xreadlink.m4: New file.
22144
22145         Module safe-read.
22146         * m4/safe-read.m4: New file.
22147
22148         Module safe-write.
22149         * m4/safe-write.m4: New file.
22150
22151         Module closeout.
22152         * m4/closeout.m4: New file.
22153
22154         Module stdio-safer.
22155         * m4/stdio-safer.m4: New file.
22156
22157         Module getpass.
22158         * m4/getpass.m4: New file.
22159
22160         Module getugroups.
22161         * m4/getugroups.m4: New file.
22162
22163         Module group-member.
22164         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
22165         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
22166
22167         Module idcache.
22168         * m4/idcache.m4: New file.
22169
22170         Module userspec.
22171         * m4/userspec.m4: New file.
22172
22173         Module gettime.
22174         * m4/clock_time.m4: New file.
22175         * m4/gettime.m4: New file.
22176
22177         Module settime.
22178         * m4/settime.m4: New file.
22179
22180         Module posixtm.
22181         * m4/posixtm.m4: New file.
22182
22183         Module gethostname.
22184         * m4/gethostname.m4: New file.
22185
22186         Module canon-host.
22187         * m4/canon-host.m4: New file.
22188
22189         Module gettext.
22190         * m4/codeset.m4: New file, from gettext-0.11.5.
22191         * m4/gettext.m4: New file, from gettext-0.11.5.
22192         * m4/glibc21.m4: New file, from gettext-0.11.5.
22193         * m4/iconv.m4: New file, from gettext-0.11.5.
22194         * m4/intdiv0.m4: New file, from gettext-0.11.5.
22195         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
22196         * m4/inttypes.m4: New file, from gettext-0.11.5.
22197         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
22198         * m4/isc-posix.m4: New file, from gettext-0.11.5.
22199         * m4/lcmessage.m4: New file, from gettext-0.11.5.
22200         * m4/lib-ld.m4: New file, from gettext-0.11.5.
22201         * m4/lib-link.m4: New file, from gettext-0.11.5.
22202         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
22203         * m4/progtest.m4: New file, from gettext-0.11.5.
22204         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
22205         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
22206         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
22207
22208         Module localcharset.
22209         * m4/localcharset.m4: New file.
22210
22211         Module hard-locale.
22212         * m4/hard-locale.m4: New file.
22213
22214         Module mbswidth.
22215         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
22216         onceonly macros.
22217         * m4/mbrtowc.m4: Add comment.
22218
22219         Module memcasecmp.
22220         * m4/memcasecmp.m4: New file.
22221
22222         Module memcoll.
22223         * m4/memcoll.m4: New file.
22224
22225         Module unicodeio.
22226         * m4/unicodeio.m4: New file.
22227
22228         Module rpmatch.
22229         * m4/rpmatch.m4: New file.
22230
22231         Module yesno.
22232         * m4/yesno.m4: New file.
22233
22234         Module exitfail.
22235         * m4/exitfail.m4: New file.
22236
22237         Module c-stack.
22238         * m4/c-stack.m4 (gl_C_STACK): New macro.
22239         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
22240
22241         Module error.
22242         * m4/error.m4 (gl_ERROR): New macro.
22243         (jm_PREREQ_ERROR): Use onceonly macros.
22244
22245         Module fatal.
22246         * m4/fatal.m4: New file.
22247
22248         Module getloadavg.
22249         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
22250         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
22251
22252         Module getpagesize.
22253         * m4/getpagesize.m4: New file.
22254
22255         Module getusershell.
22256         * m4/getusershell.m4: New file.
22257
22258         Module physmem.
22259         * m4/physmem.m4: New file.
22260
22261         Module posixver.
22262         * m4/posixver.m4: New file.
22263
22264         Module quotearg.
22265         * m4/quotearg.m4: New file.
22266
22267         Module quote.
22268         * m4/quote.m4: New file.
22269
22270         Module readutmp.
22271         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
22272
22273         Module sig2str.
22274         * m4/sig2str.m4: New file.
22275
22276         Other.
22277         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
22278         ulonglong.m4.
22279         * m4/intmax_t.m4: New file.
22280         * m4/d-type.m4: Indentation.
22281         * m4/jm-macros.m4: Update.
22282         * m4/prereq.m4 (jm_PREREQ): Update.
22283         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
22284         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
22285         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
22286         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
22287         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
22288         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
22289         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
22290         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
22291         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
22292         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
22293         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
22294         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
22295         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
22296         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
22297         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
22298         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
22299         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
22300         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
22301         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
22302
22303 2002-12-24  Bruno Haible  <bruno@clisp.org>
22304
22305         * MODULES.txt: Update according to m4/ changes.
22306
22307         Module gettext.
22308         * config.rpath: New file, from gettext-0.11.5.
22309
22310         * modules/*: New module descriptions.
22311         * gnulib-tool: New file.
22312         * MODULES.html.sh: New file.
22313
22314 2002-12-21  Karl Berry  <karl@gnu.org>
22315
22316         * doc/fdl.texi: update to version 1.2.
22317
22318 2002-12-19  Karl Berry  <karl@gnu.org>
22319
22320         * config/config.guess: update from prep.
22321
22322 2002-12-18  Bruno Haible  <bruno@clisp.org>
22323
22324         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
22325         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
22326
22327 2002-12-17  Bruno Haible  <bruno@clisp.org>
22328
22329         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
22330         stdlib.h, string.h.
22331
22332 2002-12-17  Bruno Haible  <bruno@clisp.org>
22333
22334         * lib/canon-host.c (strdup): Remove unused declaration.
22335
22336         * lib/fsusage.c: Include full_read.h.
22337         (get_fs_usage): Use full_read instead of safe_read.
22338
22339         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
22340
22341 2002-12-12  Karl Berry  <karl@gnu.org>
22342
22343         * config/config.guess: update from prep.
22344
22345 2002-12-11  Bruno Haible  <bruno@clisp.org>
22346
22347         * m4/setenv.m4: New file, from gettext-0.11.5.
22348
22349 2002-12-11  Bruno Haible  <bruno@clisp.org>
22350
22351         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
22352         not unsetenv().
22353         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
22354         modifications:
22355
22356         2002-12-11  Bruno Haible  <bruno@clisp.org>
22357
22358                 * setenv.c (alloca): Fall back to malloc.
22359                 (freea): New macro.
22360                 (setenv): Use freea() to free memory allocated with alloca().
22361
22362         2002-11-13  Bruno Haible  <bruno@clisp.org>
22363
22364                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
22365                 function declarations.
22366                 * unsetenv.c (unsetenv): Likewise.
22367
22368         2002-03-04  Bruno Haible  <bruno@clisp.org>
22369
22370                 Portability to AIX 4.3.3.
22371                 * unsetenv.c: New file, extracted from setenv.c.
22372                 * setenv.c: Move the unsetenv() function to unsetenv.c.
22373
22374         2001-12-20  Bruno Haible  <bruno@clisp.org>
22375
22376                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
22377                 use malloc instead. For SunOS 4.
22378
22379         2001-12-11  Bruno Haible  <bruno@clisp.org>
22380
22381                 * setenv.c: Declare alloca.
22382                 (compar_fn_t): New typedef.
22383                 (KNOWN_VALUE, STORE_VALUE): Use it.
22384
22385         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
22386         setenv.h.
22387
22388 2002-12-10  Paul Eggert  <eggert@twinsun.com>
22389
22390         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
22391         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
22392         Choose values that are less likely to collide with system fnmatch
22393         options.
22394         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
22395         defined (e.g., a pure POSIX system).
22396         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
22397         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
22398
22399 2002-12-06  Paul Eggert  <eggert@twinsun.com>
22400
22401         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
22402         a pain in practice to deal with generated m4 files.  This change
22403         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
22404
22405         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
22406         and jm-glibc-io.m4, as they are no longer a special case.
22407         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
22408         kludge and the auto-generation stuff.  Check only whether the
22409         functions are declared, not whether they exist, since older hosts
22410         that don't declare the functions can't use the optimization anyway.
22411
22412 2002-12-06  Jim Meyering  <jim@meyering.net>
22413
22414         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
22415
22416         Merge in changes from libc's misc/error.c, in preparation
22417         for the merge of gnulib's changes back into libc.
22418
22419         * lib/error.c (_): Define only if not already defined.
22420         Move definition to follow all #include directives.
22421         Include unlocked-io.h only if !_LIBC.
22422         [_LIBC]: Include <libio/libioP.h>.
22423         [USE_IN_LIBIO]: Include <libio/iolibio.h>
22424         (fflush): Tweak definition to use INTUSE.
22425         (putc): Define.
22426
22427 2002-12-05  Paul Eggert  <eggert@twinsun.com>
22428
22429         * lib/alloca.c [defined emacs]: Include "lisp.h".
22430         (xalloc_die) [defined emacs]: New macro.
22431         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
22432         [! defined emacs]: Include <xalloc.h>.
22433         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
22434         (pointer): Typedef to POINTER_TYPE *.
22435         (malloc): Remove decl; we now always use xmalloc.
22436         (alloca): Use old-style definition, since Emacs needs this.
22437         Check for arithmetic overflow when computing combined size.
22438
22439 2002-12-04  Paul Eggert  <eggert@twinsun.com>
22440
22441         Do not generate unlocked-io.h automatically, since it's easier to
22442         maintain it by hand.
22443
22444         * lib/unlocked-io.h: New file, from GNU diffutils,
22445         but with proper copyright notice and attribution.
22446         * lib/gen-uio: Remove.
22447         * lib/Makefile.am: Add copyright notice.
22448         (libfetish_a_SOURCES): Add unlocked-io.h.
22449         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
22450         (DISTCLEANFILES, io_functions): Remove macros.
22451         (EXTRA_DIST): Remove gen_uio.
22452         (unlocked-io.h): Remove rule.
22453
22454 2002-12-04  Jim Meyering  <jim@meyering.net>
22455
22456         Reflect the fact that stat.c and lstat.c are no longer generated.
22457         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
22458         (DISTCLEANFILES): Likewise.
22459         (EXTRA_DIST): Likewise.
22460         (all_local): Don't depend on stat.c or lstat.c.
22461         (stat.c, lstat.c): Remove rules.
22462         (EXTRA_DIST): Remove xstat.in.
22463
22464         * lib/xstat.in: Remove file.  Contents moved into stat.c.
22465         * lib/stat.c: New file.  Contents mostly from xstat.in.
22466         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
22467         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
22468
22469         * lib/safe-read.c: Rework so that it may serve to define safe_write,
22470         too.
22471         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
22472
22473 2002-12-03  Jim Meyering  <jim@meyering.net>
22474
22475         * lib/safe-read.c, safe-write.c: Change variable names and comments,
22476         but not semantics, to minimize the differences between these two files.
22477         (safe_read): Change comment to mention SAFE_READ_ERROR.
22478
22479         * lib/safe-read.c (IS_EINTR): Define.
22480         (safe_read): Use IS_EINTR in place of in-function cpp directives.
22481
22482 2002-12-02  Jim Meyering  <jim@meyering.net>
22483
22484         * lib/safe-read.c (EINTR): Define.
22485         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
22486         (INT_MAX): Provide fallback.
22487         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
22488
22489         * lib/safe-read.h (SAFE_READ_ERROR): Define.
22490
22491 2002-12-02  Bruno Haible  <bruno@clisp.org>
22492
22493         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
22494         Define, taken from safe-read.c.
22495         (INT_MAX): Provide fallback.
22496         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
22497         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
22498
22499         * lib/safe-read.c (EINTR): Remove definition.
22500         (safe_read): Don't use EINTR if it is absent.
22501
22502 2002-12-01  Jim Meyering  <jim@meyering.net>
22503
22504         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
22505         zero.
22506         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
22507
22508 2002-11-27  Paul Eggert  <eggert@twinsun.com>
22509
22510         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
22511         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
22512         with `if (! (value < limit)) abort ();', for readability.
22513
22514 2002-11-26  Karl Berry  <karl@gnu.org>
22515
22516         * lib/strdup.c: copy from libc again, with jim's ok.
22517         * lib/.cppi-disable: re-add strdup.c
22518
22519 2002-11-25  Karl Berry  <karl@gnu.org>
22520
22521         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
22522         instead of "strtol.c".
22523
22524 2002-11-25  Karl Berry  <karl@gnu.org>
22525
22526         * config/install-sh: update from automake for variable quoting, $0 in
22527         error msgs, etc.
22528
22529         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
22530         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
22531         entry.
22532
22533 2002-11-25  Jim Meyering  <jim@meyering.net>
22534
22535         * lib/mktime.c: Sync from libc, now that it has the latest fix.
22536
22537 2002-11-24  Karl Berry  <karl@gnu.org>
22538
22539         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
22540         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
22541
22542 2002-11-24  Jim Meyering  <jim@meyering.net>
22543
22544         Update from coreutils:
22545
22546         * lib/mktime.c: Merge in changes from libc.
22547
22548         Avoid a link-time failure on some Linux systems.
22549         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
22550         (otherwise).
22551         (__mon_yday): Declare with the STATIC attribute.
22552         (__mktime_internal): Likewise.
22553         Based on a report from Greg Schafer.
22554
22555 2002-11-23  Jim Meyering  <jim@meyering.net>
22556
22557         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
22558         Use `unsigned', not `int', as type of index.
22559
22560         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
22561
22562         * lib/fsusage.c: Remove unneeded parentheses around operands of
22563         `defined'.
22564
22565 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22566
22567         * lib/quotearg.h: Allow multiple inclusion by surrounding with
22568         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
22569         so that we can be included first.
22570         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
22571         * lib/quotearg.c: Include quotearg.h immediately after config.h.
22572         No need to include stddef.h or sys/types.h any more.
22573         Surround local include files with "", not "<>".
22574         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
22575         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
22576         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
22577         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
22578         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
22579         (ISPRINT): Remove; no longer needed now that we assume C89.
22580
22581         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
22582         Preserve errno.
22583
22584         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
22585         quotearg_char): Use SIZE_MAX rather than
22586         (size_t) -1 when we are talking about "infinity".
22587
22588         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
22589
22590 2002-11-22  Paul Eggert  <eggert@twinsun.com>
22591
22592         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
22593         hint that one should use `if (! x) abort ();' rather than `assert
22594         (x);', and anyway it's one less thing to worry about configuring.
22595         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
22596         hash_rehash, hash_insert): Use abort rather than assert.
22597
22598 2002-11-22  Bruno Haible  <bruno@clisp.org>
22599
22600         * lib/safe-read.h: Assume C89. Add comments.
22601         (safe_read): Change return type to size_t.
22602         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
22603         byte counts > SSIZE_MAX correctly.
22604         * lib/safe-write.h: New file.
22605         * lib/safe-write.c: New file.
22606         * lib/full-read.h: New file.
22607         * lib/full-read.c: New file.
22608         * lib/full-write.h: Assume C89. Add comments.
22609         * lib/full-write.c: Include safe-write.h.
22610         (full_write): Rewritten to use safe_write.
22611         Suggested by Jim Meyering and Paul Eggert.
22612
22613 2002-11-21  Jim Meyering  <jim@meyering.net>
22614
22615         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
22616
22617         Merge in changes from the coreutils.
22618
22619         2002-09-25  Paul Eggert  <eggert@twinsun.com>
22620         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
22621         <stdint.h>.
22622         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
22623         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
22624         int.  Work more efficiently if X is the same width as uintmax_t.
22625         Do not compare X to -1, to avoid bogus compiler warning.
22626         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
22627         Don't assume that f_frsize and f_bsize are the same type.
22628
22629         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
22630         warning on FreeBSD.
22631
22632         * lib/makepath.c (make_path): Restore umask *before* creating the final
22633         component.
22634         (make_path): Minor reformatting.
22635
22636         * lib/xmalloc.c: Adjust to work with new autoconf macros,
22637         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
22638         HAVE_MALLOC/HAVE_REALLOC.
22639
22640         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
22641         dummy ones.  At least on GNU/Linux systems, `auto' means something
22642         else.
22643         From Michael Stone.
22644
22645 2002-11-21  Bruno Haible  <bruno@clisp.org>
22646
22647         Remove case insensitive option matching.
22648         * lib/argmatch.h (argcasematch): Remove declaration.
22649         (ARGCASEMATCH): Remove macro.
22650         (__xargmatch_internal): Remove case_sensitive argument.
22651         (XARGMATCH): Update.
22652         (XARGCASEMATCH): Remove macro.
22653         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
22654         case_sensitive argument.
22655         (argcasematch): Remove function.
22656         (__xargmatch_internal): Remove case_sensitive argument.
22657         (main): Use XARGMATCH instead of XARGCASEMATCH.
22658
22659         * lib/xmalloc.c: Change compile-time error message. Add comment about
22660         required autoconf version.
22661
22662 2002-11-20  Paul Eggert  <eggert@twinsun.com>
22663
22664         Merge argmatch cleanups from Bison.  Assume C89.
22665
22666         * lib/argmatch.c: Include config.h here, not in argmatch.h.
22667         Include stdlib.h, for EXIT_FAILURE.
22668         Always include <string.h>, since we assume C89.
22669         (EXIT_FAILURE): Remove pre-C89 bug workaround.
22670         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
22671         Include <stddef.h> instead, since it's all we need for size_t.
22672         (PARAMS): Remove.  All uses removed.
22673         (ARRAY_CARDINALITY): Do not bother to #undef.
22674         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
22675         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22676         Remove unnecessary parentheses.
22677         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
22678         Insert necessary parentheses.
22679         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
22680         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
22681
22682 2002-11-19  Bruno Haible  <bruno@clisp.org>
22683
22684         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
22685         * lib/mbswidth.h: Include <stddef.h>, for size_t.
22686
22687         * lib/mbswidth.h (PARAMS): Remove macro.
22688         (mbswidth, mbsnwidth): Use ANSI C function declarations.
22689         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
22690
22691         * lib/gcd.h (PARAMS): Remove macro.
22692         (gcd): Use ANSI C function declarations.
22693         * lib/gcd.c (gcd): Likewise.
22694
22695 2002-11-15  Bruno Haible  <bruno@clisp.org>
22696
22697         * lib/strcspn.c: Include <stddef.h>.
22698         (strcspn): Use ANSI C function declaration. Change return type to
22699         size_t. Use NULL.
22700         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
22701         (strpbrk): Use NULL.
22702         * lib/strpbrk.h (PARAMS): Remove macro.
22703         (strpbrk): Use ANSI C function declaration.
22704         * lib/strstr.c: Don't include <sys/types.h>.
22705         * lib/strstr.h (PARAMS): Remove macro.
22706         (strstr): Use ANSI C function declarations.
22707
22708 2002-11-14  Karl Berry  <karl@gnu.org>
22709
22710         * config/mkinstalldirs: `do' on separate line, instead of
22711         `for var; do'.
22712
22713 2002-11-06  Bruno Haible  <bruno@clisp.org>
22714
22715         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
22716         * lib/gcd.c (gcd): Likewise.
22717
22718 2002-11-05  Bruno Haible  <bruno@clisp.org>
22719
22720         * lib/gcd.h: New file, from gettext-0.11.5.
22721         * lib/gcd.c: New file, from gettext-0.11.5.
22722
22723 2002-11-05  Bruno Haible  <bruno@clisp.org>
22724
22725         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22726         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22727         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22728         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
22729
22730         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
22731         <libintl.h>.
22732         * lib/makepath.c: Include gettext.h instead of <locale.h> and
22733         <libintl.h>.
22734
22735         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
22736         * lib/human.c: Include gettext.h instead of <libintl.h>.
22737         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
22738         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
22739         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
22740         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
22741         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
22742         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
22743         (textdomain): Remove definition.
22744         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
22745
22746         * lib/long-options.c: Remove include of <libintl.h> and definition of
22747         _.
22748         * lib/same.c: Remove include of <libintl.h> and definition of _.
22749
22750 2002-11-04  Owen Taylor  <otaylor@redhat.com>
22751
22752         * lib/config.charset: A few additions for Solaris.
22753
22754 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22755
22756         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
22757         * lib/localcharset.c (locale_charset): Declare as extern "C".
22758
22759 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
22760
22761         * lib/config.charset: msdos in uk_UA uses CP1125.
22762
22763 2002-11-04  Bruno Haible  <bruno@clisp.org>
22764
22765         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
22766         * lib/strcase.h: New file, from GNU gettext-0.11.5.
22767         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
22768         * lib/strstr.h: New file, from GNU gettext-0.11.5.
22769         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
22770
22771 2002-11-04  Bruno Haible  <bruno@clisp.org>
22772
22773         * lib/localcharset.c (locale_charset): Don't return an empty string.
22774
22775 2002-11-04  Bruno Haible  <bruno@clisp.org>
22776
22777         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
22778         aliases.
22779
22780 2002-11-04  Bruno Haible  <bruno@clisp.org>
22781
22782         * lib/config.charset: Update for newest glibc. Add canonical names
22783         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
22784
22785 2002-11-04  Bruno Haible  <bruno@clisp.org>
22786
22787         * lib/config.charset: Add support for NetBSD.
22788
22789 2002-11-04  Bruno Haible  <bruno@clisp.org>
22790
22791         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
22792
22793 2002-11-01  Bruno Haible  <bruno@clisp.org>
22794
22795         * configure.in: Add AC_CONFIG_AUX_DIR call.
22796         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
22797         test/Makefile.
22798         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
22799
22800 2002-09-28  Karl Berry  <karl@gnu.org>
22801
22802         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
22803         installed automake until the next release, since changes have been
22804         made.
22805
22806 2002-09-25  Karl Berry  <karl@gnu.org>
22807
22808         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
22809         * lib/getopt*: copy from libc/posix.
22810         * lib/gettext.h: copy from gettext.
22811         * lib/.cppi-disable: add strdup.c, gettext.h.
22812
22813 2002-09-25  Karl Berry  <karl@gnu.org>
22814
22815         * config/srclist.txt: enable gettext.h check.
22816         * config/config.{guess,sub}: update from prep.
22817         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
22818                 from automake 1.6.3.
22819         See srclist*.
22820
22821 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
22822
22823         * regex.c (PATFETCH): Remove the translating fetch.
22824         (PATFETCH_RAW): Rename to PATFETCH.
22825         (set_image_of_range): New fun.
22826         (SET_RANGE_TABLE_WORK_AREA): Use it.
22827         (regex_compile): Don't translate the pattern chars so eagerly.
22828         Only do it when inserting an `exactn' bytecode or when handling
22829         a char-range.
22830         (mutually_exclusive_p): Avoid empty statement.
22831
22832 2002-07-06  Jim Meyering  <meyering@lucent.com>
22833
22834         * m4/README: Don't mention Makefile.am.in.
22835         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
22836
22837 2002-07-01  Jim Meyering  <meyering@lucent.com>
22838
22839         * lib/c-stack.c: Include sys/time.h.
22840         From Volker Borchert.
22841
22842 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22843
22844         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
22845
22846 2002-06-26  Paul Eggert  <eggert@twinsun.com>
22847
22848         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
22849         New macro.  Use it uniformly instead of
22850         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
22851         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
22852         reported by Vin Shelton.
22853
22854 2002-06-22  Paul Eggert  <eggert@twinsun.com>
22855
22856         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
22857         Do not assume SA_SIGINFO behavior.
22858         Bug reported by Jim Meyering on NetBSD 1.5.2.
22859
22860 2002-06-22  Jim Meyering  <meyering@lucent.com>
22861
22862         * m4/c-stack.m4: New file, from diffutils-2.8.2.
22863         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
22864
22865         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
22866         now that configure.ac uses AC_GNU_SOURCE.
22867         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
22868         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
22869
22870         Update to latest tools.  Suggestions from Paul Eggert.
22871         * m4/stdbool.m4: New file, from diffutils-2.8.2.
22872         * m4/gnu-source.m4: Update from diffutils-2.8.2.
22873         * m4/fnmatch.m4: Likewise.
22874         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
22875         to AC_HEADER_STDBOOL
22876
22877 2002-06-22  Jim Meyering  <meyering@lucent.com>
22878
22879         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
22880         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
22881
22882 2002-06-22  Jim Meyering  <meyering@lucent.com>
22883
22884         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
22885
22886         * lib/exitfail.c, exitfail.h: Likewise.
22887         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
22888
22889         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
22890         of fnmatch.h.
22891         (EXTRA_DIST): Add fnmatch_loop.c.
22892         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
22893
22894         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
22895         * lib/fnmatch.c: Update from diffutils-2.8.2.
22896         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
22897         * lib/fnmatch.h: Remove file.
22898
22899 2002-06-21  Jim Meyering  <meyering@lucent.com>
22900
22901         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
22902         * m4/mbrtowc.m4: Likewise.
22903
22904         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
22905         * m4/mbswidth.m4: Reflect name change:
22906         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
22907         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
22908
22909         * m4/lib-link.m4: Update from gettext-0.11.2.
22910         * m4/gettext.m4: Likewise.
22911
22912         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
22913         From Alfred M. Szmidt.
22914
22915 2002-06-18  Paul Eggert  <eggert@twinsun.com>
22916
22917         * lib/file-type.h: Report an error if neither S_ISREG nor
22918         S_IFREG is defined, instead of using a test specific to glibc
22919         2.2.  This should be safe, since POSIX requires S_ISREG and
22920         Unix Version 7 had S_IFREG.  We don't need to check for
22921         <sys/types.h> since we don't use any symbols that it defines.
22922
22923 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
22924
22925         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
22926         $@-t, so that each temporary file name is unique and valid in the first
22927         8 characters, for operation under DOS.
22928
22929 2002-06-15  Paul Eggert  <eggert@twinsun.com>
22930
22931         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
22932
22933 2002-06-15  Jim Meyering  <meyering@lucent.com>
22934
22935         Work even with DJGPP 2.03, which lacks support for symlinks.
22936         From Richard Dawe.
22937         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
22938         is defined.
22939         * lib/lchown.c (S_ISLNK): Likewise.
22940
22941 2002-06-15  Jim Meyering  <meyering@lucent.com>
22942
22943         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
22944         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
22945         have been included before this file.
22946
22947 2002-06-14  Jim Meyering  <meyering@lucent.com>
22948
22949         * lib/file-type.h: Use the version from diffutils-2.8.2.
22950         * lib/file-type.c: Likewise.
22951
22952 2002-06-07  Jim Meyering  <meyering@lucent.com>
22953
22954         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
22955         They're needed at least for NetBSD 1.5.2.
22956         ($statxfs_includes): Include those same headers.
22957         ($statxfs_includes): Include sys/vfs.h if available.
22958         ($statxfs_includes): Likewise for sys/statvfs.h.
22959         Check for the following members in both structs statfs and statvfs:
22960         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
22961
22962 2002-06-01  Jim Meyering  <meyering@lucent.com>
22963
22964         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
22965         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
22966
22967 2002-05-28  Jim Meyering  <meyering@lucent.com>
22968
22969         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
22970         Reported by Volker Borchert.
22971
22972 2002-05-27  Jim Meyering  <meyering@lucent.com>
22973
22974         Fix a problem seen only on nonconforming systems whereby ls.c's
22975         use of localtime, and then of gettimeofday would cause trouble:
22976         the localtime call used to initialize rpl_gettimeofday's save
22977         mechanism would clobber ls's current local time information so
22978         that in any long listing the first file would always be listed
22979         with date 1970-01-01.  Analysis by Volker Borchert.
22980
22981         * lib/gettimeofday.c (localtime): Undefine.
22982         (rpl_localtime): New function.
22983
22984 2002-05-27  Jim Meyering  <meyering@lucent.com>
22985
22986         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
22987         localtime.
22988
22989         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
22990         use the replacement function; it wouldn't resolve at link time.
22991         Reported by Volker Borchert.
22992
22993 2002-05-22  Jim Meyering  <meyering@lucent.com>
22994
22995         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
22996         file-type.h.
22997         * lib/file-type.h: New file.
22998         * lib/file-type.c (file_type): New file/function.  Extracted from
22999         diffutils.
23000
23001 2002-04-30  Jim Meyering  <meyering@lucent.com>
23002
23003         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
23004
23005 2002-04-29  Paul Eggert  <eggert@twinsun.com>
23006
23007         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
23008
23009 2002-04-29  Paul Eggert  <eggert@twinsun.com>
23010
23011         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
23012         Do not check for alloca.h (no longer used) or stdbool.h (was never
23013         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
23014
23015 2002-04-29  Paul Eggert  <eggert@twinsun.com>
23016
23017         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
23018
23019 2002-04-29  Jim Meyering  <meyering@lucent.com>
23020
23021         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
23022         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
23023         Use AC_FUNC_STRNLEN here instead.
23024
23025         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
23026         With autoconf-2.53a, it's part of AC_PROG_CC.
23027
23028 2002-04-28  Paul Eggert  <eggert@twinsun.com>
23029
23030         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
23031         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
23032
23033 2002-04-28  Paul Eggert  <eggert@twinsun.com>
23034
23035         * lib/sig2str.h, lib/sig2str.c: New files.
23036         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
23037
23038 2002-04-28  Paul Eggert  <eggert@twinsun.com>
23039
23040         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
23041         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
23042         of 127, since 64 is the largest conceivable number for ancient
23043         nonstandard hosts.
23044         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
23045
23046 2002-04-28  Jim Meyering  <meyering@lucent.com>
23047
23048         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
23049
23050 2002-04-24  Jim Meyering  <meyering@lucent.com>
23051
23052         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
23053         (jm_PREREQ): Use it.
23054
23055         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
23056         mach/mach.h fcntl.h.
23057         Check for this function: setlocale.
23058
23059 2002-04-24  Jim Meyering  <meyering@lucent.com>
23060
23061         * lib/gettext.h: New file, from Gettext.
23062         * lib/Makefile.am (INCLUDES): Remove -I../intl.
23063         (libfetish_a_SOURCES): Add gettext.h.
23064
23065 2002-04-16  Jim Meyering  <meyering@lucent.com>
23066
23067         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
23068         ut_pid, ut_id, ut_exit.
23069
23070 2002-04-16  Jim Meyering  <meyering@lucent.com>
23071
23072         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
23073         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
23074         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
23075
23076 2002-04-12  Jim Meyering  <meyering@lucent.com>
23077
23078         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
23079         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
23080         existence of the getmntinfo function.  Needed for Darwin 5.3.
23081
23082         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
23083         This is necessary at least on Darwin 5.3.
23084
23085         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
23086         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
23087         strnlen.o in the library, and that makes some versions of ranlib
23088         object.
23089
23090 2002-04-12  Jim Meyering  <meyering@lucent.com>
23091
23092         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
23093
23094 2002-04-09  Jim Meyering  <meyering@lucent.com>
23095
23096         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
23097         to be more precise.  Rather than saying we're checking whether the
23098         function `works', say what we're testing.
23099         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
23100         Reported by Bruno Haible.
23101
23102 2002-03-10  Jim Meyering  <meyering@lucent.com>
23103
23104         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
23105         Suggestion from Santiago Vila.
23106
23107 2002-03-08  Jim Meyering  <meyering@lucent.com>
23108
23109         * lib/rename.c: Mention that this wrapper is needed also on
23110         mips-dec-ultrix4.4 systems.
23111
23112 2002-03-02  Jim Meyering  <meyering@lucent.com>
23113
23114         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
23115         not HAVE_CLOCK_SETTIME.
23116
23117 2002-02-27  Paul Eggert  <eggert@twinsun.com>
23118
23119         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
23120         Check for clock_settime.
23121
23122 2002-02-27  Paul Eggert  <eggert@twinsun.com>
23123
23124         * lib/nanosleep.h: Rename to....
23125         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
23126
23127         * lib/gettime.c: New file.
23128         * lib/settime.c: New file.
23129         * lib/stime.c: Remove.
23130
23131         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
23132         timespec.h.  Remove nanosleep.h.
23133
23134 2002-02-25  Paul Eggert  <eggert@twinsun.com>
23135
23136         * m4/acl.m4: New file.
23137         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
23138         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
23139
23140 2002-02-25  Paul Eggert  <eggert@twinsun.com>
23141
23142         * lib/acl.c, lib/acl.h: New files.
23143         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
23144
23145 2002-02-24  Jim Meyering  <meyering@lucent.com>
23146
23147         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
23148         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
23149         cause trouble.  Reported by Nelson Beebe.
23150
23151 2002-02-23  Paul Eggert  <eggert@twinsun.com>
23152
23153         * lib/path-concat.c (xpath_concat): Reorder code to pacify
23154         compilers that don't know that xalloc_die never returns.
23155
23156 2002-02-20  Jim Meyering  <meyering@lucent.com>
23157
23158         * lib/getdate.c: Regenerate using bison-1.33.
23159
23160 2002-02-17  Jim Meyering  <meyering@lucent.com>
23161
23162         * config/config.guess (main): Don't use `head -1'; it's no longer
23163         portable. Use `sed 1q' instead.
23164
23165 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
23166
23167         * m4/codeset.m4: Upgrade to gettext-0.11.
23168         * m4/gettext.m4: Upgrade to gettext-0.11.
23169         * m4/glibc21.m4: Upgrade to gettext-0.11.
23170         * m4/iconv.m4: Upgrade to gettext-0.11.
23171         * m4/isc-posix.m4: Upgrade to gettext-0.11.
23172         * m4/lcmessage.m4: Upgrade to gettext-0.11.
23173         * m4/lib-ld.m4: New file, from gettext-0.11.
23174         * m4/lib-link.m4: New file, from gettext-0.11.
23175         * m4/lib-prefix.m4: New file, from gettext-0.11.
23176         * m4/progtest.m4: Upgrade to gettext-0.11.
23177
23178 2002-02-15  Paul Eggert  <eggert@twinsun.com>
23179
23180         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
23181         (jm_PREREQ): Use it.
23182
23183 2002-02-15  Paul Eggert  <eggert@twinsun.com>
23184
23185         * lib/posixver.c, lib/posixver.h: New files.
23186         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
23187
23188 2002-02-02  Paul Eggert  <eggert@twinsun.com>
23189             Bruno Haible  <bruno@clisp.org>
23190
23191         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
23192         (fwrite_success_callback): New declaration.
23193         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
23194         print_unicode_char. Call failure callback instead of error.
23195         (fwrite_success_callback): New function.
23196         (exit_failure_callback): New function.
23197         (fallback_failure_callback): New function.
23198         (print_unicode_char): Call unicode_to_mb.
23199
23200 2002-01-26  Jim Meyering  <meyering@lucent.com>
23201
23202         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
23203         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
23204
23205 2002-01-26  Jim Meyering  <meyering@lucent.com>
23206
23207         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
23208
23209 2002-01-22  Paul Eggert  <eggert@twinsun.com>
23210
23211         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
23212
23213 2002-01-22  Jim Meyering  <meyering@lucent.com>
23214
23215         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
23216         Otherwise, some versions of automake would omit the rule that makes
23217         Makefile from Makefile.in.
23218
23219 2002-01-21  Paul Eggert  <eggert@twinsun.com>
23220
23221         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
23222         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
23223         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
23224         (memcoll): Set errno to zero if there is no error.
23225
23226         * lib/quotearg.c (quotearg_buffer_restyled):
23227         Fix bug with quoting buffers containing NUL when backslashing escapes.
23228         This bug was exposed by the other changes in this patch.
23229         (quotearg_n_options): New arg ARGSIZE.
23230         All callers changed.
23231         (quoting_options_from_style): New function.
23232         (quotearg_n_style): Use it.
23233         (quotearg_n_style_mem): New function.
23234
23235         * lib/quotearg.h (quotearg_n_style_mem): New function.
23236
23237 2002-01-19  Jim Meyering  <meyering@lucent.com>
23238
23239         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
23240         Remove useless quotes: DF_PROG="df".
23241         * m4/strnlen.m4: New file.
23242
23243 2002-01-16  Paul Eggert  <eggert@twinsun.com>
23244
23245         * lib/backupfile.c (ISDIGIT): Comment fix.
23246         * lib/getdate.y (ISDIGIT): Likewise.
23247         * lib/posixtm.c (ISDIGIT, year): Likewise.
23248         * lib/strverscmp.c (ISDIGIT): Likewise.
23249         * lib/userspec.c (ISDIGIT): Likewise.
23250
23251 2002-01-16  Jim Meyering  <meyering@lucent.com>
23252
23253         * lib/getdate.y: Add three semicolons, each just before a closing
23254         brace. Bison (as of version 1.31) no longer papers over that mistake.
23255
23256 2002-01-05  Jim Meyering  <meyering@lucent.com>
23257
23258         * lib/version-etc.c (version_etc_copyright): Update copyright year.
23259
23260 2001-12-19  Paul Eggert  <eggert@twinsun.com>
23261
23262         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
23263         not silently exit merely because the output buffer happens to
23264         have nothing pending.
23265
23266 2001-12-18  Paul Eggert  <eggert@twinsun.com>
23267
23268         See the big note in ../ChangeLog.
23269         * lib/human.c (suffixes): Prefer K to k for 1024.
23270         (generate_suffix_backwards): New function.
23271         (human_readable_inexact): Use it.
23272         * lib/xstrtol.c (__xstrtol): If there is no number but there
23273         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
23274         Accept 'K' as well as 'k'.
23275
23276 2001-12-15  Jim Meyering  <meyering@lucent.com>
23277
23278         * lib/regex.h (__restrict_arr): Update from libc.
23279
23280         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
23281         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
23282         (STREQ): Define.
23283
23284 2001-12-14  Jim Meyering  <meyering@lucent.com>
23285
23286         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
23287         Suggestion from Bruno Haible.
23288
23289 2001-12-10  Jim Meyering  <meyering@lucent.com>
23290
23291         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
23292         xrealloc, Instead, include "xalloc.h".
23293         (initbuffer): Don't cast xmalloc return value to char*.
23294         (readline): Reword comment.
23295         Don't cast xrealloc return value to char*
23296         Return NULL, not 0.
23297
23298 2001-12-09  Jim Meyering  <meyering@lucent.com>
23299
23300         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
23301         about `signed and unsigned type in conditional expression'.
23302         * lib/posixtm.c (posix_time_parse): Likewise.
23303
23304         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
23305
23306         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
23307         to avoid a pedantic warning.
23308
23309         * lib/getstr.c: Don't include assert.h.
23310         (getstr): Remove warning-evoking assertions.
23311         Return -1 if offset parameter is out of bounds.
23312         Change the type of a local from int to size_t.
23313
23314         * lib/strftime.c (my_strftime_localtime_r): Include this function
23315         definition in the `#if ! HAVE_TM_GMTOFF' block.
23316
23317         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
23318         Include xalloc.h instead.
23319
23320 2001-12-02  Jim Meyering  <meyering@lucent.com>
23321
23322         * lib/tempname.c: Don't declare getenv, thus reverting the change of
23323         2001-11-18.  It's no longer necessary, now that stdlib.h is always
23324         included.
23325
23326         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
23327         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
23328
23329 2001-11-30  Akim Demaille  <akim@epita.fr>
23330
23331         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
23332         before being defined.
23333
23334 2001-11-27  Paul Eggert  <eggert@twinsun.com>
23335
23336         * lib/quotearg.h (quotearg_n, quotearg_n_style):
23337         First arg is int, not unsigned.
23338         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
23339         (SIZE_MAX, UINT_MAX): New macros.
23340         (quotearg_n_options): Abort if N is negative.
23341         Avoid overflow check on hosts where size_t is 64 bits and int
23342         is 32 bits, as overflow is impossible there.
23343         Fix off-by-one typo that caused unnecessary reallocation.
23344
23345 2001-11-27  Jim Meyering  <meyering@lucent.com>
23346
23347         * lib/tempname.c: Merge with version from libc.
23348         * lib/regex.c: Likewise.
23349
23350         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
23351         systems for which STDC_HEADERS is 0, it was not included, resulting in
23352         a warning about an integer-to-pointer conversion problem with getenv.
23353         Reported by Volker Borchert.
23354
23355 2001-11-26  Jim Meyering  <meyering@lucent.com>
23356
23357         * lib/gtod.h: Remove file.
23358         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
23359         * lib/gettimeofday.c: Don't include gtod.h.
23360         (GTOD_init): Remove function.
23361         (rpl_gettimeofday): Do its job here instead, rather than aborting.
23362         Suggestion from Volker Borchert.
23363
23364 2001-11-23  Jim Meyering  <meyering@lucent.com>
23365
23366         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
23367         it.
23368         * lib/hash.c (struct hash_table): Define it here instead.
23369
23370 2001-11-22  Jim Meyering  <meyering@lucent.com>
23371
23372         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
23373
23374 2001-11-20  Jim Meyering  <meyering@lucent.com>
23375
23376         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
23377         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
23378
23379 2001-11-19  Jim Meyering  <meyering@lucent.com>
23380
23381         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
23382         directory.  Use "conftestXXXXXX" as the template.
23383         Suggestion from Paul Eggert.
23384
23385         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
23386         immediately, so the test doesn't mistakenly hit the max-open-files
23387         limit.
23388
23389 2001-11-18  Paul Eggert  <eggert@twinsun.com>
23390
23391         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
23392         (TEMPORARIES): New macro.
23393         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
23394         removes an artificial limitation (e.g. HP-UX 10.20, where
23395         TMP_MAX is 17576).
23396
23397 2001-11-18  Jim Meyering  <meyering@lucent.com>
23398
23399         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
23400
23401 2001-11-18  Jim Meyering  <meyering@lucent.com>
23402
23403         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
23404         on SunOS 4.
23405
23406         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
23407         files will be created before anything else.
23408
23409 2001-11-17  Paul Eggert  <eggert@twinsun.com>
23410
23411         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
23412         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
23413
23414 2001-11-17  Jim Meyering  <meyering@lucent.com>
23415
23416         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
23417         Prompted by a report from Bob Proulx.
23418
23419         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
23420         Instead, require UTILS_FUNC_MKSTEMP.
23421
23422 2001-11-17  Jim Meyering  <meyering@lucent.com>
23423
23424         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
23425         Now, that's done as part of AC_FUNC_STRTOD.
23426
23427 2001-11-17  Jim Meyering  <meyering@lucent.com>
23428
23429         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
23430         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
23431         rather than group writable.  Patch by Juan F. Codagnone.
23432
23433         * lib/readtokens.c: Remove explicit declarations of xmalloc and
23434         xrealloc, Instead, include "xalloc.h".
23435
23436         * lib/mountlist.c: Include unlocked-io.h after all system headers.
23437         Remove explicit declarations of xmalloc, xrealloc,
23438         and xstrdup.  Instead, include "xalloc.h".
23439
23440         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
23441         unlocked-io.h.
23442         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
23443         Likewise.
23444         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
23445
23446         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
23447         Reported by Padraig Brady.
23448
23449         * lib/mkstemp.c: #undef mkstemp.
23450         Include config.h.
23451         (rpl_mkstemp): Rename from mkstemp.
23452         Protoize.
23453
23454 2001-11-16  Jim Meyering  <meyering@lucent.com>
23455
23456         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
23457         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
23458         determine the amount of total physical memory, use pstat_getstatic.
23459         HPUX-11 doesn't define _SC_PHYS_PAGES.
23460         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
23461         If sysconf couldn't be used to determine the amount of available
23462         physical memory, use both pstat_getstatic and pstat_getdynamic.
23463         Based on a patch from Bob Proulx.
23464
23465 2001-11-10  Jim Meyering  <meyering@lucent.com>
23466
23467         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
23468         (jm_PREREQ): Use it.
23469
23470 2001-11-09  Jim Meyering  <meyering@lucent.com>
23471
23472         * m4/jm-macros.m4: Require autoconf-2.52f.
23473         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
23474         Use these AC_-prefixed names, not the AM_-prefixed ones.
23475
23476         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
23477
23478 2001-11-05  Jim Meyering  <meyering@lucent.com>
23479
23480         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
23481
23482 2001-11-04  Jim Meyering  <meyering@lucent.com>
23483
23484         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
23485         $DEFS.
23486
23487 2001-11-03  Jim Meyering  <meyering@lucent.com>
23488
23489         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
23490         of AC_DEFUN.
23491
23492         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
23493         know the name of the variable in the macro definition.
23494
23495 2001-11-03  Jim Meyering  <meyering@lucent.com>
23496
23497         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
23498         in argmatch_to_argument call.
23499
23500         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
23501         argument.
23502
23503         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
23504         e.g., a fault due to an attempt to free a NULL pointer.
23505
23506 2001-11-01  Jim Meyering  <meyering@lucent.com>
23507
23508         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
23509         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
23510
23511 2001-11-01  Jim Meyering  <meyering@lucent.com>
23512
23513         * lib/dirfd.c, lib/dirfd.h: New files.
23514         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
23515
23516         * lib/hash.c (hash_print) [TESTING]: Clean up.
23517
23518 2001-10-22  Paul Eggert  <eggert@twinsun.com>
23519
23520         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
23521         to avoid a warning if -Wall.
23522
23523 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
23524
23525         * README: New file
23526         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
23527         (per RMS's instructions, this is now the canonical source)
23528         * lgpl/, gpl/: New directories.
23529
23530 2001-10-21  Paul Eggert  <eggert@twinsun.com>
23531
23532         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
23533
23534 2001-10-21  Jim Meyering  <meyering@lucent.com>
23535
23536         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
23537         this code would end up calling gettext even in packages built
23538         with --disable-nls.
23539         * lib/getopt.c (_): Likewise.
23540         * lib/regex.c (_): Likewise.
23541
23542 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23543
23544         * m4/error.m4 (jm_PREREQ_ERROR):
23545         Do not invoke AC_CHECK_FUNCS with strerror_r, as
23546         AC_FUNC_STRERROR_R does that.
23547         Check for strerror declaration.
23548
23549         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
23550         are supposed to have them these days.
23551         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
23552         Merge changes from latest Autoconf CVS.
23553         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
23554         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
23555         POSIX decided to standardize on the int flavor of strerror_r.
23556
23557 2001-10-20  Paul Eggert  <eggert@twinsun.com>
23558
23559         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
23560         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
23561         Use strerror_r that is only a macro, even if it is not a function.
23562         (strerror): Check for HAVE_DECL_STRERROR before declaring.
23563         (private_strerror): Use prototypes, not old-style function definition.
23564         (print_errno_message): New function.
23565         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
23566         char*-flavored one.
23567         (error_tail, error, error_at_line): Use it.
23568
23569 2001-10-11  Jim Meyering  <meyering@lucent.com>
23570
23571         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
23572         and quote_n (1, ... to avoid clobbering a buffer.
23573
23574 2001-10-05  Jim Meyering  <meyering@lucent.com>
23575
23576         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
23577         hash-pjw.h.
23578         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
23579         * lib/hash-pjw.h: New file.
23580
23581 2001-09-30  Jim Meyering  <meyering@lucent.com>
23582
23583         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
23584         `struct fsstat' has the `f_fstypename' member.
23585         Use that to define FS_TYPE, which is now used to make
23586         the getfsstat link test tighter.
23587
23588 2001-09-30  Jim Meyering  <meyering@lucent.com>
23589
23590         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
23591         Include <sys/ucred.h>, for Apple Darwin.
23592         Include sys/mount.h and sys/fs_types.h only if available.
23593         (FS_TYPE): Define.
23594         (read_filesystem_list): Use FS_TYPE.
23595
23596 2001-09-29  Paul Eggert  <eggert@twinsun.com>
23597
23598         * lib/exclude.c (excluded_filename): 0 -> false, since it's
23599         a boolean context.
23600
23601 2001-09-29  Jim Meyering  <meyering@lucent.com>
23602
23603         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23604         [one-argument getmntent function]): Include stdio.h before mntent.h.
23605         SunOS 4.1.x needs it for the declaration of `FILE'.
23606         Patch by Volker Borchert.
23607
23608         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
23609         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
23610         sys/fs_types.h, and make the link-test for getfsstat guard #include
23611         directives with appropriate #if HAVE_*_H tests so that we can
23612         detect getfsstat on Apple Darwin1.3.7 systems.
23613         Reported by Nelson Beebe.
23614         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
23615
23616 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23617
23618         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23619         #defines strtoimax.  Also treat the other strto* functions
23620         like strtoimax.
23621
23622         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23623         Check for strtoul and strtoumax,
23624         as those declarations are made even in the signed case.
23625         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
23626         Likewise, for strtol and strtoimax.
23627
23628 2001-09-28  Paul Eggert  <eggert@twinsun.com>
23629
23630         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
23631         #defines strtoimax.  Also treat the other strto* functions
23632         like strtoimax.
23633
23634         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
23635         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
23636         (strtoimax, strtoumax): Do not declare if already defined as a macro.
23637
23638 2001-09-26  Jim Meyering  <meyering@lucent.com>
23639
23640         Most macros in unlocked-io.h had the wrong number of arguments.
23641         * lib/gen-uio: New script.
23642         (USE_UNLOCKED_IO): Define to 1 if not already defined.
23643         * lib/unlocked-io.hin: Remove file.
23644         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
23645         rather than trying to embed it here.
23646         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
23647         Reported by Padraig Brady.
23648
23649 2001-09-25  Volker Borchert  <bt@teknon.de>
23650
23651         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
23652         `result'.
23653
23654 2001-09-24  Jim Meyering  <meyering@lucent.com>
23655
23656         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
23657
23658 2001-09-23  Jim Meyering  <meyering@lucent.com>
23659
23660         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
23661         instead of the mere test for existence of mntent.h.  The latter
23662         would get a false-positive on AIX 3.4 systems.
23663         In the outer getmntent if-block, don't die if neither of the getmntent
23664         tests succeeds.  Instead, just fall through and continue with the
23665         remaining tests.
23666
23667 2001-09-23  Jim Meyering  <meyering@lucent.com>
23668
23669         * lib/mountlist.c: Remove useless parentheses in #if directives.
23670         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
23671         the deprecated MOUNTED symbol is no longer defined in mntent.h.
23672
23673 2001-09-22  Jim Meyering  <meyering@lucent.com>
23674
23675         * m4/gettext.m4: New file.  From gettext.
23676         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
23677         * m4/progtest.m4: Likewise
23678         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
23679         * m4/glibc21.m4: Likewise.
23680
23681         * m4/libintl.m4: Remove.  No longer used.
23682
23683 2001-09-22  Jim Meyering  <meyering@lucent.com>
23684
23685         * lib/localcharset.c: Update from latest gettext.
23686         * lib/config.charset: Likewise.
23687
23688 2001-09-20  Jim Meyering  <meyering@lucent.com>
23689
23690         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
23691         strtoimax.
23692         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
23693         strtoumax.
23694
23695 2001-09-20  Jim Meyering  <meyering@lucent.com>
23696
23697         * lib/xstrtol.c (strtoimax): Guard declaration with
23698         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
23699         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
23700         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
23701         (strtoumax): Likewise, for completeness (it wasn't necessary).
23702
23703 2001-09-17  Paul Eggert  <eggert@twinsun.com>
23704
23705         * lib/strtoimax.c (HAVE_LONG_LONG):
23706         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
23707         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
23708         to work around bug in IBM C compiler.
23709
23710 2001-09-17  Jim Meyering  <meyering@lucent.com>
23711
23712         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
23713         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
23714         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
23715         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
23716         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
23717         whenever the right hand side need not be expanded by the shell.
23718
23719 2001-09-16  Paul Eggert  <eggert@twinsun.com>
23720
23721         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
23722         library.  It's not correct, as some older glibcs are buggy.
23723         fnmatch wasn't fixed until glibc 2.2.
23724
23725         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
23726         special shell magic here.
23727
23728 2001-09-16  Jim Meyering  <meyering@lucent.com>
23729
23730         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
23731         * m4/jm-macros.m4: Require it.
23732
23733 2001-09-16  Jim Meyering  <meyering@lucent.com>
23734
23735         * lib/mkdir.c: New file.
23736
23737 2001-09-15  Jim Meyering  <meyering@lucent.com>
23738
23739         * m4/jm-macros.m4: Check for help2man.
23740
23741 2001-09-11  Jim Meyering  <meyering@lucent.com>
23742
23743         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
23744         The body, by Paul Eggert, was moved here from configure.in.
23745         * m4/jm-macros.m4: Require UTILS_HOST_OS.
23746
23747 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23748
23749         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
23750         (jm_PREREQ): Use it.
23751
23752 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23753
23754         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
23755         Use ssize_t, not int, to store result of readlink.
23756         Check for ssize_t overflow as well as size_t overflow,
23757         as POSIX says the result of readlink is implementation-defined
23758         when ssize_t overflows.
23759         Remove unnecessary cast to char*.
23760         Use free+malloc instead of realloc, as the storage doesn't need
23761         to be preserved and it's clearer and can be more efficient that way.
23762         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
23763         * lib/xreadlink.h (xreadlink): Update prototype.
23764
23765 2001-09-04  Paul Eggert  <eggert@twinsun.com>
23766
23767         * lib/xgetcwd.c: Revert some of the previous change; intead,
23768         fix the HAVE_GETCWD_NULL code to behave more like the
23769         !HAVE_GETCWD_NULL code used to.
23770
23771         Include "xalloc.h".
23772         (xgetcwd): Do not return NULL when memory is exhausted; instead,
23773         invoke xalloc_die.
23774
23775 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23776
23777         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
23778         sys/param.h, as pathmax.h includes them.
23779
23780 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23781
23782         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
23783         (jm_PREREQ_XGETCWD): New macro.
23784
23785         * m4/getcwd.m4: New file.
23786
23787 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23788
23789         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
23790         like the HAVE_GETCWD_NULL code.
23791         Include pathmax.h if not HAVE_GETCWD.
23792         Do not include xalloc.h.
23793         (INITIAL_BUFFER_SIZE): New symbol.
23794         Do not use xmalloc / xrealloc, since the caller is responsible for
23795         handling errors.  Preserve errno around `free' during failure.
23796         Do not overrun buffer when using getwd.
23797
23798 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23799
23800         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
23801         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
23802         getcwd (NULL, 0).
23803
23804 2001-09-03  Paul Eggert  <eggert@twinsun.com>
23805
23806         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
23807         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
23808         spotted by Jim Meyering.
23809
23810 2001-09-03  Jim Meyering  <meyering@lucent.com>
23811
23812         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
23813         failure.
23814
23815 2001-09-02  Jim Meyering  <meyering@lucent.com>
23816
23817         * lib/error.c: Update from GNU libc.
23818
23819 2001-09-01  Jim Meyering  <meyering@lucent.com>
23820
23821         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
23822         Used by df.
23823
23824 2001-09-01  Jim Meyering  <meyering@lucent.com>
23825
23826         * lib/xreadlink.c: New file.
23827         * lib/xreadlink.h: New file.
23828         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
23829         xreadlink.h.
23830
23831         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
23832         doesn't conflict with sparc Solaris 7's definition in
23833         /usr/include/sys/int_types.h.
23834
23835         * lib/exclude.c: Use `""', not `<>' to #include non-system header
23836         files.
23837         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
23838         and strncasecmp as r-values.  Unixware didn't have declarations.
23839
23840 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23841
23842         * lib/xstrtol.h: Add copyright notice.
23843         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
23844         LONGINT_INVALID_SUFFIX_CHAR.
23845
23846 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23847
23848         * lib/xstrtol.c (strtoimax): New decl.
23849
23850 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23851
23852         * lib/xgetcwd.c: Don't include pathmax.h.
23853         Include stdlib.h and unistd.h if available.
23854         Include xalloc.h.
23855         (xmalloc, xstrdup, free): Remove decls.
23856         (xgetcwd): Don't assume sizes fit in unsigned.
23857         Check for overflow when computing sizes.
23858         Simplify reallocation code.
23859
23860 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23861
23862         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
23863         a directory's st_size can have an arbitrary value, so the old
23864         usage could waste an arbitrary amount of memory.  All uses
23865         changed.
23866         * lib/savedir.h: Update prototype.
23867
23868 2001-08-31  Paul Eggert  <eggert@twinsun.com>
23869
23870         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
23871
23872         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
23873         old strtoimax.c.
23874
23875         Also, make the following further changes to make this file's
23876         configuration more similar to that of strtol.c:
23877         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
23878         (strtoumax, uintmax_t, strtoull, strtol): Remove.
23879         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
23880         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
23881         changed to signed values.
23882
23883         And make the following changes as well:
23884         Fix copyright notice, as 1999 was missing.
23885         (verify): New macro.
23886         (strtoimax): Check sizes at compile-time, not run-time.
23887         Prefer strtol to strtoll if both work.
23888         (main): Remove; it was not that useful and was a pain to maintain.
23889
23890         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
23891
23892 2001-08-31  Jim Meyering  <meyering@lucent.com>
23893
23894         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
23895         Use an initial, malloc'd, buffer of length 128 rather than
23896         a statically allocated one of length 1024.
23897
23898 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23899
23900         Simplify code, partly by assuming autoconf 2.52 semantics.
23901
23902         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
23903
23904         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
23905         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
23906         All uses removed.
23907         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
23908         Move AC_REQUIRE to next-to-top level, to avoid confusion.
23909         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
23910         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
23911         jm_AC_HEADER_INTTYPES_H.
23912         * m4/jm-macros.m4 (jm_MACROS): Likewise.
23913
23914         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
23915
23916         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
23917         Quote first arg of AC_DEFUN.
23918         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
23919         since they are needed to parse the include file even if we need
23920         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
23921         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
23922         but with opposite signedness.
23923
23924 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23925
23926         Merge 'exclude' changes from tar 1.13.22.
23927         This fixes one or two unlikely storage allocation overflow bugs,
23928         but doesn't change user-visible behavior otherwise.
23929
23930 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23931
23932         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
23933         (jm_PREREQ_EXCLUDE): New macro.
23934
23935 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23936
23937         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
23938         tm to be declared.
23939
23940 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23941
23942         * lib/hash.c: Remove '2001' from copyright notice.
23943
23944 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23945
23946         * lib/full-write.h: New file.
23947         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
23948         * lib/full-write.c: Correct credits, as cccp.c no longer
23949         exists and anyway it was so heavily changed from the old cccp
23950         code as to be unrecognizable.  Include full-write.h.
23951         (full_write) Return size_t, with short writes meaning failure.
23952         All callers changed.  This fixes a bug with large buffers
23953         on 64-bit hosts.
23954         * lib/utime.c: Include full-write.h.
23955
23956 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23957
23958         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
23959         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
23960         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
23961         Include if available.
23962         (<xalloc.h>): Include
23963         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
23964         (verify): New macro.  Use it to verify that EXCLUDE macros do not
23965         collide with FNM macros.
23966         (struct patopts): New struct.
23967         (struct exclude): Use it, as exclude patterns now come with options.
23968         (new_exclude): Support above changes.
23969         (new_exclude, add_exclude_file):
23970         Initial size must now be a power of two to simplify overflow checking.
23971         (free_exclude, fnmatch_no_wildcards): New function.
23972         (excluded_filename): No longer requires options arg, as the options
23973         are determined by add_exclude.  Now returns bool, not int.
23974         (excluded_filename, add_exclude):
23975         Add support for the fancy new exclusion options.
23976         (add_exclude, add_exclude_file): Now takes int options arg.
23977         Check for arithmetic overflow when computing sizes.
23978         (add_exclude_file): xrealloc might modify errno, so don't
23979         realloc until after errno might be used.
23980
23981         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
23982         New macros.
23983         (free_exclude): New decl.
23984         (add_exclude, add_exclude_file): Now takes int options arg.
23985         (excluded_filename): No longer requires options arg, as the options
23986         are determined by add_exclude.  Now returns bool, not int.
23987
23988 2001-08-30  Paul Eggert  <eggert@twinsun.com>
23989
23990         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
23991
23992 2001-08-27  Jim Meyering  <meyering@lucent.com>
23993
23994         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
23995
23996         * lib/version-etc.c (N_): Remove definition.
23997         Revert most of last change.
23998         Instead, simply don't mark the `Copyright...' string for translation.
23999         Based on advice from Paul Eggert.
24000
24001         * lib/strtoxmax.c: Tweak comment.
24002
24003 2001-08-26  Jim Meyering  <meyering@lucent.com>
24004
24005         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
24006
24007         * m4/xstrtoimax.m4: New file.
24008         * m4/xstrtoumax.m4: Add comments explaining why we
24009         AC_REPLACE_FUNCS(strtol).
24010
24011 2001-08-26  Jim Meyering  <meyering@lucent.com>
24012
24013         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
24014         of copyright with `%s' so translators don't get an untranslated
24015         message in 2002.
24016         (COPYRIGHT_YEAR): Define.
24017         (version_etc): Use fprintf rather than fputs.
24018         Suggestion from Ulrich Drepper.
24019
24020         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
24021
24022         * lib/strtoll.c: New file, from GNU libc.
24023         * lib/xstrtoimax.c: New file.
24024
24025         * lib/xstrtol.h: Add xstrtoimax.
24026         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
24027         * lib/strtoimax.c: New file.  Likewise, but first define
24028         STRTOUXMAX_SIGNED.
24029
24030         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
24031         ...
24032         * lib/strtoxmax.c: ... then renamed to this.
24033
24034 2001-08-18  Paul Eggert  <eggert@twinsun.com>
24035
24036         * m4/inttypes.m4: Add AC_PREREQ(2.13).
24037         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
24038         (jm_AC_TYPE_INTMAX_T): New macro.
24039         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
24040
24041         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
24042
24043         * m4/longlong.m4: Renamed from ulonglong.m4.
24044         * m4/inttypes.m4: Renamed from inttypes_h.m4.
24045         * m4/uintmax_t.m4: Removed.
24046
24047 2001-08-13  Paul Eggert  <eggert@twinsun.com>
24048
24049         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
24050         Port to Solaris 8, where 'sed' requires a space after the 'r'
24051         command, and where sh dislikes "$/".  Clean up the spacing a bit.
24052         Redirect output to $tmp just once.
24053
24054 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
24055
24056         * lib/addext.c (<errno.h>): Include.
24057         (errno): Declare if not defined.
24058         (addext): Work correctly when pathconf returns -1 and leaves
24059         errno alone because there is no limit.  Also, work even if
24060         pathconf returns a value greater than SIZE_MAX.
24061
24062 2001-08-12  Jim Meyering  <meyering@lucent.com>
24063
24064         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
24065         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
24066         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
24067         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
24068         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
24069         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
24070         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
24071         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
24072         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
24073         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
24074         utime.m4, utimes.m4, xstrtoumax.m4:
24075         Quote the first argument in each use of AC_DEFUN.
24076
24077 2001-08-12  Jim Meyering  <meyering@lucent.com>
24078
24079         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
24080         Simply `return getcwd (NULL, 0);'.
24081         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
24082         Use 1300 as initial value for length, not PATH_MAX.
24083
24084         * lib/pathmax.h: Clean up cpp syntax.
24085
24086 2001-08-12  Jim Meyering  <meyering@lucent.com>
24087
24088         * lib/gettimeofday.c: New file.
24089         * lib/gtod.h: New file.
24090         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
24091
24092 2001-08-05  Jim Meyering  <meyering@lucent.com>
24093
24094         * m4/jm-macros.m4: Require autoconf-2.52.
24095
24096 2001-08-04  Jim Meyering  <meyering@lucent.com>
24097
24098         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
24099         stmt, to get in sync with glibc.
24100
24101 2001-08-03  Paul Eggert  <eggert@twinsun.com>
24102
24103         The following changes are from gettext 0.10.39 as maintained by
24104         Bruno Haible.
24105
24106         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
24107         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
24108         with inverted sense.  All uses changed.
24109
24110         * lib/mbswidth.c: Don't include <limits.h>.
24111         Include <stdlib.h> and <string.h> unconditionally.
24112         (iswcntrl, mbsinit, ISCNTRL): New macros.
24113         (mbsnwidth): Use K&R style function declarations.
24114         Don't bother checking for MB_LEN_MAX == 1, since the compiler
24115         can optimize it when MB_CUR_MAX == 1.
24116         The width of control characters is zero, not 1.
24117
24118 2001-08-03  Paul Eggert  <eggert@twinsun.com>
24119
24120         The following changes are from gettext 0.10.39 as maintained by
24121         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
24122
24123         * m4/codeset.m4: Upgrade to serial AM1.
24124         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
24125         all uses changed.  Quote first arg of AC_DEFUN.
24126         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
24127
24128         * m4/iconv.m4: Upgrade to serial AM2.
24129         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
24130         Add --with-libconv-prefix.
24131         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
24132         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
24133         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
24134         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
24135         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
24136
24137         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
24138         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
24139         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
24140         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
24141         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
24142         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
24143         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
24144         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
24145         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
24146
24147         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
24148         string.h any more.
24149
24150         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
24151         not the default value.
24152
24153         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
24154         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
24155         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
24156         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
24157         Also check for iswcntrl, used for wcwidth fallback.
24158         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
24159         to Autoconf 2.13.
24160
24161 2001-08-03  Jim Meyering  <meyering@lucent.com>
24162
24163         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
24164         as it was in the original.  Reported by Paul Eggert.
24165
24166 2001-07-16  Jim Meyering  <meyering@lucent.com>
24167
24168         * m4/gettimeofday.m4: New file.
24169         Prompted by a report from Bernhard Baehr.
24170
24171 2001-07-15  Jim Meyering  <meyering@lucent.com>
24172
24173         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
24174         stuff. Now it's in ../Makefile.cfg.
24175
24176 2001-07-15  Jim Meyering  <meyering@lucent.com>
24177
24178         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
24179         (BUILT_SOURCES): Add unlocked-io.h.
24180         (io_functions): Define.
24181         (unlocked-io.h): New rule.
24182         (DISTCLEANFILES): Add unlocked-io.h.
24183         (all-local): Depend on unlocked-io.h, to ensure it is created.
24184
24185         * lib/unlocked-io.hin: New file
24186
24187         * lib/regex.c: Update from glibc.
24188
24189 2001-07-05  Jim Meyering  <meyering@lucent.com>
24190
24191         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
24192         recommendation.
24193         (libfetish_a_SOURCES): Put all .h files here instead.
24194         Remove a thus-exposed (better checks in automake) duplicate and
24195         two unnecessary .h files.
24196
24197 2001-07-04  Jim Meyering  <meyering@lucent.com>
24198
24199         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
24200         that generates jm-glibc-io.m4 so that it doesn't trigger any make
24201         distcheck failure.
24202
24203 2001-07-02  Jim Meyering  <meyering@lucent.com>
24204
24205         The following changes were prompted by suggestions from Bruno Haible.
24206
24207         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
24208         is now generated.
24209         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
24210         definition of EXTRA_DIST.
24211         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
24212         ensure that the generated file is created/updated whenever the list
24213         of $(unlocked_functions) is changed.
24214         (jm-glibc-io.m4): New rule.
24215         (unlocked-io.h): New rule -- currently unused.
24216
24217 2001-06-24  Jim Meyering  <meyering@lucent.com>
24218
24219         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
24220         unmatched right bracket, rather than kludging it with an extra,
24221         falsely-matching quote in a comment.  Patch by Akim Demaille.
24222
24223 2001-06-11  Jim Meyering  <meyering@lucent.com>
24224
24225         * lib/regex.c: Update from GNU libc.
24226
24227 2001-05-27  Jim Meyering  <meyering@lucent.com>
24228
24229         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
24230         Check for ut_type in struct utmp.
24231
24232 2001-05-27  Jim Meyering  <meyering@lucent.com>
24233
24234         * lib/readutmp.h (UT_TYPE): Define.
24235
24236 2001-05-24  Jim Meyering  <meyering@lucent.com>
24237
24238         * lib/argmatch.c: Include "quote.h".
24239         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
24240         quote function.  Reported by Göran Uddeborg.
24241
24242 2001-05-22  Jim Meyering  <meyering@lucent.com>
24243
24244         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
24245         now that we use the package-supplied version unconditionally.
24246         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
24247
24248 2001-05-21  Jim Meyering  <meyering@lucent.com>
24249
24250         * m4/regex.m4: Change a couple backticks to single quotes to avoid
24251         shell syntax errors.
24252
24253 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
24254
24255         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
24256
24257 2001-05-20  Paul Eggert  <eggert@twinsun.com>
24258
24259         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
24260         Don't bother to check library strftime, since
24261         we'll be using our own my_strftime function anyway.
24262         Define my_strftime instead of strftime.
24263
24264 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
24265
24266         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
24267         which is not yet declared.
24268
24269 2001-05-15  Jim Meyering  <meyering@lucent.com>
24270
24271         * m4/regex.m4: Use proper quoting so brackets appear in the test
24272         program.
24273         Reported by, and with help from, Bruno Haible.
24274
24275 2001-05-13  Jim Meyering  <meyering@lucent.com>
24276
24277         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
24278         undefined.
24279
24280 2001-05-11  Paul Eggert  <eggert@twinsun.com>
24281
24282         dirname code cleanup.  base_name now behaves more compatibly
24283         with POSIX basename when given file names that have trailing
24284         slashes, and similarly for dir_name.  Add new primitives
24285         base_len and dir_len.  Put the directory-name-related decls
24286         into dirname.h.
24287
24288         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
24289         * lib/backupfile.c (base_name): Likewise.
24290         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
24291         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
24292         * lib/makepath.c (strip_trailing_slashes): Likewise.
24293         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
24294         ISSLASH): Likewise.
24295         * lib/rename.c (strip_trailing_slashes): Likewise.
24296         * lib/same.c (base_name): Likewise.
24297         * lib/stripslash.c (ISSLASH): Likewise.
24298
24299         * lib/addext.c: Include <dirname.h> after size_t is defined.
24300         * lib/backupfile.c: Likewise.
24301
24302         * lib/addext.c (addext): Use base_len to trim redundant
24303         trailing slashes instead of doing it ourselves.
24304         But do not trim the last slash if it is not redundant.
24305
24306         * lib/backupfile.c (find_backup_file_name,
24307         max_backup_version): Use base_len instead of rolling it ourselves.
24308         Handle the case of "" and (on DOS) "C:" correctly.
24309
24310         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
24311         needed. Include <string.h>, <dirname.h>.
24312         (base_name): Allow file names ending in slashes, other than names
24313         that are all slashes.  In this case, return the basename followed
24314         by the slashes.  This is more general, and can be used in places
24315         where the original base_name purposely had an assertion failure.
24316         (base_len): New function.
24317
24318         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
24319         Do not include <assert.h>; no longer needed.
24320         Include xalloc.h.
24321         (memrchr): Remove decl.
24322         (dir_name_r): Remove.
24323         (dir_len): Renamed from dirlen.  All callers changed.
24324         Rewrite in terms of base_name, for simplicity and consistency.
24325         (dir_name): Never return NULL.  All callers changed.
24326         Do not include <stdlib.h> in test program; no longer needed.
24327         return 0; is fine for test program.
24328
24329         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
24330         New macros.
24331         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
24332
24333         * lib/path-concat.c (path_concat): Use base_len to compute
24334         base length, not strlen; this means we cannot rely on memcpy
24335         to null-terminate.
24336
24337         * lib/same.c (STREQ): Remove.
24338         (same_name): Handle the case where the basename ends in trailing '/'.
24339
24340         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
24341         a slash was stripped.  Do not strip the last slash after a
24342         file system prefix.
24343
24344 2001-05-11  Paul Eggert  <eggert@twinsun.com>
24345
24346         * lib/Makefile.am (libfetish_a_SOURCES):
24347         Add strftime.c, since we now compile it on all hosts.
24348
24349         * lib/strftime.c (my_strftime):
24350         Define to nstrftime if emacs, but only if my_strftime is not defined.
24351         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
24352         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
24353         Add one more extra argument: a nanoseconds value.
24354         All uses changed.
24355         (ns): New macro.
24356         (my_strftime function): Add %N format.
24357         (emacs_strftimeu): Renamed from emacs_strftime,
24358         with extra ut argument.
24359
24360 2001-05-09  Paul Eggert  <eggert@twinsun.com>
24361
24362         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
24363
24364 2001-04-21  Jim Meyering  <meyering@lucent.com>
24365
24366         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
24367         doesn't interfere.
24368
24369 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
24370
24371         * m4/ftruncate.m4: Check for chsize.
24372         Link with ftruncate.o unconditionally if ftruncate is missing.
24373         This was required when cross-compiling to i586-mingw32msvc.
24374
24375 2001-04-08  Jim Meyering  <meyering@lucent.com>
24376
24377         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
24378         recomputed; that's necessary when the offset spans a DST transition.
24379         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
24380
24381 2001-04-02  Jim Meyering  <meyering@lucent.com>
24382
24383         * lib/regex.h, regex.c: Update from GNU libc.
24384
24385 2001-03-24  Jim Meyering  <meyering@lucent.com>
24386
24387         * m4/jm-macros.m4: Require autoconf-2.49d.
24388
24389 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
24390
24391         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
24392
24393 2001-03-19  Paul Eggert  <eggert@twinsun.com>
24394
24395         * lib/version-etc.c (version_etc_copyright): Update to 2001.
24396
24397 2001-03-17  Jim Meyering  <meyering@lucent.com>
24398
24399         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
24400         now that the version in autoconf is equivalent.
24401         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
24402
24403         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
24404         Suggestion from Akim Demaille.
24405
24406         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
24407         (jm_PREREQ_TEMPNAME): New function.
24408
24409 2001-03-16  Paul Eggert  <eggert@twinsun.com>
24410
24411         * lib/tempname.c (uint64_t): Define to uintmax_t if
24412         not defined, and if UINT64_MAX is not defined.
24413         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
24414         Reported by John David Anglin.
24415
24416 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
24417
24418         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
24419         resolve alias if codeset is empty.
24420         * lib/config.charset (BeOS): Use wildcard syntax.
24421
24422 2001-03-13  Jim Meyering  <meyering@lucent.com>
24423
24424         * lib/path-concat.c (path_concat)
24425         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
24426         concatenating e.g., `C:' and `foo'.
24427         From Bruno Haible.
24428
24429 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24430
24431         * lib/localcharset.c (locale_charset): Don't use
24432         setlocale(LC_CTYPE,NULL). Don't return NULL.
24433         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
24434
24435 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
24436
24437         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
24438         support for DOS/DJGPP.
24439
24440 2001-03-01  Paul Eggert  <eggert@twinsun.com>
24441
24442         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
24443         lacks mkstemp.  Compile our own tempname.c if we compile our own
24444         mkstemp.c, as mkstemp relies on tempname.
24445
24446 2001-03-01  Jim Meyering  <meyering@lucent.com>
24447
24448         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
24449         AH_VERBATIM really does output its argument verbatim.
24450
24451 2001-02-28  Paul Eggert  <eggert@twinsun.com>
24452
24453         * lib/Makefile.am (libfetish_a_SOURCES):
24454         Add dup-safer.c, fopen-safer.c.
24455         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
24456
24457         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
24458         * lib/unistd-safer.h: New files.
24459
24460 2001-02-25  Paul Eggert  <eggert@twinsun.com>
24461
24462         The mkstemp replacement is taken from glibc 2.2.2, with some
24463         portability fixes for use outside glibc, as follows:
24464
24465         * lib/tempname.c (struct_stat64): New macro.
24466         (direxists, __gen_tempname): Use it.
24467         This avoids a portability problem with Solaris 8.
24468
24469         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
24470         (<stddef.h>, <stdint.h>, <string.h>):
24471         Include only if STDC_HEADERS || _LIBC.
24472         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
24473         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
24474         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
24475         (__set_errno): Define this macro if <errno.h> doesn't.
24476         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
24477         Define these macros if <stdio.h> doesn't.
24478         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
24479         Define these macros if <sys/stat.h>
24480         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
24481         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
24482         __xstat64): Define if not _LIBC.
24483         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
24484         (__gen_tempname): Invoke gettimeofday only if
24485         HAVE_GETTIMEOFDAY || _LIBC;
24486         otherwise, fall back on plain "time".
24487         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
24488
24489         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
24490
24491         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
24492
24493 2001-02-18  Paul Eggert  <eggert@twinsun.com>
24494
24495         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
24496
24497 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24498
24499         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
24500         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
24501         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
24502         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
24503
24504 2001-02-17  Paul Eggert  <eggert@twinsun.com>
24505
24506         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
24507         Remove workaround macros for hosts that have mbrtowc but not
24508         mbstate_t, as we now insist on proper declarations for both
24509         before using mbrtowc.
24510
24511 2001-02-17  Jim Meyering  <meyering@lucent.com>
24512
24513         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
24514         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
24515         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
24516         UnixWare 7.1.1.
24517
24518         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
24519         rather than AC_CACHE_VAL.
24520
24521 2001-02-17  Jim Meyering  <meyering@lucent.com>
24522
24523         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
24524         around included file name.
24525
24526         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
24527
24528         * lib/strftime.c: Update from GNU libc (the only changes were to
24529         comments).
24530
24531 2001-02-17  Jim Meyering  <meyering@lucent.com>
24532
24533         * lib/regex.c: Update from libc.
24534
24535 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
24536
24537         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
24538         clash.
24539
24540 2001-02-16  Paul Eggert  <eggert@twinsun.com>
24541
24542         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
24543         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
24544         Reported by Mark Hounschell via Paul Eggert.
24545
24546 2001-02-07  Jim Meyering  <meyering@lucent.com>
24547
24548         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
24549
24550 2001-02-05  Jim Meyering  <meyering@lucent.com>
24551
24552         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
24553         it includes the patch required for `large file' support with at least
24554         HP-UX's 10.20 /bin/cc.
24555
24556 2001-02-03  Jim Meyering  <meyering@lucent.com>
24557
24558         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
24559         AS_IF, now that it works once again (mysteriously).
24560         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24561
24562 2001-01-30  Jim Meyering  <meyering@lucent.com>
24563
24564         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
24565         * m4/chown.m4: Rename conftestchown to conftest.chown.
24566         * m4/rename.m4: s/conftestdir/conftest.d1/ and
24567         s/conftestdir2/conftest.d2/.
24568         * m4/utimes.m4: s/conftestdata/conftest.data/
24569         Inspired by Pavel Roskin's change in autoconf.
24570
24571 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
24572
24573         * lib/config.charset: Update for FreeBSD 4.2.
24574
24575 2001-01-27  Jim Meyering  <meyering@lucent.com>
24576
24577         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
24578         a use of AS_IF.
24579         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
24580
24581 2001-01-26  Jim Meyering  <meyering@lucent.com>
24582
24583         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
24584         quotearg.c includes it.
24585
24586 2001-01-26  Jim Meyering  <meyering@lucent.com>
24587
24588         * lib/quotearg.c: Include stddef.h.
24589         * lib/quote.c: Include stddef.h.
24590         Reported by Axel Kittenberger.
24591
24592         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
24593         line in double quotes so that it evokes a better diagnostic.
24594         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
24595         Reported by Axel Kittenberger.
24596
24597 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
24598
24599         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
24600         as if it was a `charset'.
24601
24602 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24603
24604         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
24605         has const.
24606
24607 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
24608
24609         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
24610         to avoid a warning.  Add back 'const' to inptr.
24611
24612 2001-01-20  Jim Meyering  <meyering@lucent.com>
24613
24614         Be sure that headers are checked before used in code compiled
24615         for the type checks.
24616         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
24617         In place of that, invoke jm_CHECK_ALL_TYPES.
24618         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
24619         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
24620         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
24621         The check for ssize_t was mistakenly run before the test for unistd.h.
24622
24623         The configure-time check for stdbool.h was missing.
24624         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
24625         (jm_PREREQ_HASH): New function.
24626
24627 2001-01-17  Jim Meyering  <meyering@lucent.com>
24628
24629         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
24630         for autoconf-2.49c.
24631         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
24632
24633 2001-01-16  Jim Meyering  <meyering@lucent.com>
24634
24635         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
24636         From Bruno Haible.
24637
24638 2001-01-14  Jim Meyering  <meyering@lucent.com>
24639
24640         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
24641         foo and bar.  Create conftestdir/ in the script, not in the C code.
24642         Remove directories in the script, not in the C code.
24643         Remove conftestdir{,2} before trying to create the directory.
24644         Make the entire configure script fail if the mkdir fails.
24645
24646 2001-01-14  Jim Meyering  <meyering@lucent.com>
24647
24648         * lib/rename.c: New file.  From Volker Borchert.
24649         Include stdlib.h, string.h or strings.h, and xalloc.h.
24650         Use strip_trailing_slashes rather than open-coding it.
24651
24652 2001-01-03  Paul Eggert  <eggert@twinsun.com>
24653
24654         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
24655
24656 2001-01-03  Jim Meyering  <meyering@lucent.com>
24657
24658         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
24659         of local `inptr' to avoid warning with some system declarations of
24660         iconv.
24661
24662 2001-01-02  Volker Borchert  <bt@teknon.de>
24663
24664         * m4/rename.m4: New file.
24665         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
24666
24667 2001-01-01  Jim Meyering  <meyering@lucent.com>
24668
24669         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
24670         even on systems with utmpx.h.  It's necessary for the declaration of
24671         utmp's ut_user member.  Reported by Andreas Jaeger.
24672
24673         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
24674         available. They are required for the declarations of getgrgid and
24675         getpwuid resp.
24676         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
24677         Reported by Andreas Jaeger.
24678
24679 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
24680
24681         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
24682         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
24683         so `make install' also works in VPATH builds.
24684
24685 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
24686
24687         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
24688         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
24689         can be used in subdirectories.
24690
24691 2000-12-29  Paul Eggert  <eggert@twinsun.com>
24692
24693         * lib/modechange.c: Do not assume that mode_t uses the
24694         traditional octal encoding.  E.g. "chmod 1 FOO" should set
24695         the other-execute bit of FOO even if S_IXOTH != 1.
24696
24697         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
24698         WOTH, XOTH, ALLM): New macros.
24699         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
24700          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
24701         Use them.
24702         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
24703         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
24704         (mode_compile):
24705         No need to use uintmax_t; unsigned long is long enough.
24706         Don't bother to get suffix since we don't use it.
24707
24708 2000-12-26  Jim Meyering  <meyering@lucent.com>
24709
24710         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
24711         better with autoheader.
24712
24713 2000-12-24  Jim Meyering  <meyering@lucent.com>
24714
24715         * lib/hash.c (is_prime): Return explicit boolean values.
24716         (hash_get_first): Return NULL to appease Irix5.6's 89.
24717         Reported by Nelson Beebe.
24718
24719 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
24720
24721         * lib/localcharset.c (locale_charset): Add support for Win32.
24722
24723 2000-12-18  Paul Eggert  <eggert@twinsun.com>
24724
24725         * lib/physmem.h, lib/physmem.c: New files.
24726
24727         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
24728         (noinst_HEADERS): Add physmem.h.
24729
24730         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
24731         't' for compatibility with Solaris 8 sort.
24732
24733 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
24734
24735         * lib/config.charset: Add support for BeOS.
24736
24737 2000-12-17  Jim Meyering  <meyering@lucent.com>
24738
24739         * m4/dos.m4 (jm_AC_DOS): New file and macro.
24740         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
24741
24742 2000-12-16  Jim Meyering  <meyering@lucent.com>
24743
24744         This bug had a serious impact on chown: `chown N:M FILE' (for integer
24745         N and M) would have treated it like `chown N:N FILE'.
24746
24747         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
24748
24749 2000-12-16  Jim Meyering  <meyering@lucent.com>
24750
24751         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
24752         SHELLS_FILE to a file name that's useful on djgpp systems.
24753         Include stdlib.h.
24754         (ADDITIONAL_DEFAULT_SHELLS): Define.
24755         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
24756         Based mostly on a patch from Prashant TR.
24757
24758 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
24759
24760         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
24761         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
24762         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
24763
24764 2000-12-08  Andreas Schwab  <schwab@suse.de>
24765
24766         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
24767         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
24768
24769 2000-12-07  Jim Meyering  <meyering@lucent.com>
24770
24771         * lib/stripslash.c (ISSLASH): Define.
24772         (strip_trailing_slashes): Use ISSLASH rather than comparing against
24773         `/'.
24774         From Prashant TR.
24775
24776         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
24777         (dir_name_r): Declare this function as static.
24778         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
24779         manifest itself on a name containing a mix of slashes and
24780         backslashes.
24781         Make this function work with names starting with a DOS-style
24782         drive letter and colon prefix.
24783         (dir_name): Append `.' if necessary.
24784         Based mostly on patches from Prashant TR and Eli Zaretskii.
24785
24786         * lib/dirname.h (dir_name_r): Remove prototype.
24787
24788 2000-12-06  Paul Eggert  <eggert@twinsun.com>
24789
24790         * m4/off_t-format.m4: Remove this file.
24791         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
24792
24793 2000-12-06  Jim Meyering  <meyering@lucent.com>
24794
24795         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
24796         replacement strtoull, we may well need the replacement strtoul, too.
24797         Check for declarations of strtoul and strtoull.
24798         Check for strtol.  Mainly as a cue to cause automake to include
24799         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
24800         Check for limits.h -- strtol.c needs it.
24801
24802 2000-12-05  Jim Meyering  <meyering@lucent.com>
24803
24804         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
24805
24806 2000-12-04  Jim Meyering  <meyering@lucent.com>
24807
24808         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
24809         Also include memory.h, stdlib.h, unistd.h if appropriate.
24810         Reported by Andreas Jaeger (conflicting declaration of malloc).
24811
24812 2000-12-02  Jim Meyering  <meyering@lucent.com>
24813
24814         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
24815         * m4/jm-macros.m4 (jm_MACROS): require it.
24816
24817 2000-12-02  Jim Meyering  <meyering@lucent.com>
24818
24819         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
24820
24821 2000-12-01  Paul Eggert  <eggert@twinsun.com>
24822
24823         * lib/memrchr.c: Include <config.h> before any system include file.
24824
24825 2000-11-30  Jim Meyering  <meyering@lucent.com>
24826
24827         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
24828
24829 2000-11-30  Jim Meyering  <meyering@lucent.com>
24830
24831         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
24832
24833 2000-11-29  Paul Eggert  <eggert@twinsun.com>
24834
24835         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
24836
24837 2000-11-26  Jim Meyering  <meyering@lucent.com>
24838
24839         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
24840
24841 2000-11-22  Paul Eggert  <eggert@twinsun.com>
24842
24843         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
24844         size of (size_t) -1; it's not portable.
24845
24846 2000-11-17  Jim Meyering  <meyering@lucent.com>
24847
24848         * lib/strstr.c: Update from GNU libc.
24849
24850 2000-11-17  Akim Demaille  <akim@epita.fr>
24851
24852         * lib/obstack.h: Formatting changes.
24853         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
24854         prevent type checking.
24855         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
24856         cast the value to (void *): assigning a `foo *' to a `void *'
24857         variable is valid.
24858         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
24859
24860 2000-11-16  Jim Meyering  <meyering@lucent.com>
24861
24862         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
24863
24864 2000-11-11  Jim Meyering  <meyering@lucent.com>
24865
24866         * lib/error.c: Add a couple #includes, merging from GNU libc version.
24867
24868 2000-11-10  Jim Meyering  <meyering@lucent.com>
24869
24870         * lib/obstack.h: Update from GNU libc.
24871         * lib/obstack.c: Likewise.
24872
24873 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
24874
24875         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
24876
24877 2000-11-06  Paul Eggert  <eggert@twinsun.com>
24878
24879         * lib/getusershell.c (setusershell): Use rewind rather than
24880         fseek/fseeko, to avoid configuration hassles with fseeko.
24881         Don't bother opening SHELLS_FILE if shellstream is NULL;
24882         it's not necessary.
24883
24884 2000-11-05  Jim Meyering  <meyering@lucent.com>
24885
24886         * lib/makepath.h (make_dir): Declare.
24887         * lib/makepath.c (make_dir): Remove `static' attribute.
24888         Tweak a comment.
24889
24890 2000-11-04  Jim Meyering  <meyering@lucent.com>
24891
24892         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
24893
24894 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
24895
24896         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
24897         last one in a bucket, advance to the next bucket.
24898
24899 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
24900
24901         * lib/fnmatch.c: Do not comment out all the code if we are using
24902         the GNU C library, because in some cases we are replacing buggy
24903         code in the GNU C library itself.
24904
24905 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
24906
24907         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
24908         (regex_compile): Catch bogus \(\1\).
24909
24910 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24911
24912         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
24913         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
24914         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
24915
24916 2000-10-30  Paul Eggert  <eggert@twinsun.com>
24917
24918         * lib/error.h, getline.h, modechange.h:
24919         Remove "2000" from Copyright line, as the file hasn't been
24920         changed this year other than in the copyright notice.
24921
24922         * lib/xalloc.h: Add "2000" to Copyright line, as this file
24923         was changed this year.
24924
24925 2000-10-29  Jim Meyering  <meyering@lucent.com>
24926
24927         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
24928         renaming.
24929         * m4/ls-mntd-fs.m4: Likewise
24930
24931 2000-10-29  Jim Meyering  <meyering@lucent.com>
24932
24933         * lib/xstat.in: Fix grammar in comment.
24934
24935 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
24936
24937         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
24938         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
24939         doesn't define __restrict_arr.
24940
24941 2000-10-28  Jim Meyering  <meyering@lucent.com>
24942
24943         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
24944         (jm_PREREQ_MEMCHR): New function.
24945
24946 2000-10-28  Jim Meyering  <meyering@lucent.com>
24947
24948         * lib/memchr.c: Update from libc.
24949         Adjust for portability:
24950         [HAVE_STDLIB_H]: Include stdlib.h.
24951         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
24952         Undef __memchr, too.
24953         [!weak_alias]: Define __memchr to memchr.
24954
24955         * lib/regex.c: Update from libc.
24956         * lib/regex.h: Likewise.
24957         * lib/getopt1.c: Likewise.
24958         * lib/memcmp.c: Likewise.
24959
24960         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
24961         Avoid using fseek, when possible -- it's broken by design.
24962         Patch by Ulrich Drepper.
24963
24964 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
24965
24966         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
24967         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
24968         Giving in to popular pressure to shut up the compiler with casts.
24969
24970 2000-10-26  Jim Meyering  <meyering@lucent.com>
24971
24972         * lib/strftime.c: Update from libc.
24973
24974 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
24975
24976         * regex.c: More `unsigned char' -> `re_char' changes.
24977         Also change several `int' into `re_wchar_t'.
24978         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
24979         (PUSH_FAILURE_POINTER): Don't cast any more.
24980         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
24981         We want GCC to complain, since this piece of code makes
24982         re_match non-reentrant, which *should* be fixed.
24983         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
24984         (EXTEND_BUFFER): Use RETALLOC.
24985         (SET_LIST_BIT): Don't cast.
24986         (re_wchar_t): New type.
24987         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
24988         that those two functions will always properly return.
24989         (IMMEDIATE_QUIT_CHECK): Cast to void.
24990         (analyse_first): Use recursion rather than an explicit stack.
24991         (re_compile_fastmap): Can't fail anymore.
24992         (re_search_2): Don't check re_compile_fastmap for failure.
24993         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
24994         Now also sets the new value (passed in a new argument).
24995         (re_match_2_internal): Use it.
24996         Also, use a new var `reg' of type size_t when looping through regs
24997         rather than reuse the inappropriate `mcnt'.
24998
24999 2000-10-25  Jim Meyering  <meyering@lucent.com>
25000
25001         * lib/obstack.c: Update from libc.
25002
25003 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
25004
25005         * regex.c (regex_compile): Change the way of handling a range from
25006         a char less than 256 to a char not less than 256.
25007
25008 2000-10-24  Andrew Innes  <andrewi@gnu.org>
25009
25010         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
25011         NT-Emacs only.
25012         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
25013         so that re_search functions only quit when callers expect them to.
25014
25015 2000-10-23  Jim Meyering  <meyering@lucent.com>
25016
25017         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
25018         wrong.  That set_locale call must not have any side effects.
25019         From Paul Eggert.
25020
25021 2000-10-22  Jim Meyering  <meyering@lucent.com>
25022
25023         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
25024         [CYCLIC]: Remove now-unused definition.
25025
25026         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
25027         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
25028         Suggestion from Ulrich Drepper.
25029
25030 2000-10-21  Jim Meyering  <meyering@lucent.com>
25031
25032         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
25033         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
25034         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
25035
25036 2000-10-21  Jim Meyering  <meyering@lucent.com>
25037
25038         * lib/dirname.c (memrchr): Declare if necessary.
25039         (dir_name): Remove the restriction that there be no
25040         trailing slashes.  Now, this code skips past them, effectively
25041         ignoring them.
25042         [TEST_DIRNAME] (main): New unit tests.
25043
25044         * lib/memrchr.c: New file from GNU libc.
25045         Undef __memrchr, too.
25046         [!weak_alias]: Define __memrchr to memrchr.
25047         Guard weak_alias use with `#ifdef weak_alias'.
25048
25049 2000-10-21  Jim Meyering  <meyering@lucent.com>
25050
25051         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
25052         (dir_name): Use dir_name_r.
25053         * lib/dirname.h (dir_name_r): Declare it.
25054
25055 2000-10-17  Jim Meyering  <meyering@lucent.com>
25056
25057         * lib/quote.h (PARAMS): Define and use.
25058         Reported by Akim Demaille.
25059
25060         * lib/getopt.c: Update from libc.
25061
25062 2000-10-16  Jim Meyering  <meyering@lucent.com>
25063
25064         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
25065         setlocale.
25066         From Jan Fedak.
25067
25068 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
25069
25070         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
25071
25072 2000-09-25  Jim Meyering  <meyering@lucent.com>
25073
25074         * lib/md5.h (rol): Define (from GnuPG).
25075
25076         * lib/sha.c: Give credit (GnuPG) where due.
25077         (M): Use rol rather than open-coding it.
25078         Add a FIXME comment.
25079
25080 2000-09-21  Jim Meyering  <meyering@lucent.com>
25081
25082         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
25083         Reported by Michael Stone.
25084
25085 2000-09-20  Jim Meyering  <meyering@lucent.com>
25086
25087         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
25088         (noinst_HEADERS): Add sha.h.
25089         Based on code from Scott G. Miller and from GnuPG.
25090
25091 2000-09-18  Jim Meyering  <meyering@lucent.com>
25092
25093         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
25094         LIBS. Otherwise, everyone ends up linking with -lelf for some
25095         configurations.
25096         Reported by Mike Stone.
25097
25098 2000-09-15  Jim Meyering  <meyering@lucent.com>
25099
25100         * lib/regex.c: Update from libc.
25101
25102 2000-09-10  Jim Meyering  <meyering@lucent.com>
25103
25104         * lib/getopt.c (_getopt_internal): Update from glibc.
25105
25106 2000-09-09  Jim Meyering  <meyering@lucent.com>
25107
25108         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
25109         think it should be used as a general replacement for isascii.
25110         * lib/fnmatch.c: Likewise.
25111         * lib/mbswidth.c: Likewise
25112         * lib/regex.c: Likewise.
25113
25114         Don't use atoi.
25115         * lib/userspec.c: Include sys/param.h and limits.h.
25116         Include xstrtol.h.
25117         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
25118         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
25119         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
25120         UID, GID.  Check range.
25121
25122 2000-09-06  Jim Meyering  <meyering@lucent.com>
25123
25124         * lib/getopt.c (_getopt_internal): Update from glibc.
25125
25126 2000-08-30  Jim Meyering  <meyering@lucent.com>
25127
25128         * lib/strftime.c: Merge in changes from GNU libc.
25129
25130 2000-08-26  Jim Meyering  <meyering@lucent.com>
25131
25132         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
25133         * m4/fpending.m4: New file.
25134
25135 2000-08-26  Jim Meyering  <meyering@lucent.com>
25136
25137         * lib/closeout.c: Include "__fpending.h".
25138         (close_stdout_status): Return right away if there's nothing to flush.
25139
25140         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
25141         * lib/__fpending.c: New file.
25142         * lib/__fpending.h: New file.
25143
25144 2000-08-20  Jim Meyering  <meyering@lucent.com>
25145
25146         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
25147         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
25148         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
25149
25150 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
25151
25152         Improve fileutils installation on systems where running
25153         programs (like install) can't be unlinked.
25154         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
25155         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
25156
25157 2000-08-07  Paul Eggert  <eggert@twinsun.com>
25158
25159         Standardize on "memory exhausted" instead of "Memory exhausted"
25160         or "virtual memory exhausted".
25161         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
25162         "virtual memory exhausted".
25163         * lib/same.c (same_name): Invoke xalloc_die instead of printing
25164         our own message.
25165         * lib/userspec.c (parse_user_spec): Likewise.
25166         * lib/bumpalloc.h: comment fix
25167         * lib/same.c, userspec.c: Include xalloc.h.
25168
25169         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
25170         not char *const and pointing to a constant array.
25171         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
25172         (xrealloc): Comment fix.
25173
25174         * lib/userspec.c (parse_user_spec):
25175         Don't translate a message until just before returning,
25176         to avoid unnecessary translation.
25177
25178 2000-08-07  Jim Meyering  <meyering@lucent.com>
25179
25180         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
25181         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
25182         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
25183         getgroups.c, gethostname.c, getopt.h, group-member.c,
25184         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
25185         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
25186         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
25187         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
25188         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
25189         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
25190         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
25191         yesno.c: Back out Copyright date changes for each file with no change
25192         this year.  This eases coordination with other programs using the same
25193         source code modules.  From Paul Eggert.
25194
25195 2000-08-06  Paul Eggert  <eggert@twinsun.com>
25196
25197         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
25198         not char, for compatibility with glibc 2.1.3 strftime.c.
25199
25200 2000-08-03  Greg McGary  <greg@mcgary.org>
25201
25202         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
25203         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
25204         (EXTEND_BUFFER): Use them.
25205
25206 2000-08-01  Jim Meyering  <meyering@lucent.com>
25207
25208         * lib/dirname.c (ISSLASH): Define.
25209         (BACKSLASH_IS_PATH_SEPARATOR): Define.
25210         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
25211         both `\' and `/' may be use as path separators.
25212         Based on a patch from Prashant TR.
25213
25214 2000-07-31  Paul Eggert  <eggert@twinsun.com>
25215
25216         * lib/quotearg.c (quotearg_n_options): Don't make the initial
25217         slot vector a constant, since it might get modified.
25218
25219 2000-07-31  Jim Meyering  <meyering@lucent.com>
25220
25221         * lib/xmalloc.c: Use `virtual memory exhausted', not
25222         `Memory exhausted'.
25223         * lib/obstack.c (print_and_abort): Likewise.
25224
25225 2000-07-30  Paul Eggert  <eggert@twinsun.com>
25226
25227         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
25228         buffer, so that the caller can always quote one small
25229         component of a "memory exhausted" message in slot 0.
25230         From a suggestion by Jim Meyering.
25231
25232 2000-07-30  Jim Meyering  <meyering@lucent.com>
25233
25234         * lib/makepath.c (make_path): Quote the other instance, too.
25235
25236         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
25237         (STATIC_BUF_SIZE): Define.
25238         (quotearg_n_options): Use only statically allocated storage when
25239         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
25240         than STATIC_BUF_SIZE.
25241
25242 2000-07-29  Jim Meyering  <meyering@lucent.com>
25243
25244         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
25245         * lib/dirname.c (dir_name): Likewise.
25246
25247         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
25248         `/'.
25249
25250         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
25251         (dir_name): Assert that there are no trailing slashes.
25252
25253 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
25254
25255         * lib/mbswidth.h (mbswidth): Add a flags argument.
25256         (mbswidth): New declaration.
25257         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
25258         * lib/mbswidth.c (mbswidth): Add a flags argument.
25259         (mbsnwidth): New function.
25260
25261 2000-07-24  Jim Meyering  <meyering@lucent.com>
25262
25263         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
25264
25265 2000-07-23  Paul Eggert  <eggert@twinsun.com>
25266
25267         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
25268
25269 2000-07-23  Paul Eggert  <eggert@twinsun.com>
25270
25271         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
25272         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
25273         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
25274         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
25275         invoke multibyte primitives.
25276
25277 2000-07-23  Paul Eggert  <eggert@twinsun.com>
25278
25279         * lib/quotearg.c:
25280         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
25281         so that mbstate_t is always defined.
25282
25283         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
25284         be 1 in at least one GCC installation, and this configuration
25285         error is likely to be common.  Ignoring MB_LEN_MAX hurts
25286         performance on hosts that have mbrtowc but have only unibyte
25287         locales, but I assume these hosts are rare.
25288
25289 2000-07-23  Paul Eggert  <eggert@twinsun.com>
25290
25291         * lib/mbswidth.c (_XOPEN_SOURCE):
25292         Don't define; this causes problems on Solaris 7.
25293         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
25294
25295 2000-07-23  Jim Meyering  <meyering@lucent.com>
25296
25297         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
25298         too: getgrgid, getpwuid, getuid.
25299
25300 2000-07-23  Jim Meyering  <meyering@lucent.com>
25301
25302         * lib/basename.c (base_name): Add an assertion.
25303
25304 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
25305
25306         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
25307         shadow its mbsinit function.
25308
25309 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
25310
25311         * lib/mbswidth.h: New file.
25312         * lib/mbswidth.c: New file.
25313         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
25314         (noinst_HEADERS): Add mbswidth.h.
25315
25316 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
25317
25318         * lib/config.charset: Add support for FreeBSD. Improve support for
25319         HP-UX and IRIX 6.
25320
25321 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
25322
25323         * m4/mbswidth.m4: New file.
25324         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
25325
25326 2000-07-15  Jim Meyering  <meyering@lucent.com>
25327
25328         * lib/makepath.c: Include quote.h.
25329         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
25330         corresponding argument in a `quote (...)' call.
25331         Give better diagnostics.
25332
25333         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
25334         (noinst_HEADERS): Add quote.h.
25335
25336         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
25337         from tar's src/misc.c.
25338         * lib/quote.h: New file.  Prototypes for same.
25339
25340 2000-07-14  Paul Eggert  <eggert@twinsun.com>
25341
25342         From a suggestion by Bruno Haible.
25343         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
25344         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
25345         to decide whether to define the BeOS workaround macro;
25346         this adjusts to the change to AC_MBSTATE_T.
25347
25348 2000-07-14  Jim Meyering  <meyering@lucent.com>
25349
25350         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
25351         jm_AC_TYPE_UINTMAX_T.
25352
25353 2000-07-13  Paul Eggert  <eggert@twinsun.com>
25354
25355         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
25356
25357         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
25358         quotearg_buffer_restyled): Add support for
25359         clocale_quoting_style.  Undo previous change to
25360         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
25361         and "{RIGHT QUOTATION MARK}" msgids.
25362
25363 2000-07-10  Paul Eggert  <eggert@twinsun.com>
25364
25365         From a suggestion by Bruno Haible.
25366         * m4/mbstate_t.m4 (AC_MBSTATE_T):
25367         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
25368         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
25369         and mbstate_t, to a single-part test that simply defines mbstate_t.
25370         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
25371         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
25372
25373 2000-07-10  Jim Meyering  <meyering@lucent.com>
25374
25375         * m4/strerror_r.m4: Mirror the correction made in autoconf.
25376
25377         * m4/gnu-source.m4: Output to confdefs.h directly.
25378         Suggestion from Akim Demaille.
25379
25380 2000-07-09  Paul Eggert  <eggert@twinsun.com>
25381
25382         The old behavior of quoting `like this' doesn't look good with
25383         newer, ISO-style fonts.  See:
25384         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
25385
25386         Instead, quote "like this" by default.  Let the translator
25387         tailor the locale-specific quoting behavior by providing
25388         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
25389
25390         * lib/quotearg.c (N_): New macro.
25391         (gettext_default): New function.
25392         (quotearg_buffer_restyled): Use
25393         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
25394         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
25395
25396 2000-07-09  Jim Meyering  <meyering@lucent.com>
25397
25398         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
25399         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
25400
25401         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
25402         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
25403
25404 2000-07-09  Jim Meyering  <meyering@lucent.com>
25405
25406         * lib/Most files: Update copyright dates to include 2000.
25407
25408 2000-07-08  Jim Meyering  <meyering@lucent.com>
25409
25410         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
25411         if not defined.
25412         (xgethostname): Remove now-unnecessary #ifdef.
25413         Move declaration of `err' into loop where it's used.
25414
25415 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25416         and Bruno Haible  <haible@clisp.cons.org>
25417
25418         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
25419         only if the test for an object-type mbstate_t fails.  This
25420         prevents us from mistakenly reporting that mbstate_t is a
25421         system object type after we "#define mbstate_t int" to work
25422         around its lack.
25423
25424 2000-07-05  Paul Eggert  <eggert@twinsun.com>
25425         and Bruno Haible  <haible@clisp.cons.org>
25426
25427         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
25428
25429 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25430
25431         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
25432         to strerror_r.
25433         Include <ctype.h> for use of isalpha.
25434
25435 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25436
25437         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
25438         by allocating a larger buffer. Test the gethostname return value for
25439         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
25440         returns an error and ENAMETOOLONG isn't defined.
25441
25442 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
25443
25444         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
25445         dimension.
25446
25447 2000-07-04  Jim Meyering  <meyering@lucent.com>
25448
25449         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
25450         of the deprecated AC_CHECKING.
25451
25452 2000-07-04  Jim Meyering  <meyering@lucent.com>
25453
25454         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
25455         Reported by Bruno Haible.
25456
25457 2000-07-04  Jim Meyering  <meyering@lucent.com>
25458
25459         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
25460         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
25461         lacks mbrtowc.
25462
25463 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25464
25465         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
25466         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
25467
25468 2000-07-03  Paul Eggert  <eggert@twinsun.com>
25469         and Bruno Haible  <haible@clisp.cons.org>
25470
25471         * lib/quotearg.c (mbrtowc):
25472         Assign to *pwc, and return 1 only if result is nonzero.
25473         (iswprint): Use ISPRINT when substituting our own mbrtowc.
25474
25475 2000-07-03  Jim Meyering  <meyering@lucent.com>
25476
25477         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
25478
25479 2000-07-03  Jim Meyering  <meyering@lucent.com>
25480
25481         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
25482         This is necessary to get a definition of e.g., UTMP_FILE on
25483         HP-UX 10.20.
25484         From Bob Proulx.
25485
25486 2000-07-02  Jim Meyering  <meyering@lucent.com>
25487
25488         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
25489
25490         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
25491         AC_LIBOBJ(function_name).
25492         * m4/chown.m4: Likewise.
25493         * m4/fnmatch.m4: Likewise.
25494         * m4/ftruncate.m4: Likewise.
25495         * m4/getgroups.m4: Likewise.
25496         * m4/getline.m4: Likewise.
25497         * m4/group-member.m4: Likewise.
25498         * m4/jm-macros.m4: Likewise.
25499         * m4/lstat.m4: Likewise.
25500         * m4/malloc.m4: Likewise.
25501         * m4/memcmp.m4: Likewise.
25502         * m4/nanosleep.m4: Likewise.
25503         * m4/putenv.m4: Likewise.
25504         * m4/realloc.m4: Likewise.
25505         * m4/regex.m4: Likewise.
25506         * m4/stat.m4: Likewise.
25507         * m4/strftime.m4: Likewise.
25508
25509 2000-07-02  Jim Meyering  <meyering@lucent.com>
25510
25511         * lib/quotearg.c (mbstate_t): Don't define here.
25512
25513 2000-07-02  Jim Meyering  <meyering@lucent.com>
25514
25515         * lib/nanosleep.c (SIGCONT): Define if not already defined.
25516
25517 2000-07-01  Jim Meyering  <meyering@lucent.com>
25518
25519         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
25520
25521 2000-07-01  Jim Meyering  <meyering@lucent.com>
25522
25523         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
25524         problem.
25525
25526 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25527
25528         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
25529         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
25530
25531 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
25532
25533         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
25534         per change in ../m4/ls-mntd-fs.m4.
25535         (read_filesystem_list): Ignore symbolic links.
25536
25537 2000-06-29  Jim Meyering  <meyering@lucent.com>
25538
25539         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
25540         for declaration of strcmp.
25541
25542         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
25543
25544         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
25545         Avoid warning by casting result to `char *' to remove `const'.
25546
25547 2000-06-28  Jim Meyering  <meyering@lucent.com>
25548
25549         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
25550         included by quotearg.c, for which we perform this test.  From
25551         Bruno Haible.
25552
25553 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25554
25555         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
25556         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
25557         <utmpx.h> exists, put readutmp.o into LIBOBJS.
25558
25559 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
25560
25561         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
25562
25563 2000-06-26  Paul Eggert  <eggert@twinsun.com>
25564
25565         savedir now sets errno on failure and invokes xmalloc to get memory.
25566         Fix a couple of other minor bugs while we're at it.
25567
25568         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
25569         (NAMLEN): Remove macro.
25570         (malloc, realloc): Remove decls.
25571         (stpcpy): Likewise.
25572         ("xalloc.h"): Include.
25573         (NAME_SIZE_DEFAULT): New macro.
25574         (savedir): Use xmalloc / xrealloc to allocate memory.
25575         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
25576         Skip "" directory entries.
25577         Use strlen to calculate directory entry length, since the old method
25578         is rarely used these days and isn't worth supporting.
25579         Don't use a pointer after freeing it.
25580         Check for integer overflow when calculating allocation size.
25581         Use memcpy to copy entries, instead of stpcpy.
25582         Set errno properly when returning NULL.
25583         Check for readdir error.
25584
25585 2000-06-26  Jim Meyering  <meyering@lucent.com>
25586
25587         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
25588
25589 2000-06-25  Jim Meyering  <meyering@lucent.com>
25590
25591         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
25592         Linux header bug when _XOPEN_SOURCE is defined to 500.
25593
25594 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25595
25596         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
25597         deficiency.
25598
25599 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
25600
25601         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
25602         Include xalloc.h.
25603         Don't include <stdlib.h>.  Don't declare malloc, realloc.
25604
25605 2000-06-24  Jim Meyering  <meyering@lucent.com>
25606
25607         * m4/strerror_r.m4: Revive this file -- to try out an experimental
25608         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
25609         for which strerror does return char*, but which lacks a conveniently
25610         accessible declaration of the function.  If the compile-test says
25611         strerror_r doesn't work, then resort to a `run'-test that works on
25612         BeOS and segfaults on DEC Unix.
25613
25614 2000-06-24  Jim Meyering  <meyering@lucent.com>
25615
25616         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
25617
25618 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25619
25620         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
25621         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
25622
25623 2000-06-23  Paul Eggert  <eggert@twinsun.com>
25624
25625         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
25626         (mbrtowc, mbstate_t): Define substitutes if
25627         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
25628         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
25629         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
25630
25631 2000-06-23  Jim Meyering  <meyering@lucent.com>
25632
25633         * m4/afs.m4: Add missing AC_MSG_RESULT.
25634         Reported by Bruno Haible.
25635
25636         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
25637         Suggestion from Bruno Haible.
25638
25639 2000-06-23  Jim Meyering  <meyering@lucent.com>
25640
25641         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
25642
25643 2000-06-21  Jim Meyering  <meyering@lucent.com>
25644
25645         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
25646
25647 2000-06-21  Jim Meyering  <meyering@lucent.com>
25648
25649         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
25650         (noinst_HEADERS): Add getstr.h.
25651
25652         * lib/getline.c (getstr): Move into a separate file.
25653         * lib/getstr.c (getstr): New file, extracted from getline.c, with
25654         the following changes: new parameter, delim2; both delim[12]
25655         parameters have type `int', not `char'.  The latter would lose
25656         with 8-bit delimiters.
25657         * lib/getstr.h: New file.
25658
25659 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25660
25661         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
25662         than 1024, return a memory chunk of least possible size, instead
25663         of size PATH_MAX + 2. In the loop, increment the size proportionally.
25664         Use free/xmalloc instead of xrealloc to avoid copying for very long
25665         paths.
25666
25667 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25668
25669         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
25670         the empty string.
25671
25672 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
25673
25674         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
25675         address, not strdup.  Include <stdlib.h> and don't declare free().
25676
25677 2000-06-19  Jim Meyering  <meyering@lucent.com>
25678
25679         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
25680
25681 2000-06-18  Jim Meyering  <meyering@lucent.com>
25682
25683         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
25684
25685         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
25686         `checking whether...' message to be consistent with that of the
25687         lstat test.
25688
25689 2000-06-18  Jim Meyering  <meyering@lucent.com>
25690
25691         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
25692         Besides, these days every porting target provides a mkdir function.
25693
25694         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
25695         needed. (this snippet comes from src/system.h).
25696
25697 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
25698
25699         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
25700
25701 2000-06-15  Paul Eggert  <eggert@twinsun.com>
25702
25703         * lib/human.c (adjust_value): New function.
25704         (human_readable_inexact): Apply rounding style even when
25705         printing approximate values.
25706
25707 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25708
25709         * lib/human.c (human_readable_inexact): Allow an input block
25710         size that is not a multiple of the output block size, and vice versa.
25711         Reported by Piergiorgio Sartor.
25712
25713 2000-06-14  Paul Eggert  <eggert@twinsun.com>
25714
25715         * lib/getdate.y (get_date): Apply relative times after time
25716         zone indicator, not before.  Reported by Todd A. Jacobs.
25717
25718 2000-06-13  Jim Meyering  <meyering@lucent.com>
25719
25720         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
25721
25722         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
25723
25724 2000-06-12  Paul Eggert  <eggert@twinsun.com>
25725
25726         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
25727
25728 2000-06-12  Jim Meyering  <meyering@lucent.com>
25729
25730         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
25731         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
25732         optional argument.
25733         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
25734         the optional argument, `lib'.
25735
25736 2000-06-08  Jim Meyering  <meyering@lucent.com>
25737
25738         * m4/largefile.m4: Remove file (now that it's part of autoconf).
25739
25740 2000-06-04  Paul Eggert  <eggert@twinsun.com>