More tests of printf %f.
[gnulib.git] / ChangeLog
1 2007-05-18  Bruno Haible  <bruno@clisp.org>
2
3         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
4         (strmatch): New function.
5         (test_function): Test the %f directive on numbers of various exponents.
6         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
7         (strmatch): New function.
8         (test_function): Test the %f directive on numbers of various exponents.
9         * tests/test-snprintf-posix.h (strmatch): New function.
10         (test_function): Test the %f directive on numbers of various exponents.
11         * tests/test-sprintf-posix.h (strmatch): New function.
12         (test_function): Test the %f directive on numbers of various exponents.
13         * tests/test-snprintf-posix.c (SIZEOF): New macro.
14         * tests/test-sprintf-posix.c (SIZEOF): New macro.
15         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
16         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
17
18 2007-05-18  Bruno Haible  <bruno@clisp.org>
19
20         Add support for 'long double' number output.
21         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
22         * lib/vasnprintf.c: Include math.h and float+.h.
23         (mp_limb_t): New type.
24         (GMP_LIMB_BITS): New macro.
25         (mp_twolimb_t): New type.
26         (GMP_TWOLIMB_BITS): New macro.
27         (mpn_t): New type.
28         (multiply, divide, convert_to_decimal, decode_long_double,
29         scale10_round_long_double, scale10_round_decimal_long_double,
30         floorlog10l): New functions.
31         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
32         for the %f, %F, %e, %E, %g, %G directives.
33         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
34         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
36         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
37         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
38         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
39         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
41         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
42         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
43         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
44         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
45         * modules/snprintf-posix (Depends-on): Likewise.
46         * modules/sprintf-posix (Depends-on): Likewise.
47         * modules/vasnprintf-posix (Depends-on): Likewise.
48         * modules/vasprintf-posix (Depends-on): Likewise.
49         * modules/vfprintf-posix (Depends-on): Likewise.
50         * modules/vsnprintf-posix (Depends-on): Likewise.
51         * modules/vsprintf-posix (Depends-on): Likewise.
52         * modules/vasnprintf (Files): Add lib/float+.h.
53         * doc/functions/fprintf.texi: Update.
54         * doc/functions/printf.texi: Update.
55         * doc/functions/snprintf.texi: Update.
56         * doc/functions/sprintf.texi: Update.
57         * doc/functions/vfprintf.texi: Update.
58         * doc/functions/vprintf.texi: Update.
59         * doc/functions/vsnprintf.texi: Update.
60         * doc/functions/vsprintf.texi: Update.
61
62 2007-05-18  Bruno Haible  <bruno@clisp.org>
63
64         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
65
66 2007-05-18  Bruno Haible  <bruno@clisp.org>
67
68         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
69         for printing 64-bit integers. Needed for mingw.
70
71 2007-05-18  Bruno Haible  <bruno@clisp.org>
72
73         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
74         gl_FUNC_FREXPL_WORKS.
75         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
76
77 2007-05-18  Bruno Haible  <bruno@clisp.org>
78
79         * modules/frexpl-nolibm-tests: New file.
80
81         * modules/frexpl-nolibm: New file.
82         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
83
84 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
85
86         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
87         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
88         GCC 4.2, which otherwise issues a lot of warnings.
89         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
90         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
91         Likewise.
92         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
93         * modules/iconv_open (iconv.h): Likewise.
94         * modules/locale (locale.h): Likewise.
95         * modules/netinet_in (netinet/in.h): Likewise.
96         * modules/sys_select (sys_select.h): Likewise.
97         * modules/sys_socket (sys/socket.h): Likewise.
98         * modules/sys_stat (sys/stat.h): Likewise.
99         * modules/sysexits (sysexits.h): Likewise.
100         * modules/unistd (unistd.h): Likewise.
101
102 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
103
104         * modules/closein-tests (Makefile.am): Distribute
105         `test-closein.sh'.
106
107 2007-05-17  Bruno Haible  <bruno@clisp.org>
108
109         * tests/test-printf-posix.output: Renamed from
110         tests/test-fprintf-posix.out.
111         * modules/fprintf-posix-tests: Update.
112         * modules/printf-posix-tests: Update.
113         * modules/vfprintf-posix-tests: Update.
114         * modules/vprintf-posix-tests: Update.
115         * tests/test-fprintf-posix.sh: Update.
116         * tests/test-printf-posix.sh: Update.
117         * tests/test-vfprintf-posix.sh: Update.
118         * tests/test-vprintf-posix.sh: Update.
119         Reported by Ralf Wildenhues.
120
121 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
122
123         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
124         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
125         GCC 4.2, which otherwise issues a lot of warnings.
126         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
127         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
128         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
129         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
130         it should no longer be needed.
131         * lib/string_.h: Likewise.
132         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
133         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
134         * modules/inttypes (inttypes.h): Likewise.
135         * modules/math (math.h): Likewise.
136         * modules/search (search.h): Likewise.
137         * modules/signal (signal.h): Likewise.
138         * modules/stdint (stdint.h): Likewise.
139         * modules/stdio (stdio.h): Likewise.
140         * modules/stdlib (stdlib.h): Likewise.
141         * modules/string (string.h): Likewise.
142         * modules/sys_time (sys/time.h): Likewise.
143         * modules/time (time.h): Likewise.
144         * modules/wchar (wchar.h): Likewise.
145         * modules/wctype (wtype.h): Likewise.
146
147 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
148
149         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
150
151 2007-05-13  Bruno Haible  <bruno@clisp.org>
152
153         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
154         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
155         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
156         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
157         (gl_PREREQ_STRTOK_R): Don't require it here.
158
159 2007-05-13  Bruno Haible  <bruno@clisp.org>
160
161         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
162         when used in C++ mode.
163
164 2007-05-12  Bruno Haible  <bruno@clisp.org>
165
166         * lib/linebuffer.h: Tweak doc.
167         * lib/linebuffer.c: Likewise.
168
169 2007-05-12  James Youngman  <jay@gnu.org>
170
171         * lib/linebuffer.c (readlinebuffer_delim): New function,
172         like readlinebuffer, but use a caller-specified delimiter.
173         (readlinebuffer): Just call readlinebuffer_delim with '\n'
174         as the delimiter.
175         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
176
177 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
178
179         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
180         * modules/openat (Files): Remove openat-die.c.
181         (Depends-on): Add openat-die.
182         * modules/openat-die: New module.
183
184 2007-05-06  Bruno Haible  <bruno@clisp.org>
185
186         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
187         Update with info about Cygwin.
188         * doc/functions/fprintf.texi: Update.
189         * doc/functions/printf.texi: Update.
190         * doc/functions/snprintf.texi: Update.
191         * doc/functions/sprintf.texi: Update.
192         * doc/functions/vfprintf.texi: Update.
193         * doc/functions/vprintf.texi: Update.
194         * doc/functions/vsnprintf.texi: Update.
195         * doc/functions/vsprintf.texi: Update.
196         Reported by Eric Blake.
197
198 2007-05-06  Bruno Haible  <bruno@clisp.org>
199
200         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
201         padding ourselves for the floating-point directives.
202         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
203         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
204         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
205         gl_PRINTF_FLAG_ZERO and test its result. Invoke
206         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
207         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
208         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
209         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
210         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
211         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
212         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
213         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
214         * tests/test-snprintf-posix.h (test_function): Also check the width
215         and some flags in the %f directive.
216         * tests/test-sprintf-posix.h (test_function): Likewise.
217         * tests/test-vasnprintf-posix.c (test_function): Likewise.
218         * tests/test-vasprintf-posix.c (test_function): Likewise.
219         * doc/functions/fprintf.texi: Update.
220         * doc/functions/printf.texi: Update.
221         * doc/functions/snprintf.texi: Update.
222         * doc/functions/sprintf.texi: Update.
223         * doc/functions/vfprintf.texi: Update.
224         * doc/functions/vprintf.texi: Update.
225         * doc/functions/vsnprintf.texi: Update.
226         * doc/functions/vsprintf.texi: Update.
227
228 2007-05-06  Bruno Haible  <bruno@clisp.org>
229
230         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
231         pass the ' flag character to sprintf or snprintf.
232         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
233         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
234         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
235         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
236         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
237         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
238         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
239         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
240         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
241         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
242         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
243         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
244         * tests/test-snprintf-posix.h (test_function): Also check the grouping
245         flag.
246         * tests/test-sprintf-posix.h (test_function): Likewise.
247         * tests/test-vasnprintf-posix.c (test_function): Likewise.
248         * tests/test-vasprintf-posix.c (test_function): Likewise.
249         * doc/functions/fprintf.texi: Update.
250         * doc/functions/printf.texi: Update.
251         * doc/functions/snprintf.texi: Update.
252         * doc/functions/sprintf.texi: Update.
253         * doc/functions/vfprintf.texi: Update.
254         * doc/functions/vprintf.texi: Update.
255         * doc/functions/vsnprintf.texi: Update.
256         * doc/functions/vsprintf.texi: Update.
257
258 2007-05-01  Bruno Haible  <bruno@clisp.org>
259
260         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
261
262 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
263
264         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
265         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
266
267 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
268
269         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
270         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
271         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
272
273 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
274
275         * lib/argp-help.c (struct hol_entry): New member `ord'.
276         (HOL_ENTRY_PTRCMP): Use ord for comparison
277         (hol_sort): Initialize ord.
278
279 2007-05-01  Bruno Haible  <bruno@clisp.org>
280
281         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
282         Reported by Eric Blake.
283         * doc/gnulib.texi (Function Substitutes): Update.
284
285 2007-05-01  Bruno Haible  <bruno@clisp.org>
286
287         * doc/functions.texi: Remove file, now redundant through
288         doc/functions/*.texi.
289
290 2007-05-01  Bruno Haible  <bruno@clisp.org>
291
292         * modules/argp (Depends-on): Add sleep.
293
294 2007-05-01  Bruno Haible  <bruno@clisp.org>
295
296         * modules/sleep-tests: New file.
297         * tests/test-sleep.c: New file.
298
299         * modules/sleep: New file.
300         * lib/sleep.c: New file.
301         * m4/sleep.m4: New file.
302         * lib/unistd_.h (sleep): New declaration.
303         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
304         HAVE_SLEEP.
305         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
306         * doc/functions/sleep.texi: Document the sleep module.
307
308 2007-05-01  Bruno Haible  <bruno@clisp.org>
309
310         * lib/sigprocmask.h: Remove file.
311         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
312         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
313         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
314         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
315         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
316         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
317         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
318         HAVE_SIGSET_T as a shell variable.
319         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
320         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
321         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
322         (Depends-on): Add signal. Remove verify.
323         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
324         (Include): Mention <signal.h> instead of sigprocmask.h.
325         * NEWS: Mention the change.
326         * lib/fatal-signal.c: Don't include sigprocmask.h.
327
328 2007-05-01  Bruno Haible  <bruno@clisp.org>
329
330         * modules/signal: New file.
331         * lib/signal_.h: New file.
332         * m4/signal_h.m4: New file.
333
334 2007-05-01  Bruno Haible  <bruno@clisp.org>
335
336         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
337         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
338         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
339         HAVE_WCTYPE_CTMP_BUG into wctype.h.
340
341 2007-05-01  Bruno Haible  <bruno@clisp.org>
342
343         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
344         configure time.
345         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
346         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
347         * modules/sys_stat (Makefile.am): Substitute their values into
348         sys/stat.h.
349
350 2007-05-01  Bruno Haible  <bruno@clisp.org>
351
352         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
353         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
354         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
355
356 2007-05-01  Bruno Haible  <bruno@clisp.org>
357
358         * doc/header/assert.texi: Undo last change: don't mention the gnulib
359         'assert' module here.
360
361 2007-05-01  Bruno Haible  <bruno@clisp.org>
362
363         * doc/functions/*.texi: New files.
364         * doc/functions/google-ranking.txt: New file.
365         * doc/gnulib.texi (Function Substitutes): New chapter.
366         (ctime, inet_ntoa): Remove sections.
367         * doc/ctime.texi: Remove file.
368         * doc/inet_ntoa.texi: Remove file.
369         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
370         dependencies.
371         (%.info): New rule, specifying a --reference-limit.
372
373 2007-05-01  Bruno Haible  <bruno@clisp.org>
374
375         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
376
377 2007-05-01  Bruno Haible  <bruno@clisp.org>
378
379         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
380         the portability of 'mkdir' to mingw systems.
381
382 2007-05-01  Bruno Haible  <bruno@clisp.org>
383
384         * doc/headers/google-ranking.txt: New file.
385
386 2007-04-30  Eric Blake  <ebb9@byu.net>
387
388         Prefer fseeko to fseek.
389         * modules/getpass (Depends-on): Add fseeko.
390         * lib/getpass.c (getpass): Use fseeko, not fseek.
391
392 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
393
394         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
395         assumes the sorting is stable, while most qsort implementations
396         are not.  Use argument addresses to ensure they never compare as
397         equal.
398
399         * tests/test-argp-2.sh (usage-indent test): Fix output
400         (func_compare): Restore diff options
401         * tests/test-argp.c: Restore #include "progname.h"
402
403 2007-04-29  Bruno Haible  <bruno@clisp.org>
404
405         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
406         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
407         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
408         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
409         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
410         (configure.ac): Define CHECK_SNPRINTF_POSIX.
411         (TESTS, check_PROGRAMS): Add test-snprintf.
412         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
413         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
414         (TESTS, check_PROGRAMS): Add test-vsnprintf.
415         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
416         assertions that fail on HP-UX, OSF/1, or IRIX.
417         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
418
419 2007-04-29  Bruno Haible  <bruno@clisp.org>
420
421         * MODULES.html.sh (posix_functions): Remove 'contents'.
422
423 2007-04-29  Karl Berry  <karl@gnu.org>
424
425         * config/srclist.txt (gendocs_template_min): new entry.
426
427 2007-04-29  Bruno Haible  <bruno@clisp.org>
428
429         Work around fpurge bug on BSD systems.
430         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
431         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
432         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
433         fpurge to rpl_fpurge if the system already has this function.
434         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
435         the case where the system already has this function. Correct invariants
436         on BSD systems.
437         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
438         BSD systems.
439
440 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
441
442         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
443         proposed by Sven Verdoolaege.
444
445         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
446         options.
447         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
448         (usage and help tests): Update
449
450 2007-04-29  Bruno Haible  <bruno@clisp.org>
451
452         * tests/test-fflush.c (main): Use a file of size 17, not 10.
453         Print more information in case of failure. Disable a test on BeOS.
454
455 2007-04-29  Bruno Haible  <bruno@clisp.org>
456
457         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
458         This helps debugging on systems on which no gdb is available.
459
460 2007-04-29  Bruno Haible  <bruno@clisp.org>
461
462         * lib/freading.h: Improve comments.
463         * lib/fwriting.h: Likewise.
464         * tests/test-freading.c (main): Don't check freading immediately after
465         repositioning. Needed for glibc.
466
467 2007-04-29  Bruno Haible  <bruno@clisp.org>
468
469         * lib/freading.c (freading): Trivial simplification.
470
471 2007-04-28  Bruno Haible  <bruno@clisp.org>
472
473         * tests/test-fwriting.c (main): Also test the interaction between
474         fflush and fwriting.
475         * modules/fwriting-tests (Depends-on): Add fflush.
476
477         * tests/test-freading.c (main): Also test the interaction between
478         fflush and freading.
479         * modules/freading-tests (Depends-on): Add fflush.
480
481 2007-04-28  Bruno Haible  <bruno@clisp.org>
482
483         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
484         fseeko and ftello.
485         Suggested by Eric Blake.
486
487 2007-04-28  Jim Meyering  <jim@meyering.net>
488
489         Avoid false-negative in gl_STDINT_H's C99 conformance test.
490         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
491         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
492
493 2007-04-27  Eric Blake  <ebb9@byu.net>
494
495         * doc/headers/assert.texi (assert.h): Document assert module use.
496
497 2007-04-27  Bruno Haible  <bruno@clisp.org>
498
499         * doc/headers/*.texi: New files.
500         * doc/gnulib.texi (Header File Substitutes): New chapter.
501         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
502         dependencies.
503         (standards.info ,standards.html, standards.dvi): Update dependencies.
504         (mostlyclean, clean): New targets.
505
506 2007-04-27  Bruno Haible  <bruno@clisp.org>
507
508         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
509         * modules/sysexits (Files, Makefile.am): Update.
510
511         * lib/sys_socket_.h: Renamed from lib/socket_.h.
512         * modules/sys_socket (Files, Makefile.am): Update.
513
514         * lib/sys_stat_.h: Renamed from lib/stat_.h.
515         * modules/sys_stat (Files, Makefile.am): Update.
516
517 2007-04-27  Eric Blake  <ebb9@byu.net>
518
519         * lib/freading.h: Improve comments.
520         * lib/fwriting.h: Likewise.
521         * lib/fflush.c: Likewise.
522
523         Fix closein for mingw.
524         * modules/closein-tests: Add tests for closein.
525         * tests/test-closein.c: New file.
526         * tests/test-closein.sh: Likewise.
527         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
528         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
529
530 2007-04-27  Bruno Haible  <bruno@clisp.org>
531
532         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
533         version is < 6.
534         * lib/math_.h [__DECC]: Likewise.
535         * lib/stdio_.h [__DECC]: Likewise.
536         * lib/stdlib_.h [__DECC]: Likewise.
537         * lib/string_.h [__DECC]: Likewise.
538         * lib/time_.h [__DECC]: Likewise.
539         * lib/wchar_.h [__DECC]: Likewise.
540         * lib/wctype_.h [__DECC]: Likewise.
541
542 2007-04-27  Bruno Haible  <bruno@clisp.org>
543
544         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
545
546 2007-04-27  Bruno Haible  <bruno@clisp.org>
547
548         * lib/fflush.c: Add comments.
549         * modules/fpurge-tests (Depends-on): Add fflush.
550         * modules/freadable-tests (Depends-on): Likewise.
551         * modules/fwritable-tests (Depends-on): Likewise.
552
553 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
554
555         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
556         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
557         Report by Bruno Haible <bruno@clisp.org>.
558
559 2007-04-26  Eric Blake  <ebb9@byu.net>
560
561         Fix fflush on mingw.
562         * modules/fflush (Depends-on): Add freading.
563         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
564         but unread data.
565
566 2007-04-26  Eric Blake  <ebb9@byu.net>
567         and Bruno Haible  <bruno@clisp.org>
568
569         Implement freading and fwriting.
570         * lib/freading.c: New file.
571         * lib/freading.h: Likewise.
572         * m4/freading.m4: Likewise.
573         * modules/freading: Likewise.
574         * modules/freading-tests: Likewise.
575         * tests/test-freading.c: Likewise.
576         * lib/fwriting.c: New file.
577         * lib/fwriting.h: Likewise.
578         * m4/fwriting.m4: Likewise.
579         * modules/fwriting: Likewise.
580         * modules/fwriting-tests: Likewise.
581         * tests/test-fwriting.c: Likewise.
582         * MODULES.html.sh (File stream based Input/Output): Mention them.
583
584 2007-04-26  Bruno Haible  <bruno@clisp.org>
585
586         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
587         'long' when we assume it.
588         Suggested by Eric Blake.
589
590 2007-04-26  Bruno Haible  <bruno@clisp.org>
591
592         Ensure fseeko, ftello are declared on glibc systems.
593         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
594         * modules/fseeko (configure.ac-early): Likewise.
595         * modules/ftello (configure.ac-early): Likewise.
596         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
597         AC_FUNC_FSEEKO for this.
598         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
599         (gl_CHECK_FSEEKO): Remove macro.
600
601 2007-04-26  Bruno Haible  <bruno@clisp.org>
602
603         * tests/test-fflush.c (main): Also check the ftell result after
604         fflush and fseek/fseeko.
605         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
606         file descriptor position cache in the stream.
607         * lib/fseeko.c (rpl_fseeko): Likewise.
608
609 2007-04-26  Bruno Haible  <bruno@clisp.org>
610
611         * modules/fflush-tests (Depends-on): Add fseeko.
612
613 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
614             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
615
616         * lib/argz_.h: ensure error_t definition is obtained in same
617         mechanism system argz.h would have.
618         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
619         argz facilities are known bad.  Err on the side of caution if
620         cross-compiling.
621
622 2007-04-25  Eric Blake  <ebb9@byu.net>
623
624         * lib/fpurge.c (includes): Use stdlib.h for free.
625         * tests/test-fflush.c (main): Also test fflush-fseeko.
626
627 2007-04-25  Bruno Haible  <bruno@clisp.org>
628
629         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
630         * lib/fseeko.c: New file.
631         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
632         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
633         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
634         gl_FUNC_FSEEKO.
635         (gl_FUNC_FSEEKO): Invoke it.
636         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
637         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
638         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
639
640 2007-04-25  Bruno Haible  <bruno@clisp.org>
641
642         * modules/fflush (Depends-on): Add ftello.
643
644 2007-04-25  Bruno Haible  <bruno@clisp.org>
645
646         * modules/ftello-tests: New file.
647         * tests/test-ftello.c: New file.
648
649         * modules/ftello: New file.
650         * m4/ftello.m4: New file.
651         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
652         HAVE_FTELLO.
653         * lib/stdio_.h (ftello): New declaration.
654         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
655         HAVE_FTELLO.
656
657 2007-04-25  Bruno Haible  <bruno@clisp.org>
658
659         * modules/fseeko-tests: New file.
660         * tests/test-fseeko.c: New file.
661
662         * modules/fseeko: New file.
663         * m4/fseeko.m4: New file.
664         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
665         HAVE_FSEEKO.
666         * lib/stdio_.h (fseeko): New declaration.
667         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
668         HAVE_FSEEKO.
669
670 2007-04-25  Bruno Haible  <bruno@clisp.org>
671
672         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
673
674 2007-04-25  Bruno Haible  <bruno@clisp.org>
675
676         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
677         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
678         * tests/test-unistd.c: Likewise.
679         * tests/test-fcntl.c: Likewise.
680
681 2007-04-23  Eric Blake  <ebb9@byu.net>
682
683         * lib/fflush.c: Fix missing include.
684         Reported by Bruno Haible.
685
686 2007-04-23  Bruno Haible  <bruno@clisp.org>
687
688         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
689         Reported by Eric Blake.
690
691 2007-04-23  Bruno Haible  <bruno@clisp.org>
692
693         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
694
695 2007-04-23  Bruno Haible  <bruno@clisp.org>
696
697         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
698
699 2007-04-23  Bruno Haible  <bruno@clisp.org>
700
701         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
702         Needed on HP-UX 11.
703
704 2007-04-16  Eric Blake  <ebb9@byu.net>
705
706         Make fflush rely on fpurge.
707         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
708         open coding all variants.
709         * modules/fflush (Depends-on): Add fpurge and unistd.
710         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
711         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
712
713         Fix --with-tests compilation on cygwin.
714         * modules/argmatch-tests (Makefile.am): List gnulib library first
715         in LDADD.
716         * modules/argp-tests (Makefile.am): Likewise.
717         * modules/array-list-tests (Makefile.am): Likewise.
718         * modules/array-oset-tests (Makefile.am): Likewise.
719         * modules/avltree-list-tests (Makefile.am): Likewise.
720         * modules/avltree-oset-tests (Makefile.am): Likewise.
721         * modules/avltreehash-list-tests (Makefile.am): Likewise.
722         * modules/carray-list-tests (Makefile.am): Likewise.
723         * modules/dirname-tests (Makefile.am): Likewise.
724         * modules/frexp-tests (Makefile.am): Likewise.
725         * modules/isnanl-tests (Makefile.am): Likewise.
726         * modules/linked-list-tests (Makefile.am): Likewise.
727         * modules/linkedhash-list-tests (Makefile.am): Likewise.
728         * modules/lock-tests (Makefile.am): Likewise.
729         * modules/rbtree-list-tests (Makefile.am): Likewise.
730         * modules/rbtree-oset-tests (Makefile.am): Likewise.
731         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
732         * modules/tls-tests (Makefile.am): Likewise.
733         * modules/tsearch-tests (Makefile.am): Likewise.
734         * modules/xvasprintf-tests (Makefile.am): Likewise.
735
736         Fix fpurge for cygwin.
737         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
738         value.
739         * modules/fpurge-tests (Depends-on): Clean up trash.
740
741 2007-04-16  Simon Josefsson  <simon@josefsson.org>
742
743         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
744
745         * m4/autobuild.m4: Re-indent.
746
747 2007-04-13  Bruno Haible  <bruno@clisp.org>
748
749         * modules/fpurge-tests: New file.
750         * tests/test-fpurge.c: New file.
751
752         * modules/fpurge: New file.
753         * lib/fpurge.h: New file.
754         * lib/fpurge.c: New file.
755         * m4/fpurge.m4: New file.
756
757 2007-04-13  Bruno Haible  <bruno@clisp.org>
758
759         * modules/fbufmode-tests: New file.
760         * tests/test-fbufmode.c: New file.
761
762         * modules/fbufmode: New file.
763         * lib/fbufmode.h: New file.
764         * lib/fbufmode.c: New file.
765         * m4/fbufmode.m4: New file.
766
767 2007-04-13  Bruno Haible  <bruno@clisp.org>
768
769         * modules/fwritable-tests: New file.
770         * tests/test-fwritable.c: New file.
771
772         * modules/fwritable: New file.
773         * lib/fwritable.h: New file.
774         * lib/fwritable.c: New file.
775         * m4/fwritable.m4: New file.
776
777 2007-04-13  Bruno Haible  <bruno@clisp.org>
778
779         * modules/freadable-tests: New file.
780         * tests/test-freadable.c: New file.
781
782         * modules/freadable: New file.
783         * lib/freadable.h: New file.
784         * lib/freadable.c: New file.
785         * m4/freadable.m4: New file.
786
787 2007-04-13  Bruno Haible  <bruno@clisp.org>
788
789         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
790         MOSTLYCLEANFILES.
791
792 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
793
794         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
795         gzip bootstrap.conf to avoid dragging in i18n machinery.
796         (gnulib_tool_option): Use it.
797
798 2007-04-13  Bruno Haible  <bruno@clisp.org>
799
800         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
801         %F directives.
802         * tests/test-vasprintf-posix.c (test_function): Likewise.
803         * tests/test-snprintf-posix.h (test_function): Likewise.
804         * tests/test-sprintf-posix.h (test_function): Likewise.
805         * tests/test-fprintf-posix.h (test_function): Likewise.
806         * tests/test-printf-posix.h (test_function): Likewise.
807         * tests/test-fprintf-posix.out: Likewise.
808
809 2007-04-13  Bruno Haible  <bruno@clisp.org>
810
811         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
812         * modules/tls-tests (configure.ac): Likewise.
813         Reported by Arto C. Nirkko <anirkko@insel.ch>.
814
815 2007-04-13  Bruno Haible  <bruno@clisp.org>
816
817         * lib/tls.c (glthread_tls_get): Fix return type.
818         Patch by Arto C. Nirkko <anirkko@insel.ch>.
819
820 2007-04-12  Eric Blake  <ebb9@byu.net>
821
822         * modules/gettime (Depends-on): Remove gettime.
823         Reported by Dmitry V. Levin.
824
825 2007-04-12  Bruno Haible  <bruno@clisp.org>
826
827         * modules/fflush (Include): Mention <stdio.h>.
828         * modules/strtoimax (Include): Mention <inttypes.h>.
829         * modules/strtoumax (Include): Likewise.
830
831 2007-04-12  Eric Blake  <ebb9@byu.net>
832
833         * .cvsignore: New file.
834         * .gitignore: Likewise.
835
836 2007-04-12  Bruno Haible  <bruno@clisp.org>
837
838         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
839         not before, since $(LDADD) often contains libgnu.a.
840         * modules/striconv-tests (test_striconv_LDADD): Likewise.
841         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
842         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
843         Needed on Cygwin.
844
845 2007-04-12  Eric Blake  <ebb9@byu.net>
846
847         Work around glibc's failure to flush stdin on fclose.
848         * lib/closein.c (close_stdin): Flush stdin before closing.
849
850         Work around glibc's failure to reset seekable stdin on exit.
851         * modules/closein: New module.
852         * lib/closein.c: New file.
853         * lib/closein.h: Likewise.
854         * m4/closein.m4: Likewise.
855         * MODULES.html.sh (File stream based Input/Output): Document it.
856
857 2007-04-12  Simon Josefsson  <simon@josefsson.org>
858
859         * gnulib-tool: Rename generated 'autobuild' script to
860         'do-autobuild' in --create-megatestdir output.
861
862         * doc/gnulib.texi (Build robot for gnulib): Fix.
863
864 2007-04-12  Simon Josefsson  <simon@josefsson.org>
865
866         * modules/sysexits (Depends-on): Add absolute-header.
867
868 2007-04-12  Eric Blake  <ebb9@byu.net>
869
870         No need to preserve errno on success.
871         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
872         Reported by Bruno Haible.
873
874 2007-04-12  Simon Josefsson  <simon@josefsson.org>
875
876         * MODULES.html.sh (Support for maintaining and releasing
877         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
878
879 2007-04-12  Simon Josefsson  <simon@josefsson.org>
880
881         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
882
883 2007-04-12  Simon Josefsson  <simon@josefsson.org>
884
885         * modules/autobuild: New module.
886
887         * m4/autobuild.m4: New file.
888
889 2007-04-11  Bruno Haible  <bruno@clisp.org>
890
891         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
892         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
893         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
894         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
895         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
896         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
897         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
898         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
899         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
900         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
901         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
902         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
903         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
904         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
905         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
906         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
907         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
908         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
909         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
910         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
911         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
912         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
913         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
914         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
915         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
916         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
917         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
918         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
919         Reported by Eric Blake.
920
921 2007-04-11  Bruno Haible  <bruno@clisp.org>
922
923         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
924
925 2007-04-10  Bruno Haible  <bruno@clisp.org>
926
927         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
928         for NaN and Infinity. Needed on FreeBSD 6.1.
929         * tests/test-vasnprintf-posix.c (test_function): Undo last change
930         regarding results for "%010a" of Infinity and NaN.
931         * tests/test-vasprintf-posix.c (test_function): Likewise.
932         * tests/test-snprintf-posix.h (test_function): Likewise.
933         * tests/test-sprintf-posix.h (test_function): Likewise.
934         * tests/test-fprintf-posix.h (test_function): Likewise.
935         * tests/test-printf-posix.h (test_function): Likewise.
936         * tests/test-fprintf-posix.out: Likewise.
937
938 2007-04-10  Bruno Haible  <bruno@clisp.org>
939
940         * modules/locale-tests: New file.
941         * tests/test-locale.c: New file.
942
943         * modules/locale: New file.
944         * lib/locale_.h: New file.
945         * m4/locale_h.m4: New file.
946
947 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
948             Bruno Haible  <bruno@clisp.org>
949
950         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
951         be determined, test for availability of the copysignf, copysign,
952         copysignl functions.
953         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
954         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
955         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
956
957 2007-04-09  Eric Blake  <ebb9@byu.net>
958
959         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
960         * modules/stdio (Makefile.am): Support fflush.
961         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
962         * modules/fflush: New file.
963         * lib/fflush.c: Likewise.
964         * m4/fflush.m4: Likewise.
965         * modules/fflush-tests: New test.
966         * tests/test-fflush.c: Likewise.
967         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
968
969 2007-04-06  Bruno Haible  <bruno@clisp.org>
970
971         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
972         (VASNPRINTF): Use signbit for faster determination whether to print a
973         minus sign.
974         * modules/vasnprintf (Files): Remove lib/float+.h.
975         * modules/fprintf-posix (Depends-on): Add signbit.
976         * modules/snprintf-posix (Depends-on): Likewise.
977         * modules/sprintf-posix (Depends-on): Likewise.
978         * modules/vasnprintf-posix (Depends-on): Likewise.
979         * modules/vasprintf-posix (Depends-on): Likewise.
980         * modules/vfprintf-posix (Depends-on): Likewise.
981         * modules/vsnprintf-posix (Depends-on): Likewise.
982         * modules/vsprintf-posix (Depends-on): Likewise.
983
984 2007-04-06  Bruno Haible  <bruno@clisp.org>
985
986         * tests/test-frexp.c (main): Test also the sign bit of zero results.
987         * tests/test-frexpl.c (main): Likewise.
988         * tests/test-ldexpl.c (main): Likewise.
989         * modules/frexp-tests (Depends-on): Add signbit.
990         * modules/frexpl-tests (Depdends-on): Likewise.
991         * modules/ldexpl-tests (Depdends-on): Likewise.
992
993 2007-04-06  Bruno Haible  <bruno@clisp.org>
994
995         * modules/signbit-tests: New file.
996         * tests/test-signbit.c: New file.
997
998         * modules/signbit: New file.
999         * lib/signbitf.c: New file.
1000         * lib/signbitd.c: New file.
1001         * lib/signbitl.c: New file.
1002         * m4/signbit.m4: New file.
1003         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
1004         (signbit): New macro.
1005         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
1006         REPLACE_SIGNBIT.
1007         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
1008         REPLACE_FREXPL into math.h.
1009
1010 2007-04-06  Bruno Haible  <bruno@clisp.org>
1011
1012         * modules/isnanf-nolibm-tests: New file.
1013         * tests/test-isnanf.c: New file.
1014
1015         * modules/isnanf-nolibm: New file.
1016         * lib/isnanf.h: New file.
1017         * lib/isnanf.c: New file.
1018         * lib/isnan.c: Consider the USE_FLOAT macro.
1019         * m4/isnanf.m4: New file.
1020
1021 2007-04-06  Bruno Haible  <bruno@clisp.org>
1022
1023         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
1024         (Link): New section.
1025
1026         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
1027
1028 2007-04-06  Bruno Haible  <bruno@clisp.org>
1029
1030         Assume the 'long double' type.
1031         * m4/longdouble.m4: Remove file.
1032         * config/srclist.txt: Don't mention longdouble.m4.
1033         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
1034         * lib/float+.h: Likewise.
1035         * lib/frexp.c: Likewise.
1036         * lib/printf-args.h: Likewise.
1037         * lib/printf-args.c: Likewise.
1038         * lib/printf-frexp.c: Likewise.
1039         * lib/printf-parse.c: Likewise.
1040         * lib/vasnprintf.c: Likewise.
1041         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
1042         * m4/intl.m4: Likewise.
1043         * m4/isnanl.m4: Likewise.
1044         * m4/printf.m4: Likewise.
1045         * m4/printf-frexpl.m4: Likewise.
1046         * m4/vasnprintf.m4: Likewise.
1047         * modules/allocsa (Files): Remove m4/longdouble.m4.
1048         * modules/gettext (Files): Likewise.
1049         * modules/relocatable-prog-wrapper (Files): Likewise.
1050         * modules/vasnprintf (Files): Likewise.
1051         * modules/isnanl (Files): Likewise.
1052         (Include): Simplify.
1053         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
1054         (Include): Simplify.
1055         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
1056         (Include): Simplify.
1057         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
1058         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1059         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
1060         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1061         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1062         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1063         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
1064         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1065         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
1066         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1067         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
1068         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
1069         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
1070         * tests/test-isnanl.c: Likewise.
1071         * tests/test-snprintf-posix.h: Likewise.
1072         * tests/test-sprintf-posix.h: Likewise.
1073         * tests/test-vasnprintf-posix.c: Likewise.
1074         * tests/test-vasnprintf-posix2.c: Likewise.
1075         * tests/test-vasprintf-posix.c: Likewise.
1076
1077 2007-04-06  Bruno Haible  <bruno@clisp.org>
1078
1079         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
1080         * lib/math_.h [__DECC]: Include the overridden include file through
1081         #include_next, outside the double-inclusion guard.
1082         * lib/stdio_.h [__DECC]: Likewise.
1083         * lib/stdlib_.h [__DECC]: Likewise.
1084         * lib/string_.h [__DECC]: Likewise.
1085         * lib/time_.h [__DECC]: Likewise.
1086         * lib/wchar_.h [__DECC]: Likewise.
1087         * lib/wctype_.h [__DECC]: Likewise.
1088         * lib/inttypes_.h [__DECC]: Likewise.
1089         Reported by Albert Chin <china@thewrittenword.com> in
1090         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
1091
1092 2007-04-04  Eric Blake  <ebb9@byu.net>
1093
1094         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
1095         1.5.x.
1096
1097 2007-04-04  Bruno Haible  <bruno@clisp.org>
1098
1099         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
1100         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
1101
1102 2007-04-04  Bruno Haible  <bruno@clisp.org>
1103
1104         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
1105         results for "%010a" of Infinity and NaN.
1106         * tests/test-vasprintf-posix.c (test_function): Likewise.
1107         * tests/test-snprintf-posix.h (test_function): Likewise.
1108         * tests/test-sprintf-posix.h (test_function): Likewise.
1109         * tests/test-fprintf-posix.h (test_function): Remove these tests.
1110         * tests/test-printf-posix.h (test_function): Likewise.
1111         * tests/test-fprintf-posix.out: Update.
1112         Needed for FreeBSD 6.1.
1113
1114 2007-04-04  Bruno Haible  <bruno@clisp.org>
1115
1116         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
1117         directly used by the gnulib modules nor by gnulib-tool.
1118
1119 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1120
1121         * DEPENDENCIES: Give overall description of version dependency
1122         desirability.  Use more-typical names for apps.
1123         Add shell, coreutils, diffutils, grep, tar, gzip.
1124
1125 2007-04-04  Simon Josefsson  <simon@josefsson.org>
1126
1127         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
1128
1129 2007-04-04  Karl Berry  <karl@gnu.org>
1130
1131         * MODULES.html.sh (func_module): missing '.
1132
1133 2007-04-03  Bruno Haible  <bruno@clisp.org>
1134
1135         * modules/argmatch-tests (Makefile.am): New variable
1136         test_argmatch_LDADD.
1137         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
1138         * modules/array-list-tests (Makefile.am): New variable
1139         test_array_list_LDADD.
1140         * modules/array-oset-tests (Makefile.am): New variable
1141         test_array_oset_LDADD.
1142         * modules/avltree-list-tests (Makefile.am): New variable
1143         test_avltree_list_LDADD.
1144         * modules/avltree-oset-tests (Makefile.am): New variable
1145         test_avltree_oset_LDADD.
1146         * modules/avltreehash-list-tests (Makefile.am): New variable
1147         test_avltreehash_list_LDADD.
1148         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
1149         test_canonicalize_lgpl_LDADD.
1150         * modules/carray-list-tests (Makefile.am): New variable
1151         test_carray_list_LDADD.
1152         * modules/dirname-tests (Makefile.am): New variable
1153         test_dirname_LDADD.
1154         * modules/linked-list-tests (Makefile.am): New variable
1155         test_linked_list_LDADD.
1156         * modules/linkedhash-list-tests (Makefile.am): New variable
1157         test_linkedhash_list_LDADD.
1158         * modules/rbtree-list-tests (Makefile.am): New variable
1159         test_rbtree_list_LDADD.
1160         * modules/rbtree-oset-tests (Makefile.am): New variable
1161         test_rbtree_oset_LDADD.
1162         * modules/rbtreehash-list-tests (Makefile.am): New variable
1163         test_rbtreehash_list_LDADD.
1164         * modules/xvasprintf-tests (Makefile.am): New variable
1165         test_xvasprintf_LDADD.
1166         Reported by Eric Blake.
1167
1168 2007-04-03  Eric Blake  <ebb9@byu.net>
1169
1170         * DEPENDENCIES: Weaken m4 requirements.
1171
1172 2007-04-03  Bruno Haible  <bruno@clisp.org>
1173
1174         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
1175         * modules/isnanl-tests (configure.ac): Likewise.
1176
1177 2007-04-03  Ben Pfaff  <blp@gnu.org>
1178
1179         * modules/iconv_open: Add $(srcdir)/ to source directory
1180         references in Makefile fragments that call gperf, to fix VPATH
1181         builds.
1182
1183 2007-04-03  Bruno Haible  <bruno@clisp.org>
1184
1185         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
1186         * lib/ldexpl.c: Undo last change.
1187
1188 2007-04-03  Bruno Haible  <bruno@clisp.org>
1189
1190         * modules/printf-frexpl (Depends-on): Undo last change.
1191         (Files): Add m4/ldexpl.m4.
1192
1193 2007-04-03  Bruno Haible  <bruno@clisp.org>
1194
1195         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
1196         * modules/isnanl (Link): New section.
1197
1198         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
1199         * modules/frexp (Link): New section.
1200
1201         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
1202         * modules/frexpl (Link): New section.
1203
1204         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
1205         * modules/ldexpl (Link): New section.
1206
1207 2007-04-03  Bruno Haible  <bruno@clisp.org>
1208
1209         * modules/TEMPLATE-EXTENDED: New file.
1210         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
1211
1212 2007-04-03  Bruno Haible  <bruno@clisp.org>
1213
1214         * DEPENDENCIES: New file.
1215         Suggested by Simon Josefsson.
1216
1217 2007-04-03  Bruno Haible  <bruno@clisp.org>
1218
1219         * doc/gnulib.texi: Escape @.
1220
1221 2007-04-03  James Youngman  <jay@gnu.org>
1222         and Paul Eggert  <eggert@cs.ucla.edu>
1223
1224         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
1225         birthtime on all systems that have birthtime, not just those which
1226         use st_birthtimensec rather than st_birthtim.  Putting zero in
1227         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
1228         that the birth time is not available for files on an NFS mount.
1229
1230 2007-04-03  Simon Josefsson  <simon@josefsson.org>
1231
1232         * modules/memxor: Move back from crypto/, suggested by Bruno.
1233         * modules/crypto/hmac-sha1: Fix memxor dependency.
1234
1235         * modules/crypto/gc: Moved from ../.
1236
1237 2007-04-02  Eric Blake  <ebb9@byu.net>
1238
1239         * lib/ldexpl.c (includes): Avoid libm.
1240
1241         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
1242
1243 2007-04-02  Bruno Haible  <bruno@clisp.org>
1244
1245         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
1246         on IRIX.
1247
1248 2007-04-02  Bruno Haible  <bruno@clisp.org>
1249
1250         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
1251         x86 or x86_64 platforms running MacOS X.
1252         Reported by Ryan Schmidt <@ryandesign.com>.
1253
1254 2007-04-02  Bruno Haible  <bruno@clisp.org>
1255
1256         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
1257         i386.
1258
1259 2007-04-01  Simon Josefsson  <simon@josefsson.org>
1260
1261         * modules/crypto/arcfour: Moved from ../.
1262         * modules/crypto/arcfour-tests: Moved from ../.
1263         * modules/crypto/arctwo: Moved from ../.
1264         * modules/crypto/arctwo-tests: Moved from ../.
1265         * modules/crypto/des: Moved from ../.
1266         * modules/crypto/des-tests: Moved from ../.
1267         * modules/crypto/gc-arcfour: Moved from ../.
1268         * modules/crypto/gc-arcfour-tests: Moved from ../.
1269         * modules/crypto/gc-arctwo: Moved from ../.
1270         * modules/crypto/gc-arctwo-tests: Moved from ../.
1271         * modules/crypto/gc-des: Moved from ../.
1272         * modules/crypto/gc-des-tests: Moved from ../.
1273         * modules/crypto/gc-hmac-md5: Moved from ../.
1274         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
1275         * modules/crypto/gc-hmac-sha1: Moved from ../.
1276         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
1277         * modules/crypto/gc-md2: Moved from ../.
1278         * modules/crypto/gc-md2-tests: Moved from ../.
1279         * modules/crypto/gc-md4: Moved from ../.
1280         * modules/crypto/gc-md4-tests: Moved from ../.
1281         * modules/crypto/gc-md5: Moved from ../.
1282         * modules/crypto/gc-md5-tests: Moved from ../.
1283         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
1284         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
1285         * modules/crypto/gc-random: Moved from ../.
1286         * modules/crypto/gc-rijndael: Moved from ../.
1287         * modules/crypto/gc-rijndael-tests: Moved from ../.
1288         * modules/crypto/gc-sha1: Moved from ../.
1289         * modules/crypto/gc-sha1-tests: Moved from ../.
1290         * modules/crypto/gc-tests: Moved from ../.
1291         * modules/crypto/hmac-md5: Moved from ../.
1292         * modules/crypto/hmac-md5-tests: Moved from ../.
1293         * modules/crypto/hmac-sha1: Moved from ../.
1294         * modules/crypto/hmac-sha1-tests: Moved from ../.
1295         * modules/crypto/md2: Moved from ../.
1296         * modules/crypto/md2-tests: Moved from ../.
1297         * modules/crypto/md4: Moved from ../.
1298         * modules/crypto/md4-tests: Moved from ../.
1299         * modules/crypto/md5: Moved from ../.
1300         * modules/crypto/md5-tests: Moved from ../.
1301         * modules/crypto/memxor: Moved from ../.
1302         * modules/crypto/rijndael: Moved from ../.
1303         * modules/crypto/rijndael-tests: Moved from ../.
1304         * modules/crypto/sha1: Moved from ../.
1305
1306 2007-03-30  James Youngman  <jay@gnu.org>
1307
1308         * tests/test-stat-time.c (prepare_test): use chmod() rather than
1309         rename() to change the ctime of a file (because ctime is unaffected
1310         by rename on jfs2 on AIX 5.1).
1311         (main): Start by doing cleanup, in case a previous run failed leaving
1312         test files behind.
1313
1314 2007-03-31  Bruno Haible  <bruno@clisp.org>
1315
1316         Support old proprietary implementations of iconv.
1317         * modules/iconv_open: New file.
1318         * lib/iconv_.h: New file.
1319         * m4/iconv_h.m4: New file.
1320         * lib/iconv_open.c: New file.
1321         * lib/iconv_open-aix.gperf: New file.
1322         * lib/iconv_open-hpux.gperf: New file.
1323         * lib/iconv_open-irix.gperf: New file.
1324         * lib/iconv_open-osf.gperf: New file.
1325         * m4/iconv_open.m4: New file.
1326         * modules/linebreak (Depends-on): Add iconv_open.
1327         * modules/striconv (Depends-on): Likewise.
1328         * modules/striconveh (Depends-on): Likewise.
1329         * modules/unicodeio (Depends-on): Likewise.
1330         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
1331         (iconv_t)(-1).
1332         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
1333         conversion if cd is (iconv_t)(-1).
1334         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
1335         is not possible.
1336
1337 2007-03-31  Bruno Haible  <bruno@clisp.org>
1338
1339         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
1340         work on Solaris either. Protect also second use of "autodetect_jp".
1341
1342 2007-03-31  Bruno Haible  <bruno@clisp.org>
1343
1344         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
1345         the function is not present.
1346
1347 2007-03-31  Bruno Haible  <bruno@clisp.org>
1348
1349         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
1350         the function is not present.
1351
1352 2007-03-31  Bruno Haible  <bruno@clisp.org>
1353
1354         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
1355         a bug in HP-UX iconv_open().
1356
1357 2007-03-31  Bruno Haible  <bruno@clisp.org>
1358
1359         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
1360         (Mathematics <math.h>): New section, add fpieee.
1361         (Input/output <stdio.h>): Add fseterr.
1362         (Mathematics <math.h>): New section, add printf-frexp.
1363         (Container data structures): Add sublist.
1364         (Core language properties): Add fpucw, inline.
1365         (Functions for greatest-width integer types <inttypes.h>): Add
1366         imaxabs, imaxdiv, inttypes.
1367         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
1368         isnanl-nolibm, ldexp.
1369         (Mathematics <math.h>): New section, add printf-frexpl.
1370         (Support for systems lacking POSIX:2001): Add fprintf-posix,
1371         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
1372         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
1373         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
1374         (Unicode string functions): Add unistr/u*-mbtoucr.
1375         (Java): Add javacomp-script, javaexec-script.
1376         (C#): Add csharpcomp-script, csharpexec-script.
1377         (Support for building libraries and executables): Add havelib,
1378         relocatable-*.
1379         (Support for maintaining and releasing projects): Renamed from
1380         'Support for maintaining and release projects'. Add announce-gen.
1381
1382 2007-03-31  Bruno Haible  <bruno@clisp.org>
1383
1384         * README: Talk primarily about git.
1385         (git and CVS): Renamed from CVS.
1386         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
1387         gnulib is available through git.
1388         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
1389
1390 2007-03-30  Bruno Haible  <bruno@clisp.org>
1391
1392         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
1393         * lib/poll_.h: Likewise.
1394         * lib/stat_.h: Likewise.
1395         * lib/sys_time_.h: Likewise.
1396         * lib/sysexit_.h: Likewise.
1397         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
1398         * lib/stdbool_.h: Likewise.
1399         * lib/byteswap_.h: Add double-inclusion guard.
1400
1401 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
1402
1403         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
1404
1405 2007-03-30  Karl Berry  <karl@gnu.org>
1406
1407         * config/srclist-update: double space after USA in the license
1408         substitution, since that's how it's usually (?) written.
1409
1410 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1411
1412         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
1413         reported by Bruno Haible.
1414
1415 2007-03-29  Bruno Haible  <bruno@clisp.org>
1416
1417         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
1418         a bug in AIX iconv().
1419
1420 2007-03-29  Bruno Haible  <bruno@clisp.org>
1421
1422         * modules/ldexpl-tests: New file.
1423         * tests/test-ldexpl.c: New file.
1424
1425 2007-03-29  Bruno Haible  <bruno@clisp.org>
1426
1427         * lib/ldexpl.c: Include fpucw.h.
1428         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
1429         multiplication.
1430         * modules/ldexpl (Depends-on): Add fpucw.
1431
1432 2007-03-29  Bruno Haible  <bruno@clisp.org>
1433
1434         * modules/ldexpl: New file.
1435         * m4/ldexpl.m4: New file.
1436         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
1437         set.
1438         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
1439         REPLACE_LDEXPL.
1440         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
1441         REPLACE_LDEXPL.
1442         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
1443         gl_FUNC_LDEXPL_WORKS.
1444         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
1445         * modules/mathl (Files): Remove lib/ldexpl.c.
1446         (Depends-on): Add ldexpl.
1447
1448 2007-03-29  Bruno Haible  <bruno@clisp.org>
1449
1450         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
1451
1452 2007-03-29  Bruno Haible  <bruno@clisp.org>
1453
1454         * tests/test-striconveh.c (main): Don't assume that a direct conversion
1455         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
1456         and possibly also HP-UX.
1457         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
1458         work on AIX, IRIX, HP-UX, OSF/1.
1459         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
1460         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
1461         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
1462         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
1463         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
1464         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
1465
1466 2007-03-29  Bruno Haible  <bruno@clisp.org>
1467
1468         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
1469
1470 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1471
1472         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
1473         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
1474
1475 2007-03-29  Eric Blake  <ebb9@byu.net>
1476
1477         * lib/acl-internal.h: Remove redundant include.
1478         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
1479         Cygwin when a file is locked.
1480
1481 2007-03-29  Bruno Haible  <bruno@clisp.org>
1482
1483         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
1484         file.
1485         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
1486
1487 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1488
1489         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
1490         try to remove a parent directory if the child couldn't be removed
1491         (except for the first rmdir, which could fail because the child
1492         doesn't exist).  Problem reported by Jeff Blaine in
1493         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
1494
1495 2007-03-28  Bruno Haible  <bruno@clisp.org>
1496
1497         * lib/striconveh.c (utf8conv_carefully): New function.
1498         (mem_cd_iconveh_internal): Invoke it.
1499
1500 2007-03-28  Bruno Haible  <bruno@clisp.org>
1501
1502         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
1503         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
1504         input.
1505         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
1506         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
1507         unistr/u8-uctomb.
1508
1509 2007-03-28  Bruno Haible  <bruno@clisp.org>
1510
1511         * modules/unistr/u8-mbtoucr: New file.
1512         * lib/unistr/u8-mbtoucr.c: New file.
1513         * modules/unistr/u16-mbtoucr: New file.
1514         * lib/unistr/u16-mbtoucr.c: New file.
1515         * modules/unistr/u16-mbtoucr: New file.
1516         * lib/unistr/u16-mbtoucr.c: New file.
1517         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
1518
1519 2007-03-27  Simon Josefsson  <simon@josefsson.org>
1520             Bruno Haible  <bruno@clisp.org>
1521
1522         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
1523         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
1524         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
1525
1526         * m4/stdio_h.m4: Add stubs for vasprintf too.
1527
1528         * modules/stdio: Support vasprintf in sed command.
1529
1530         * modules/vasprintf: Depend on stdio for prototypes.  Remove
1531         vasprintf.h.  Add stdio module indicator.
1532
1533         * lib/stdio_.h: Declare asprintf and vasprintf, based on
1534         vasprintf.h.
1535
1536         * lib/vasprintf.h: File removed.
1537
1538         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
1539         * lib/vasprintf.c: Ditto.
1540         * lib/xvasprintf.c: Ditto.
1541         * tests/test-vasprintf-posix.c: Ditto.
1542         * tests/test-vasprintf.c: Ditto.
1543
1544 2007-03-27  Bruno Haible  <bruno@clisp.org>
1545
1546         Make vasnprintf multithread-safe.
1547         * lib/vasnprintf.c (decimal_point_char): New function.
1548         (VASNPRINTF): Use it.
1549         Suggested by Simon Josefsson.
1550
1551 2007-03-27  Eric Blake  <ebb9@byu.net>
1552
1553         Support sub-second birthtime on cygwin.
1554         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
1555         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
1556         (get_stat_birthtime): Also work with st_birthtim.
1557
1558 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
1559
1560         * lib/stat-time.h (USE_BIRTHTIME): Remove.
1561         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
1562         (get_stat_birthtime_ns): Do not try to use "spare" fields.
1563         (get_stat_birthtime_ns): Simplify compile-time tests.
1564         (get_stat_birthtime): Change the API to look like
1565         get_stat_mtime etc., except return a negative tv_nsec on error.
1566         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
1567         Don't check for "spare" fields.
1568         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
1569         or for struct stat.st_birthtime, as these tests aren't used.
1570         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
1571
1572 2007-03-27  Bruno Haible  <bruno@clisp.org>
1573
1574         * lib/stat-time.h: Include <sys/stat.h>.
1575
1576 2007-03-27  James Youngman  <jay@gnu.org>
1577
1578         * lib/stat-time.h (get_stat_birthtime): New function for
1579           retrieving st_birthtime as provided by UFS2 (hence *BSD).
1580         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
1581           and its variants.
1582         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
1583         * modules/stat-time-test: New file.
1584         * tests/test-stat-time.c: New test, devised by Bruno Haible.
1585
1586 2007-03-26  Bruno Haible  <bruno@clisp.org>
1587
1588         Better support of signalling NaNs.
1589         * lib/atanl.c: Include isnanl.h.
1590         (atanl): Perform test for NaN at the beginning of the function and
1591         through a call to isnanl.
1592         * lib/cosl.c: Include isnanl.h.
1593         (cosl): Perform test for NaN at the beginning of the function and
1594         through a call to isnanl.
1595         * lib/ldexpl.c: Include isnanl.h.
1596         (ldexpl): Perform test for NaN through a call to isnanl.
1597         * lib/logl.c: Include isnanl.h.
1598         (logl): Perform test for NaN at the beginning of the function and
1599         through a call to isnanl.
1600         * lib/sinl.c: Include isnanl.h.
1601         (sinl): Perform test for NaN at the beginning of the function and
1602         through a call to isnanl.
1603         * lib/sqrtl.c: Include isnanl.h.
1604         (sqrtl): Perform test for NaN at the beginning of the function and
1605         through a call to isnanl.
1606         * lib/tanl.c: Include isnanl.h.
1607         (tanl): Perform test for NaN at the beginning of the function and
1608         through a call to isnanl.
1609         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
1610         * modules/mathl (Depends-on): Add isnanl.
1611
1612 2007-03-26  Eric Blake  <ebb9@byu.net>
1613
1614         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
1615         regression in logic sense of previous patch.
1616
1617 2007-03-26  Bruno Haible  <bruno@clisp.org>
1618
1619         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
1620         unportable shell command "if ! ...".
1621         Reported by Ralf Wildenhues.
1622
1623 2007-03-25  Bruno Haible  <bruno@clisp.org>
1624
1625         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
1626         <sysexits.h> file, and only add EX_CONFIG.
1627         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
1628         absolute file name and whether it is sufficient. Substitute also
1629         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
1630         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
1631         ABSOLUTE_SYSEXITS_H into sysexits.h.
1632
1633 2007-03-25  Bruno Haible  <bruno@clisp.org>
1634
1635         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
1636         hints is NULL.
1637
1638 2007-03-25  Bruno Haible  <bruno@clisp.org>
1639
1640         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
1641         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
1642
1643 2007-03-25  Bruno Haible  <bruno@clisp.org>
1644
1645         * lib/vasnprintf.c: Include langinfo.h.
1646         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
1647         multithread-safe.
1648         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
1649         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
1650         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1651         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1652         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1653         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1654         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1655         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
1656         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1657         Reported by Simon Josefsson.
1658
1659 2007-03-25  Bruno Haible  <bruno@clisp.org>
1660
1661         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
1662         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
1663         * modules/vasnprintf (Depends-on): Add stdint.
1664
1665 2007-03-25  Bruno Haible  <bruno@clisp.org>
1666
1667         * modules/fpieee: New file.
1668         * m4/fpieee.m4: New file.
1669         * modules/isnan-nolibm (Depends-on): Add fpieee.
1670         * modules/isnanl-nolibm (Depends-on): Add fpieee.
1671         * modules/isnanl (Depends-on): Add fpieee.
1672
1673 2007-03-25  Bruno Haible  <bruno@clisp.org>
1674
1675         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
1676
1677 2007-03-25  Bruno Haible  <bruno@clisp.org>
1678
1679         Avoid test failures on IRIX 6.5.
1680         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
1681         (main): Use it.
1682         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
1683         macros.
1684         (main): Use them.
1685
1686 2007-03-25  Bruno Haible  <bruno@clisp.org>
1687
1688         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
1689         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
1690         exists but doesn't work.
1691         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
1692         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
1693         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
1694         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
1695
1696 2007-03-25  Bruno Haible  <bruno@clisp.org>
1697
1698         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
1699         returns inf. Needed on IRIX 6.5.
1700
1701 2007-03-25  Bruno Haible  <bruno@clisp.org>
1702
1703         * tests/test-frexpl.c: Include isnanl-nolibm.h.
1704         (main): Use isnanl instead of x != x idiom.
1705         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
1706
1707         * tests/test-frexp.c: Include isnan.h.
1708         (main): Use isnan instead of x != x idiom.
1709         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
1710
1711 2007-03-25  Bruno Haible  <bruno@clisp.org>
1712
1713         * tests/test-frexp.c (NaN): New function/macro.
1714         (main): Use it instead of 0.0 / 0.0.
1715         * tests/test-isnan.c (NaN): New function/macro.
1716         (main): Use it instead of 0.0 / 0.0.
1717         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
1718         (test_function): Use it instead of 0.0 / 0.0.
1719         * tests/test-vasprintf-posix.c (NaN): New function/macro.
1720         (test_function): Use it instead of 0.0 / 0.0.
1721         * tests/test-snprintf-posix.h (NaN): New function/macro.
1722         (test_function): Use it instead of 0.0 / 0.0.
1723         * tests/test-sprintf-posix.h (NaN): New function/macro.
1724         (test_function): Use it instead of 0.0 / 0.0.
1725         * tests/test-fprintf-posix.h (NaN): New function/macro.
1726         (test_function): Use it instead of 0.0 / 0.0.
1727         * tests/test-printf-posix.h (NaN): New function/macro.
1728         (test_function): Use it instead of 0.0 / 0.0.
1729
1730         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
1731
1732 2007-03-25  Bruno Haible  <bruno@clisp.org>
1733
1734         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
1735
1736 2007-03-25  Bruno Haible  <bruno@clisp.org>
1737
1738         * lib/regexec.c (merge_state_with_log): Make static.
1739
1740 2007-03-25  Bruno Haible  <bruno@clisp.org>
1741
1742         * lib/trigl.c (kernel_rem_pio2): Make static.
1743
1744 2007-03-25  Bruno Haible  <bruno@clisp.org>
1745
1746         * lib/sincosl.c (sincosl_table): Make static.
1747
1748 2007-03-25  Bruno Haible  <bruno@clisp.org>
1749
1750         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
1751         if the compiler does not support C99.
1752
1753 2007-03-25  Bruno Haible  <bruno@clisp.org>
1754
1755         * modules/time (Makefile.am): Ensure all rule action lines start with a
1756         tab.
1757
1758 2007-03-24  Bruno Haible  <bruno@clisp.org>
1759
1760         * modules/tsearch-tests: New file.
1761         * tests/test-tsearch.sh: New file.
1762         * tests/test-tsearch.c: New file, mostly copied from glibc.
1763
1764         * modules/search-tests: New file.
1765         * tests/test-search.c: New file.
1766
1767         * modules/search: New file.
1768         * lib/search_.h: New file, incorporating lib/tsearch.h.
1769         * m4/search_h.m4: New file.
1770         * lib/tsearch.h: Remove file.
1771         * lib/tsearch.c: Include search.h instead of tsearch.h.
1772         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
1773         HAVE_TSEARCH.
1774         * modules/tsearch (Files): Remove lib/tsearch.h.
1775         (Depends-on): Add search.
1776         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
1777         (Include): Change tsearch.h into search.h.
1778
1779 2007-03-24  Bruno Haible  <bruno@clisp.org>
1780
1781         * modules/fpucw: New file.
1782         * lib/fpucw.h: New file.
1783         * lib/frexp.c: Include fpucw.h.
1784         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
1785         (FUNC): Use them.
1786         * lib/printf-frexp.c: Include fpucw.h.
1787         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
1788         (FUNC): Use them.
1789         * lib/vasnprintf.c: Include fpucw.h.
1790         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
1791         'long double' calculations.
1792         * tests/test-frexpl.c: Include fpucw.h.
1793         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
1794         * tests/test-printf-frexpl.c: Include fpucw.h.
1795         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
1796         * modules/frexpl (Depends-on): Add fpucw.
1797         * modules/printf-frexpl (Depends-on): Likewise.
1798         * modules/fprintf-posix (Depends-on): Likewise.
1799         * modules/snprintf-posix (Depends-on): Likewise.
1800         * modules/sprintf-posix (Depends-on): Likewise.
1801         * modules/vasnprintf-posix (Depends-on): Likewise.
1802         * modules/vasprintf-posix (Depends-on): Likewise.
1803         * modules/vfprintf-posix (Depends-on): Likewise.
1804         * modules/vsnprintf-posix (Depends-on): Likewise.
1805         * modules/vsprintf-posix (Depends-on): Likewise.
1806         * modules/frexpl-tests (Depends-on): Likewise.
1807         * modules/printf-frexpl-tests (Depends-on): Likewise.
1808
1809 2007-03-24  Bruno Haible  <bruno@clisp.org>
1810
1811         * lib/float+.h: New file.
1812         * lib/isnan.c: Include float+.h.
1813         (SIZE): New macro.
1814         (FUNC): Compare only SIZE bytes of the value.
1815         * lib/vasnprintf.c: Include float+.h.
1816         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
1817         SIZEOF_LDBL or SIZEOF_DBL bytes.
1818         * modules/isnan-nolibm (Files): Add lib/float+.h.
1819         * modules/isnanl-nolibm (Files): Add lib/float+.h.
1820         * modules/isnanl (Files): Add lib/float+.h.
1821         * modules/vasnprintf (Files): Add lib/float+.h.
1822
1823 2007-03-24  Bruno Haible  <bruno@clisp.org>
1824
1825         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
1826         include isnanl-nolibm.h.
1827
1828 2007-03-24  Bruno Haible  <bruno@clisp.org>
1829
1830         * tests/test-read-file.c (main): Don't produce spurious output for
1831         expected situations. Make the test fail if it encountered unexpected
1832         results.
1833
1834 2007-03-24  Bruno Haible  <bruno@clisp.org>
1835
1836         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
1837         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
1838
1839 2007-03-24  Bruno Haible  <bruno@clisp.org>
1840
1841         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
1842
1843 2007-03-24  Bruno Haible  <bruno@clisp.org>
1844
1845         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
1846         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
1847
1848         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
1849         * modules/utf8-ucs4: Turn into a symbolic link to module
1850         unistr/u8-mbtouc.
1851
1852         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
1853         utf8-ucs4-unsafe.
1854         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
1855         unistr/u8-mbtouc-unsafe.
1856
1857         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
1858         * modules/utf16-ucs4: Turn into a symbolic link to module
1859         unistr/u16-mbtouc.
1860
1861         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
1862         utf16-ucs4-unsafe.
1863         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
1864         unistr/u16-mbtouc-unsafe.
1865
1866         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
1867         * modules/ucs4-utf8: Turn into a symbolic link to module
1868         unistr/u8-ubtomb.
1869
1870         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
1871         * modules/ucs4-utf16: Turn into a symbolic link to module
1872         unistr/u16-ubtomb.
1873
1874 2007-03-24  Bruno Haible  <bruno@clisp.org>
1875
1876         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
1877         Enable the function only if HAVE_INLINE.
1878         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
1879         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
1880         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
1881         Enable the function only if HAVE_INLINE.
1882         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
1883         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
1884         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
1885         Enable the function only if HAVE_INLINE.
1886         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
1887         Enable the function only if HAVE_INLINE.
1888         * modules/utf8-ucs4: Update.
1889         * modules/utf8-ucs4-unsafe: Update.
1890         * modules/utf16-ucs4: Update.
1891         * modules/utf16-ucs4-unsafe: Update.
1892         * modules/ucs4-utf8: Update.
1893         * modules/ucs4-utf16: Update.
1894
1895 2007-03-24  Bruno Haible  <bruno@clisp.org>
1896
1897         * lib/utf8-ucs4.h: Remove file.
1898         * lib/utf8-ucs4-unsafe.h: Remove file.
1899         * lib/utf16-ucs4.h: Remove file.
1900         * lib/utf16-ucs4-unsafe.h: Remove file.
1901         * lib/ucs4-utf8.h: Remove file.
1902         * lib/ucs4-utf16.h: Remove file.
1903         * lib/unistr.h: Include their previous contents.
1904         * m4/utf-ucs4.m4: Remove file.
1905         * m4/ucs4-utf.m4: Remove file.
1906         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
1907         (Depends-on): Add unistr/base.
1908         (configure.ac): Remove gl_UTF_UCS4.
1909         (Makefile.am): Update.
1910         (Include): Change to unistr.h.
1911         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
1912         (Depends-on): Add unistr/base.
1913         (configure.ac): Remove gl_UTF_UCS4.
1914         (Makefile.am): Update.
1915         (Include): Change to unistr.h.
1916         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
1917         (Depends-on): Add unistr/base.
1918         (configure.ac): Remove gl_UTF_UCS4.
1919         (Makefile.am): Update.
1920         (Include): Change to unistr.h.
1921         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
1922         (Depends-on): Add unistr/base.
1923         (configure.ac): Remove gl_UTF_UCS4.
1924         (Makefile.am): Update.
1925         (Include): Change to unistr.h.
1926         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
1927         (Depends-on): Add unistr/base.
1928         (configure.ac): Remove gl_UCS4_UTF.
1929         (Makefile.am): Update.
1930         (Include): Change to unistr.h.
1931         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
1932         (Depends-on): Add unistr/base.
1933         (configure.ac): Remove gl_UCS4_UTF.
1934         (Makefile.am): Update.
1935         (Include): Change to unistr.h.
1936         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
1937         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
1938         utf8-ucs4-unsafe.h.
1939         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
1940         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
1941         utf16-ucs4-unsafe.h.
1942         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
1943         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
1944         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
1945         * lib/unistr/u8-strchr.c: Likewise.
1946         * lib/unistr/u8-strrchr.c: Likewise.
1947         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
1948         * lib/unistr/u16-strchr.c: Likewise.
1949         * lib/unistr/u16-strrchr.c: Likewise.
1950         * lib/striconveh.c: Update.
1951         * lib/linebreak.c: Update.
1952
1953 2007-03-24  Bruno Haible  <bruno@clisp.org>
1954
1955         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
1956         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
1957
1958 2007-03-22  Bruno Haible  <bruno@clisp.org>
1959
1960         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
1961
1962 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
1963
1964         * MODULES.html.sh (File system functions): New module write-any-file.
1965         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
1966         * m4/write-any-file.m4: New files.
1967
1968 2007-03-23  Eric Blake  <ebb9@byu.net>
1969
1970         * gnulib-tool: Rearrange space-tab sequences, since some editors
1971         like to eat them.
1972
1973 2007-03-23  Eric Blake  <ebb9@byu.net>
1974
1975         * lib/version-etc.c (version_etc_va): Update license wording to
1976         be more concise.  Recommended by Richard Stallman.
1977
1978 2007-03-22  Bruno Haible  <bruno@clisp.org>
1979
1980         * lib/poll.c (MSG_PEEK): New fallback definition.
1981
1982 2007-03-22  Bruno Haible  <bruno@clisp.org>
1983
1984         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
1985         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
1986         (main): Update.
1987         Fixes a compilation error on BeOS.
1988
1989 2007-03-22  Bruno Haible  <bruno@clisp.org>
1990
1991         * modules/frexpl-tests: New file.
1992         * tests/test-frexpl.c: New file.
1993
1994         * modules/frexpl: New file.
1995         * m4/frexpl.m4: New file.
1996         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
1997         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
1998         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
1999         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
2000         (Depends-on): Add frexpl. Remove isnanl-nolibm.
2001         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
2002
2003 2007-03-22  Bruno Haible  <bruno@clisp.org>
2004
2005         * lib/frexpl.c: Share code with lib/frexp.c.
2006         * modules/mathl (Files): Add lib/frexp.c.
2007         (Depends-on): Add isnanl-nolibm.
2008
2009 2007-03-22  Bruno Haible  <bruno@clisp.org>
2010
2011         * modules/printf-frexp (Files): Add m4/frexp.m4.
2012         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
2013         only if the found frexp function actually works.
2014
2015 2007-03-22  Bruno Haible  <bruno@clisp.org>
2016
2017         * lib/frexp.c: Remove older implementation that uses divisions.
2018
2019 2007-03-21  Bruno Haible  <bruno@clisp.org>
2020
2021         * modules/frexp-tests: New file.
2022         * tests/test-frexp.c: New file.
2023
2024         * modules/frexp: New file.
2025         * lib/frexp.c: New file.
2026         * m4/frexp.m4: New file.
2027         * lib/math_.h (frexp): New declaration.
2028         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
2029         REPLACE_FREXP.
2030         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
2031
2032 2007-03-21  Bruno Haible  <bruno@clisp.org>
2033
2034         * modules/isnanl-tests: New file.
2035         * tests/test-isnanl.c: New file.
2036
2037         * modules/isnanl: New file.
2038         * lib/isnanl.h: New file.
2039         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
2040         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
2041         gl_FUNC_ISNANL_WORKS.
2042         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
2043         New macros.
2044
2045 2007-03-21  Bruno Haible  <bruno@clisp.org>
2046
2047         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
2048         lib/isnanl.h.
2049         (Include): Update.
2050         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
2051         * lib/vasnprintf.c: Update.
2052         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
2053         tests/test-isnanl.h, remove tests/test-isnanl.c.
2054         (Makefile.am): Update.
2055         * tests/test-isnanl-nolibm.c: New file.
2056         * tests/test-isnanl.h: New file.
2057         * tests/test-isnanl.c: Remove file.
2058
2059 2007-03-21  Jim Meyering  <jim@meyering.net>
2060
2061         When trying to open ".", treat ESTALE like EACCES.
2062         * lib/savewd.c (savewd_save): Resort to forking not just upon
2063         failure with EACCES, but also when errno is ESTALE.
2064
2065 2007-03-20  Bruno Haible  <bruno@clisp.org>
2066
2067         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
2068         Needed on AIX 5.1. Reported by Matthew Woehlke.
2069
2070 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2071
2072         Suggestions by Bruno Haible:
2073         * lib/acl-internal.h: Include "gettext.h" rather than rolling
2074         our own.
2075         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
2076         * modules/acl (Depends-on): Add gettext.
2077
2078 2007-03-19  Bruno Haible  <bruno@clisp.org>
2079
2080         * modules/iconvme: Remove file.
2081         * lib/iconvme.h: Remove file.
2082         * lib/iconvme.c: Remove file.
2083         * m4/iconvme.m4: Remove file.
2084
2085 2007-03-19  Bruno Haible  <bruno@clisp.org>
2086
2087         * doc/relocatable-maint.texi: Break long shell script line.
2088         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2089
2090 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2091
2092         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
2093         handle file_has_acl.
2094         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
2095         * lib/acl.c: Move header inclusions and related macro defns into
2096         lib/acl-internal.h.
2097         (S_ISLNK): Remove defn, since that's now done for us.
2098         (file_has_acl): Move to lib/file-has-acl.c.
2099         Call acl_trivial if available.  This is the crucial part of the fix.
2100         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
2101         shared within the library.  Rewrite a bit, partly to make it compatible
2102         with the GNU coding style.
2103         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
2104         Remove unnecessary double-quotes.
2105         Don't test for acl_to_text; the build will catch that.
2106         Replace acl_entries if it doesn't exist and it is needed.
2107         Check for -lsec and acl_trivial (as used on Solaris 10).
2108         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
2109         lib/file-has-acl.c.
2110         (Depends-on): Add sys_stat, for S_ISLNK.
2111
2112 2007-03-19  Ben Pfaff  <blp@gnu.org>
2113
2114         * doc/gnulib.texi: Fix typos.
2115         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
2116
2117 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
2118
2119         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
2120         If size is zero here, buf must be zero.
2121
2122 2007-03-19  Simon Josefsson  <simon@josefsson.org>
2123
2124         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
2125         <bruno@clisp.org>.
2126
2127 2007-03-18  Bruno Haible  <bruno@clisp.org>
2128
2129         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
2130         Suggested by Eric Blake.
2131
2132 2007-03-18  Ben Pfaff  <blp@gnu.org>
2133
2134         * doc/relocatable.texi: Recommend using as prefix a directory
2135         that does not exist and will never be created.  Based on
2136         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
2137         and others.
2138
2139 2007-03-17  Bruno Haible  <bruno@clisp.org>
2140
2141         * lib/fchownat.c: Include lchown.h.
2142
2143 2007-03-17  Bruno Haible  <bruno@clisp.org>
2144
2145         Fix endless loop when the given allocated size was > INT_MAX.
2146         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
2147         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
2148         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
2149         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
2150         * lib/sprintf.c (sprintf): Likewise.
2151
2152 2007-03-17  Bruno Haible  <bruno@clisp.org>
2153
2154         * tests/test-argp-2.sh (func_compare): Output a context diff.
2155
2156 2007-03-17  Bruno Haible  <bruno@clisp.org>
2157
2158         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
2159         locale's decimal-point character.
2160
2161 2007-03-17  Bruno Haible  <bruno@clisp.org>
2162
2163         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
2164         before comparing it. Needed because on some platforms (e.g. x86) a
2165         'long double' occupies less bytes than sizeof (long double).
2166
2167 2007-03-17  Bruno Haible  <bruno@clisp.org>
2168
2169         * tests/test-crc.c (main): Make printf statements 64-bit clean.
2170         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
2171         * tests/test-getaddrinfo.c (simple): Likewise.
2172         * tests/test-read-file.c (main): Likewise.
2173
2174 2007-03-17  Bruno Haible  <bruno@clisp.org>
2175
2176         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
2177
2178 2007-03-17  Bruno Haible  <bruno@clisp.org>
2179
2180         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
2181         unused variable.
2182
2183 2007-03-17  Bruno Haible  <bruno@clisp.org>
2184
2185         * tests/test-c-strcasecmp.c: Include c-strcase.h.
2186         * tests/test-c-strncasecmp.c: Likewise.
2187
2188 2007-03-17  Bruno Haible  <bruno@clisp.org>
2189
2190         * modules/stdlib (Depends-on): Add unistd.
2191         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
2192         Needed for MacOS X 10.3.
2193
2194 2007-03-17  Bruno Haible  <bruno@clisp.org>
2195
2196         * lib/unistr/u-strdup.h: Include <stdlib.h>.
2197
2198 2007-03-17  Bruno Haible  <bruno@clisp.org>
2199
2200         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
2201
2202 2007-03-17  Bruno Haible  <bruno@clisp.org>
2203
2204         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
2205         to reflect files copied from gnulib (with or without modifications).
2206         Suggested by Jim Meyering.
2207
2208 2007-03-17  Eric Blake  <ebb9@byu.net>
2209
2210         * NEWS: Document stdlib change from 2007-02-18.
2211
2212 2007-03-17  Jim Meyering  <jim@meyering.net>
2213
2214         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
2215         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
2216         someone uses a name containing shell meta-characters.
2217         Reported by Alfred M. Szmidt.
2218
2219         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
2220
2221 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2222
2223         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
2224         and copy gettext configuration files only if configure.ac contains
2225         a use of AM_GNU_GETTEXT_VERSION.
2226
2227 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
2228
2229         * build-aux/bootstrap (gnulib_name): New variable.
2230         (gnulib_tool_options): Use it.
2231
2232 2007-03-13  Simon Josefsson  <simon@josefsson.org>
2233
2234         * tests/test-des.c: Use new namespace.
2235
2236 2007-03-15  Bruno Haible  <bruno@clisp.org>
2237
2238         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
2239         Reported by James Youngman <jay@gnu.org>.
2240
2241 2007-03-15  Bruno Haible  <bruno@clisp.org>
2242
2243         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
2244         declared prototype. Needed with cc on OSF/1 5.1.
2245
2246 2007-03-15  Bruno Haible  <bruno@clisp.org>
2247
2248         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
2249         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
2250         (struct gl_list_implementation): Add dispose_fn argument to the
2251         'create_empty', 'create' methods.
2252         (struct gl_list_impl_base): Add field 'dispose_fn'.
2253         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
2254         argument.
2255         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
2256         dispose_fn argument.
2257         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
2258         dispose_fn on the dropped values.
2259         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
2260         dispose_fn argument.
2261         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
2262         dropped values.
2263         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
2264         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2265         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
2266         (gl_tree_remove_node): Call dispose_fn on the dropped value.
2267         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
2268         argument.
2269         (gl_tree_list_free): Call dispose_fn on the dropped values.
2270         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
2271         the dropped values.
2272         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
2273         Add dispose_fn argument.
2274         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
2275         Call dispose_fn on the dropped values.
2276         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
2277         Add dispose_fn argument.
2278         (gl_sublist_create): Initialize the 'dispose_fn' field.
2279         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
2280         * tests/test-array_list.c (main): Update.
2281         * tests/test-carray_list.c (main): Update.
2282         * tests/test-avltree_list.c (main): Update.
2283         * tests/test-rbtree_list.c (main): Update.
2284         * tests/test-avltreehash_list.c (main): Update.
2285         * tests/test-rbtreehash_list.c (main): Update.
2286         * tests/test-linked_list.c (main): Update.
2287         * tests/test-linkedhash_list.c (main): Update.
2288         * tests/test-array_oset.c (main): Update.
2289
2290 2007-03-15  Bruno Haible  <bruno@clisp.org>
2291
2292         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
2293         (gl_oset_create_empty): Add dispose_fn argument.
2294         (struct gl_oset_implementation): Add dispose_fn argument to
2295         'create_empty' method.
2296         (struct gl_oset_impl_base): Add dispose_fn field.
2297         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
2298         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
2299         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
2300         values.
2301         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
2302         (gl_tree_oset_free): Call dispose_fn on the dropped values.
2303         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2304         dropped value.
2305         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
2306         dropped value.
2307         * tests/test-array_oset.c (main): Update.
2308         * tests/test-avltree_oset.c (main): Update.
2309         * tests/test-rbtree_oset.c (main): Update.
2310         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
2311
2312 2007-03-13  Bruno Haible  <bruno@clisp.org>
2313
2314         * tests/test-stdbool.c (i): Update after last patch.
2315
2316 2007-03-12  Bruno Haible  <bruno@clisp.org>
2317
2318         * lib/quotearg.c: Include <wctype.h> early, before the definition of
2319         the iswprint macro. Needed on Solaris 2.5.1.
2320
2321 2007-03-12  Bruno Haible  <bruno@clisp.org>
2322
2323         * tests/test-printf-frexp.c (main): Declare x as volatile.
2324
2325 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2326
2327         * doc/gnulib.texi (Build robot for gnulib): New section.
2328
2329 2007-03-12  Jim Meyering  <jim@meyering.net>
2330
2331         * build-aux/bootstrap: New file.
2332         * build-aux/bootstrap.conf: New file, from coreutils.
2333
2334 2007-03-11  Bruno Haible  <bruno@clisp.org>
2335
2336         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
2337
2338 2007-03-12  Simon Josefsson  <simon@josefsson.org>
2339
2340         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
2341         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
2342         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
2343
2344 2007-03-11  Bruno Haible  <bruno@clisp.org>
2345
2346         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
2347         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
2348
2349 2007-03-11  Bruno Haible  <bruno@clisp.org>
2350
2351         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
2352         formula. Needed for SunPRO C 5.0.
2353
2354 2007-03-11  Bruno Haible  <bruno@clisp.org>
2355
2356         * modules/long-options (Depends-on): Add getopt.
2357
2358 2007-03-11  Bruno Haible  <bruno@clisp.org>
2359
2360         * modules/modechange (Depends-on): Add stdbool.
2361
2362 2007-03-11  Bruno Haible  <bruno@clisp.org>
2363
2364         * modules/i-ring (Depends-on): Add stdbool.
2365
2366 2007-03-11  Bruno Haible  <bruno@clisp.org>
2367
2368         * modules/gc-des (Depends-on): Add stdbool.
2369
2370 2007-03-11  Bruno Haible  <bruno@clisp.org>
2371
2372         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
2373
2374 2007-03-11  Bruno Haible  <bruno@clisp.org>
2375
2376         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
2377
2378 2007-03-11  Bruno Haible  <bruno@clisp.org>
2379
2380         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
2381
2382 2007-03-11  Bruno Haible  <bruno@clisp.org>
2383
2384         * lib/vasnprintf.c (sprintf): Undefine.
2385
2386 2007-03-11  Bruno Haible  <bruno@clisp.org>
2387
2388         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
2389         initializers in SunPRO C and Compaq C compilers.
2390
2391 2007-03-11  Bruno Haible  <bruno@clisp.org>
2392
2393         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
2394         decrementing code ANSI C compliant.
2395
2396 2007-03-11  Bruno Haible  <bruno@clisp.org>
2397
2398         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
2399         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
2400
2401 2007-03-11  Bruno Haible  <bruno@clisp.org>
2402
2403         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
2404         <stdbool.h> substitute doesn't pass.
2405
2406 2007-03-11  Bruno Haible  <bruno@clisp.org>
2407
2408         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
2409
2410 2007-03-11  Bruno Haible  <bruno@clisp.org>
2411
2412         * gnulib-tool (func_create_megatestdir): Create also an autobuild
2413         script, for submission to autobuild.josefsson.org.
2414
2415 2007-03-10  Bruno Haible  <bruno@clisp.org>
2416
2417         * modules/canonicalize-lgpl-tests: New file.
2418         * tests/test-canonicalize-lgpl.sh: New file.
2419         * tests/test-canonicalize-lgpl.c: New file.
2420
2421         * modules/c-strcase-tests: New file.
2422         * tests/test-c-strcase.sh: New file.
2423         * tests/test-c-strcasecmp.c: New file.
2424         * tests/test-c-strncasecmp.c: New file.
2425
2426         * modules/atexit-tests: New file.
2427         * tests/test-atexit.sh: New file.
2428         * tests/test-atexit.c: New file.
2429
2430 2007-03-10  Bruno Haible  <bruno@clisp.org>
2431
2432         * tests/test-binary-io.sh: Use temporary filenames that are not so
2433         likely to clash with those of other tests (in a parallel make).
2434         * tests/test-binary-io.c: Likewise.
2435
2436 2007-03-10  Bruno Haible  <bruno@clisp.org>
2437
2438         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
2439         fallback; use #error instead.
2440         Suggested by Simon Josefsson.
2441
2442 2007-03-10  Bruno Haible  <bruno@clisp.org>
2443
2444         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
2445         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
2446         first and the last.
2447
2448 2007-03-10  Bruno Haible  <bruno@clisp.org>
2449
2450         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
2451
2452 2007-03-10  Bruno Haible  <bruno@clisp.org>
2453
2454         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
2455         "make distcheck".
2456         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
2457         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
2458         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
2459
2460 2007-03-10  Bruno Haible  <bruno@clisp.org>
2461
2462         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
2463         variable.
2464         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
2465         variable.
2466
2467 2007-03-09  Eric Blake  <ebb9@byu.net>
2468         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
2469
2470         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
2471         types are not being provided by gnulib.
2472         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
2473         types are supported.
2474
2475 2007-03-10  Bruno Haible  <bruno@clisp.org>
2476
2477         * lib/stdio_.h (__attribute__): New macro.
2478         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
2479         vsprintf): Specify __attribute__ __format__ for GCC.
2480         Suggested by Eric Blake.
2481
2482 2007-03-09  Bruno Haible  <bruno@clisp.org>
2483
2484         * modules/printf-posix-tests: New file.
2485         * tests/test-printf-posix.sh: New file.
2486         * tests/test-printf-posix.c: New file.
2487
2488         * modules/printf-posix: New file.
2489         * lib/printf.c: New file.
2490         * m4/printf-posix-rpl.m4: New file.
2491         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
2492         REPLACE_PRINTF.
2493         * lib/stdio_.h (printf): New declaration.
2494         (format, __format__, ____printf____, ____scanf____, ____strftime____,
2495         ____strfmon____): New macros.
2496         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
2497         REPLACE_PRINTF.
2498
2499 2007-03-09  Bruno Haible  <bruno@clisp.org>
2500
2501         * tests/test-vasnprintf-posix2.sh: New file.
2502         * tests/test-vasnprintf-posix2.c: New file.
2503         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
2504         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
2505         (Makefile.am): Activate test-vasnprintf-posix2.sh.
2506
2507         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
2508         a locale dependent decimal point, rather than always '.'.
2509
2510 2007-03-09  Eric Blake  <ebb9@byu.net>
2511
2512         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
2513         spite of platforms like Tandem/NSK that define it to -1.
2514
2515 2007-03-08  Bruno Haible  <bruno@clisp.org>
2516
2517         * modules/vprintf-posix-tests: New file.
2518         * tests/test-vprintf-posix.sh: New file.
2519         * tests/test-vprintf-posix.c: New file.
2520         * tests/test-printf-posix.h: New file.
2521
2522         * modules/vprintf-posix: New file.
2523         * lib/vprintf.c: New file.
2524         * m4/vprintf-posix.m4: New file.
2525         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
2526         REPLACE_VPRINTF.
2527         * lib/stdio_.h (vprintf): New declaration.
2528         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
2529         REPLACE_VPRINTF.
2530
2531 2007-03-08  Bruno Haible  <bruno@clisp.org>
2532
2533         * modules/fprintf-posix-tests: New file.
2534         * tests/test-fprintf-posix.sh: New file.
2535         * tests/test-fprintf-posix.c: New file.
2536
2537         * modules/fprintf-posix: New file.
2538         * lib/fprintf.c: New file.
2539         * m4/fprintf-posix.m4: New file.
2540         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
2541         REPLACE_FPRINTF.
2542         * lib/stdio_.h (fprintf): New declaration.
2543         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
2544         REPLACE_FPRINTF.
2545
2546 2007-03-08  Bruno Haible  <bruno@clisp.org>
2547
2548         * modules/vfprintf-posix-tests: New file.
2549         * tests/test-vfprintf-posix.sh: New file.
2550         * tests/test-vfprintf-posix.c: New file.
2551         * tests/test-fprintf-posix.h: New file.
2552         * tests/test-fprintf-posix.out: New file.
2553
2554         * modules/vfprintf-posix: New file.
2555         * lib/vfprintf.c: New file.
2556         * m4/vfprintf-posix.m4: New file.
2557         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
2558         REPLACE_VFPRINTF.
2559         * lib/stdio_.h (vfprintf): New declaration.
2560         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
2561         REPLACE_VFPRINTF.
2562
2563 2007-03-08  Bruno Haible  <bruno@clisp.org>
2564
2565         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
2566
2567 2007-03-08  Bruno Haible  <bruno@clisp.org>
2568
2569         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
2570         instead of 'expr' invocations.
2571         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2572         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2573         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2574         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2575         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2576         Suggested by Paul Eggert.
2577
2578 2007-03-08  Bruno Haible  <bruno@clisp.org>
2579
2580         * modules/fseterr-tests: New file.
2581         * tests/test-fseterr.c: New file.
2582
2583         * modules/fseterr: New file.
2584         * lib/fseterr.h: New file.
2585         * lib/fseterr.c: New file.
2586
2587 2007-03-08  Bruno Haible  <bruno@clisp.org>
2588
2589         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
2590         * lib/getopt_.h: Likewise.
2591         * lib/mbswidth.h: Likewise.
2592         * lib/setenv.h: Likewise.
2593         * lib/vasnprintf.h: Likewise.
2594         * lib/vasprintf.h: Likewise.
2595         * lib/verror.h: Likewise.
2596         * lib/xsetenv.h: Likewise.
2597         * lib/xvasprintf.h: Likewise.
2598
2599 2007-03-08  Jim Meyering  <jim@meyering.net>
2600
2601         * users.txt: Add parted.
2602
2603         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
2604
2605 2007-03-07  Bruno Haible  <bruno@clisp.org>
2606
2607         * m4/printf.m4: Make the shell script snippets copy&pastable.
2608
2609 2007-03-02  Bruno Haible  <bruno@clisp.org>
2610
2611         * lib/netinet_in_.h: New file.
2612         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
2613         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
2614         * modules/netinet_in (Files): Add lib/netinet_in_.h.
2615         (Depends-on): Add absolute-header.
2616         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
2617         into netinet/in.h.
2618
2619 2007-03-03  Bruno Haible  <bruno@clisp.org>
2620
2621         * lib/sys_select_.h: New file.
2622         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
2623         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
2624         * modules/sys_select (Files): Add lib/sys_select_.h.
2625         (Depends-on): Add absolute-header.
2626         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
2627         into sys/select.h.
2628
2629 2007-03-02  Bruno Haible  <bruno@clisp.org>
2630
2631         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
2632         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
2633         values.
2634         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
2635         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
2636         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
2637         * modules/sys_socket (Depends-on): Add absolute-header.
2638         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
2639         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
2640         (Include): Remove requirement of inclusion of <sys/types.h>.
2641
2642 2007-03-02  Bruno Haible  <bruno@clisp.org>
2643
2644         * lib/byteswap_.h (bswap_32): Fix formula.
2645
2646 2007-03-06  Bruno Haible  <bruno@clisp.org>
2647
2648         * modules/sprintf-posix-tests: New file.
2649         * tests/test-sprintf-posix.c: New file.
2650
2651         * modules/sprintf-posix: New file.
2652         * lib/sprintf.c: New file.
2653         * m4/sprintf-posix.m4: New file.
2654         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
2655         REPLACE_SPRINTF.
2656         * lib/stdio_.h (sprintf): New declaration.
2657         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
2658         REPLACE_SPRINTF.
2659
2660 2007-03-06  Bruno Haible  <bruno@clisp.org>
2661
2662         * modules/vsprintf-posix-tests: New file.
2663         * tests/test-vsprintf-posix.c: New file.
2664         * tests/test-sprintf-posix.h: New file.
2665
2666         * modules/vsprintf-posix: New file.
2667         * lib/vsprintf.c: New file.
2668         * m4/vsprintf-posix.m4: New file.
2669         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
2670         REPLACE_VSPRINTF.
2671         * lib/stdio_.h (vsprintf): New declaration.
2672         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
2673         REPLACE_VSPRINTF.
2674
2675 2007-03-06  Bruno Haible  <bruno@clisp.org>
2676
2677         * modules/vsnprintf (Depend-on): Remove minmax.
2678
2679 2007-03-06  Bruno Haible  <bruno@clisp.org>
2680
2681         * modules/snprintf-posix-tests: New file.
2682         * tests/test-snprintf-posix.c: New file.
2683
2684         * modules/snprintf-posix: New file.
2685         * m4/snprintf-posix.m4: New file.
2686         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
2687         gl_FUNC_SNPRINTF.
2688         (gl_FUNC_SNPRINTF): Invoke it.
2689         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
2690         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
2691         is set.
2692         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
2693
2694 2007-03-06  Bruno Haible  <bruno@clisp.org>
2695
2696         * modules/vsnprintf-posix-tests: New file.
2697         * tests/test-vsnprintf-posix.c: New file.
2698         * tests/test-snprintf-posix.h: New file.
2699
2700         * modules/vsnprintf-posix: New file.
2701         * m4/vsnprintf-posix.m4: New file.
2702         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
2703         gl_FUNC_VSNPRINTF.
2704         (gl_FUNC_VSNPRINTF): Invoke it.
2705         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
2706         * lib/stdio_.h (vsnprintf): Define as a replacement if
2707         REPLACE_VSNPRINTF is set.
2708         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
2709
2710 2007-03-06  Bruno Haible  <bruno@clisp.org>
2711
2712         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
2713         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
2714
2715 2007-03-06  Bruno Haible  <bruno@clisp.org>
2716
2717         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
2718         (asinl): Declare also if HAVE_DECL_ASINL is set.
2719         (atanl): Declare also if HAVE_DECL_ATANL is set.
2720         (ceill): Declare also if HAVE_DECL_CEILL is set.
2721         (cosl): Declare also if HAVE_DECL_COSL is set.
2722         (expl): Declare also if HAVE_DECL_EXPL is set.
2723         (floorl): Declare also if HAVE_DECL_FLOORL is set.
2724         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
2725         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
2726         (logl): Declare also if HAVE_DECL_LOGL is set.
2727         (sinl): Declare also if HAVE_DECL_SINL is set.
2728         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
2729         (tanl): Declare also if HAVE_DECL_TANL is set.
2730         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
2731         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
2732         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
2733         declaration of frexpl, ldexpl.
2734         * modules/printf-frexpl (Depends-on): Add math.
2735         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
2736
2737 2007-03-05  Bruno Haible  <bruno@clisp.org>
2738
2739         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
2740         frexpl and ldexpl are declared.
2741         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
2742
2743 2007-03-05  Bruno Haible  <bruno@clisp.org>
2744
2745         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
2746         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
2747
2748 2007-03-05  Bruno Haible  <bruno@clisp.org>
2749
2750         * lib/stdio_.h: Include <stddef.h>.
2751
2752 2007-03-05  Bruno Haible  <bruno@clisp.org>
2753
2754         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
2755
2756 2007-03-05  Bruno Haible  <bruno@clisp.org>
2757
2758         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
2759         NetBSD 4, from Ralf Wildenhues.
2760
2761 2007-03-04  Bruno Haible  <bruno@clisp.org>
2762
2763         * lib/vasprintf.h: Update #if logic for the case when the functions
2764         exist but are overridden.
2765
2766 2007-03-04  Bruno Haible  <bruno@clisp.org>
2767
2768         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
2769         implementations: glibc-2.4 and MacOS X 10.3.
2770         * tests/test-vasnprintf-posix.c (test_function): Test also the case
2771         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
2772         * tests/test-vasprintf-posix.c (test_function): Likewise.
2773
2774 2007-03-04  Bruno Haible  <bruno@clisp.org>
2775
2776         * modules/vasprintf-posix-tests: New file.
2777         * tests/test-vasprintf-posix.c: New file.
2778
2779         * modules/vasprintf-posix: New file.
2780         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
2781         defined.
2782         * m4/vasprintf-posix.m4: New file.
2783         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
2784         gl_FUNC_VASPRINTF.
2785         (gl_FUNC_VASPRINTF): Invoke it.
2786         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
2787         here.
2788         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
2789
2790 2007-03-04  Bruno Haible  <bruno@clisp.org>
2791
2792         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
2793         REPLACE_GETTIMEOFDAY.
2794         * modules/sys_time (Makefile.am): Likewise.
2795         * m4/sys_time_h.m4: Likewise.
2796         * m4/gettimeofday.m4: Likewise.
2797
2798 2007-03-04  Bruno Haible  <bruno@clisp.org>
2799
2800         * modules/vasnprintf-posix-tests: New file.
2801         * tests/test-vasnprintf-posix.c: New file.
2802
2803         * modules/vasnprintf-posix: New file.
2804         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
2805         printf-frexpl.h.
2806         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
2807         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
2808         REPLACE_VASNPRINTF is defined.
2809         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
2810         gl_FUNC_VASNPRINTF.
2811         (gl_FUNC_VASNPRINTF): Invoke it.
2812         * m4/vasnprintf-posix.m4: New file.
2813         * m4/printf.m4: New file.
2814
2815 2007-03-04  Bruno Haible  <bruno@clisp.org>
2816
2817         Compile progreloc.c only if --enable-relocatable is specified.
2818         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
2819         if --enable-relocatable was specified.
2820         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
2821         lib_SOURCES.
2822
2823 2007-03-04  Jim Meyering  <jim@meyering.net>
2824
2825         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
2826         Use it consistently, rather than enumerating errno constants.
2827
2828 2007-03-04  Bruno Haible  <bruno@clisp.org>
2829
2830         * modules/xvasprintf-tests: New file.
2831         * tests/test-xvasprintf.c: New file.
2832
2833         * modules/vasprintf-tests: New file.
2834         * tests/test-vasprintf.c: New file.
2835
2836         * modules/vasnprintf-tests: New file.
2837         * tests/test-vasnprintf.c: New file.
2838
2839         * modules/vsnprintf-tests: New file.
2840         * tests/test-vsnprintf.c: New file.
2841
2842         * modules/snprintf-tests: New file.
2843         * tests/test-snprintf.c: New file.
2844
2845 2007-03-04  Bruno Haible  <bruno@clisp.org>
2846
2847         Compile relocatable.c only if --enable-relocatable is specified.
2848         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
2849         gl_RELOCATABLE_LIBRARY.
2850         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
2851         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
2852         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
2853         gl_RELOCATABLE_LIBRARY.
2854         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
2855         (Makefile.am): Remove lib_SOURCES.
2856         * modules/relocatable-lib-lgpl (configure.ac): Invoke
2857         gl_RELOCATABLE_LIBRARY.
2858         (Makefile.am): Remove lib_SOURCES.
2859         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
2860         always.
2861         * modules/relocatable-prog-wrapper (configure.ac): Invoke
2862         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
2863
2864 2007-03-04  Bruno Haible  <bruno@clisp.org>
2865
2866         * modules/argmatch-tests: New file.
2867         * tests/test-argmatch.c: New file.
2868
2869         * tests/test-allocsa.c (main): Halve the number of loop runs.
2870
2871         * modules/alloca-opt-tests: New file.
2872         * tests/test-alloca-opt.c: New file.
2873
2874 2007-03-04  Jim Meyering  <jim@meyering.net>
2875
2876         Work around difference between Linux ACLs and Solaris 10 ZFS.
2877         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
2878         for EINVAL.
2879
2880 2007-03-03  Bruno Haible  <bruno@clisp.org>
2881
2882         * modules/relocatable-prog (Depends-on): Add back progreloc's
2883         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
2884
2885 2007-03-03  Bruno Haible  <bruno@clisp.org>
2886
2887         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
2888         * modules/relocatable-lib: New file.
2889
2890 2007-03-03  Bruno Haible  <bruno@clisp.org>
2891
2892         * modules/relocatable-prog: Renamed from modules/relocatable.
2893         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
2894
2895 2007-03-03  Bruno Haible  <bruno@clisp.org>
2896
2897         * modules/relocatable-script (Files): Add doc/relocatable.texi,
2898         m4/relocatable-lib.m4.
2899         (Depends-on): Remove 'relocatable'.
2900         (configure.ac): Add gl_RELOCATABLE_NOP.
2901
2902 2007-03-03  Bruno Haible  <bruno@clisp.org>
2903
2904         * modules/relocatable-prog-wrapper: New file.
2905         * modules/relocatable (Depends-on): Add it. Remove all other
2906         dependencies except progname.
2907         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
2908
2909         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
2910         (gl_FUNC_STRERROR): Nop.
2911         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
2912
2913         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
2914         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
2915
2916         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
2917         (gl_FUNC_READLINK): Update.
2918
2919         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
2920
2921 2007-03-03  Bruno Haible  <bruno@clisp.org>
2922
2923         * lib/xreadlink.c: Include <unistd.h> unconditionally.
2924         * modules/xreadlink (Depends-on): Add unistd.
2925         * modules/xreadlink-with-size (Depends-on): Likewise.
2926
2927 2007-03-03  Bruno Haible  <bruno@clisp.org>
2928
2929         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
2930         extracted from gt_FUNC_SETENV.
2931         (gt_FUNC_SETENV): Remove macro.
2932         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
2933         remove gt_FUNC_SETENV.
2934
2935 2007-03-03  Bruno Haible  <bruno@clisp.org>
2936
2937         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
2938         ENABLE_RELOCATABLE here.
2939         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
2940
2941 2007-03-03  Bruno Haible  <bruno@clisp.org>
2942
2943         * modules/rbtreehash-list-tests (Depends-on): Add progname.
2944         * tests/test-rbtreehash_list.c: Include progname.h.
2945         (main): Call set_program_name.
2946
2947         * modules/rbtree-oset-tests (Depends-on): Add progname.
2948         * tests/test-rbtree_oset.c: Include progname.h.
2949         (main): Call set_program_name.
2950
2951         * modules/rbtree-list-tests (Depends-on): Add progname.
2952         * tests/test-rbtree_list.c: Include progname.h.
2953         (main): Call set_program_name.
2954
2955         * modules/linked-list-tests (Depends-on): Add progname.
2956         * tests/test-linked_list.c: Include progname.h.
2957         (main): Call set_program_name.
2958
2959 2007-03-03  Bruno Haible  <bruno@clisp.org>
2960
2961         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
2962         All uses of __restrict changed to _Restrict_.
2963         * lib/glob_.h (__restrict): Remove macro.
2964
2965 2007-03-02  Bruno Haible  <bruno@clisp.org>
2966
2967         * modules/gettext (configure.ac): Require gettext infrastructure
2968         from version 0.16.1.
2969
2970 2007-03-02  Bruno Haible  <bruno@clisp.org>
2971
2972         * modules/linkedhash-list-tests (Depends-on): Add progname.
2973         * tests/test-linkedhash_list.c: Include progname.h.
2974         (main): Call set_program_name.
2975
2976         * modules/carray-list-tests (Depends-on): Add progname.
2977         * tests/test-carray_list.c: Include progname.h.
2978         (main): Call set_program_name.
2979
2980         * modules/avltreehash-list-tests (Depends-on): Add progname.
2981         * tests/test-avltreehash_list.c: Include progname.h.
2982         (main): Call set_program_name.
2983
2984         * modules/avltree-oset-tests (Depends-on): Add progname.
2985         * tests/test-avltree_oset.c: Include progname.h.
2986         (main): Call set_program_name.
2987
2988         * modules/avltree-list-tests (Depends-on): Add progname.
2989         * tests/test-avltree_list.c: Include progname.h.
2990         (main): Call set_program_name.
2991
2992         * modules/array-oset-tests (Depends-on): Add progname.
2993         * tests/test-array_oset.c: Include progname.h.
2994         (main): Call set_program_name.
2995
2996         * modules/array-list-tests (Depends-on): Add progname.
2997         * tests/test-array_list.c: Include progname.h.
2998         (main): Call set_program_name.
2999
3000         * modules/argp-tests (Depends-on): Add progname.
3001         * tests/test-argp.c: Include argp.h first. Include progname.h.
3002         (main): Call set_program_name.
3003
3004 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
3005
3006         * doc/gnulib-tool.texi (Initial import): Reword description of
3007         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
3008         limited effect even if defined after the first system include.
3009
3010 2007-03-01  Bruno Haible  <bruno@clisp.org>
3011
3012         * build-aux/config.libpath: Update to libtool-1.5.22.
3013         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
3014
3015 2007-03-01  Bruno Haible  <bruno@clisp.org>
3016
3017         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
3018         foo_CFLAGS.
3019         Reported by Ralf Wildenhues.
3020
3021 2007-03-01  Bruno Haible  <bruno@clisp.org>
3022
3023         * build-aux/install-reloc: Remove object files left over by some
3024         compilers.
3025         Reported by Ralf Wildenhues.
3026
3027 2007-03-01  Bruno Haible  <bruno@clisp.org>
3028
3029         * build-aux/install-reloc: Break long lines.
3030
3031 2007-03-01  Bruno Haible  <bruno@clisp.org>
3032
3033         * doc/relocatable.texi: Document that it may not work on OpenBSD.
3034         Reported by Ralf Wildenhues.
3035
3036 2007-03-01  Bruno Haible  <bruno@clisp.org>
3037
3038         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
3039         include ordering constraints.
3040
3041 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
3042
3043         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
3044         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
3045         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
3046         as another example.
3047         * lib/time_.h: Fix misspelling.
3048         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
3049         Require gl_HEADER_TIME_H_DEFAULTS.
3050         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
3051         * m4/time_r.m4 (gl_TIME_R): Likewise.
3052         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
3053
3054 2007-03-01  Bruno Haible  <bruno@clisp.org>
3055
3056         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
3057         * m4/utimens.m4 (gl_UTIMENS): Likewise.
3058
3059 2007-03-01  Jim Meyering  <jim@meyering.net>
3060
3061         * modules/xreadlink (Maintainer): Add my name.
3062         * modules/xreadlink-with-size (Depends-on): Alphabetize.
3063
3064 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
3065             Bruno Haible  <bruno@clisp.org>
3066
3067         * build-aux/install-reloc: Compile also c-ctype.c.
3068         * build-aux/relocatable.sh.in: New file.
3069         * doc/relocatable.texi: New file.
3070         * doc/relocatable-maint.texi: New file.
3071         * doc/gnulib.texi: Include relocatable-maint.texi.
3072         * lib/progreloc.c: Include unistd.h unconditionally.
3073         * lib/relocwrapper.c: Include unistd.h unconditionally.
3074         Include c-ctype.h.
3075         (add_dotbin): Use c_tolower.
3076         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
3077         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
3078         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
3079         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
3080         to m4/relocatable-lib.m4.
3081         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
3082         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
3083         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
3084         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
3085         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
3086         * modules/relocatable: New file.
3087         * modules/relocatable-lib: New file.
3088         * modules/relocatable-script: New file.
3089
3090 2007-02-28  Bruno Haible  <bruno@clisp.org>
3091
3092         Import --enable-relocatable infrastructure.
3093         * build-aux/config.libpath: New file, from GNU gettext.
3094         * build-aux/install-reloc: New file, from GNU gettext.
3095         * build-aux/reloc-ldflags: New file, from GNU gettext.
3096         * lib/relocatable.h: New file, from GNU gettext.
3097         * lib/relocatable.c: New file, from GNU gettext.
3098         * lib/relocwrapper.c: New file, from GNU gettext.
3099         * m4/relocatable.m4: New file, from GNU gettext.
3100
3101 2007-02-28  Bruno Haible  <bruno@clisp.org>
3102
3103         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
3104
3105         * modules/xreadlink: New file, from GNU gettext with modifications.
3106         * lib/xreadlink.c: New file, from GNU gettext.
3107         * lib/xreadlink.h: Add comments.
3108         (xreadlink): New declaration.
3109
3110         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
3111         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
3112         lib/xreadlink-with-size.c.
3113         (configure.ac): Remove gl_XREADLINK invocation.
3114         (Makefile.am): Augment lib_SOURCES.
3115         * m4/xreadlink.m4: Remove file.
3116         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
3117         (xreadlink_with_size): Renamed from xreadink.
3118         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
3119         * modules/canonicalize (Depends-on): Replace xreadlink with
3120         xreadlink-with-size.
3121         * lib/canonicalize.c (canonicalize_filename_mode): Update.
3122
3123 2007-02-25  Jim Meyering  <jim@meyering.net>
3124
3125         * build-aux/announce-gen: When complaining about excess arguments,
3126         list them.
3127
3128 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
3129
3130         * README: Document signed integer overflow situation more
3131         accurately.
3132
3133 2007-02-25  Bruno Haible  <bruno@clisp.org>
3134
3135         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
3136         'a' or 'A' conversion.
3137
3138 2007-02-25  Bruno Haible  <bruno@clisp.org>
3139
3140         * modules/filename: Renamed from modules/pathname.
3141         (Files): Replace lib/pathname.h with lib/filename.h. Replace
3142         lib/concatpath.c with lib/concat-filename.c.
3143         (Makefile.am): Update.
3144         (Include): Replace pathname.h with filename.h.
3145         * lib/filename.h: Renamed from lib/pathname.h.
3146         (concatenated_filename): Renamed from concatenated_pathname.
3147         * lib/concat-filename.c: Renamed from lib/concatpath.c.
3148         (concatenated_filename): Renamed from concatenated_pathname.
3149         * lib/findprog.c: Include filename.h instead of pathname.h.
3150         (find_in_path): Update.
3151         * lib/javacomp.c: Include filename.h instead of pathname.h.
3152         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
3153         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
3154         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
3155         is_oldgcj_14_13_usable, is_javac_usable): Update.
3156         * lib/javaexec.c: Include filename.h instead of pathname.h.
3157         (execute_java_class): Update.
3158         * modules/findprog: Update.
3159         * modules/javacomp: Update.
3160         * modules/javaexec: Update.
3161         * MODULES.html.sh (File system functions): Add 'filename', remove
3162         'pathname'.
3163
3164 2007-02-25  Bruno Haible  <bruno@clisp.org>
3165
3166         * modules/printf-frexpl-tests: New file.
3167         * tests/test-printf-frexpl.c: New file.
3168
3169         * modules/printf-frexpl: New file.
3170         * lib/printf-frexpl.h: New file.
3171         * lib/printf-frexpl.c: New file.
3172         * m4/printf-frexpl.m4: New file.
3173
3174 2007-02-25  Bruno Haible  <bruno@clisp.org>
3175
3176         * modules/printf-frexp-tests: New file.
3177         * tests/test-printf-frexp.c: New file.
3178
3179         * modules/printf-frexp: New file.
3180         * lib/printf-frexp.h: New file.
3181         * lib/printf-frexp.c: New file.
3182         * m4/printf-frexp.m4: New file.
3183
3184 2007-02-25  Bruno Haible  <bruno@clisp.org>
3185
3186         Assume automake >= 1.10 for the tests.
3187         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
3188         * modules/arctwo-tests: Likewise.
3189         * modules/argp-tests: Likewise.
3190         * modules/avltree-list-tests: Likewise.
3191         * modules/avltree-oset-tests: Likewise.
3192         * modules/avltreehash-list-tests: Likewise.
3193         * modules/carray-list-tests: Likewise.
3194         * modules/crc-tests: Likewise.
3195         * modules/des-tests: Likewise.
3196         * modules/gc-arcfour-tests: Likewise.
3197         * modules/gc-arctwo-tests: Likewise.
3198         * modules/gc-des-tests: Likewise.
3199         * modules/gc-hmac-md5-tests: Likewise.
3200         * modules/gc-hmac-sha1-tests: Likewise.
3201         * modules/gc-md2-tests: Likewise.
3202         * modules/gc-md4-tests: Likewise.
3203         * modules/gc-md5-tests: Likewise.
3204         * modules/gc-pbkdf2-sha1-tests: Likewise.
3205         * modules/gc-rijndael-tests: Likewise.
3206         * modules/gc-sha1-tests: Likewise.
3207         * modules/gc-tests: Likewise.
3208         * modules/getaddrinfo-tests: Likewise.
3209         * modules/hmac-md5-tests: Likewise.
3210         * modules/hmac-sha1-tests: Likewise.
3211         * modules/linked-list-tests: Likewise.
3212         * modules/linkedhash-list-tests: Likewise.
3213         * modules/lock-tests: Likewise.
3214         * modules/md2-tests: Likewise.
3215         * modules/md4-tests: Likewise.
3216         * modules/md5-tests: Likewise.
3217         * modules/rbtree-list-tests: Likewise.
3218         * modules/rbtree-oset-tests: Likewise.
3219         * modules/rbtreehash-list-tests: Likewise.
3220         * modules/read-file-tests: Likewise.
3221         * modules/rijndael-tests: Likewise.
3222         * modules/stdint-tests: Likewise.
3223         * modules/tls-tests: Likewise.
3224
3225 2007-02-24  Bruno Haible  <bruno@clisp.org>
3226
3227         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
3228         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
3229         function; instead check whether isnan with a double argument links.
3230         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
3231         function; instead check whether isnan with a 'long double' argument
3232         links.
3233         Reported by Eric Blake <ebb9@byu.net>.
3234
3235 2007-02-24  Bruno Haible  <bruno@clisp.org>
3236
3237         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
3238         defined.
3239         * lib/isnanl.c: Remove all code. Just include isnan.c.
3240         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
3241
3242 2007-02-25  Jim Meyering  <jim@meyering.net>
3243
3244         Avoid conflicting types for 'unsetenv' on FreeBSD.
3245         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
3246         conflicting with FreeBSD's (5.0 and 6.1) function declaration
3247         in stdlib.h.
3248
3249 2007-02-24  Bruno Haible  <bruno@clisp.org>
3250
3251         * modules/isnanl-nolibm-tests: New file.
3252         * tests/test-isnanl.c: New file.
3253
3254         * modules/isnanl-nolibm: New file.
3255         * lib/isnanl.h: New file.
3256         * lib/isnanl.c: New file.
3257         * m4/isnanl.m4: New file.
3258
3259 2007-02-24  Bruno Haible  <bruno@clisp.org>
3260
3261         * modules/isnan-nolibm-tests: New file.
3262         * tests/test-isnan.c: New file.
3263
3264         * modules/isnan-nolibm: New file.
3265         * lib/isnan.h: New file.
3266         * lib/isnan.c: New file.
3267         * m4/isnan.m4: New file.
3268
3269 2007-02-24  Bruno Haible  <bruno@clisp.org>
3270
3271         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
3272         assume that an exponent fits in 20 bits.
3273
3274 2007-02-24  Jim Meyering  <jim@meyering.net>
3275
3276         * m4/regex.m4: Update the description of the configure-time option,
3277         --without-included-regex, to state accurately what the defaults are,
3278         and perhaps to give people an idea why using this option is risky.
3279
3280 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
3281
3282         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
3283         loops on small arguments.  This attempts to avoid the problem
3284         Bruno Haible reported for AIX 4.3.2 in
3285         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
3286
3287 2007-02-23  Bruno Haible  <bruno@clisp.org>
3288
3289         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
3290         Needed for help2man.
3291
3292 2007-02-23  Karl Berry  <karl@gnu.org>
3293
3294         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
3295         exists, foo.h should be cvs-ignored, not committed.
3296
3297 2007-02-23  Eric Blake  <ebb9@byu.net>
3298
3299         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
3300         * lib/stat-time.h (includes): Likewise.
3301         * lib/utimecmp.c (includes): Likewise.
3302         * lib/utimens.h (includes): Likewise.
3303         * lib/getdate.y (includes): Also include "timespec.h" for use
3304         internal to the module.
3305         * modules/utimens (Depends-on): Revert yesterday's patch.
3306         * modules/nanosleep (Depends-on): Add missing dependency.
3307
3308 2007-02-22  Bruno Haible  <bruno@clisp.org>
3309
3310         * lib/glob.c: Don't include getlogin_r.h.
3311
3312 2007-02-22  Jim Meyering  <jim@meyering.net>
3313
3314         * modules/utimens (Depends-on): Add timespec, required for
3315         utimens.h's inclusion of timespec.h.
3316
3317 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
3318
3319         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
3320         long unreadable paths in GNU/Linux.  Problem reported by Andreas
3321         Schwab in
3322         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
3323         I'll try to think of a better way to fix the Solaris problem.
3324
3325         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
3326         like glibc; on Solaris 10, it fails with errno == EINVAL.
3327         POSIX says the behavior is unspecified if the first argument is NULL,
3328         so play it safe and never pass NULL to the system getcwd.
3329
3330 2007-02-21  Jim Meyering  <jim@meyering.net>
3331
3332         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
3333         of gettimeofday.  It would conflict with the one now always
3334         provided via sys_time_.h.  Reported by Matthew Woehlke, as
3335         an IRIX 6.5 build failure.
3336
3337 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
3338
3339         Minor fixups to port to Solaris 10 with Sun C 5.8.
3340         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
3341         * modules/getcwd (Depends-on): Add dirfd.
3342         * lib/putenv.c (putenv): #undef it.
3343         (rpl_putenv): New decl.
3344         (malloc, free): Include <stdlib.h> rather than prototyping separately.
3345
3346 2007-02-20  Bruno Haible  <bruno@clisp.org>
3347
3348         * modules/stdio-tests: New file.
3349         * tests/test-stdio.c: New file.
3350
3351         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
3352         (Depends-on): Add stdio.
3353         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
3354         (Include): Use <stdio.h> instead of vsnprintf.h.
3355         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
3356         HAVE_DECL_VSNPRINTF.
3357         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
3358
3359         * modules/snprintf (Files): Remove lib/snprintf.h.
3360         (Depends-on): Add stdio.
3361         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
3362         (Include): Use <stdio.h> instead of snprintf.h.
3363         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
3364         HAVE_DECL_SNPRINTF.
3365         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
3366         * lib/getaddrinfo.c: Likewise.
3367
3368         * modules/stdio: New file.
3369         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
3370         * lib/snprintf.h: Remove file.
3371         * lib/vsnprintf.h: Remove file.
3372         * lib/.cppi-disable: Remove snprintf.h.
3373         * m4/stdio_h.m4: New file.
3374         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
3375
3376 2007-02-20  Jim Meyering  <jim@meyering.net>
3377
3378         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
3379         used by e.g., mingw.  From Bruno Haible.
3380
3381 2007-02-19  Bruno Haible  <bruno@clisp.org>
3382
3383         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
3384         warnings.
3385         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3386
3387 2007-02-19  Bruno Haible  <bruno@clisp.org>
3388
3389         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
3390         from mingw users.
3391
3392 2007-02-19  Bruno Haible  <bruno@clisp.org>
3393
3394         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
3395         warnings.
3396         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
3397
3398 2007-02-19  Jim Meyering  <jim@meyering.net>
3399
3400         Don't use FD after a successful "fdopendir (fd)".
3401         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
3402         Reset it by calling dirfd on the just-obtained DIR*.
3403
3404         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
3405         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
3406
3407 2007-02-18  Bruno Haible  <bruno@clisp.org>
3408
3409         * lib/readlink.c: Include <unistd.h>.
3410         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
3411         HAVE_READLINK.
3412         * modules/readlink (Depends-on): Add unistd.
3413         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3414         (Include): Add <unistd.h>.
3415
3416         * lib/getlogin_r.h: Remove file.
3417         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
3418         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
3419         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
3420         HAVE_DECL_GETLOGIN_R.
3421         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
3422         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3423         (Include): Use <unistd.h> instead of getlogin_r.h.
3424
3425         * lib/getcwd.h: Remove file.
3426         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
3427         * lib/xgetcwd.c: Likewise.
3428         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
3429         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
3430         * modules/getcwd (Files): Remove lib/getcwd.h.
3431         (Depends-on): Add unistd.
3432         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3433         (Include): Use <unistd.h> instad of getcwd.h.
3434
3435         * lib/ftruncate.c: Include <unistd.h> first.
3436         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
3437         Set HAVE_FTRUNCATE.
3438         * modules/ftruncate (Depends-on): Add unistd.
3439         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3440
3441         * lib/fchdir.c: Include <unistd.h> first.
3442         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
3443         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
3444         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
3445         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3446         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
3447
3448         * lib/dup2.c: Include <unistd.h> first.
3449         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
3450         HAVE_DUP2.
3451         * modules/dup2 (Depends-on): Add unistd.
3452         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3453
3454         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
3455         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
3456         REPLACE_CHOWN. Don't define chown as a macro here.
3457         * modules/chown (Depends-on): Add unistd.
3458         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3459
3460         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
3461         Add definition for GL_LINK_WARNING.
3462         (chown, dup2): New declarations.
3463         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
3464         link warning.
3465         (ftruncate): New declaration.
3466         (getcwd): New declaration, taken from old getcwd.h.
3467         (getlogin_r): New declaration, taken from old getlogin_r.h.
3468         (readlink): New declaration.
3469         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
3470         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
3471         (gl_PREREQ_UNISTD): Remove macro.
3472         (gl_UNISTD_MODULE_INDICATOR): New macro.
3473         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
3474         many new variables. Don't set UNISTD_H.
3475         * modules/unistd (Description): Change.
3476         (Depends-on): Add link-warning.
3477         (configure.ac): Update.
3478         (Makefile.am): Create unistd.h always. Substitute many new variables
3479         into it.
3480
3481 2007-02-18  Bruno Haible  <bruno@clisp.org>
3482
3483         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
3484         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
3485         HAVE_GETSUBOPT.
3486         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
3487         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
3488         * lib/getsubopt.h: Remove file.
3489         * modules/getsubopt (Files): Remove lib/getsubopt.h.
3490         (Depends-on): Add stdlib.
3491         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3492         (Includes): Use <stdlib.h> instead of getsubopt.h.
3493         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
3494         Set HAVE_GETSUBOPT.
3495         * lib/getsubopt.c: Don't include getsubopt.h.
3496
3497 2007-02-18  Bruno Haible  <bruno@clisp.org>
3498
3499         * modules/fchdir (Depends-on): Add dup2.
3500
3501 2007-02-18  Bruno Haible  <bruno@clisp.org>
3502
3503         * lib/stdlib_.h: Handle glibc's special invocation convention
3504         specially.
3505
3506 2007-02-18  Bruno Haible  <bruno@clisp.org>
3507
3508         * modules/stdlib-tests: New file.
3509         * tests/test-stdlib.c: New file.
3510
3511         * modules/mkstemp (Files): Remove lib/mkstemp.h.
3512         (Depends-on): Add stdlib.
3513         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3514         (Includes): Use <stdlib.h> instead of mkstemp.h.
3515         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
3516         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
3517         * lib/mkstemp.c: Don't include mkstemp.h.
3518         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
3519         * lib/stdlib--.h: Don't include mkstemp.h.
3520
3521         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
3522         (Depends-on): Add stdlib.
3523         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
3524         (Includes): Use <stdlib.h> instead of mkdtemp.h.
3525         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
3526         HAVE_MKDTEMP.
3527         * lib/mkdtemp.c: Don't include mkdtemp.h.
3528         * lib/clean-temp.c: Don't include mkdtemp.h.
3529
3530         * modules/exit (Files): Remove lib/exit.h.
3531         (Depends-on): Add stdlib.
3532         (Makefile.am): Remove lib_SOURCES.
3533         (Include): Use <stdlib.h> instead of exit.h.
3534         * lib/argmatch.c: Don't include exit.h.
3535         * lib/execute.c: Likewise.
3536         * lib/pagealign_alloc.c: Likewise.
3537         * lib/pipe.c: Likewise.
3538         * lib/wait-process.c: Likewise.
3539         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
3540         * lib/exitfail.c: Likewise.
3541         * lib/savewd.c: Likewise.
3542         * lib/xsetenv.c: Likewise.
3543
3544         * modules/stdlib: New file.
3545         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
3546         and extra comments about mkstemp().
3547         * lib/exit.h: Remove file.
3548         * lib/mkdtemp.h: Remove file.
3549         * lib/mkstemp.h: Remove file.
3550         * m4/stdlib_h.m4: New file.
3551         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
3552
3553 2007-02-18  Bruno Haible  <bruno@clisp.org>
3554
3555         * modules/math-tests: New file.
3556         * tests/test-math.c: New file.
3557
3558         * modules/math: New file.
3559         * modules/mathl (Files): Remove lib/mathl.h.
3560         (Depends-on): Add math.
3561         (Makefile.am): Don't mention mathl.h.
3562         (Include): Use <math.h> instead of mathl.h.
3563         * lib/math_.h: New file.
3564         * lib/mathl.h: Remove file.
3565         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
3566         mathl.h.
3567         * lib/asinl.c: Likewise.
3568         * lib/atanl.c: Likewise.
3569         * lib/ceill.c: Likewise.
3570         * lib/cosl.c: Likewise.
3571         * lib/expl.c: Likewise.
3572         * lib/floorl.c: Likewise.
3573         * lib/frexpl.c: Likewise.
3574         * lib/ldexpl.c: Likewise.
3575         * lib/logl.c: Likewise.
3576         * lib/sincosl.c: Likewise.
3577         * lib/sinl.c: Likewise.
3578         * lib/sqrtl.c: Likewise.
3579         * lib/tanl.c: Likewise.
3580         * lib/trigl.c: Likewise.
3581         * m4/math_h.m4: New file.
3582         * MODULES.html.sh (Mathematics): Add math.
3583
3584 2007-02-17  Bruno Haible  <bruno@clisp.org>
3585
3586         * modules/wctype-tests: New file.
3587         * tests/test-wctype.c: New file.
3588
3589         * modules/wchar-tests: New file.
3590         * tests/test-wchar.c: New file.
3591
3592         * modules/unistd-tests: New file.
3593         * tests/test-unistd.c: New file.
3594
3595         * modules/time-tests: New file.
3596         * tests/test-time.c: New file.
3597
3598         * modules/sysexits-tests: New file.
3599         * tests/test-sysexits.c: New file.
3600
3601         * modules/sys_time-tests: New file.
3602         * tests/test-sys_time.c: New file.
3603
3604         * modules/sys_stat-tests: New file.
3605         * tests/test-sys_stat.c: New file.
3606
3607         * modules/sys_socket-tests: New file.
3608         * tests/test-sys_socket.c: New file.
3609
3610         * modules/sys_select-tests: New file.
3611         * tests/test-sys_select.c: New file.
3612
3613         * modules/string-tests: New file.
3614         * tests/test-string.c: New file.
3615
3616         * modules/stdbool-tests: New file.
3617         * tests/test-stdbool.c: New file.
3618
3619         * modules/netinet_in-tests: New file.
3620         * tests/test-netinet_in.c: New file.
3621
3622         * modules/inttypes-tests: New file.
3623         * tests/test-inttypes.c: New file.
3624
3625         * modules/fcntl-tests: New file.
3626         * tests/test-fcntl.c: New file.
3627
3628         * modules/byteswap-tests: New file.
3629         * tests/test-byteswap.c: New file.
3630
3631         * modules/arpa_inet-tests: New file.
3632         * tests/test-arpa_inet.c: New file.
3633
3634 2007-02-17  Bruno Haible  <bruno@clisp.org>
3635
3636         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
3637         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
3638         if the corresponding module is not enabled. Emit link warnings if
3639         the function is used nevertheless.
3640         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
3641         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
3642         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
3643         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
3644         * modules/inttypes (Depends-on): Add link-warning.
3645         (Makefile.am): Copy the contents of build-aux/link-warning.h into
3646         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
3647         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
3648         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
3649         * modules/imaxdiv (configure.ac): Likewise.
3650         * modules/strtoimax (configure.ac): Likewise.
3651         * modules/strtoumax (configure.ac): Likewise.
3652
3653 2007-02-17  Bruno Haible  <bruno@clisp.org>
3654
3655         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
3656         gl_STRING_MODULE_INDICATOR_DEFAULTS.
3657         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
3658         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
3659
3660 2007-02-17  Bruno Haible  <bruno@clisp.org>
3661
3662         * modules/link-warning: New file.
3663         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
3664         * lib/string_.h (GL_LINK_WARNING): Remove definition.
3665         * modules/string (Depends-on): Add link-warning.
3666         (Makefile.am): Copy the contents of build-aux/link-warning.h into
3667         string.h.
3668         * MODULES.html.sh (Support for building libraries and executables): Add
3669         link-warning.
3670
3671 2007-02-17  Bruno Haible  <bruno@clisp.org>
3672
3673         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
3674         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
3675         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
3676         long lines.
3677
3678 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
3679             Bruno Haible  <bruno@clisp.org>
3680
3681         * modules/tmpfile: New file.
3682         * lib/tmpfile.c: New file.
3683         * m4/tmpfile.m4: New file.
3684         * MODULES.html.sh (func_all_modules): New section "Input/output".
3685
3686 2007-02-15  Bruno Haible  <bruno@clisp.org>
3687
3688         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
3689         (supports_delete_on_close): New function.
3690         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
3691
3692 2007-02-14  Bruno Haible  <bruno@clisp.org>
3693
3694         * modules/mbspcasecmp-tests: New file.
3695         * tests/test-mbspcasecmp.sh: New file.
3696         * tests/test-mbspcasecmp.c: New file.
3697
3698         New module mbspcasecmp.
3699         * modules/mbspcasecmp: New file.
3700         * lib/mbspcasecmp.c: New file.
3701         * lib/string_.h (strncasecmp): Change warning message.
3702         (mbspcasecmp): New declaration.
3703         * m4/mbspcasecmp.m4: New file.
3704         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
3705         GNULIB_MBSPCASECMP.
3706         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
3707         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
3708
3709 2007-02-14  Bruno Haible  <bruno@clisp.org>
3710
3711         * modules/mbsncasecmp-tests: New file.
3712         * tests/test-mbsncasecmp.sh: New file.
3713         * tests/test-mbsncasecmp.c: New file.
3714
3715         New module mbsncasecmp.
3716         * modules/mbsncasecmp: New file.
3717         * lib/mbsncasecmp.c: New file.
3718         * lib/string_.h (mbsncasecmp): New declaration.
3719         * m4/mbsncasecmp.m4: New file.
3720         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
3721         GNULIB_MBSNCASECMP.
3722         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
3723         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
3724
3725 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
3726
3727         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
3728         Verify that it doesn't overlap with our flags.
3729         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
3730         do not have the desired effect in multibyte locales; instead, use
3731         mbscasecmp.
3732         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
3733         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
3734         we don't require GNU fnmatch ourselves (if our users require it, they
3735         should do so explicitly).
3736
3737         Fix regex code so it doesn't rely on strcasecmp.
3738         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
3739         Otherwise, include gnulib's langinfo.h.
3740         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
3741         undesirable behavior in non-C locales.  Instead, rely on localecharset.
3742         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
3743         * modules/regex (FILES): Remove m4/codeset.m4.
3744         (Depends-on): Add localcharset.  Remove strcase.
3745
3746 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3747
3748         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
3749         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
3750
3751 2007-02-13  Bruno Haible  <bruno@clisp.org>
3752
3753         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
3754         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3755
3756 2007-02-12  Bruno Haible  <bruno@clisp.org>
3757
3758         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
3759         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
3760         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
3761         time warning rather than a link error.
3762
3763 2007-02-12  Bruno Haible  <bruno@clisp.org>
3764
3765         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
3766         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
3767         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
3768
3769 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
3770
3771         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
3772         args, not 2.
3773
3774 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
3775
3776         New module 'time', so that apps can include <time.h> as per
3777         POSIX and GNU instead of separate include files like time_r.h
3778         and timegm.h.  This implementation tries out a simpler approach
3779         for replacing decls in standard include files (as compared to
3780         the string module), somewhat as an experiment.
3781
3782         * config/srclist.txt: Comment out mktime.c for now.
3783         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
3784         since it doesn't apply any more.  Use generic wording instead.
3785         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
3786         'time'.
3787         * lib/time_.h, m4/time_h.m4, modules/time: New files.
3788         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
3789         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
3790         Don't include <sys/types.h>; no longer needed since we assume C89.
3791         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
3792         * lib/strftime.c: Likewise.
3793         * lib/time_r.c: Likewise.
3794         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
3795         * lib/nanosleep.c: Include <time.h> first, to check interface.
3796         * lib/strptime.c: Likewise.
3797         * lib/time_r.c: Likewise.
3798         * lib/timegm.c: Likewise.
3799         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
3800         needed.
3801         * lib/timegm.c: Don't include timegm.h; no longer needed.
3802         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
3803         time.h now handles any problems in that area.
3804         (struct timespec, nanosleep): Remove; time.h now arranges for these.
3805         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
3806         that time.h defines struct timespec.
3807         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
3808         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
3809         handles that.
3810         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
3811         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
3812         needed.  Set REPLACE_LOCALTIME.
3813         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
3814         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
3815         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
3816         nanosleep; time_h.m4 now does that.  Don't require
3817         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
3818         module handles this now.
3819         * modules/getdate (Depends-on): Remove timespec.  Add time.
3820         * modules/nanosleep (Depends-on): Likewise.
3821         * modules/stat-time (Depends-on): Likewise.
3822         * modules/nanosleep (Include): Include time.h, not timespec.h.
3823         * modules/strptime (Files): Remove lib/strptime.h.
3824         (Depends-on): Add extensions, time.
3825         (Include): Include time.h, not strptime.h.
3826         * modules/time_r (Files): Remove lib/time_r.h.
3827         (Depends-on): Add time.
3828         (Include): Include time.h, not time_r.h.
3829         * modules/timegm: Likewise.
3830         * modules/timespec (Description): Now does timespec-related decls
3831         of our own, instead of struct timespec itself.
3832         (Depends-on): Add time; remove extensions.
3833         (Maintainer): Add self.
3834         * modules/utimecmp (Depends-on): Add time; remove timespec.
3835         * modules/utimens (Depends-on): Likewise.
3836         * modules/xnanosleep (Depends-on): Likewise.
3837
3838 2007-02-11  Bruno Haible  <bruno@clisp.org>
3839
3840         * lib/c-strstr.c: Include allocsa.h.
3841         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
3842         * lib/c-strcasestr.c: Include allocsa.h.
3843         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
3844         * lib/strcasestr.c: Include allocsa.h.
3845         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
3846         * lib/mbsstr.c: Include allocsa.h.
3847         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
3848         allocsa/freesa instead of malloc/free.
3849         * lib/mbscasestr.c: Include allocsa.h.
3850         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
3851         allocsa/freesa instead of malloc/free.
3852         * modules/c-strstr (Depends-on): Add allocsa.
3853         * modules/c-strcasestr (Depends-on): Likewise.
3854         * modules/strcasestr (Depends-on): Likewise.
3855         * modules/mbsstr (Depends-on): Likewise.
3856         * modules/mbscasestr (Depends-on): Likewise.
3857
3858 2007-02-11  Bruno Haible  <bruno@clisp.org>
3859
3860         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
3861
3862         * modules/mbsspn-tests: New file.
3863         * tests/test-mbsspn.sh: New file.
3864         * tests/test-mbsspn.c: New file.
3865
3866 2007-02-11  Bruno Haible  <bruno@clisp.org>
3867
3868         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
3869
3870         * modules/mbspbrk-tests: New file.
3871         * tests/test-mbspbrk.sh: New file.
3872         * tests/test-mbspbrk.c: New file.
3873
3874 2007-02-11  Bruno Haible  <bruno@clisp.org>
3875
3876         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
3877         unneeded cast.
3878
3879         * modules/mbscspn-tests: New file.
3880         * tests/test-mbscspn.sh: New file.
3881         * tests/test-mbscspn.c: New file.
3882
3883 2007-02-11  Bruno Haible  <bruno@clisp.org>
3884
3885         * modules/mbscasecmp-tests: New file.
3886         * tests/test-mbscasecmp.sh: New file.
3887         * tests/test-mbscasecmp.c: New file.
3888
3889 2007-02-11  Bruno Haible  <bruno@clisp.org>
3890
3891         Ensure O(n) worst-case complexity of mbscasestr.
3892         * lib/mbscasestr.c: Include stdbool.h.
3893         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
3894         functions.
3895         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
3896         the bookkeeping indicates that it's worth it.
3897         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
3898
3899         * modules/mbscasestr-tests: New file.
3900         * tests/test-mbscasestr1.c: New file.
3901         * tests/test-mbscasestr2.sh: New file.
3902         * tests/test-mbscasestr2.c: New file.
3903         * tests/test-mbscasestr3.sh: New file.
3904         * tests/test-mbscasestr3.c: New file.
3905         * tests/test-mbscasestr4.sh: New file.
3906         * tests/test-mbscasestr4.c: New file.
3907         * m4/locale-tr.m4: New file.
3908
3909 2007-02-11  Bruno Haible  <bruno@clisp.org>
3910
3911         Ensure O(n) worst-case complexity of mbsstr.
3912         * lib/mbsstr.c: Include stdbool.h.
3913         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
3914         functions.
3915         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
3916         bookkeeping indicates that it's worth it.
3917         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
3918
3919         * modules/mbsstr-tests: New file.
3920         * tests/test-mbsstr1.c: New file.
3921         * tests/test-mbsstr2.sh: New file.
3922         * tests/test-mbsstr2.c: New file.
3923         * tests/test-mbsstr3.sh: New file.
3924         * tests/test-mbsstr3.c: New file.
3925         * m4/locale-fr.m4: New file.
3926
3927 2007-02-11  Bruno Haible  <bruno@clisp.org>
3928
3929         * lib/mbsrchr.c (mbsrchr): Fix bug.
3930
3931         * modules/mbsrchr-tests: New file.
3932         * tests/test-mbsrchr.sh: New file.
3933         * tests/test-mbsrchr.c: New file.
3934
3935 2007-02-11  Bruno Haible  <bruno@clisp.org>
3936
3937         * lib/mbschr.c (mbschr): Fix bug.
3938
3939         * modules/mbschr-tests: New file.
3940         * tests/test-mbschr.sh: New file.
3941         * tests/test-mbschr.c: New file.
3942         * m4/locale-zh.m4: New file.
3943
3944 2007-02-11  Bruno Haible  <bruno@clisp.org>
3945
3946         Support for copying multibyte string iterators.
3947         * lib/mbiter.h: Include <string.h>.
3948         (mbiter_multi_copy): New function.
3949         (mbi_copy): New macro.
3950         * lib/mbuiter.h: Include <string.h>.
3951         (mbuiter_multi_copy): New function.
3952         (mbui_copy): New macro.
3953
3954 2007-02-11  Bruno Haible  <bruno@clisp.org>
3955
3956         New module mbslen.
3957         * modules/mbslen: New file.
3958         * lib/mbslen.c: New file.
3959         * lib/string_.h (mbslen): New declaration.
3960         * m4/mbslen.m4: New file.
3961         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
3962         GNULIB_MBSLEN.
3963         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
3964         * MODULES.html.sh (Internationalization functions): Add mbslen.
3965
3966 2007-02-11  Bruno Haible  <bruno@clisp.org>
3967
3968         Ensure O(n) worst-case complexity of strcasestr substitute.
3969         * lib/strcasestr.c: Include stdbool.h.
3970         (knuth_morris_pratt): New function.
3971         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
3972         bookkeeping indicates that it's worth it.
3973         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
3974
3975         * modules/strcasestr-tests: New file.
3976         * tests/test-strcasestr.c: New file.
3977
3978 2007-02-11  Bruno Haible  <bruno@clisp.org>
3979
3980         Ensure O(n) worst-case complexity of c_strcasestr.
3981         * lib/c-strcasestr.c: Include stdbool.h, string.h.
3982         (knuth_morris_pratt): New function.
3983         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
3984         the bookkeeping indicates that it's worth it.
3985         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
3986
3987         * modules/c-strcasestr-tests: New file.
3988         * tests/test-c-strcasestr.c: New file.
3989
3990 2007-02-11  Bruno Haible  <bruno@clisp.org>
3991
3992         Ensure O(n) worst-case complexity of c_strstr.
3993         * lib/c-strstr.c: Include stdbool.h, string.h.
3994         (knuth_morris_pratt): New function.
3995         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
3996         bookkeeping indicates that it's worth it.
3997         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
3998
3999         * lib/c-strstr.c: Complete rewrite for maintainability.
4000
4001         * modules/c-strstr-tests: New file.
4002         * tests/test-c-strstr.c: New file.
4003
4004 2007-02-11  Bruno Haible  <bruno@clisp.org>
4005
4006         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
4007         5.2.1 and earlier, whereby \055 was treated just like the range
4008         delimiter '-'.
4009         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
4010
4011 2007-02-08  Bruno Haible  <bruno@clisp.org>
4012
4013         * modules/regex (Depends-on): Add stdbool.
4014         Reported by Dalibor Topic <robilad@kaffe.org>.
4015
4016 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
4017
4018         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
4019         Prefer returning from main to exiting from it.
4020         Remove unnecessary parens after sizeof.
4021
4022 2007-02-05  Bruno Haible  <bruno@clisp.org>
4023
4024         New module mbssep.
4025         * modules/mbssep: New file.
4026         * lib/mbssep.c: New file.
4027         * lib/string_.h (strsep): Add a conditional link warning.
4028         (mbssep): New declaration.
4029         * m4/mbssep.m4: New file.
4030         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4031         GNULIB_MBSSEP.
4032         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
4033         * MODULES.html.sh (Internationalization functions): Add mbssep.
4034
4035 2007-02-05  Bruno Haible  <bruno@clisp.org>
4036
4037         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
4038         Optimize search in case of 1 delimiter.
4039
4040 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4041
4042         * lib/acl.h: Include sys/types.h before sys/acl.h.
4043
4044 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
4045
4046         Merge upstream fix for glibc bugzilla #3957:
4047
4048         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
4049
4050         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
4051         bit for RE_HAT_LISTS_NOT_NEWLINE.
4052         (build_charclass_op): Remove bogus comment.
4053
4054 2007-02-05  Simon Josefsson  <simon@josefsson.org>
4055
4056         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
4057
4058 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4059
4060         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
4061         * lib/memmem.c [!defined _LIBC]: Include config.h.
4062
4063 2007-02-04  Bruno Haible  <bruno@clisp.org>
4064
4065         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
4066         warning message.
4067
4068 2007-02-04  Bruno Haible  <bruno@clisp.org>
4069
4070         New module mbstok_r.
4071         * modules/mbstok_r: New file.
4072         * lib/mbstok_r.c: New file.
4073         * lib/string_.h (strtok_r): Change argument names to match the
4074         comments. Add a conditional link warning.
4075         (mbstok_r): New declaration.
4076         * m4/mbstok_r.m4: New file.
4077         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4078         GNULIB_MBSTOK_R.
4079         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
4080         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
4081
4082 2007-02-04  Bruno Haible  <bruno@clisp.org>
4083
4084         New module mbsspn.
4085         * modules/mbsspn: New file.
4086         * lib/mbsspn.c: New file.
4087         * lib/string_.h (strspn): Add a conditional link warning.
4088         (mbsspn): New declaration.
4089         * m4/mbsspn.m4: New file.
4090         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4091         GNULIB_MBSSPN.
4092         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
4093         * MODULES.html.sh (Internationalization functions): Add mbsspn.
4094
4095 2007-02-04  Bruno Haible  <bruno@clisp.org>
4096
4097         New module mbspbrk.
4098         * modules/mbspbrk: New file.
4099         * lib/mbspbrk.c: New file.
4100         * lib/string_.h (strpbrk): Add a conditional link warning.
4101         (mbspbrk): New declaration.
4102         * m4/mbspbrk.m4: New file.
4103         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4104         GNULIB_MBSPBRK.
4105         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
4106         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
4107
4108 2007-02-04  Bruno Haible  <bruno@clisp.org>
4109
4110         New module mbscspn.
4111         * modules/mbscspn: New file.
4112         * lib/mbscspn.c: New file.
4113         * lib/string_.h (strcspn): Add a conditional link warning.
4114         (mbscspn): New declaration.
4115         * m4/mbscspn.m4: New file.
4116         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4117         GNULIB_MBSCSPN.
4118         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
4119         * MODULES.html.sh (Internationalization functions): Add mbscspn.
4120
4121 2007-02-04  Bruno Haible  <bruno@clisp.org>
4122
4123         New module mbscasestr, reduced goal of strcasestr.
4124         * modules/mbscasestr: New file.
4125         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
4126         (mbscasestr): Renamed from strcasestr.
4127         * lib/strcasestr.c: Don't include mbuiter.h.
4128         (strcasestr): Remove support for multibyte locales.
4129         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
4130         Change the conditional link warning.
4131         (mbscasestr): New declaration.
4132         * m4/mbscasestr.m4: New file.
4133         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
4134         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
4135         REPLACE_STRCASESTR.
4136         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
4137         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4138         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4139         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
4140         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
4141         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
4142         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
4143         (Depends-on): Remove mbuiter.
4144         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
4145
4146 2007-02-04  Bruno Haible  <bruno@clisp.org>
4147
4148         Simplify handling of strncasecmp.
4149         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
4150         the conditional link warning.
4151         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
4152         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
4153         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
4154         * modules/strcase (configure.ac): Don't invoke
4155         gl_STRING_MODULE_INDICATOR.
4156         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
4157
4158 2007-02-04  Bruno Haible  <bruno@clisp.org>
4159
4160         New module mbscasecmp, reduced goal of strcasecmp.
4161         * modules/mbscasecmp: New file.
4162         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
4163         (mbscasecmp): Renamed from strcasecmp.
4164         * lib/strcasecmp.c: Don't include mbuiter.h.
4165         (strcasecmp): Remove support for multibyte locales.
4166         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
4167         Change the conditional link warning.
4168         (mbscasecmp): New declaration.
4169         * m4/mbscasecmp.m4: New file.
4170         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
4171         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
4172         REPLACE_STRCASECMP.
4173         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
4174         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4175         GNULIB_MBSCASECMP.
4176         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
4177         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
4178         * modules/strcase (Files): Remove m4/mbrtowc.m4.
4179         (Depends-on): Remove mbuiter.
4180         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
4181
4182 2007-02-04  Bruno Haible  <bruno@clisp.org>
4183
4184         New module mbsstr. Remove module strstr.
4185         * modules/mbsstr: New file.
4186         * modules/strstr: Remove file.
4187         * lib/mbsstr.c: Renamed from lib/strstr.c.
4188         (mbsstr): Renamed from strstr.
4189         * lib/string_.h (strstr): Remove declaration. Change the conditional
4190         link warning.
4191         (mbsstr): New declaration.
4192         * m4/mbsstr.m4: New file.
4193         * m4/strstr.m4: Remove file.
4194         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
4195         REPLACE_STRSTR.
4196         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
4197         Don't initialize GNULIB_STRSTR.
4198         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
4199         substitute GNULIB_STRSTR and REPLACE_STRSTR.
4200         * MODULES.html.sh (Internationalization functions): Add mbsstr.
4201         (Support for systems lacking ANSI C 89): Remove strstr.
4202
4203 2007-02-04  Bruno Haible  <bruno@clisp.org>
4204
4205         New module mbsrchr.
4206         * modules/mbsrchr: New file.
4207         * lib/mbsrchr.c: New file.
4208         * lib/string_.h (strrchr): Add a conditional link warning.
4209         (mbsrchr): New declaration.
4210         * m4/mbsrchr.m4: New file.
4211         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4212         GNULIB_MBSRCHR.
4213         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
4214         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
4215
4216 2007-02-04  Bruno Haible  <bruno@clisp.org>
4217
4218         New module mbschr.
4219         * modules/mbschr: New file.
4220         * lib/mbschr.c: New file.
4221         * lib/string_.h (strchr): Add a conditional link warning.
4222         (mbschr): New declaration.
4223         * m4/mbschr.m4: New file.
4224         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
4225         GNULIB_MBSCHR.
4226         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
4227         * MODULES.html.sh (Internationalization functions): Add mbschr.
4228
4229 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4230
4231         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
4232
4233         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
4234
4235 2007-02-04  Bruno Haible  <bruno@clisp.org>
4236
4237         New module description section 'configure.ac-early'.
4238         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
4239         (func_get_autoconf_early_snippet): New function.
4240         (func_import, func_create_testdir): Use it. Remove special cases for
4241         modules 'extensions' and 'lock'.
4242         * modules/extensions (configure.ac-early): Require
4243         gl_USE_SYSTEM_EXTENSIONS.
4244         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
4245
4246 2007-02-04  Bruno Haible  <bruno@clisp.org>
4247
4248         Make use of gcj-4.3's -fsource and -ftarget option.
4249         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
4250         and if so try the options -fsource and -ftarget.
4251         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
4252         source_version, ftarget_option, target_version arguments.
4253         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
4254         (is_envjavac_oldgcj_14_14_usable): Renamed from
4255         is_envjavac_gcj_14_14_usable.
4256         (is_envjavac_oldgcj_14_13_usable): Renamed from
4257         is_envjavac_gcj_14_13_usable.
4258         (is_gcj_present): Update.
4259         (is_gcj_43, is_gcj43_usable): New functions.
4260         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
4261         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
4262         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
4263         try the options -fsource and -ftarget.
4264
4265 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
4266
4267         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
4268         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
4269         larger value.
4270
4271 2007-02-03  Jim Meyering  <jim@meyering.net>
4272
4273         Give tools a better chance to allocate space for very large buffers.
4274         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
4275
4276         Make pwd and readlink work also when run with an unreadable parent dir
4277         on systems with openat support.
4278         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
4279         provided getcwd function, even when we have openat support.
4280         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
4281
4282 2007-02-02  Bruno Haible  <bruno@clisp.org>
4283
4284         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
4285         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
4286         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
4287         portability problems if one of these functions is only used on specific
4288         platforms.
4289         Reported by Paul Eggert.
4290
4291 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
4292
4293         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
4294         is causing more trouble than it's curing.
4295         * lib/regex_internal.h (__mempcpy): Remove.
4296         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
4297         (and make the code a tad smaller to boot).
4298         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
4299
4300 2007-02-02  Jim Meyering  <jim@meyering.net>
4301
4302         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
4303         section, not in the Makefile.am: one.
4304
4305 2007-02-02  Eric Blake  <ebb9@byu.net>
4306
4307         * lib/strchrnul.c: Always include config.h first.
4308
4309         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
4310         gnulib strstr is not necessary here.
4311
4312 2007-02-02  Simon Josefsson  <simon@josefsson.org>
4313
4314         * m4/socklen.m4: Fix typo.
4315
4316 2007-02-02  Eric Blake  <ebb9@byu.net>
4317
4318         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
4319         * modules/netinet_in (Makefile.am): Likewise.
4320
4321 2007-02-01  Bruno Haible  <bruno@clisp.org>
4322
4323         * lib/string_.h (GL_LINK_WARNING): New macro.
4324         (strcasecmp, strstr, strcasestr): If provided by the system,
4325         conditionally define as a macro that leads to a warning instead of to
4326         an error.
4327         (strncasecmp): Conditionally define as a macro that leads to a warning.
4328
4329 2007-02-01  Karl Berry  <karl@gnu.org>
4330
4331         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
4332
4333 2007-02-01  Bruno Haible  <bruno@clisp.org>
4334
4335         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
4336         renamings.
4337
4338 2007-02-01  Eric Blake  <ebb9@byu.net>
4339
4340         * modules/regex (Depends-on): Revert dependence on mempcpy.
4341         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
4342         module's definition of mempcpy.
4343         Reported by Paul Eggert.
4344
4345 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
4346
4347         * lib/string_.h: If the gnulib module XYZ is not present, undefine
4348         the symbol XYZ before redefining it.  This fixes a problem with
4349         programs that don't use XYZ, when compiled on systems that define
4350         XYZ to something else.
4351
4352 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
4353
4354         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
4355         occurs when "mkdir -m foo" creates a setgid directory that is (1)
4356         writeable to group or other and (2) is intended to have a special
4357         mode bit that is set or cleared.  In such a case, the directory
4358         should be neither group- nor other-writeable until the special
4359         mode bits are right.
4360
4361 2007-01-31  Eric Blake  <ebb9@byu.net>
4362
4363         * modules/mountlist (Depends-on): Add strstr.
4364
4365         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
4366         bug.
4367         * modules/string (Makefile.am): Remove redundant replacement.
4368         * modules/regex (Depends-on): Add mempcpy.
4369
4370 2007-01-31  Bruno Haible  <bruno@clisp.org>
4371
4372         New module description field 'Link'.
4373         * gnulib-tool (func_usage): Document --extract-link-directive.
4374         (sed_extract_prog): Recognize 'Link' directive.
4375         (func_get_link_directive): New function.
4376         (func_import): Show summary of link directives.
4377         Handle --extract-link-directive option.
4378         * modules/acl (Link): New section.
4379         * modules/clock-time (Link): New section.
4380         * modules/euidaccess (Link): New section.
4381         * modules/gettext (Link): New section.
4382         * modules/iconv (Link): New section.
4383         * modules/lock (Link): New section.
4384         * modules/nanosleep (Link): New section.
4385         * modules/readline (Link): New section.
4386
4387 2007-01-27  Bruno Haible  <bruno@clisp.org>
4388
4389         Enforce the use of gnulib modules for unportable <string.h> functions.
4390         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
4391         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
4392         (gl_HEADER_STRING_H_BODY): Require it.
4393         * lib/string_.h: If the gnulib module XYZ is not present, redefine
4394         the symbol XYZ to one that gives a link error.
4395         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
4396         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
4397         * modules/mempcpy (configure.ac): Likewise.
4398         * modules/memrchr (configure.ac): Likewise.
4399         * modules/stpcpy (configure.ac): Likewise.
4400         * modules/stpncpy (configure.ac): Likewise.
4401         * modules/strcase (configure.ac): Likewise.
4402         * modules/strcasestr (configure.ac): Likewise.
4403         * modules/strchrnul (configure.ac): Likewise.
4404         * modules/strdup (configure.ac): Likewise.
4405         * modules/strndup (configure.ac): Likewise.
4406         * modules/strnlen (configure.ac): Likewise.
4407         * modules/strpbrk (configure.ac): Likewise.
4408         * modules/strsep (configure.ac): Likewise.
4409         * modules/strstr (configure.ac): Likewise.
4410         * modules/strtok_r (configure.ac): Likewise.
4411
4412 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
4413
4414         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
4415
4416 2007-01-30  Jim Meyering  <jim@meyering.net>
4417
4418         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
4419
4420 2007-01-29  Bruno Haible  <bruno@clisp.org>
4421
4422         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
4423         * lib/execute.c: Likewise.
4424         * lib/pipe.c: Likewise.
4425         * lib/printf-args.h: Likewise.
4426         * lib/printf-args.c: Likewise.
4427         * lib/printf-parse.c: Likewise.
4428         * lib/vasnprintf.c: Likewise.
4429
4430 2007-01-29  Eric Blake  <ebb9@byu.net>
4431
4432         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
4433         declaration.
4434
4435 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
4436
4437         * lib/strptime.h (strptime): Use 'restrict' for args where
4438         POSIX requires this.
4439         * lib/strptime.c (strptime): Likewise.
4440         Change license notice from LGPL to GPL, since gnulib-tool will
4441         change this as needed.
4442         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
4443         defined.
4444         Include "strptime.h" first, to check interface.
4445         Do not #undef _LIBC and _NL_CURRENT.
4446         Do not include <stdlib.h>; no longer needed.
4447         Include "time_r.h" and declare ptime_locale_status
4448         only if _LIBC is not defined.
4449         (__P): Remove unused macro.
4450         (match_string): Bring back glibc version, but use it only if _LIBC
4451         is defined.
4452         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
4453         Remove unnecessary assertion and abort() call.
4454         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
4455         * m4/strptime.m4: Fix serial number comment.
4456         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
4457         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
4458         (Depends-on): Add time_r.
4459
4460 2007-01-29  Bruno Haible  <bruno@clisp.org>
4461
4462         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
4463         strptime.
4464         * modules/strptime (Depends-on): Add stdbool.
4465         * lib/strptime.h: Include <time.h> always. Add comments.
4466
4467 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
4468
4469         * modules/strptime: New file.
4470         * lib/strptime.h: New file.
4471         * lib/strptime.c: New file.
4472         * m4/strptime.m4: New file.
4473
4474 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
4475
4476         * MODULES.html.sh: New module mpsort.
4477         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
4478
4479         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
4480         a circularity problem with HP-UX ia64 reported by Bob Proulx in
4481         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
4482         All uses changed.
4483         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
4484         All uses changed.
4485         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
4486         to _Restrict_.
4487         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
4488         the parameter matches the prototype.
4489
4490 2007-01-28  Jim Meyering  <jim@meyering.net>
4491
4492         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
4493         sys/time.h here, reverting that part of the previous patch:
4494         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
4495
4496 2007-01-28  Bruno Haible  <bruno@clisp.org>
4497
4498         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
4499         value of $(SYS_TIME_H).
4500         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
4501         remove it conditionally, too. [added by Jim Meyering]
4502         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
4503         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
4504         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
4505         GETTIMEOFDAY_REPLACEMENT to 1.
4506
4507 2007-01-28  Bruno Haible  <bruno@clisp.org>
4508
4509         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
4510         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
4511         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
4512         Set UNISTD_H instead of UNISTD_H2.
4513         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
4514
4515 2007-01-28  Bruno Haible  <bruno@clisp.org>
4516
4517         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
4518         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
4519
4520 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4521
4522         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
4523         (func_create_testdir): Ensure C locale for `grep' and `tr'
4524         character ranges.
4525         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
4526         ACLOCAL_AMFLAGS parsing state machine.
4527
4528 2007-01-27  Bruno Haible  <bruno@clisp.org>
4529
4530         * modules/unistr/base: Update.
4531
4532 2007-01-27  Bruno Haible  <bruno@clisp.org>
4533
4534         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
4535         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
4536         * modules/unistr/u32-mbtouc-unsafe: Renamed from
4537         modules/unistr/u32-mbtouc.
4538         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
4539         * lib/unistr.h: Update.
4540         * lib/linebreak.c: Update.
4541         * modules/unistr/u32-mbtouc: Renamed from
4542         modules/unistr/u32-mbtouc-safe.
4543         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
4544         * lib/unistr.h: Update.
4545         * lib/unistr/u32-to-u8.c: Update.
4546         * lib/unistr/u32-to-u16.c: Update.
4547
4548 2007-01-27  Bruno Haible  <bruno@clisp.org>
4549
4550         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
4551         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
4552         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
4553         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
4554         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
4555         * modules/unistr/u16-mbtouc-unsafe: Renamed from
4556         modules/unistr/u16-mbtouc.
4557         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
4558         * lib/unistr.h: Update.
4559         * lib/linebreak.c: Update.
4560         * modules/linebreak: Update.
4561         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
4562         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
4563         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
4564         * modules/unistr/u16-mbtouc: Renamed from
4565         modules/unistr/u16-mbtouc-safe.
4566         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
4567         * lib/unistr.h: Update.
4568         * lib/unistr/u16-to-u8.c: Update.
4569         * modules/unistr/u16-to-u8: Update.
4570         * lib/unistr/u16-to-u32.c: Update.
4571         * modules/unistr/u16-to-u32: Update.
4572
4573 2007-01-27  Bruno Haible  <bruno@clisp.org>
4574
4575         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
4576         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
4577         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
4578         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
4579         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
4580         * modules/unistr/u8-mbtouc-unsafe: Renamed from
4581         modules/unistr/u8-mbtouc.
4582         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
4583         * lib/unistr.h: Update.
4584         * lib/striconveh.c: Update.
4585         * modules/striconveh: Update.
4586         * lib/linebreak.c: Update.
4587         * modules/linebreak: Update.
4588         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
4589         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
4590         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
4591         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
4592         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
4593         * lib/unistr.h: Update.
4594         * lib/striconveh.c: Update.
4595         * modules/striconveh: Update.
4596         * lib/unistr/u8-to-u16.c: Update.
4597         * modules/unistr/u8-to-u16: Update.
4598         * lib/unistr/u8-to-u32.c: Update.
4599         * modules/unistr/u8-to-u32: Update.
4600
4601 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4602
4603         Sync from Libtool.
4604         * lib/argz.c: Do not include strings.h nor memory.h, include
4605         string.h unconditionally.  Patch by Simon Josefsson.
4606
4607 2007-01-27  Bruno Haible  <bruno@clisp.org>
4608
4609         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
4610         from gl_HEADER_STRING_H_BODY.
4611         (gl_HEADER_STRING_H_BODY): Require it.
4612         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
4613         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
4614         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
4615         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
4616         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
4617         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
4618         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
4619         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
4620         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
4621         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
4622         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
4623         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
4624         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
4625         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
4626         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
4627
4628 2007-01-27  Bruno Haible  <bruno@clisp.org>
4629
4630         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
4631         check_PROGRAMS into noinst_PROGRAMS.
4632         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
4633         check_PROGRAMS in this case.
4634         (func_import): Set for_test to false.
4635         (func_create_testdir): Set for_test to true.
4636
4637 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
4638             Bruno Haible  <bruno@clisp.org>
4639
4640         * modules/strcasestr (Files): Remove lib/strcasestr.h.
4641         (Depends-on): Add string.
4642         (Includes): Use <string.h> instead of strcasestr.h.
4643         * modules/string (Makefile.am): Also substitute the value of
4644         REPLACE_STRCASESTR.
4645         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
4646         assume strcasestr is declared in <string.h> not <strings.h>. Also
4647         set REPLACE_STRCASESTR.
4648         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
4649         REPLACE_STRCASESTR.
4650         * lib/strcasestr.h: Remove file.
4651         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
4652         * lib/string_.h (strcasestr): New declaration.
4653
4654 2007-01-27  Bruno Haible  <bruno@clisp.org>
4655
4656         * lib/string_.h: Use 'extern'.
4657
4658 2007-01-27  Jim Meyering  <jim@meyering.net>
4659
4660         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
4661         of set-but-not-used local, "q".
4662
4663         * lib/mempcpy.c: Include <config.h> before <string.h>.
4664         This fixes a compilation error on HP-UX, due to the system's
4665         "restrict"-using mempcpy prototype.
4666
4667 2007-01-26  Bruno Haible  <bruno@clisp.org>
4668
4669         Small optimization.
4670         * lib/javacomp.c: Include c-strstr.h.
4671          (is_envjavac_gcj): Use c_strstr instead of strstr.
4672         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
4673
4674 2007-01-26  Bruno Haible  <bruno@clisp.org>
4675
4676         * MODULES.html.sh (Unicode string functions): Add the new modules.
4677
4678         * modules/uniconv/u32-strconv-to-locale: New file.
4679         * lib/uniconv/u32-strconv-to-locale.c: New file.
4680
4681         * modules/uniconv/u16-strconv-to-locale: New file.
4682         * lib/uniconv/u16-strconv-to-locale.c: New file.
4683
4684         * modules/uniconv/u8-strconv-to-locale: New file.
4685         * lib/uniconv/u8-strconv-to-locale.c: New file.
4686
4687         * modules/uniconv/u32-strconv-from-locale: New file.
4688         * lib/uniconv/u32-strconv-from-locale.c: New file.
4689
4690         * modules/uniconv/u16-strconv-from-locale: New file.
4691         * lib/uniconv/u16-strconv-from-locale.c: New file.
4692
4693         * modules/uniconv/u8-strconv-from-locale: New file.
4694         * lib/uniconv/u8-strconv-from-locale.c: New file.
4695
4696         * modules/uniconv/u32-strconv-to-enc: New file.
4697         * lib/uniconv/u32-strconv-to-enc.c: New file.
4698         * modules/uniconv/u32-strconv-to-enc-tests: New file.
4699         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
4700
4701         * modules/uniconv/u16-strconv-to-enc: New file.
4702         * lib/uniconv/u16-strconv-to-enc.c: New file.
4703         * lib/uniconv/u-strconv-to-enc.h: New file.
4704         * modules/uniconv/u16-strconv-to-enc-tests: New file.
4705         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
4706
4707         * modules/uniconv/u8-strconv-to-enc: New file.
4708         * lib/uniconv/u8-strconv-to-enc.c: New file.
4709         * modules/uniconv/u8-strconv-to-enc-tests: New file.
4710         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
4711
4712         * modules/uniconv/u32-strconv-from-enc: New file.
4713         * lib/uniconv/u32-strconv-from-enc.c: New file.
4714         * modules/uniconv/u32-strconv-from-enc-tests: New file.
4715         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
4716
4717         * modules/uniconv/u16-strconv-from-enc: New file.
4718         * lib/uniconv/u16-strconv-from-enc.c: New file.
4719         * modules/uniconv/u16-strconv-from-enc-tests: New file.
4720         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
4721
4722         * modules/uniconv/u8-strconv-from-enc: New file.
4723         * lib/uniconv/u8-strconv-from-enc.c: New file.
4724         * lib/uniconv/u-strconv-from-enc.h: New file.
4725         * modules/uniconv/u8-strconv-from-enc-tests: New file.
4726         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
4727
4728         * modules/uniconv/u32-conv-from-enc: New file.
4729         * lib/uniconv/u32-conv-from-enc.c: New file.
4730         * modules/uniconv/u32-conv-from-enc-tests: New file.
4731         * tests/uniconv/test-u32-conv-from-enc.c: New file.
4732
4733         * modules/uniconv/u16-conv-from-enc: New file.
4734         * lib/uniconv/u16-conv-from-enc.c: New file.
4735         * lib/uniconv/u-conv-from-enc.h: New file.
4736         * modules/uniconv/u16-conv-from-enc-tests: New file.
4737         * tests/uniconv/test-u16-conv-from-enc.c: New file.
4738
4739         * modules/uniconv/u8-conv-from-enc: New file.
4740         * lib/uniconv/u8-conv-from-enc.c: New file.
4741         * modules/uniconv/u8-conv-from-enc-tests: New file.
4742         * tests/uniconv/test-u8-conv-from-enc.c: New file.
4743
4744         * modules/uniconv/base: New file.
4745         * lib/uniconv.h: New file.
4746
4747 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
4748
4749         * doc/gnulib-tool.texi (Initial import): Update to match current
4750         behavior with strdup module.
4751         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
4752         * lib/memmem.h: Remove; all uses removed.  This is now done
4753         by <string.h>.
4754         * lib/mempcpy.h: Likewise.
4755         * lib/memrchr.h: Likewise.
4756         * lib/stpcpy.h: Likewise.
4757         * lib/stpncpy.h: Likewise.
4758         * lib/strcase.h: Likewise.
4759         * lib/strchrnul.h: Likewise.
4760         * lib/strdup.h: Likewise.
4761         * lib/strndup.h: Likewise.
4762         * lib/strnlen.h: Likewise.
4763         * lib/strpbrk.h: Likewise.
4764         * lib/strsep.h: Likewise.
4765         * lib/strstr.h: Likewise.
4766         * lib/strtok_r.h: Likewise.
4767         * lib/string_.h: New file.
4768         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
4769         Rely on <string.h> instead.
4770         * lib/canon-host.c: Likewise.
4771         * lib/chdir-long.c: Likewise.
4772         * lib/concatpath.c: Likewise.
4773         * lib/exclude.c: Likewise.
4774         * lib/fchdir.c: Likewise.
4775         * lib/getaddrinfo.c: Likewise.
4776         * lib/getcwd.c: Likewise.
4777         * lib/getsubopt.c: Likewise.
4778         * lib/glob.c: Likewise.
4779         * lib/hard-locale.c: Likewise.
4780         * lib/iconvme.c: Likewise.
4781         * lib/javacomp.c: Likewise.
4782         * lib/mempcpy.c: Likewise.
4783         * lib/memrchr.c: Likewise.
4784         * lib/regex_internal.h: Likewise.
4785         * lib/stpncpy.c: Likewise.
4786         * lib/strcasecmp.c: Likewise.
4787         * lib/strchrnul.c: Likewise.
4788         * lib/strdup.c: Likewise.
4789         * lib/striconv.c: Likewise.
4790         * lib/striconveh.c: Likewise.
4791         * lib/striconveha.c: Likewise.
4792         * lib/strncasecmp.c: Likewise.
4793         * lib/strndup.c: Likewise.
4794         * lib/strnlen.c: Likewise.
4795         * lib/strsep.c: Likewise.
4796         * lib/strstr.c: Likewise.
4797         * lib/strtok_r.c: Likewise.
4798         * lib/userspec.c: Likewise.
4799         * lib/w32spawn.h: Likewise.
4800         * lib/xstrndup.c: Likewise.
4801         * lib/mountlist.c (strstr): Remove decl.
4802         * m4/string_h.m4: New file.
4803         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
4804         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
4805         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
4806         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
4807         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
4808         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
4809         Set REPLACE_STRCASECMP if necessary.
4810         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
4811         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
4812         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
4813         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
4814         HAVE_DECL_STRDUP if necessary.
4815         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
4816         since gl_FUNC_STRNDUP does that now.
4817         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
4818         Check for decl here...
4819         (gl_PREREQ_STRNLEN): ... not here.
4820         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
4821         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
4822         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
4823         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
4824         necessary.
4825         * modules/string: New file.
4826         * modules/memmem (Files): Remove special-purpose include file.
4827         (Depends-on): Add string.
4828         (Include): Include <string.h>, not the removed file.
4829         * modules/mempcpy: Likewise.
4830         * modules/memrchr: Likewise.
4831         * modules/stpcpy: Likewise.
4832         * modules/stpncpy: Likewise.
4833         * modules/strcase: Likewise.
4834         * modules/strchrnul: Likewise.
4835         * modules/strdup: Likewise.
4836         * modules/strndup: Likewise.
4837         * modules/strnlen: Likewise.
4838         * modules/strpbrk: Likewise.
4839         * modules/strsep: Likewise.
4840         * modules/strstr: Likewise.
4841         * modules/strtok_r: Likewise.
4842         * tests/test-dirname.c: Don't include "strdup.h", since
4843         <string.h> now suffices.
4844         * tests/test-memmem.c: Don't include "memmem.h", since
4845         <string.h> now suffices.
4846
4847 2007-01-25  Bruno Haible  <bruno@clisp.org>
4848
4849         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
4850         *resultp is 0.
4851
4852         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
4853         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
4854         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
4855         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
4856
4857         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
4858         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
4859         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
4860         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
4861         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
4862         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
4863
4864 2007-01-24  Bruno Haible  <bruno@clisp.org>
4865
4866         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
4867         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
4868         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
4869         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
4870         gl_FUNC_FTS_CORE.
4871         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
4872         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
4873         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
4874         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
4875         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
4876         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
4877         gl_FUNC_FCHOWNAT.
4878         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
4879         gl_FUNC_STRFTIME.
4880         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
4881         Reported by Ralf Wildenhues.
4882
4883 2007-01-24  Bruno Haible  <bruno@clisp.org>
4884
4885         Drop AC_REQUIRE calls that are redundant with the module dependencies.
4886         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
4887         gl_GETADDRINFO.
4888         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
4889         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
4890         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
4891
4892 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
4893
4894         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
4895         Don't use 'exit'; just return from 'main'.
4896         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
4897
4898         * lib/fnmatch_.h: Readjust white space and comments to match
4899         glibc, to avoid spurious diffs.
4900
4901 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
4902
4903         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
4904         2004-12-01 change by Jakub Jelinek, since this code won't compile
4905         if !LIBC.  Problem reported by Bob Proulx.
4906
4907 2007-01-23  Bruno Haible  <bruno@clisp.org>
4908
4909         * lib/striconveh.c: Include c-strcaseeq.h.
4910         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
4911         * modules/striconveh (Depends-on): Add c-strcaseeq.
4912
4913 2007-01-23  Bruno Haible  <bruno@clisp.org>
4914
4915         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
4916
4917         * modules/c-strcaseeq: New file.
4918         * lib/c-strcaseeq.h: New file.
4919
4920         * modules/streq: New file.
4921         * lib/streq.h: New file.
4922
4923 2007-01-23  Bruno Haible  <bruno@clisp.org>
4924
4925         * modules/striconveha-tests: New file.
4926         * tests/test-striconveha.c: New file.
4927
4928         * lib/striconveha.h: Include <stdbool.h>.
4929         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
4930         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
4931         (mem_iconveha_notranslit): Renamed from mem_iconveha.
4932         (mem_iconveha): New function.
4933         (str_iconveha_notranslit): Renamed from str_iconveha.
4934         (str_iconveha): New function.
4935         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
4936         c-strcase.
4937
4938 2007-01-23  Bruno Haible  <bruno@clisp.org>
4939
4940         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
4941         encodings without forgiving before trying any encoding with handler.
4942         (str_iconveha): Try all encodings without forgiving before trying any
4943         encoding with handler.
4944
4945 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
4946
4947         Import the following changes from libc.
4948
4949         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
4950
4951         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
4952
4953         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
4954
4955         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
4956         normal_bracket label.
4957
4958         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
4959
4960         [BZ #361]
4961         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
4962         to normal_bracket after fetching the next character.
4963
4964 2007-01-22  Bruno Haible  <bruno@clisp.org>
4965
4966         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
4967         argument.
4968         * lib/striconveh.c (iconv_carefully_1): New function.
4969         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
4970         argument.
4971         (str_cd_iconveh): Update.
4972         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
4973         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
4974         * tests/test-striconveh.c (MAGIC): New macro.
4975         (new_offsets): New function.
4976         (main): Test call with and without offsets.
4977
4978 2007-01-22  Bruno Haible  <bruno@clisp.org>
4979
4980         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
4981         * modules/sys_select (Makefile.am): Likewise.
4982         * modules/sys_socket (Makefile.am): Likewise.
4983         * modules/sys_time (Makefile.am): Likewise.
4984
4985 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
4986
4987         * modules/gettimeofday (License): Change from GPL to LGPL, since
4988         gettimeofday is a library function.
4989
4990 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
4991
4992         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
4993
4994 2007-01-21  Bruno Haible  <bruno@clisp.org>
4995
4996         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
4997
4998 2007-01-21  Bruno Haible  <bruno@clisp.org>
4999
5000         * modules/striconveha: New file.
5001         * lib/striconveha.h: New file.
5002         * lib/striconveha.c: New file.
5003         * MODULES.html.sh (Internationalization functions): Add striconveha.
5004         * lib/striconv.c (str_iconv): Optimize the case of an empty input
5005         string.
5006         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
5007
5008 2007-01-21  Bruno Haible  <bruno@clisp.org>
5009
5010         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
5011         * lib/striconveh.c (str_iconveh): Likewise.
5012
5013 2007-01-21  Bruno Haible  <bruno@clisp.org>
5014
5015         * lib/striconveh.h (mem_iconveh): New declaration.
5016         * lib/striconveh.c (mem_iconveh): New function.
5017         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
5018
5019 2007-01-21  Bruno Haible  <bruno@clisp.org>
5020
5021         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
5022
5023         * lib/striconveh.h (mem_cd_iconveh): Change specification.
5024         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
5025         original result buffer.
5026         (str_cd_iconveh): Update.
5027         * tests/test-striconveh.c (main): Update.
5028
5029         * lib/striconv.h (mem_cd_iconv): Change specification.
5030         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
5031         result buffer.
5032         (str_cd_iconv): Update.
5033         * tests/test-striconv.c (main): Update.
5034
5035 2007-01-21  Bruno Haible  <bruno@clisp.org>
5036
5037         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
5038
5039 2007-01-20  Jim Meyering  <jim@meyering.net>
5040
5041         * lib/userspec.c (parse_with_separator): If a user or group string
5042         starts with "+", skip the corresponding name-to-ID look-up, since
5043         such a look-up must fail: user and group names may not include "+".
5044
5045 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
5046
5047         * lib/poll.c: Include sys/time.h and time.h unconditionally,
5048         since we now assume the sys_time module.
5049         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
5050         check for sys/time.h; no longer needed.
5051         * modules/poll (Depends-on): Depend on sys_time.
5052
5053 2007-01-18  Bruno Haible  <bruno@clisp.org>
5054
5055         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
5056         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5057
5058         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
5059         gettimeofday.
5060
5061         * tests/test-gettimeofday.c: Include <time.h>.
5062         (dummy): Remove variable.
5063
5064         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
5065         gl_HEADER_SYS_TIME_H.
5066         (gl_HEADER_SYS_TIME_H): New macro.
5067
5068         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
5069         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5070         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
5071         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
5072         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5073         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
5074         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
5075         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5076         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
5077         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
5078         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5079
5080         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
5081         last change; it caused a compilation error when cross-compiling to
5082         Cygwin.
5083
5084 2007-01-18  Jim Meyering  <jim@meyering.net>
5085
5086         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
5087         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
5088         than the race-prone "test -d sys || mkdir sys".
5089         (configure.ac): Use AC_PROG_MKDIR_P.
5090         * modules/sys_select: Likewise.
5091         * modules/sys_socket: Likewise.
5092         * modules/sys_time: Likewise.
5093
5094 2007-01-18  Eric Blake  <ebb9@byu.net>
5095
5096         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
5097         replace gettimeofday.
5098         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
5099         name, to avoid infinite recursion.
5100
5101 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
5102
5103         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
5104         module sys_time.
5105         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
5106         assume timespec.h defines struct timeval.
5107         * lib/settime.c: Likewise.
5108         * lib/utimens.c: Likewise.
5109         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
5110         since we now assume the gettimeofday module.
5111         * lib/tempname.c (__gen_tempname): Likewise.
5112         * lib/gettimeofday.h: Remove.
5113         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
5114         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
5115         Include <time.h>, for 'time()'.
5116         (localtime_buffer_addr): Also use this workaround if
5117         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
5118         to simplify the uses.  All uses changed.
5119         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
5120         that #undef is inside {}, and 'const' follows type name consistently.
5121         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
5122         (gettimeofday): Do not use the maximum possible value for
5123         tv->tv_usec, since that might break usages other than ls.c.
5124         Instead, we'll leave ls.c alone.  This undoes today's patch
5125         by Bruno.  Add a compile-time warning for 1s-clock resolution;
5126         we've never observed the problem but might as well keep the
5127         canary.
5128         * lib/nanosleep.c: Include timespec.h first, for interface check.
5129         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
5130         now assume the sys_time module.
5131         * lib/tempname.c: Likewise.
5132         * lib/timespec.h: Likewise.
5133         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
5134         needed.
5135         * lib/strftime.c: Likewise.
5136         * lib/timespec.h: Likewise.
5137         * lib/posixtm.c: Include posixtm.h first, for interface check.
5138         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
5139         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
5140         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
5141         * lib/sys_time_.h: New file.
5142         * lib/timespec.h (struct timespec): Use long int, not long.
5143         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
5144         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
5145         Remove obsolescent call to AC_HEADER_TIME.
5146         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
5147         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
5148         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
5149         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
5150         Likewise.
5151         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
5152         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
5153         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
5154         into the sys_time module.  Check for gettimeofday just once.
5155         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
5156         for gettimeofday signature to just check the signature.  Merely
5157         compile it, since linking doesn't test signature.  Improve test for
5158         whether gettimeofday.o is actually needed.
5159         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
5160         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
5161         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
5162         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5163         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
5164         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
5165         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
5166         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
5167         than worrying about sys/time.h.
5168         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
5169         Don't bother worrying about TIME_WITH_SYS_TIME.
5170         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
5171         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
5172         * m4/sys_time_h.m4: New file.
5173         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
5174         Don't include sys/time.h.  Return from main rather than exiting.
5175         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
5176         all uses changed.
5177         * modules/gethrxtime (Depends-on): Add sys_time.
5178         * modules/gettime (Depends-on): Likewise.
5179         * modules/gettimeofday (Depends-on): Likewise.
5180         * modules/nanosleep (Depends-on): Likewise.
5181         * modules/settime (Depends-on): Likewise.
5182         * modules/tempname (Depends-on): Likewise.
5183         * modules/utimens (Depends-on): Likewise.
5184         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
5185         (Include:) Change back to <sys/time.h>.
5186         (Maintainer:) Add self.
5187         * modules/sys_time: New file.
5188         * modules/tempname (Depends-on): Add gettimeofday.
5189         * tests/test-gettimeofday.c: Include <sys/time.h>
5190         rather than gettimeofday.h.
5191
5192 2007-01-17  Bruno Haible  <bruno@clisp.org>
5193
5194         * gnulib-tool (func_get_license): Revert last patch. Instead, let
5195         the license default to GPL.
5196         (func_create_testdir): Don't complain if a module is LGPL and its
5197         tests module depends on GPLed modules.
5198
5199 2007-01-17  Bruno Haible  <bruno@clisp.org>
5200
5201         * lib/gettimeofday.c (gettimeofday): Add code for the case
5202         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
5203         maximum possible value for tv->tv_usec, rather than the minimum one.
5204
5205 2005-10-08  Martin Lambers  <marlam@marlam.de>
5206 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
5207 2007-01-16  Bruno Haible  <bruno@clisp.org>
5208
5209         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
5210         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
5211         gl_FUNC_GETTIMEOFDAY.
5212         (Include): Add gettimeofday.h.
5213         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
5214         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
5215         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
5216         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
5217         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
5218         * lib/gettimeofday.h: New file.
5219         * lib/gettimeofday.c: Include <sys/timeb.h>.
5220         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
5221         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
5222         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
5223         fall back on time().
5224
5225         * tests/test-gettimeofday.c: New file.
5226         * modules/gettimeofday-tests: New file.
5227
5228 2007-01-16  Eric Blake  <ebb9@byu.net>
5229
5230         * modules/fnmatch (Depends-on): Depend on wchar.
5231         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
5232         * m4/fnmatch.m4: Likewise.
5233         * modules/mbchar (Makefile.am): Assume <wchar.h>.
5234         * m4/mbchar.m4: Likewise.
5235         * modules/mbswidth (Depends-on): Depend on wchar.
5236         * lib/mbswidth.c: Assume <wchar.h>.
5237         * m4/mbswidth.m4: Likewise.
5238         * modules/quotearg (Depends-on): Depend on wchar.
5239         * lib/quotearg.c: Assume <wchar.h>.
5240         * m4/quotearg.m4: Likewise.
5241         * modules/regex (Depends-on): Depend on wchar.
5242         * lib/regex_internal.h: Assume <wchar.h>.
5243         * m4/regex.m4: Likewise.
5244         * modules/stdint (Depends-on): Depend on wchar.
5245         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
5246         * m4/stdint.m4: Likewise.
5247         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
5248         * modules/strftime (Depends-on): Depend on wchar.
5249         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
5250         * modules/strtol (Depends-on): Depend on wchar.
5251         * lib/strtol.c: Assume <wchar.h>.
5252         * modules/wcwidth (Depends-on): Depend on wchar.
5253         * lib/wcwidth.h: Assume <wchar.h>.
5254         * m4/wcwidth.m4: Likewise.
5255
5256 2007-01-16  Bruno Haible  <bruno@clisp.org>
5257
5258         * modules/csharpexec-script: New, created from...
5259         * modules/csharpexec: ... this.
5260
5261 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
5262
5263         * modules/javaexec-script: New, created from...
5264         * modules/javaexec: ... this.
5265
5266 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
5267
5268         * modules/poll (Dependencies): Add sys_select.
5269
5270 2007-01-15  Jim Meyering  <jim@meyering.net>
5271
5272         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
5273         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
5274         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
5275         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
5276
5277 2007-01-15  Bruno Haible  <bruno@clisp.org>
5278
5279         * modules/striconveh: New file.
5280         * lib/striconveh.h: New file.
5281         * lib/striconveh.c: New file.
5282         * MODULES.html.sh (Internationalization functions): Add striconveh.
5283
5284         * modules/striconveh-tests: New file.
5285         * tests/test-striconveh.c: New file.
5286
5287 2007-01-15  Bruno Haible  <bruno@clisp.org>
5288
5289         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
5290         not from GNU libiconv or GNU libc.
5291
5292 2007-01-15  Bruno Haible  <bruno@clisp.org>
5293
5294         * doc/gnulib-intro.texi (Copyright): Explain the different license
5295         terms for module descriptions, autoconf macros, tests, documentation.
5296
5297 2007-01-14  Bruno Haible  <bruno@clisp.org>
5298
5299         * modules/striconv-tests: New file.
5300         * tests/test-striconv.c: New file.
5301
5302 2007-01-14  Bruno Haible  <bruno@clisp.org>
5303
5304         * modules/iconv-tests: New file.
5305         * tests/test-iconv.c: New file.
5306
5307 2007-01-14  Bruno Haible  <bruno@clisp.org>
5308
5309         * gnulib-tool (func_get_license): For test modules, use the license of
5310         the main module.
5311
5312 2007-01-14  Bruno Haible  <bruno@clisp.org>
5313
5314         * modules/iconv (Include): Clarify that <iconv.h> can only be included
5315         if iconv is found to exist.
5316
5317 2007-01-14  Bruno Haible  <bruno@clisp.org>
5318
5319         * modules/c-ctype-tests: New file.
5320         * tests/test-c-ctype.c: New file.
5321
5322 2007-01-14  Bruno Haible  <bruno@clisp.org>
5323
5324         * modules/binary-io-tests: New file.
5325         * tests/test-binary-io.sh: New file.
5326         * tests/test-binary-io.c: New file.
5327
5328 2007-01-14  Bruno Haible  <bruno@clisp.org>
5329
5330         * modules/array-oset-tests: New file.
5331         * tests/test-array_oset.c: New file.
5332
5333 2007-01-14  Bruno Haible  <bruno@clisp.org>
5334
5335         * modules/array-list-tests: New file.
5336         * tests/test-array_list.c: New file.
5337
5338 2007-01-14  Bruno Haible  <bruno@clisp.org>
5339
5340         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
5341         and make.
5342         Reported by Simon Josefsson in
5343         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
5344
5345 2007-01-14  Bruno Haible  <bruno@clisp.org>
5346
5347         * modules/allocsa-tests: New file.
5348         * tests/test-allocsa.c: New file.
5349
5350 2007-01-14  Bruno Haible  <bruno@clisp.org>
5351
5352         * modules/fchdir (Depends-on): Add absolute-header.
5353         * modules/unistd (Depends-on): Likewise.
5354
5355 2006-12-30  Bruno Haible  <bruno@clisp.org>
5356
5357         * modules/fchdir: New file.
5358         * modules/unistd (Files): Add lib/unistd_.h.
5359         (Makefile.am): Generate unistd.h from unistd_.h.
5360         * lib/fchdir.c: New file.
5361         * lib/dirent_.h: New file.
5362         * lib/unistd_.h: New file.
5363         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
5364         * m4/fchdir.m4: New file.
5365         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
5366         (gl_HEADER_UNISTD): Invoke it.
5367         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
5368         function.
5369         * lib/backupfile.c (opendir, closedir): Undefine.
5370         * lib/chown.c (open, close): Undefine.
5371         * lib/clean-temp.c (open, close): Undefine.
5372         * lib/copy-file.c (open, close): Undefine.
5373         * lib/execute.c (open, close): Undefine.
5374         * lib/fsusage.c (open, close): Undefine.
5375         * lib/gc-gnulib.c (open, close): Undefine.
5376         * lib/getcwd.c (opendir, closedir): Undefine.
5377         * lib/glob.c (opendir, closedir): Undefine.
5378         * lib/javacomp.c (open, close): Undefine.
5379         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
5380         * lib/openat-proc.c (open, close): Undefine.
5381         * lib/pagealign_alloc.c (open, close): Undefine.
5382         * lib/pipe.c (open, close): Undefine.
5383         * lib/progreloc.c (open, close): Undefine.
5384         * lib/savedir.c (opendir, closedir): Undefine.
5385         * lib/utime.c (open, close): Undefine.
5386         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
5387
5388 2007-01-10  Bruno Haible  <bruno@clisp.org>
5389
5390         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
5391
5392 2007-01-12  Eric Blake  <ebb9@byu.net>
5393
5394         Provide a robust <wchar.h>.  Further simplifications are now
5395         possible in other modules, but not included here.
5396         * modules/wchar: New module.
5397         * m4/wchar.m4: New file.
5398         * lib/wchar_.h: Likewise.
5399         * modules/mbchar (Depends-on): Depend on wchar, as the first use
5400         of the new module.
5401         * MODULES.html.sh (Extended multibyte and wide character utilities):
5402         New section.
5403
5404 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
5405
5406         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
5407         to a reasonable default for memory allocation.
5408         (xreadlink): Don't allocate a huge buffer, to work around a buggy
5409         file system that reports garbage st_size values for symlinks.
5410         Problem reported by Liyang Hu.
5411
5412 2007-01-11  Simon Josefsson  <simon@josefsson.org>
5413
5414         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
5415         Emacs .#* auto-save files).
5416
5417 2007-01-11  Bruno Haible  <bruno@clisp.org>
5418
5419         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
5420         directory.
5421
5422 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
5423
5424         Use @...@ consistently in lib/wctype_.h.
5425         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
5426         on it being set to 1 or 0.
5427         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
5428         go back to AC_SUBSTing it.
5429         * modules/wctype (Makefile.am): Undo previous change.
5430
5431 2007-01-10  Eric Blake  <ebb9@byu.net>
5432
5433         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
5434         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
5435         * modules/wctype (Makefile.am): Likewise.
5436         Reported by Chris McGuire.
5437
5438 2007-01-10  Jim Meyering  <jim@meyering.net>
5439
5440         fts.c: a small readability/maintainability improvement
5441         * lib/fts.c (fts_read): Make this code slightly more readable and
5442         maintainable by hoisting the "sp->fts_cur = p" assignments to
5443         immediately follow the statements that set P.  Derived from
5444         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
5445
5446 2007-01-10  Eric Blake  <ebb9@byu.net>
5447
5448         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
5449         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
5450         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
5451         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
5452         Reported by Chris McGuire.
5453
5454 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5455
5456         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
5457         in sed script.
5458
5459 2007-01-09  Bruno Haible  <bruno@clisp.org>
5460
5461         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
5462         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
5463         variables.
5464         (func_module): Use them.
5465
5466 2007-01-09  Bruno Haible  <bruno@clisp.org>
5467
5468         * modules/unistr/base: New file.
5469         * lib/unistr.h: New file.
5470
5471         * modules/unistr/u8-to-u16: New file.
5472         * lib/unistr/u8-to-u16.c: New file.
5473
5474         * modules/unistr/u8-to-u32: New file.
5475         * lib/unistr/u8-to-u32.c: New file.
5476
5477         * modules/unistr/u16-to-u8: New file.
5478         * lib/unistr/u16-to-u8.c: New file.
5479
5480         * modules/unistr/u16-to-u32: New file.
5481         * lib/unistr/u16-to-u32.c: New file.
5482
5483         * modules/unistr/u32-to-u8: New file.
5484         * lib/unistr/u32-to-u8.c: New file.
5485
5486         * modules/unistr/u32-to-u16: New file.
5487         * lib/unistr/u32-to-u16.c: New file.
5488
5489         * modules/unistr/u8-check: New file.
5490         * modules/unistr/u16-check: New file.
5491         * modules/unistr/u32-check: New file.
5492         * lib/unistr/u8-check.c: New file.
5493         * lib/unistr/u16-check.c: New file.
5494         * lib/unistr/u32-check.c: New file.
5495
5496         * modules/unistr/u8-chr: New file.
5497         * modules/unistr/u16-chr: New file.
5498         * modules/unistr/u32-chr: New file.
5499         * lib/unistr/u8-chr.c: New file.
5500         * lib/unistr/u16-chr.c: New file.
5501         * lib/unistr/u32-chr.c: New file.
5502
5503         * modules/unistr/u8-cmp: New file.
5504         * modules/unistr/u16-cmp: New file.
5505         * modules/unistr/u32-cmp: New file.
5506         * lib/unistr/u8-cmp.c: New file.
5507         * lib/unistr/u16-cmp.c: New file.
5508         * lib/unistr/u32-cmp.c: New file.
5509
5510         * modules/unistr/u8-cpy: New file.
5511         * modules/unistr/u16-cpy: New file.
5512         * modules/unistr/u32-cpy: New file.
5513         * lib/unistr/u8-cpy.c: New file.
5514         * lib/unistr/u16-cpy.c: New file.
5515         * lib/unistr/u32-cpy.c: New file.
5516         * lib/unistr/u-cpy.h: New file.
5517
5518         * modules/unistr/u8-cpy-alloc: New file.
5519         * modules/unistr/u16-cpy-alloc: New file.
5520         * modules/unistr/u32-cpy-alloc: New file.
5521         * lib/unistr/u8-cpy-alloc.c: New file.
5522         * lib/unistr/u16-cpy-alloc.c: New file.
5523         * lib/unistr/u32-cpy-alloc.c: New file.
5524         * lib/unistr/u-cpy-alloc.h: New file.
5525
5526         * modules/unistr/u8-endswith: New file.
5527         * modules/unistr/u16-endswith: New file.
5528         * modules/unistr/u32-endswith: New file.
5529         * lib/unistr/u8-endswith.c: New file.
5530         * lib/unistr/u16-endswith.c: New file.
5531         * lib/unistr/u32-endswith.c: New file.
5532         * lib/unistr/u-endswith.h: New file.
5533
5534         * modules/unistr/u8-mblen: New file.
5535         * modules/unistr/u16-mblen: New file.
5536         * modules/unistr/u32-mblen: New file.
5537         * lib/unistr/u8-mblen.c: New file.
5538         * lib/unistr/u16-mblen.c: New file.
5539         * lib/unistr/u32-mblen.c: New file.
5540
5541         * modules/unistr/u8-mbtouc: New file.
5542         * modules/unistr/u16-mbtouc: New file.
5543         * modules/unistr/u32-mbtouc: New file.
5544         * lib/unistr/u8-mbtouc.c: New file.
5545         * lib/unistr/u16-mbtouc.c: New file.
5546         * lib/unistr/u32-mbtouc.c: New file.
5547
5548         * modules/unistr/u8-mbtouc-safe: New file.
5549         * modules/unistr/u16-mbtouc-safe: New file.
5550         * modules/unistr/u32-mbtouc-safe: New file.
5551         * lib/unistr/u8-mbtouc-safe.c: New file.
5552         * lib/unistr/u16-mbtouc-safe.c: New file.
5553         * lib/unistr/u32-mbtouc-safe.c: New file.
5554
5555         * modules/unistr/u8-move: New file.
5556         * modules/unistr/u16-move: New file.
5557         * modules/unistr/u32-move: New file.
5558         * lib/unistr/u8-move.c: New file.
5559         * lib/unistr/u16-move.c: New file.
5560         * lib/unistr/u32-move.c: New file.
5561         * lib/unistr/u-move.h: New file.
5562
5563         * modules/unistr/u8-next: New file.
5564         * modules/unistr/u16-next: New file.
5565         * modules/unistr/u32-next: New file.
5566         * lib/unistr/u8-next.c: New file.
5567         * lib/unistr/u16-next.c: New file.
5568         * lib/unistr/u32-next.c: New file.
5569
5570         * modules/unistr/u8-prev: New file.
5571         * modules/unistr/u16-prev: New file.
5572         * modules/unistr/u32-prev: New file.
5573         * lib/unistr/u8-prev.c: New file.
5574         * lib/unistr/u16-prev.c: New file.
5575         * lib/unistr/u32-prev.c: New file.
5576
5577         * modules/unistr/u8-set: New file.
5578         * modules/unistr/u16-set: New file.
5579         * modules/unistr/u32-set: New file.
5580         * lib/unistr/u8-set.c: New file.
5581         * lib/unistr/u16-set.c: New file.
5582         * lib/unistr/u32-set.c: New file.
5583         * lib/unistr/u-set.h: New file.
5584
5585         * modules/unistr/u8-startswith: New file.
5586         * modules/unistr/u16-startswith: New file.
5587         * modules/unistr/u32-startswith: New file.
5588         * lib/unistr/u8-startswith.c: New file.
5589         * lib/unistr/u16-startswith.c: New file.
5590         * lib/unistr/u32-startswith.c: New file.
5591         * lib/unistr/u-startswith.h: New file.
5592
5593         * modules/unistr/u8-stpcpy: New file.
5594         * modules/unistr/u16-stpcpy: New file.
5595         * modules/unistr/u32-stpcpy: New file.
5596         * lib/unistr/u8-stpcpy.c: New file.
5597         * lib/unistr/u16-stpcpy.c: New file.
5598         * lib/unistr/u32-stpcpy.c: New file.
5599         * lib/unistr/u-stpcpy.h: New file.
5600
5601         * modules/unistr/u8-stpncpy: New file.
5602         * modules/unistr/u16-stpncpy: New file.
5603         * modules/unistr/u32-stpncpy: New file.
5604         * lib/unistr/u8-stpncpy.c: New file.
5605         * lib/unistr/u16-stpncpy.c: New file.
5606         * lib/unistr/u32-stpncpy.c: New file.
5607         * lib/unistr/u-stpncpy.h: New file.
5608
5609         * modules/unistr/u8-strcat: New file.
5610         * modules/unistr/u16-strcat: New file.
5611         * modules/unistr/u32-strcat: New file.
5612         * lib/unistr/u8-strcat.c: New file.
5613         * lib/unistr/u16-strcat.c: New file.
5614         * lib/unistr/u32-strcat.c: New file.
5615         * lib/unistr/u-strcat.h: New file.
5616
5617         * modules/unistr/u8-strchr: New file.
5618         * modules/unistr/u16-strchr: New file.
5619         * modules/unistr/u32-strchr: New file.
5620         * lib/unistr/u8-strchr.c: New file.
5621         * lib/unistr/u16-strchr.c: New file.
5622         * lib/unistr/u32-strchr.c: New file.
5623
5624         * modules/unistr/u8-strcmp: New file.
5625         * modules/unistr/u16-strcmp: New file.
5626         * modules/unistr/u32-strcmp: New file.
5627         * lib/unistr/u8-strcmp.c: New file.
5628         * lib/unistr/u16-strcmp.c: New file.
5629         * lib/unistr/u32-strcmp.c: New file.
5630
5631         * modules/unistr/u8-strcpy: New file.
5632         * modules/unistr/u16-strcpy: New file.
5633         * modules/unistr/u32-strcpy: New file.
5634         * lib/unistr/u8-strcpy.c: New file.
5635         * lib/unistr/u16-strcpy.c: New file.
5636         * lib/unistr/u32-strcpy.c: New file.
5637         * lib/unistr/u-strcpy.h: New file.
5638
5639         * modules/unistr/u8-strcspn: New file.
5640         * modules/unistr/u16-strcspn: New file.
5641         * modules/unistr/u32-strcspn: New file.
5642         * lib/unistr/u8-strcspn.c: New file.
5643         * lib/unistr/u16-strcspn.c: New file.
5644         * lib/unistr/u32-strcspn.c: New file.
5645         * lib/unistr/u-strcspn.h: New file.
5646
5647         * modules/unistr/u8-strdup: New file.
5648         * modules/unistr/u16-strdup: New file.
5649         * modules/unistr/u32-strdup: New file.
5650         * lib/unistr/u8-strdup.c: New file.
5651         * lib/unistr/u16-strdup.c: New file.
5652         * lib/unistr/u32-strdup.c: New file.
5653         * lib/unistr/u-strdup.h: New file.
5654
5655         * modules/unistr/u8-strlen: New file.
5656         * modules/unistr/u16-strlen: New file.
5657         * modules/unistr/u32-strlen: New file.
5658         * lib/unistr/u8-strlen.c: New file.
5659         * lib/unistr/u16-strlen.c: New file.
5660         * lib/unistr/u32-strlen.c: New file.
5661         * lib/unistr/u-strlen.h: New file.
5662
5663         * modules/unistr/u8-strmblen: New file.
5664         * modules/unistr/u16-strmblen: New file.
5665         * modules/unistr/u32-strmblen: New file.
5666         * lib/unistr/u8-strmblen.c: New file.
5667         * lib/unistr/u16-strmblen.c: New file.
5668         * lib/unistr/u32-strmblen.c: New file.
5669
5670         * modules/unistr/u8-strmbtouc: New file.
5671         * modules/unistr/u16-strmbtouc: New file.
5672         * modules/unistr/u32-strmbtouc: New file.
5673         * lib/unistr/u8-strmbtouc.c: New file.
5674         * lib/unistr/u16-strmbtouc.c: New file.
5675         * lib/unistr/u32-strmbtouc.c: New file.
5676
5677         * modules/unistr/u8-strncat: New file.
5678         * modules/unistr/u16-strncat: New file.
5679         * modules/unistr/u32-strncat: New file.
5680         * lib/unistr/u8-strncat.c: New file.
5681         * lib/unistr/u16-strncat.c: New file.
5682         * lib/unistr/u32-strncat.c: New file.
5683         * lib/unistr/u-strncat.h: New file.
5684
5685         * modules/unistr/u8-strncmp: New file.
5686         * modules/unistr/u16-strncmp: New file.
5687         * modules/unistr/u32-strncmp: New file.
5688         * lib/unistr/u8-strncmp.c: New file.
5689         * lib/unistr/u16-strncmp.c: New file.
5690         * lib/unistr/u32-strncmp.c: New file.
5691
5692         * modules/unistr/u8-strncpy: New file.
5693         * modules/unistr/u16-strncpy: New file.
5694         * modules/unistr/u32-strncpy: New file.
5695         * lib/unistr/u8-strncpy.c: New file.
5696         * lib/unistr/u16-strncpy.c: New file.
5697         * lib/unistr/u32-strncpy.c: New file.
5698         * lib/unistr/u-strncpy.h: New file.
5699
5700         * modules/unistr/u8-strnlen: New file.
5701         * modules/unistr/u16-strnlen: New file.
5702         * modules/unistr/u32-strnlen: New file.
5703         * lib/unistr/u8-strnlen.c: New file.
5704         * lib/unistr/u16-strnlen.c: New file.
5705         * lib/unistr/u32-strnlen.c: New file.
5706         * lib/unistr/u-strnlen.h: New file.
5707
5708         * modules/unistr/u8-strpbrk: New file.
5709         * modules/unistr/u16-strpbrk: New file.
5710         * modules/unistr/u32-strpbrk: New file.
5711         * lib/unistr/u8-strpbrk.c: New file.
5712         * lib/unistr/u16-strpbrk.c: New file.
5713         * lib/unistr/u32-strpbrk.c: New file.
5714         * lib/unistr/u-strpbrk.h: New file.
5715
5716         * modules/unistr/u8-strrchr: New file.
5717         * modules/unistr/u16-strrchr: New file.
5718         * modules/unistr/u32-strrchr: New file.
5719         * lib/unistr/u8-strrchr.c: New file.
5720         * lib/unistr/u16-strrchr.c: New file.
5721         * lib/unistr/u32-strrchr.c: New file.
5722
5723         * modules/unistr/u8-strspn: New file.
5724         * modules/unistr/u16-strspn: New file.
5725         * modules/unistr/u32-strspn: New file.
5726         * lib/unistr/u8-strspn.c: New file.
5727         * lib/unistr/u16-strspn.c: New file.
5728         * lib/unistr/u32-strspn.c: New file.
5729         * lib/unistr/u-strspn.h: New file.
5730
5731         * modules/unistr/u8-strstr: New file.
5732         * modules/unistr/u16-strstr: New file.
5733         * modules/unistr/u32-strstr: New file.
5734         * lib/unistr/u8-strstr.c: New file.
5735         * lib/unistr/u16-strstr.c: New file.
5736         * lib/unistr/u32-strstr.c: New file.
5737         * lib/unistr/u-strstr.h: New file.
5738
5739         * modules/unistr/u8-strtok: New file.
5740         * modules/unistr/u16-strtok: New file.
5741         * modules/unistr/u32-strtok: New file.
5742         * lib/unistr/u8-strtok.c: New file.
5743         * lib/unistr/u16-strtok.c: New file.
5744         * lib/unistr/u32-strtok.c: New file.
5745         * lib/unistr/u-strtok.h: New file.
5746
5747         * modules/unistr/u8-uctomb: New file.
5748         * modules/unistr/u16-uctomb: New file.
5749         * modules/unistr/u32-uctomb: New file.
5750         * lib/unistr/u8-uctomb.c: New file.
5751         * lib/unistr/u16-uctomb.c: New file.
5752         * lib/unistr/u32-uctomb.c: New file.
5753
5754         * MODULES.html.sh (Unicode string functions): Add the new modules.
5755
5756 2007-01-08  Bruno Haible  <bruno@clisp.org>
5757
5758         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
5759         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
5760         subdirectories.
5761
5762 2007-01-08  Karl Berry  <karl@gnu.org>
5763
5764         * doc/error.texi: mention that main() fns must set program_name
5765         when progname is used.
5766
5767 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
5768
5769         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
5770         WCTYPE_H is empty, for the benefit of builds from non-distclean
5771         directories.  Problem reported by Eric Blake in
5772         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
5773
5774 2007-01-08  Bruno Haible  <bruno@clisp.org>
5775
5776         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
5777         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
5778         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
5779         PROVIDE_CANONICALIZE_FILENAME_MODE.
5780         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
5781
5782 2007-01-08  Bruno Haible  <bruno@clisp.org>
5783
5784         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
5785         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
5786         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
5787         * lib/fts.c: Likewise.
5788         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
5789
5790 2006-12-25  Bruno Haible  <bruno@clisp.org>
5791
5792         * modules/utf8-ucs4-safe: New file.
5793         * lib/utf8-ucs4-safe.h: New file.
5794         * lib/unistr/utf8-ucs4-safe.c: New file.
5795
5796         * modules/utf16-ucs4-safe: New file.
5797         * lib/utf16-ucs4-safe.h: New file.
5798         * lib/unistr/utf16-ucs4-safe.c: New file.
5799
5800         * MODULES.html.sh (Unicode string functions): Add the new modules.
5801
5802 2007-01-08  Bruno Haible  <bruno@clisp.org>
5803
5804         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
5805         (Depends-on): Add unitypes.
5806         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
5807         (u8_mbtouc_aux): Move out to separate file.
5808         (u8_mbtouc): Use ucs4_t, uint8_t types.
5809         * lib/unistr/utf8-ucs4.c: New file.
5810
5811         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
5812         (Depends-on): Add unitypes.
5813         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
5814         (u16_mbtouc_aux): Move out to separate file.
5815         (u16_mbtouc): Use ucs4_t, uint16_t types.
5816         * lib/unistr/utf16-ucs4.c: New file.
5817
5818         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
5819         (Depends-on): Add unitypes.
5820         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
5821         (u8_uctomb_aux): Move out to separate file.
5822         (u8_uctomb): Use ucs4_t, uint8_t types.
5823         * lib/unistr/ucs4-utf8.c: New file.
5824
5825         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
5826         (Depends-on): Add unitypes.
5827         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
5828         (u16_uctomb_aux): Move out to separate file.
5829         (u16_uctomb): Use ucs4_t, uint16_t types.
5830         * lib/unistr/ucs4-utf16.c: New file.
5831
5832 2006-12-25  Bruno Haible  <bruno@clisp.org>
5833
5834         * modules/unitypes: New file.
5835         * lib/unitypes.h: New file.
5836         * MODULES.html.sh (func_all_modules): New section "Unicode string
5837         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
5838         this section. Add unitypes.
5839
5840 2007-01-08  Bruno Haible  <bruno@clisp.org>
5841
5842         Avoid variable names that conflict with those from libtool.
5843         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
5844         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
5845         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
5846         library_names_spec to acl_library_names_spec, hardcode_* to
5847         acl_hardcode_*.
5848         Reported by Ralf Wildenhues.
5849
5850 2007-01-08  Bruno Haible  <bruno@clisp.org>
5851
5852         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
5853         definition.
5854         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
5855         definition.
5856         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
5857         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
5858         definition.
5859         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
5860         definition.
5861         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
5862         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
5863         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
5864         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
5865         definition.
5866         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
5867         definition.
5868         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
5869         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
5870         GC_USE_<algorithm>.
5871         * lib/gc-libgcrypt.c: Likewise.
5872         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
5873         * modules/gc-arctwo (configure.ac): Likewise.
5874         * modules/gc-des (configure.ac): Likewise.
5875         * modules/gc-hmac-md5 (configure.ac): Likewise.
5876         * modules/gc-hmac-sha1 (configure.ac): Likewise.
5877         * modules/gc-md2 (configure.ac): Likewise.
5878         * modules/gc-md4 (configure.ac): Likewise.
5879         * modules/gc-md5 (configure.ac): Likewise.
5880         * modules/gc-random (configure.ac): Likewise.
5881         * modules/gc-rijndael (configure.ac): Likewise.
5882         * modules/gc-sha1 (configure.ac): Likewise.
5883
5884 2007-01-08  Bruno Haible  <bruno@clisp.org>
5885
5886         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
5887         macro definition.
5888         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
5889         definition.
5890         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
5891         definition.
5892         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
5893         * modules/fcntl-safer (configure.ac): Likewise.
5894         * modules/fopen-safer (configure.ac): Likewise.
5895         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
5896         GNULIB_FWRITEERROR macro definition.
5897
5898 2007-01-08  Bruno Haible  <bruno@clisp.org>
5899
5900         * m4/gnulib-common.m4: New file.
5901         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
5902         (func_get_filelist): Add m4/gnulib-common.m4.
5903
5904 2007-01-08  Bruno Haible  <bruno@clisp.org>
5905
5906         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
5907         command.
5908
5909 2007-01-08  Jim Meyering  <jim@meyering.net>
5910
5911         Use a more robust test for a "can't happen" condition.
5912         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
5913         narrowed the st_size value.  Presuming the "can't happen" condition
5914         is true, that narrowing could conceivably convert an invalid st_size
5915         value into a valid one.  Instead, use a change based on Matthew
5916         Woehlke's original patch.
5917
5918         Slight readability improvement: use an assert-like macro
5919         in place of literal "abort ()" uses.
5920         * lib/fts.c (fts_assert): Define.
5921         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
5922         Use this macro instead of a bare 'abort'.
5923
5924 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
5925
5926         Don't worry about using IRIX 5.3's wctype.h broken definitions;
5927         simply work around them.
5928         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
5929         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
5930         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
5931         declaring.
5932         Don't bother to define as macros, since the standard doesn't require it.
5933         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
5934         longer worry about IRIX 5.3.
5935         (HAVE_WCTYPE_CTMP_BUG): Remove.
5936
5937 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
5938
5939         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
5940         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
5941         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
5942         Problems reported by Georg Schwarz for IRIX 5.3.
5943
5944         * gnulib-tool (autoconf_minversion): Take the maximum version number
5945         found, not the minimum.  Problem reported by James Youngman.
5946
5947 2007-01-03  Karl Berry  <karl@gnu.org>
5948
5949         * doc/error.texi: new file, explaining interaction with progname.
5950         * doc/gnulib.texi: include it.  Update copyright.
5951
5952 2007-01-03  Simon Josefsson  <simon@josefsson.org>
5953
5954         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
5955         AC_CANONICAL_HOST, to improve autobuild outputs.
5956
5957 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
5958             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
5959
5960         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
5961         sockets, server sockets, and other file descriptors.  Count errors
5962         to compute the return value.  Reorder the code a bit to be easier
5963         to follow.  Don't set event bits that were not requested (except
5964         POLLERR and POLLHUP).
5965
5966 2007-01-01  Bruno Haible  <bruno@clisp.org>
5967
5968         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
5969
5970 2007-01-03  Jim Meyering  <jim@meyering.net>
5971
5972         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
5973
5974 2007-01-02  Bruno Haible  <bruno@clisp.org>
5975
5976         * modules/settime (Include): Require timespec.h.
5977         * modules/nanosleep (Include): Likewise.
5978
5979 2007-01-01  Bruno Haible  <bruno@clisp.org>
5980
5981         * gnulib-tool (func_emit_copyright_notice): Bump year.
5982         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
5983
5984 2007-01-01  Bruno Haible  <bruno@clisp.org>
5985
5986         Improve support for OpenBSD.
5987         * build-aux/config.rpath (libname_spec): Export.
5988         (library_names_spec): New variable. Export.
5989         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
5990         library_names_spec from the config.rpath output. Locate shared library
5991         through the name pattern in library_names_spec.
5992
5993 2007-01-01  Eric Blake  <ebb9@byu.net>
5994
5995         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
5996
5997 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
5998
5999         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
6000         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
6001         assume the C locale, and avoid an "eval" that could cause trouble.
6002         Problem with SORT reported by Bob Proulx.
6003
6004         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
6005         Define.  Trivial patch from Henning Nielsen Lund, originally
6006         sent to bug-grep@gnu.org today.
6007
6008 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6009
6010         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
6011         struct stat.  Problem reported by Henning Nielsen Lund.
6012         * lib/acl.c: Include acl.h first, to check interface.  Don't
6013         bother to include sys/types.h and sys/stat.h again.
6014
6015 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
6016
6017         Import the following change from libc; problem reported by
6018         Sven Verdoolaege.
6019
6020         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
6021
6022         [BZ #1373]
6023         * lib/argp.h: Remove __NTH for __argp_usage inline function.
6024
6025 2006-12-28  Jim Meyering  <jim@meyering.net>
6026
6027         * build-aux/announce-gen: Do not assume that the package
6028         builds any of tar.gz, tar.bz2, and .xdelta files.
6029         Suggestion from Simon Josefsson.
6030
6031 2006-12-28  Simon Josefsson  <simon@josefsson.org>
6032
6033         * modules/announce-gen: New file.
6034
6035 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
6036
6037         * lib/mbchar.h: Just include <wctype.h>; the wctype module
6038         handles its gotchas now.
6039         * lib/mbswidth.c: Likewise.
6040         * lib/wcwidth.h: Likewise.
6041         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
6042         and iswcntrl; the wctype module does this stuff now.
6043         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
6044         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6045         * modules/mbchar (Depends-on): Add wctype.
6046         * modules/mbswidth (Depends-on): Likewise.
6047         * modules/wcwidth (Depends-on): Likewise.
6048
6049 2006-12-27  Eric Blake  <ebb9@byu.net>
6050
6051         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
6052         module uses more than what <wctype.h> is required to provide.
6053
6054 2006-12-26  Eric Blake  <ebb9@byu.net>
6055
6056         * gnulib-tool (sed_extract_prog): Avoid space-tab.
6057
6058 2006-12-26  Eric Blake  <ebb9@byu.net>
6059
6060         * modules/absolute-header: New module.
6061         * modules/fcntl (Depends-on): Depend on it.
6062         * modules/inttypes (Depends-on): Likewise.
6063         * modules/stdint (Depends-on): Likewise.
6064         * modules/sys_stat (Depends-on): Likewise.
6065         * modules/wctype (Depends-on): Likewise.
6066         * MODULES.html.sh (Support for building libraries and
6067         executables): Document it.
6068
6069 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
6070
6071         * gnulib-tool (SED): Remove, undoing previous change.
6072         The problem was that it broke coreutils on Solaris, because
6073         "sed --posix" leaked into a makefile.
6074         (sed): New alias, if 'alias' and GNU sed.
6075
6076 2006-12-24  Jim Meyering  <jim@meyering.net>
6077
6078         Work around an fchownat bug in glibc-2.4:
6079         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
6080         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
6081         in spite of the -P option.
6082         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
6083         New macros.
6084         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
6085         * modules/openat (Files): Add lib/fchownat.c.
6086         * lib/openat.c (fchownat): Don't define here.  Move to...
6087         * lib/fchownat.c: ...this new file.
6088
6089 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
6090
6091         Fix bug reported by Bruno Haible in
6092         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
6093         where quotearg.c didn't compile on Mac OS X 10.2 because it
6094         lacks <wchar.h> and wint_t.
6095         * lib/wctype_.h (__wctype_wint_t): New type.
6096         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
6097         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
6098         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
6099         Arg is now of type __wctype_wint_t, not wint_t.
6100         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
6101         substitute HAVE_WINT_T.
6102         * modules/wctype (Files): Add m4/wint_t.m4.
6103         (wctype.h): Substitute HAVE_WINT_T.
6104
6105 2006-12-23  Bruno Haible  <bruno@clisp.org>
6106
6107         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
6108
6109 2006-12-23  Bruno Haible  <bruno@clisp.org>
6110
6111         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
6112         S_ISLNK.
6113         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
6114         mingw.
6115
6116 2006-12-22  Bruno Haible  <bruno@clisp.org>
6117
6118         * lib/copy-file.c: Include acl.h.
6119         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
6120         Close the file descriptors only after being done with copy_acl.
6121         * modules/copy-file (Depends-on): Add acl.
6122
6123 2006-12-22  Bruno Haible  <bruno@clisp.org>
6124
6125         * gnulib-tool (SED): New variable.
6126         Use $SED instead of sed everywhere.
6127
6128 2006-12-22  Bruno Haible  <bruno@clisp.org>
6129
6130         * modules/no-c++: New file.
6131         * m4/no-c++.m4: New file.
6132         * MODULES.html.sh (Support for building libraries and executables):
6133         Add no-c++.
6134
6135 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
6136
6137         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
6138         Include <limits.h>, and use its INT_MAX to rewrite the
6139         j loop so that it does not overflow 'int'.  Problem reported by
6140         Ralf Wildenhues in
6141         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
6142         Play it safe by shifting left by 1 rather than multiplying by 2,
6143         as GCC is less likely to optimize this away when the value
6144         is signed (when it assumes overflow leads to undefined behavior).
6145         Also, don't assume time_t uses two's complement.
6146
6147 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
6148
6149         * MODULES.html.sh: New module wctype.
6150         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
6151         * lib/fnmatch.c: Don't bother to include <wchar.h> before
6152         <wctype.h>, since the new wctype module should fix this.
6153         * lib/quotearg.c: Include <wctype.h> unconditionally, since
6154         the wctype module should arrange for it.
6155         * lib/regex_internal.h: Likewise.
6156         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
6157         since the wctype module should handle this now.
6158         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
6159         * modules/fnmatch (Depends-on): Add wctype.
6160         * modules/quotearg (Depends-on): Likewise.
6161         * modules/regex (Depends-on): Likewise.
6162
6163 2006-12-19  Bruno Haible  <bruno@clisp.org>
6164
6165         * lib/strdup.h [C++]: Wrap definitions in extern "C".
6166         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
6167
6168 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6169
6170         * modules/savewd (Depends-on): Fix dependency on fcntl.
6171
6172 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6173
6174         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
6175         conforms to C99, rather than relying on the user's environment
6176         setting of STDINT_H.
6177
6178 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
6179         and Eric Blake  <ebb9@byu.net>
6180
6181         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
6182         This is more consistent with the other defines here.
6183         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
6184         Port to z/OS.  Problem reported by Paul Gilmartin.
6185         Change local vars to use gl_ prefix rather than ac_.
6186         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
6187         with other defines.
6188         * modules/double-slash-root: New module.
6189         * modules/dirname (Files): Remove m4/double-slash-root.m4.
6190         (Depends-on): Add double-slash-root.
6191         * MODULES.html.sh (File system functions): Mention new module.
6192
6193 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
6194
6195         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
6196         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
6197         This is for the benefit of gzip, which doesn't do i18n.
6198
6199 2006-12-12  Jim Meyering  <jim@meyering.net>
6200
6201         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
6202         Reported by Andreas Schwab <schwab@suse.de>.
6203
6204 2006-12-12  Bruno Haible  <bruno@clisp.org>
6205
6206         Merge these changes.
6207         2006-09-05  Bruno Haible  <bruno@clisp.org>
6208         * lib/iconvme.c (iconv_string): No need to save and restore errno when
6209         iconv_alloc succeeded.
6210         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
6211         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
6212         test for " && dest " at the end - dest is always != NULL there. Call
6213         iconv with 4xNULL arguments initially, to reset the state. Call iconv
6214         with 2xNULL arguments, also to flush the state storage. Handle the
6215         IRIX iconv behaviour. Realloc the final result, to throw away unused
6216         memory.
6217
6218 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
6219
6220         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
6221         and fchmodat unconditionally, since glibc 2.4 has them.
6222         Problem reported by Arkadiusz Miskiewicz.
6223
6224 2006-12-10  Bruno Haible  <bruno@clisp.org>
6225
6226         * gnulib-tool (func_import): Show the include files only for those
6227         modules that are copied and specified.
6228         Reported by Karl Berry.
6229
6230 2006-12-08  Jim Meyering  <jim@meyering.net>
6231
6232         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
6233         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
6234
6235         * build-aux/announce-gen: Add two new options, both optional:
6236         --bootstrap-tools=TOOL_LIST
6237               a comma-separated list of tools, e.g.,
6238               autoconf,automake,bison,gnulib
6239         --gnulib-snapshot-date=DATE
6240               if gnulib is in the bootstrap tool list,
6241               then report this as the snapshot date.
6242               If not specified, use the current date/time.
6243               If you specify a date here, be sure it's UTC.
6244
6245 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6246
6247         * tests/test-argp-2.sh: Fix test to match actual output.
6248         (func_compare): Fix sed script to be portable.
6249
6250 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
6251
6252         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
6253         workaround for this case.  It is not autoconfigured now; offhand
6254         it's hard to see how to autoconfigure it.
6255
6256 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
6257
6258         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
6259         a directory that is about to be chowned.  Such a directory's
6260         initial file permissions should permit the owner only and this
6261         should not be changed until after the chown, since the group and
6262         other bits would be incorrect if they granted permission before
6263         the chown.
6264
6265         Fix porting problem for iswctype reported by Georg Schwarz in:
6266         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
6267         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
6268         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
6269         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
6270         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6271
6272 2006-12-03  Jim Meyering  <jim@meyering.net>
6273
6274         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
6275         p->fts_statp may not yet be defined.
6276         (fts_read): Instead, set it in the caller, once p->fts_statp is
6277         sure to be defined, and corresponds to a top-level directory.
6278         This bug made du -x fail.  Here's the coreutils test case:
6279         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
6280         Reported by Mike Frysinger.
6281
6282 2006-12-01  Jim Meyering  <jim@meyering.net>
6283
6284         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
6285         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
6286         Reported by Simon Josefsson.
6287
6288 2006-11-30  Jim Meyering  <jim@meyering.net>
6289
6290         * m4/warning.m4: Use the all-permissive copyright notice
6291         recommended by RMS (rather than LGPL).
6292         * m4/vararrays.m4: Likewise.
6293         * m4/flexmember.m4: Likewise.
6294
6295 2006-11-29  Bruno Haible  <bruno@clisp.org>
6296
6297         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6298         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
6299         using +=.
6300         Reported by Simon Josefsson <simon@josefsson.org>.
6301
6302 2006-11-28  James Youngman <jay@gnu.org>
6303
6304         * README: Advise users that they might find the bug-gnulib@gnu.org
6305         and autotools-announce@gnu.org mailing lists useful.
6306
6307 2006-11-28  Bruno Haible  <bruno@clisp.org>
6308
6309         * m4/ptrdiff_max.m4: Remove file.
6310
6311 2006-11-21  Bruno Haible  <bruno@clisp.org>
6312
6313         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
6314         _AC_COMPUTE_INT.
6315         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6316         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
6317         _AC_COMPUTE_INT.
6318         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6319         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
6320         _AC_COMPUTE_INT.
6321         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6322
6323 2006-11-28  Jim Meyering  <jim@meyering.net>
6324
6325         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
6326         warning from "gcc -Wshadow" about shadowing the builtin.
6327
6328 2006-11-27  Bruno Haible  <bruno@clisp.org>
6329
6330         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
6331         _AC_COMPUTE_INT.
6332         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
6333
6334 2006-11-27  Bruno Haible  <bruno@clisp.org>
6335             Paul Eggert  <eggert@cs.ucla.edu>
6336
6337         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
6338
6339 2006-11-26  Bruno Haible  <bruno@clisp.org>
6340
6341         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
6342         noinst_LTLIBRARIES.
6343
6344 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
6345             Bruno Haible  <bruno@clisp.org>
6346
6347         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
6348         if compiling with "gcc -ansi".
6349
6350 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6351
6352         Fix some incompatibilities with gcc -ansi -pedantic.
6353         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
6354         if compiling pedantically with GCC, unless it's C99 or later.
6355         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
6356         it mishandles gcc -ansi -pedantic as well.
6357         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
6358         if gcc -pedantic.
6359         * lib/regexec.c (check_node_accept_bytes): Don't use auto
6360         initializers for struct if -pedantic, unless it's C99 or later.
6361
6362 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
6363
6364         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
6365         Don't close an fd more than once. Identical atimes indicate
6366         success, not failure.
6367
6368 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
6369
6370         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
6371
6372 2006-11-23  Jim Meyering  <jim@meyering.net>
6373
6374         * build-aux/announce-gen: New file.  From coreutils.
6375
6376 2006-11-22  Jim Meyering  <jim@meyering.net>
6377
6378         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
6379         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
6380         (fts_read): Use a temporary to narrow the overused st_size member
6381         before using it in a switch statement.  Reported by Matthew Woehlke.
6382
6383         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
6384         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
6385
6386 2006-11-20  Bruno Haible  <bruno@clisp.org>
6387
6388         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
6389         changequote instead of pairs of brackets.
6390         Reported by Andreas Schwab <schwab@suse.de>.
6391
6392 2006-11-21  Jim Meyering  <jim@meyering.net>
6393
6394         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
6395         so as to remain compatible with older compilers.
6396         Patch from Michael Deutschmann.
6397
6398 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
6399
6400         * MODULES.html.sh (File system functions): Add openat.
6401
6402         * lib/openat.h (rpl_fstatat): New macro, if
6403         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
6404         (fstatat): Define to rpl_fstatat under the same conditions,
6405         unless COMPILING_FSTATAT.
6406         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
6407         seems to have the bug.
6408         * lib/fstatat.c: New file.
6409         * modules/openat (Files): Add it.
6410
6411 2006-11-20  Bruno Haible  <bruno@clisp.org>
6412
6413         * Makefile: New file.
6414
6415 2006-11-20  Jim Meyering  <jim@meyering.net>
6416
6417         The beginnings of syntax-related checks for gnulib.
6418         * lib/Makefile: New file.
6419         * lib/t-idcache: New script.  Ensure that the two halves of
6420         idcache.c stay in sync.
6421
6422         * lib/idcache.c: Adjust comments in user- and group- portions to
6423         be more accurate, and to be consistent with one another.
6424
6425 2006-11-20  Jim Meyering  <jim@meyering.net>
6426
6427         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
6428         continue using the flexible array member (thus, this module performs
6429         half as many malloc calls), with the addition that...
6430         (getgroup, getuser): Consistently record a non-match via an empty
6431         "name" string, and map an empty string match to a NULL return value.
6432         * modules/idcache (Depends-on): Re-add flexmember.
6433
6434         * lib/idcache.c (getuser): Remove all uses of the register keyword.
6435         (getuidbyname, getgroup, getgidbyname): Likewise.
6436
6437         Use cleaner syntax: NULL rather than 0.
6438         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
6439
6440 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
6441
6442         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
6443         It mishandled the case where the group was missing.
6444         Problem reported by Greg Schafer.
6445         * modules/idcache: Likewise.
6446
6447 2006-11-18  Jim Meyering  <jim@meyering.net>
6448
6449         * check-module (%exempt_header): Add exception for some
6450         conditionally-included headers.
6451
6452         * modules/i-ring (Depends-on): Add verify.
6453         (License): Change to LGPL.
6454
6455 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
6456
6457         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
6458         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
6459         and inttostr.h.  Use snprintf rather than uinttostr, so that
6460         LGPLed code doesn't depend on GPLed.
6461
6462 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
6463
6464         * modules/inline (License): Change from GPL to LGPL.
6465
6466 2006-11-17  Jim Meyering  <jim@meyering.net>
6467
6468         * modules/d-type (License): Switch to LGPL.
6469
6470 2006-11-15  Bruno Haible  <bruno@clisp.org>
6471
6472         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
6473
6474 2006-11-15  Eric Blake  <ebb9@byu.net>
6475
6476         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
6477         the module dependency.
6478
6479 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6480             Bruno Haible  <bruno@clisp.org>
6481
6482         * gnulib-tool (func_create_testdir): Add license consistency check.
6483
6484 2006-11-15  Eric Blake  <ebb9@byu.net>
6485
6486         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
6487         random "(cached)" in configure output.
6488
6489 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6490
6491         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
6492         test for conforming inttypes.h is both announced and cached.
6493
6494         * MODULES.html.sh (seen_modules, seen_files): New variables.
6495         (func_module): Rewrite to use a few less gnulib-tool and sed
6496         invocations.  Avoid a couple of quadratic algorithms for ...
6497         (missed_modules, missed_files): ... these, with ...
6498         (func_append, func_tmpdir): ... these new functions, from
6499         gnulib-tool.  Analogously, install traps for cleanup.
6500
6501         * tests/test-gc.c (main): Remove unused variables.
6502         * tests/test-read-file.c: Include stdlib.h, for 'free'.
6503
6504 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
6505
6506         * modules/inttostr (License): Change to LGPL.
6507
6508 2006-11-14  Eric Blake  <ebb9@byu.net>
6509
6510         * modules/tempname (License): Change to LGPL.
6511
6512 2006-11-14  Eric Blake  <ebb9@byu.net>
6513
6514         * doc/functions.texi (Function Portability): *printf functions on
6515         Cygwin now understand all POSIX size specifiers.
6516
6517 2006-11-14  Bruno Haible  <bruno@clisp.org>
6518
6519         * modules/c-ctype (License): Change to LGPL.
6520
6521 2006-11-12  Bruno Haible  <bruno@clisp.org>
6522
6523         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
6524         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
6525         for GNOME libraries, for which the include files are installed in
6526         subdirectories of $prefix/include.
6527
6528 2006-11-12  Bruno Haible  <bruno@clisp.org>
6529
6530         * m4/lib-link.m4: Require at least autoconf-2.54.
6531         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
6532         name to underscores for the --with option.
6533
6534 2006-11-13  Bruno Haible  <bruno@clisp.org>
6535
6536         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
6537         the tests directory.
6538         Reported by Ralf Wildenhues.
6539
6540 2006-11-13  Bruno Haible  <bruno@clisp.org>
6541
6542         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
6543         (func_emit_initmacro_end): Undo the override here.
6544         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
6545         Works around the famous automake error in coreutils.
6546
6547 2006-11-13  Eric Blake  <ebb9@byu.net>
6548
6549         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
6550         element, not its node.
6551
6552 2006-11-12  Bruno Haible  <bruno@clisp.org>
6553
6554         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
6555         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
6556
6557 2006-11-12  Bruno Haible  <bruno@clisp.org>
6558
6559         * gnulib-tool: New option --local-symlink.
6560         (func_usage): Document it.
6561         (lsymbolic): New variable.
6562         (func_import, func_create_testdir): If --symlink was not specified,
6563         test whether --local-symlink was specified and the file comes from
6564         the local_gnulib_dir.
6565
6566 2006-11-12  Bruno Haible  <bruno@clisp.org>
6567
6568         * gnulib-tool (func_ln): New function.
6569         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
6570
6571 2006-11-12  Bruno Haible  <bruno@clisp.org>
6572
6573         Finish support for source files in subdirectories.
6574         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
6575         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
6576         AUTOMAKE_OPTIONS.
6577         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
6578
6579 2006-11-12  Bruno Haible  <bruno@clisp.org>
6580
6581         * gnulib-tool (func_get_automake_snippet): Synthesize also an
6582         EXTRA_lib_SOURCES augmentation.
6583         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
6584
6585 2006-11-12  Jim Meyering  <jim@meyering.net>
6586
6587         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
6588         file descriptors.  This also averts a failure on systems with
6589         native openat support when a traversed directory lacks "x" access.
6590         * lib/fts_.h: Include "i-ring.h"
6591         (struct FTS) [fts_fd_ring]: New member.
6592         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
6593         (FCHDIR): Add parentheses.
6594         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
6595         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
6596         When descending, rather than simply closing the previous
6597         fts_cwd_fd value, push that file descriptor onto the ring.
6598         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
6599         (fts_open): Initialize the new fd_ring member.
6600         (fts_close): Clear the ring.
6601         (fts_safe_changedir): When possible, use our new fd_ring to skip
6602         the diropen and fstat and dev/ino comparison that would normally
6603         accompany a virtual `chdir ("..")'.
6604
6605         * modules/fts (Depends-on): Add i-ring.
6606         * modules/i-ring: New module.
6607         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
6608         * m4/i-ring.m4: New file.
6609
6610 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6611
6612         * gnulib-tool (func_create_testdir): Fix replacement of
6613         `build-aux' in configure.ac.  Run autotools in gltests
6614         subdirectory.
6615         (func_create_testdir, func_create_megatestdir, test): There is
6616         no need for '--force' in most autotool invocations in a new
6617         tree.  Actually fail the whole test if any of the tools, or the
6618         configure or make stages fail.
6619
6620         Sync from Automake.
6621         * build-aux/gnupload: Revert last change.  Add pointer to upload
6622         instructions of the GNU Maintenance Instructions.
6623         Suggestion by Karl Berry.
6624
6625 2006-11-10  Jim Meyering  <jim@meyering.net>
6626
6627         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
6628
6629 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
6630
6631         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
6632         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
6633         (bind_textdomain_codeset) [! ENABLE_NLS]:
6634         Evaluate all the arguments.  That way, callers get compatible behavior
6635         if the arguments have side effects.  Also, it avoids some GCC
6636         diagnostics in some cases; Joel E. Denny reported problems when Bison
6637         was configured with --enable-gcc-warnigs.
6638
6639 2006-11-10  Jim Meyering  <jim@meyering.net>
6640
6641         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
6642         relevant options in CFLAGS (like -O, -fno-inline) are taken into
6643         account.
6644
6645 2006-11-10  Jim Meyering  <jim@meyering.net>
6646
6647         * modules/inline: New file/module.
6648         * modules/xalloc (Files): Remove m4/inline.m4.
6649         (Depends-on): Add inline, instead.
6650         * modules/oset: Likewise.
6651         * modules/list: Likewise.
6652
6653 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
6654
6655         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
6656         Problem reported by Matthew Woehlke.
6657
6658 2006-11-09  Bruno Haible  <bruno@clisp.org>
6659
6660         * lib/tempname.c (gen_tempname): Remove variant that invokes
6661         __gen_tempname.
6662         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
6663         __gen_tempname.
6664
6665 2006-11-08  Bruno Haible  <bruno@clisp.org>
6666
6667         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
6668         to 'yes' instead of 'cross-compiling'.
6669
6670 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
6671
6672         * lib/quotearg.h (quotearg_free): New decl.
6673         * lib/quotearg.c (quotearg_free): New function.
6674         (slot0, nslots, slotvec0, slotvec):
6675         Now file-scope so that quotearg_free can get at them.
6676
6677 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6678
6679         Sync from Automake.
6680         * build-aux/gnupload: Add missing 'gnu' to example URL.
6681         Report by Karl Berry.
6682
6683 2006-11-08  Bruno Haible  <bruno@clisp.org>
6684
6685         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
6686         Suggested by Paul Eggert.
6687
6688 2006-11-08  Jim Meyering  <jim@meyering.net>
6689
6690         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
6691         It's already included if !_LIBC.
6692         (fts_safe_changedir): Add a comment.
6693
6694 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
6695
6696         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
6697         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
6698         Matthew Woehlke.
6699
6700         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
6701         definitions up, to avoid colliding with change below.
6702         (static_inline) [HAVE_INLINE]: New macro.
6703         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
6704         Provide extern decls when !HAVE_INLINE.  Do not define unless
6705         static_inline is defined, either by us or by xmalloc.c.  Use
6706         static_inline rather than static inline.
6707         (XCALLOC): Optimize sizeof(T) = 1 case.
6708         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
6709
6710 2006-11-07  Bruno Haible  <bruno@clisp.org>
6711
6712         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
6713         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
6714         AC_C_INLINE.
6715         * modules/xalloc (Files): Add m4/inline.m4.
6716
6717 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6718
6719         * README: Fix typo.
6720         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
6721         (Miscellanous Notes): ...from this.
6722
6723 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
6724
6725         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
6726         Mention that offsetof should be used instead of sizeof.
6727         From Bruno Haible.
6728
6729 2006-11-07  Bruno Haible  <bruno@clisp.org>
6730
6731         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
6732
6733 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
6734
6735         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
6736         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
6737         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
6738         (gl_tree_add_before, gl_tree_add_after):
6739         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
6740         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
6741         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
6742         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
6743         (gl_linked_add_after, gl_linked_add_at): Likewise.
6744         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
6745         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
6746         (gl_tree_add_before, gl_tree_add_after): Likewise.
6747         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
6748         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
6749         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
6750
6751 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6752
6753         * lib/gl_oset.h: Use C comment style, not C++ comment style.
6754
6755 2006-11-06  Bruno Haible  <bruno@clisp.org>
6756
6757         * m4/inline.m4: New file.
6758         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
6759         * modules/list (Files): Add m4/inline.m4.
6760         * modules/oset (Files): Likewise.
6761
6762 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
6763
6764         * lib/idcache.c: Include <stddef.h>, for offsetof.
6765         (struct userid.name): Change from char * to a flexible array member.
6766         All uses changed.
6767         * modules/idcache (Depends-on): Add flexmember.
6768
6769         * MODULES.html.sh (Core language properties): New module flexmember.
6770         * modules/flexmember, m4/flexmember.m4: New files.
6771
6772         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
6773         inline functions that are identical with the old xnmalloc_inline,
6774         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
6775         that we can avoid some unnecessary integer multiplications and
6776         divisions in the common case where the element size is known at
6777         compile time.
6778         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
6779         needed.
6780         (xnboundedmalloc): Remove.
6781         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
6782         arguments, for consistency with rest of this header.
6783         (xcharalloc): Rewrite using XNMALLOC.
6784         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
6785         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
6786         versions have been moved to lib/xalloc.h and renamed to be the
6787         non-*_inline versions.
6788         (xmalloc, xrealloc): Implement without reference to the xnmalloc
6789         and xnrealloc functions, since those functions are now inline and
6790         now call us.
6791         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
6792         renaming described above.
6793         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
6794         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
6795         captures the dependency in AC_C_INLINE.
6796
6797         New module canonicalize-lgpl, proposed by Charles Wilson in
6798         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
6799         with a few small changes afterwards.
6800         * MODULES.html.sh (File system functions): New module
6801         canonicalize-lgpl.
6802         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
6803         and canonicalize_file_name.
6804         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
6805         * modules/canonicalize-lgpl: New files.
6806
6807 2006-11-05  Bruno Haible  <bruno@clisp.org>
6808
6809         * gnulib-tool (func_import, func_create_testdir): Create directories
6810         also for files in subdirectories of lib/.
6811
6812 2006-11-05  Bruno Haible  <bruno@clisp.org>
6813
6814         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
6815         ANSI C compliant.
6816
6817 2006-11-03  Bruno Haible  <bruno@clisp.org>
6818
6819         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
6820         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
6821         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
6822         (xnboundedmalloc): New inline function.
6823         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
6824         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
6825         xmalloc.
6826         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
6827         xmalloc.
6828         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
6829         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
6830         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
6831         xmalloc.
6832         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
6833         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
6834         xmalloc.
6835         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
6836         gl_tree_add_after): Use XMALLOC instead of xmalloc.
6837         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
6838         xmalloc.
6839         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
6840         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
6841         gl_tree_add_after): Use XMALLOC instead of xmalloc.
6842         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
6843         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
6844         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
6845         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
6846
6847 2006-11-03  Bruno Haible  <bruno@clisp.org>
6848
6849         * lib/c-ctype.h [C++]: Define functions without name mangling.
6850         * lib/fwriteerror.h [C++]: Likewise.
6851         * lib/gcd.h [C++]: Likewise.
6852         * lib/linebreak.h [C++]: Likewise.
6853
6854 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
6855
6856         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
6857         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
6858         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
6859         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
6860         Check for functions and headers just once.
6861         Check for declaration of canonicalize_file_name.
6862         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
6863
6864 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
6865
6866         * gnulib-tool (func_import): Fix typo in actioncmd.
6867
6868 2006-11-02  Bruno Haible  <bruno@clisp.org>
6869
6870         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
6871         newline sequence in the Makefile.am snippet as a space, like "make"
6872         does.
6873         Reported by Roger Persson <perrog@gmail.com>.
6874
6875 2006-11-01  Bruno Haible  <bruno@clisp.org>
6876
6877         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
6878         already declared in <string.h>.
6879         * lib/strcase.h (strncasecmp): Don't declare it if yes.
6880
6881 2006-11-01  Bruno Haible  <bruno@clisp.org>
6882
6883         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
6884         * lib/strcase.h: Include <string.h>.
6885         (strcasecmp): Define to rpl_strcasecmp here.
6886
6887 2006-11-01  Bruno Haible  <bruno@clisp.org>
6888
6889         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
6890
6891 2006-11-01  Eric Blake  <ebb9@byu.net>
6892
6893         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
6894
6895         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
6896
6897 2006-10-29  Bruno Haible  <bruno@clisp.org>
6898
6899         Make it compile in C++ mode.
6900         * lib/full-write.c (full_rw): Add a cast.
6901
6902 2006-11-01  Bruno Haible  <bruno@clisp.org>
6903
6904         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
6905         be POSIX compliant.
6906         Reported by Roger Persson <perrog@gmail.com>.
6907
6908 2006-11-01  Eric Blake  <ebb9@byu.net>
6909
6910         * lib/getopt_.h: Fix comments.
6911
6912 2006-10-31  Eric Blake  <ebb9@byu.net>
6913
6914         * modules/tmpdir (Depends-on): Add sys_stat.
6915         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
6916         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
6917         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
6918         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
6919         tempname.
6920
6921 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
6922
6923         Avoid some C++ diagnostics reported by Bruno Haible.
6924         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
6925         xmalloc.
6926         (quotearg_alloc): Use xcharalloc rather than xmalloc.
6927         (struct slotvec): Move to top level.
6928         (quotearg_n_options): Rewrite to avoid xmalloc.
6929         * lib/xalloc.h (xcharalloc): New function.
6930         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
6931         [defined __cplusplus]: Add function template that provides result
6932         type propagation.  This part of the change is from Bruno Haible.
6933
6934 2006-10-29  Bruno Haible  <bruno@clisp.org>
6935
6936         Make it compile in C++ mode.
6937         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
6938         * lib/strnlen1.c (strnlen1): Cast memchr result.
6939         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
6940         * lib/clean-temp.c (string_equals, string_hash): Add casts.
6941         (create_temp_dir): Rename local variable 'template'.
6942         (compile_csharp_using_sscli): Add cast.
6943         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
6944         * lib/findprog.c (find_in_path): Likewise.
6945         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
6946         * lib/wait-process.c (register_slave_subprocess): Likewise.
6947
6948 2006-10-22  Bruno Haible  <bruno@clisp.org>
6949
6950         * modules/tsearch: New file.
6951         * lib/tsearch.h: New file.
6952         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
6953         * m4/tsearch.m4: New file.
6954         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
6955
6956 2006-10-29  Eric Blake  <ebb9@byu.net>
6957
6958         * lib/arcfour.c: Assume config.h.
6959         * lib/arctwo.c: Likewise.
6960         * lib/base64.c: Likewise.
6961         * lib/check-version.c: Likewise.
6962         * lib/crc.c: Likewise.
6963         * lib/des.c: Likewise.
6964         * lib/gc-gnulib.c: Likewise.
6965         * lib/gc-libgcrypt.c: Likewise.
6966         * lib/gc-pbkdf2-sha1.c: Likewise.
6967         * lib/getaddrinfo.c: Likewise.
6968         * lib/getdelim.c: Likewise.
6969         * lib/getline.c: Likewise.
6970         * lib/hmac-md5.c: Likewise.
6971         * lib/hmac-sha1.c: Likewise.
6972         * lib/iconvme.c: Likewise.
6973         * lib/md2.c: Likewise.
6974         * lib/md4.c: Likewise.
6975         * lib/memxor.c: Likewise.
6976         * lib/read-file.c: Likewise.
6977         * lib/readline.c: Likewise.
6978         * lib/rijndael-alg-fst.c: Likewise.
6979         * lib/rijndael-api-fst.c: Likewise.
6980         * lib/xgetdomainname.c: Likewise.
6981
6982 2006-10-28  Eric Blake  <ebb9@byu.net>
6983
6984         * lib/xstrndup.c: Assume config.h.
6985
6986 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
6987
6988         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
6989         stat-macros.h is now for our own macros, whereas stat_h is for
6990         macros in the <sys/stat.h> name space.
6991         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
6992         (STAT_MACROS_H): Remove.
6993         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
6994         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
6995         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
6996         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
6997         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
6998         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
6999         Move these macros to ...
7000         * lib/stat_.h: here.  Don't include stat-macros.h.
7001         * lib/canonicalize.c: Don't include stat-macros.h.
7002         * lib/chown.c: Likewise.
7003         * lib/euidaccess.c: Likewise.
7004         * lib/file-type.c: Likewise.
7005         * lib/filemode.c: Likewise.
7006         * lib/glob.c: Likewise.
7007         * lib/isapipe.c: Likewise.
7008         * lib/lchown.c: Likewise.
7009         * lib/lstat.c: Likewise.
7010         * lib/mkdir-p.c: Likewise.
7011         * lib/rmdir.c: Likewise.
7012         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
7013         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
7014         unless mkdir isn't declared, to speed up 'configure'.
7015         Always create sys/stat.h, since it's unlikely any real sys/stat.h
7016         would define all the S_* symbols.
7017         * modules/canonicalize (Depends-on):
7018         Depend on sys_stat, not stat-macros.
7019         * modules/chown: Likewise.
7020         * modules/euidaccess: Likewise.
7021         * modules/filemode: Likewise.
7022         * modules/file-type: Likewise.
7023         * modules/glob: Likewise.
7024         * modules/isapipe: Likewise.
7025         * modules/lchown: Likewise.
7026         * modules/lstat: Likewise.
7027         * modules/mkancesdirs: Likewise.
7028         * modules/rmdir: Likewise.
7029         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
7030         * modules/modechange: Likewise.
7031         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
7032         (configure.ac): Remove gl_STAT_MACROS.
7033         * modules/sys_stat (Depends-on): Remove stat-macros.
7034
7035 2006-10-27  Bruno Haible  <bruno@clisp.org>
7036
7037         * m4/signed.m4: Remove file.
7038         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
7039         invocation.
7040         * modules/vasnprintf (Files): Remove m4/signed.m4.
7041
7042 2006-10-27  Bruno Haible  <bruno@clisp.org>
7043
7044         Update to GNU gettext 0.16.
7045         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
7046         m4/inttypes-h.m4, m4/signed.m4.
7047         * m4/gettext.m4: Update to GNU gettext 0.16.
7048         * m4/intl.m4: New file, from GNU gettext.
7049         * m4/intldir.m4: New file, from GNU gettext.
7050         * config/srclist.txt: Update
7051
7052 2006-10-27  Eric Blake  <ebb9@byu.net>
7053
7054         * MODULES.html.sh: Document tempname.
7055         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
7056         dependencies.
7057         (Files): Move lib/tempname.c...
7058         * modules/tempname: ...to this new module.
7059         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
7060         (gl_PREREQ_TEMPNAME): Move...
7061         * m4/tempname.m4: ...to this new file.
7062         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
7063         * modules/sys_stat (Depends-on): Add stat-macros.
7064         * lib/stat_.h (includes): Pick up stat macros.
7065         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
7066         if stat macros are broken.
7067         * lib/tempname.c (includes): No need to include "stat-macros.h".
7068         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
7069         (direxists, __path_search) [!_LIBC]: Don't compile these in
7070         gnulib; the tmpdir module covers that.
7071         * lib/tempname.h: New file.
7072
7073 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
7074
7075         * COPYING: Explain how gnulib-tool converts licence headers.
7076         Almost all wording by Eric Blake.
7077
7078 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
7079
7080         * lib/mbchar.h (is_basic_table): Make read-only.
7081         * lib/mbchar.c (is_basic_table): Likewise.
7082         Reported by John Darrington.
7083
7084 2006-10-25  Bruno Haible  <bruno@clisp.org>
7085
7086         * lib/progname.h (set_program_name): Undefine before defining.
7087
7088 2006-10-25  Bruno Haible  <bruno@clisp.org>
7089
7090         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
7091         false for non-gcc C++ compilers.
7092         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
7093
7094 2006-10-24  Bruno Haible  <bruno@clisp.org>
7095
7096         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
7097         iconv implementations like Irix iconv.
7098
7099 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7100
7101         * modules/vararrays: New file.
7102         * m4/vararrays.m4: New file, taken from diffutils.
7103         * MODULES.html.sh: New module vararrays.
7104
7105 2006-10-24  Karl Berry  <karl@gnu.org>
7106
7107         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
7108         Don't call GNU Unix.
7109
7110 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7111
7112         * users.txt: Add Libtool.
7113
7114         Sync from Libtool:
7115
7116         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7117
7118         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
7119         to gnulib's policy of including config.h unconditionally.
7120
7121 2006-10-24  Bruno Haible  <bruno@clisp.org>
7122
7123         * modules/wcwidth (Files): Add m4/wint_t.m4.
7124         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
7125         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
7126
7127 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
7128
7129         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
7130         to pacify GCC with some -W flags enabled.  Problem reported by
7131         Bruno Haible.
7132
7133 2006-10-24  Jim Meyering  <jim@meyering.net>
7134
7135         * MODULES.html.sh: Remove uinttostr.  It's not a module.
7136         Reported by Karl Berry.
7137
7138 2006-10-23  Bruno Haible  <bruno@clisp.org>
7139
7140         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
7141
7142 2006-10-24  Bruno Haible  <bruno@clisp.org>
7143
7144         * lib/gl_list.h: Use C comment style, not C++ comment style.
7145
7146 2006-10-23  Eric Blake  <ebb9@byu.net>
7147
7148         * lib/getaddrinfo.c (includes): Add missing include.
7149
7150 2006-10-23  Bruno Haible  <bruno@clisp.org>
7151             Paul Eggert  <eggert@cs.ucla.edu>
7152
7153         Ability to rename obstack_free.
7154         * lib/obstack.h (__obstack_free): New macro. Declare instead of
7155         obstack_free.
7156         (obstack_free): Invoke the __obstack_free macro.
7157         * lib/obstack.c (obstack_free): Use __obstack_free macro.
7158
7159 2006-10-23  Bruno Haible  <bruno@clisp.org>
7160             Paul Eggert  <eggert@cs.ucla.edu>
7161
7162         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
7163         __argc, __argv from the declaration. (They are defined as macros on
7164         mingw.)
7165
7166 2006-10-22  Bruno Haible  <bruno@clisp.org>
7167
7168         * doc/gnulib-intro.texi: New file.
7169         * doc/gnulib.texi: Include it.
7170
7171 2006-10-21  Bruno Haible  <bruno@clisp.org>
7172
7173         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
7174         "Introduction", "Miscellanous Notes", "Particular Modules".
7175
7176 2006-10-21  Bruno Haible  <bruno@clisp.org>
7177
7178         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7179         Change mostlyclean-local rule to avoid sh syntax error from bash
7180         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
7181
7182 2006-10-23  Jim Meyering  <jim@meyering.net>
7183
7184         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
7185         in place of snprintf.
7186
7187         * modules/inttostr (Files): Add lib/uinttostr.c.
7188         * lib/uinttostr.c (inttostr): New file/function.
7189         * lib/inttostr.h (uinttostr): Declare.
7190         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
7191         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
7192         Add uinttostr.
7193         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
7194
7195 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7196
7197         * lib/canonicalize.c (ELOOP): Define if not already defined.
7198         Problem reported by Bruno Haible in
7199         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
7200
7201 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
7202
7203         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
7204         Problem reported by Perry Smith and Ville Laurikari.
7205
7206         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
7207         uses.
7208
7209 2006-10-19  Bruno Haible  <bruno@clisp.org>
7210
7211         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
7212         for mingw.
7213
7214 2006-10-19  Bruno Haible  <bruno@clisp.org>
7215
7216         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
7217         Needed for mingw.
7218
7219 2006-10-19  Bruno Haible  <bruno@clisp.org>
7220
7221         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
7222
7223 2006-10-19  Bruno Haible  <bruno@clisp.org>
7224
7225         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
7226         it.
7227
7228 2006-10-19  Bruno Haible  <bruno@clisp.org>
7229
7230         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
7231         invocation.
7232
7233 2006-10-19  Bruno Haible  <bruno@clisp.org>
7234
7235         * gnulib-tool (func_create_testdir): Don't include ftruncate and
7236         mountlist by default.
7237
7238 2006-10-16  Bruno Haible  <bruno@clisp.org>
7239
7240         * lib/c-strstr.c: Include c-strstr.h.
7241
7242 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
7243
7244         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
7245         in a slash.
7246
7247 2006-10-18  Bruno Haible  <bruno@clisp.org>
7248
7249         * lib/lock.h [C++]: Wrap definitions in extern "C".
7250
7251 2006-10-18  Bruno Haible  <bruno@clisp.org>
7252
7253         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
7254         gl_LIBOBJS list.
7255
7256 2006-10-18  Bruno Haible  <bruno@clisp.org>
7257
7258         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
7259
7260 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
7261
7262         * lib/xstrtol.h: Include gettext.h.
7263         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
7264         Problem reported by Eric Blake.
7265         * modules/xstrtol (Depends-on): Add gettext-h.
7266
7267 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
7268
7269         * lib/strftime.c (advance): New macro.
7270         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
7271         incomplete type, so you can't add 0 to it.  Problem and patch
7272         reported by Eelco Dolstra for dietlibc.
7273
7274 2006-10-18  Jim Meyering  <jim@meyering.net>
7275
7276         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
7277         type for a local, and rename it: s/up/user_proc/.
7278
7279 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
7280
7281         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
7282         READ_UTMP_USER_PROCESS.
7283         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
7284
7285 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
7286
7287         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
7288         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
7289
7290 2006-10-17  Eric Blake  <ebb9@byu.net>
7291
7292         * lib/sigprocmask.c (sigprocmask): Fix typo.
7293
7294         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
7295
7296         * modules/clean-temp (Makefile.am): Don't add to make output...
7297         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
7298         config.h.
7299
7300 2006-10-17  Bruno Haible  <bruno@clisp.org>
7301
7302         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
7303         differently if DEFAULT_TEXT_DOMAIN is set.
7304
7305 2006-10-16  Bruno Haible  <bruno@clisp.org>
7306
7307         * lib/clean-temp.c: Include fwriteerror.h.
7308
7309 2006-10-16  Bruno Haible  <bruno@clisp.org>
7310
7311         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
7312
7313 2006-10-16  Bruno Haible  <bruno@clisp.org>
7314
7315         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
7316         * lib/sigprocmask.h: Include <sys/types.h>.
7317         (sigset_t): Use the system's definition if present.
7318
7319 2006-10-17  Eric Blake  <ebb9@byu.net>
7320
7321         * lib/xvasprintf.c (includes): Assume config.h.
7322         * lib/xasprintf.c (includes): Likewise.
7323
7324 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
7325
7326         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
7327         at least as wide as intmax_t.
7328
7329 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
7330
7331         (Imported from Automake.)
7332         * build-aux/gnupload: Update to version 1.1 of directive file.
7333
7334 2006-10-16  Eric Blake  <ebb9@byu.net>
7335
7336         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
7337         match Automake 1.10a.
7338
7339 2006-10-14  Bruno Haible  <bruno@clisp.org>
7340
7341         * modules/sigprocmask: New file.
7342         * lib/sigprocmask.h: New file.
7343         * lib/sigprocmask.c: New file.
7344         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
7345         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
7346         request sigprocmask.o.
7347         (gl_PREREQ_SIGPROCMASK): New macro.
7348         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
7349         (Depends-on): Add sigprocmask.
7350         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
7351         gt_SIGNALBLOCKING. Test for 'raise' only once.
7352         * lib/fatal-signal.c: Include sigprocmask.h.
7353         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
7354         unblock_fatal_signals): Define always.
7355         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
7356         sigprocmask.
7357
7358 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
7359
7360         Sync from Automake.
7361         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
7362         which incorrectly sets the mode of an existing destination
7363         directory.  In some cases the unpatched install-sh could do the
7364         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
7365         system.  We hope this is rare in practice, but it's clearly worth
7366         fixing.  Problem reported by Alex Unleashed in
7367         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
7368         Also, don't bother to check for -m bugs unless we're using -m;
7369         suggested by Stepan Kasal.
7370
7371 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7372
7373         Sync from Automake.
7374         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
7375         `-c' flag, so they appear at the same position as in %FASTDEP%
7376         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
7377         which ignores unknown options only after the first non-option.
7378         Bug report against M4 by Nelson H. F. Beebe.
7379
7380 2006-10-13  Jim Meyering  <jim@meyering.net>
7381
7382         Fix a bug in yesterday's change.
7383         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
7384         p->fts_statp->st_dev would be used uninitialized.
7385         Ensures that we always call fts_stat on the very first entry.
7386         Miklos Szeredi reported that find -xdev stopped working.
7387
7388 2006-10-12  Bruno Haible  <bruno@clisp.org>
7389
7390         * gnulib-tool (func_get_automake_snippet): Append an automatically
7391         computed EXTRA_DIST augmentation.
7392         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
7393         * modules/alloca-opt (Makefile.am): Likewise.
7394         * modules/allocsa (Makefile.am): Likewise.
7395         * modules/arcfour (Makefile.am): Likewise.
7396         * modules/arctwo (Makefile.am): Likewise.
7397         * modules/argmatch (Makefile.am): Likewise.
7398         * modules/argz (Makefile.am): Likewise.
7399         * modules/atexit (Makefile.am): Likewise.
7400         * modules/backupfile (Makefile.am): Likewise.
7401         * modules/byteswap (Makefile.am): Likewise.
7402         * modules/c-strtod (Makefile.am): Likewise.
7403         * modules/c-strtold (Makefile.am): Likewise.
7404         * modules/calloc (Makefile.am): Likewise.
7405         * modules/canon-host (Makefile.am): Likewise.
7406         * modules/canonicalize (Makefile.am): Likewise.
7407         * modules/chdir-long (Makefile.am): Likewise.
7408         * modules/chdir-safer (Makefile.am): Likewise.
7409         * modules/check-version (Makefile.am): Likewise.
7410         * modules/chown (Makefile.am): Likewise.
7411         * modules/cloexec (Makefile.am): Likewise.
7412         * modules/close-stream (Makefile.am): Likewise.
7413         * modules/closeout (Makefile.am): Likewise.
7414         * modules/crc (Makefile.am): Likewise.
7415         * modules/csharpexec (Makefile.am): Likewise.
7416         * modules/cycle-check (Makefile.am): Likewise.
7417         * modules/des (Makefile.am): Likewise.
7418         * modules/dev-ino (Makefile.am): Likewise.
7419         * modules/dirfd (Makefile.am): Likewise.
7420         * modules/dirname (Makefile.am): Likewise.
7421         * modules/dup2 (Makefile.am): Likewise.
7422         * modules/eealloc (Makefile.am): Likewise.
7423         * modules/error (Makefile.am): Likewise.
7424         * modules/euidaccess (Makefile.am): Likewise.
7425         * modules/exclude (Makefile.am): Likewise.
7426         * modules/exitfail (Makefile.am): Likewise.
7427         * modules/fcntl-safer (Makefile.am): Likewise.
7428         * modules/fcntl (Makefile.am): Likewise.
7429         * modules/file-type (Makefile.am): Likewise.
7430         * modules/fileblocks (Makefile.am): Likewise.
7431         * modules/filemode (Makefile.am): Likewise.
7432         * modules/filenamecat (Makefile.am): Likewise.
7433         * modules/fnmatch (Makefile.am): Likewise.
7434         * modules/fopen-safer (Makefile.am): Likewise.
7435         * modules/fpending (Makefile.am): Likewise.
7436         * modules/fprintftime (Makefile.am): Likewise.
7437         * modules/free (Makefile.am): Likewise.
7438         * modules/fsusage (Makefile.am): Likewise.
7439         * modules/ftruncate (Makefile.am): Likewise.
7440         * modules/fts (Makefile.am): Likewise.
7441         * modules/gc-arcfour (Makefile.am): Likewise.
7442         * modules/gc-des (Makefile.am): Likewise.
7443         * modules/gc-hmac-md5 (Makefile.am): Likewise.
7444         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
7445         * modules/gc-md4 (Makefile.am): Likewise.
7446         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
7447         * modules/gc-sha1 (Makefile.am): Likewise.
7448         * modules/gc (Makefile.am): Likewise.
7449         * modules/getaddrinfo (Makefile.am): Likewise.
7450         * modules/getcwd (Makefile.am): Likewise.
7451         * modules/getdelim (Makefile.am): Likewise.
7452         * modules/getdomainname (Makefile.am): Likewise.
7453         * modules/getgroups (Makefile.am): Likewise.
7454         * modules/gethostname (Makefile.am): Likewise.
7455         * modules/gethrxtime (Makefile.am): Likewise.
7456         * modules/getline (Makefile.am): Likewise.
7457         * modules/getloadavg (Makefile.am): Likewise.
7458         * modules/getlogin_r (Makefile.am): Likewise.
7459         * modules/getndelim2 (Makefile.am): Likewise.
7460         * modules/getopt (Makefile.am): Likewise.
7461         * modules/getpagesize (Makefile.am): Likewise.
7462         * modules/getpass-gnu (Makefile.am): Likewise.
7463         * modules/getpass (Makefile.am): Likewise.
7464         * modules/getsubopt (Makefile.am): Likewise.
7465         * modules/gettime (Makefile.am): Likewise.
7466         * modules/gettimeofday (Makefile.am): Likewise.
7467         * modules/getugroups (Makefile.am): Likewise.
7468         * modules/getusershell (Makefile.am): Likewise.
7469         * modules/glob (Makefile.am): Likewise.
7470         * modules/group-member (Makefile.am): Likewise.
7471         * modules/hard-locale (Makefile.am): Likewise.
7472         * modules/hash (Makefile.am): Likewise.
7473         * modules/hmac-md5 (Makefile.am): Likewise.
7474         * modules/hmac-sha1 (Makefile.am): Likewise.
7475         * modules/human (Makefile.am): Likewise.
7476         * modules/idcache (Makefile.am): Likewise.
7477         * modules/imaxabs (Makefile.am): Likewise.
7478         * modules/imaxdiv (Makefile.am): Likewise.
7479         * modules/inet_ntop (Makefile.am): Likewise.
7480         * modules/inet_pton (Makefile.am): Likewise.
7481         * modules/intprops (Makefile.am): Likewise.
7482         * modules/inttostr (Makefile.am): Likewise.
7483         * modules/inttypes (Makefile.am): Likewise.
7484         * modules/isapipe (Makefile.am): Likewise.
7485         * modules/javaversion (Makefile.am): Likewise.
7486         * modules/lchmod (Makefile.am): Likewise.
7487         * modules/lchown (Makefile.am): Likewise.
7488         * modules/localcharset (Makefile.am): Likewise.
7489         * modules/long-options (Makefile.am): Likewise.
7490         * modules/lstat (Makefile.am): Likewise.
7491         * modules/malloc (Makefile.am): Likewise.
7492         * modules/mathl (Makefile.am): Likewise.
7493         * modules/mbchar (Makefile.am): Likewise.
7494         * modules/md2 (Makefile.am): Likewise.
7495         * modules/md4 (Makefile.am): Likewise.
7496         * modules/md5 (Makefile.am): Likewise.
7497         * modules/memcasecmp (Makefile.am): Likewise.
7498         * modules/memchr (Makefile.am): Likewise.
7499         * modules/memcmp (Makefile.am): Likewise.
7500         * modules/memcoll (Makefile.am): Likewise.
7501         * modules/memcpy (Makefile.am): Likewise.
7502         * modules/memmem (Makefile.am): Likewise.
7503         * modules/memmove (Makefile.am): Likewise.
7504         * modules/mempcpy (Makefile.am): Likewise.
7505         * modules/memrchr (Makefile.am): Likewise.
7506         * modules/memset (Makefile.am): Likewise.
7507         * modules/memxor (Makefile.am): Likewise.
7508         * modules/mkancesdirs (Makefile.am): Likewise.
7509         * modules/mkdir-p (Makefile.am): Likewise.
7510         * modules/mkdir (Makefile.am): Likewise.
7511         * modules/mkdtemp (Makefile.am): Likewise.
7512         * modules/mkstemp (Makefile.am): Likewise.
7513         * modules/mktime (Makefile.am): Likewise.
7514         * modules/modechange (Makefile.am): Likewise.
7515         * modules/mountlist (Makefile.am): Likewise.
7516         * modules/nanosleep (Makefile.am): Likewise.
7517         * modules/obstack (Makefile.am): Likewise.
7518         * modules/openat (Makefile.am): Likewise.
7519         * modules/pagealign_alloc (Makefile.am): Likewise.
7520         * modules/pathmax (Makefile.am): Likewise.
7521         * modules/physmem (Makefile.am): Likewise.
7522         * modules/poll (Makefile.am): Likewise.
7523         * modules/posixtm (Makefile.am): Likewise.
7524         * modules/posixver (Makefile.am): Likewise.
7525         * modules/putenv (Makefile.am): Likewise.
7526         * modules/quote (Makefile.am): Likewise.
7527         * modules/quotearg (Makefile.am): Likewise.
7528         * modules/raise (Makefile.am): Likewise.
7529         * modules/read-file (Makefile.am): Likewise.
7530         * modules/readline (Makefile.am): Likewise.
7531         * modules/readlink (Makefile.am): Likewise.
7532         * modules/readtokens (Makefile.am): Likewise.
7533         * modules/readutmp (Makefile.am): Likewise.
7534         * modules/realloc (Makefile.am): Likewise.
7535         * modules/regex (Makefile.am): Likewise.
7536         * modules/rename-dest-slash (Makefile.am): Likewise.
7537         * modules/rename (Makefile.am): Likewise.
7538         * modules/rijndael (Makefile.am): Likewise.
7539         * modules/rmdir (Makefile.am): Likewise.
7540         * modules/rpmatch (Makefile.am): Likewise.
7541         * modules/safe-read (Makefile.am): Likewise.
7542         * modules/safe-write (Makefile.am): Likewise.
7543         * modules/same-inode (Makefile.am): Likewise.
7544         * modules/same (Makefile.am): Likewise.
7545         * modules/save-cwd (Makefile.am): Likewise.
7546         * modules/savedir (Makefile.am): Likewise.
7547         * modules/setenv (Makefile.am): Likewise.
7548         * modules/settime (Makefile.am): Likewise.
7549         * modules/sha1 (Makefile.am): Likewise.
7550         * modules/sig2str (Makefile.am): Likewise.
7551         * modules/snprintf (Makefile.am): Likewise.
7552         * modules/stat-macros (Makefile.am): Likewise.
7553         * modules/stat-time (Makefile.am): Likewise.
7554         * modules/stdbool (Makefile.am): Likewise.
7555         * modules/stdint (Makefile.am): Likewise.
7556         * modules/stdlib-safer (Makefile.am): Likewise.
7557         * modules/stpcpy (Makefile.am): Likewise.
7558         * modules/stpncpy (Makefile.am): Likewise.
7559         * modules/strcase (Makefile.am): Likewise.
7560         * modules/strcasestr (Makefile.am): Likewise.
7561         * modules/strchrnul (Makefile.am): Likewise.
7562         * modules/strcspn (Makefile.am): Likewise.
7563         * modules/strdup (Makefile.am): Likewise.
7564         * modules/strerror (Makefile.am): Likewise.
7565         * modules/strftime (Makefile.am): Likewise.
7566         * modules/strndup (Makefile.am): Likewise.
7567         * modules/strnlen (Makefile.am): Likewise.
7568         * modules/strpbrk (Makefile.am): Likewise.
7569         * modules/strsep (Makefile.am): Likewise.
7570         * modules/strstr (Makefile.am): Likewise.
7571         * modules/strtod (Makefile.am): Likewise.
7572         * modules/strtoimax (Makefile.am): Likewise.
7573         * modules/strtok_r (Makefile.am): Likewise.
7574         * modules/strtol (Makefile.am): Likewise.
7575         * modules/strtoll (Makefile.am): Likewise.
7576         * modules/strtoul (Makefile.am): Likewise.
7577         * modules/strtoull (Makefile.am): Likewise.
7578         * modules/strtoumax (Makefile.am): Likewise.
7579         * modules/strverscmp (Makefile.am): Likewise.
7580         * modules/sys_socket (Makefile.am): Likewise.
7581         * modules/sys_stat (Makefile.am): Likewise.
7582         * modules/sysexits (Makefile.am): Likewise.
7583         * modules/time_r (Makefile.am): Likewise.
7584         * modules/timegm (Makefile.am): Likewise.
7585         * modules/timespec (Makefile.am): Likewise.
7586         * modules/tmpfile-safer (Makefile.am): Likewise.
7587         * modules/trim (Makefile.am): Likewise.
7588         * modules/unistd-safer (Makefile.am): Likewise.
7589         * modules/unlinkdir (Makefile.am): Likewise.
7590         * modules/unlocked-io (Makefile.am): Likewise.
7591         * modules/userspec (Makefile.am): Likewise.
7592         * modules/utime (Makefile.am): Likewise.
7593         * modules/utimecmp (Makefile.am): Likewise.
7594         * modules/utimens (Makefile.am): Likewise.
7595         * modules/vasnprintf (Makefile.am): Likewise.
7596         * modules/vasprintf (Makefile.am): Likewise.
7597         * modules/vsnprintf (Makefile.am): Likewise.
7598         * modules/xalloc (Makefile.am): Likewise.
7599         * modules/xgetcwd (Makefile.am): Likewise.
7600         * modules/xnanosleep (Makefile.am): Likewise.
7601         * modules/xreadlink (Makefile.am): Likewise.
7602         * modules/xstrtod (Makefile.am): Likewise.
7603         * modules/xstrtol (Makefile.am): Likewise.
7604         * modules/xstrtold (Makefile.am): Likewise.
7605         * modules/yesno (Makefile.am): Likewise.
7606         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
7607
7608 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
7609
7610         * modules/error (Makefile.am): Distribute files through
7611         EXTRA_DIST, not lib_SOURCES.
7612
7613 2006-10-12  Eric Blake  <ebb9@byu.net>
7614
7615         * modules/error (Makefile.am): Distribute files in /lib.
7616         * modules/obstack (Makefile.am): Likewise.
7617
7618 2006-10-12  Bruno Haible  <bruno@clisp.org>
7619
7620         * modules/acl (Makefile.am): Distribute all files in lib/ through
7621         EXTRA_DIST.
7622         * modules/arcfour (Makefile.am): Likewise.
7623         * modules/arctwo (Makefile.am): Likewise.
7624         * modules/argmatch (Makefile.am): Likewise.
7625         * modules/argz (Makefile.am): Likewise.
7626         * modules/atexit (Makefile.am): Likewise.
7627         * modules/backupfile (Makefile.am): Likewise.
7628         * modules/c-strtod (Makefile.am): Likewise.
7629         * modules/c-strtold (Makefile.am): Likewise.
7630         * modules/calloc (Makefile.am): Likewise.
7631         * modules/canon-host (Makefile.am): Likewise.
7632         * modules/canonicalize (Makefile.am): Likewise.
7633         * modules/chdir-long (Makefile.am): Likewise.
7634         * modules/chdir-safer (Makefile.am): Likewise.
7635         * modules/check-version (Makefile.am): Likewise.
7636         * modules/chown (Makefile.am): Likewise.
7637         * modules/cloexec (Makefile.am): Likewise.
7638         * modules/close-stream (Makefile.am): Likewise.
7639         * modules/closeout (Makefile.am): Likewise.
7640         * modules/crc (Makefile.am): Likewise.
7641         * modules/cycle-check (Makefile.am): Likewise.
7642         * modules/des (Makefile.am): Likewise.
7643         * modules/dirfd (Makefile.am): Likewise.
7644         * modules/dirname (Makefile.am): Likewise.
7645         * modules/dup2 (Makefile.am): Likewise.
7646         * modules/euidaccess (Makefile.am): Likewise.
7647         * modules/exclude (Makefile.am): Likewise.
7648         * modules/exitfail (Makefile.am): Likewise.
7649         * modules/fcntl-safer (Makefile.am): Likewise.
7650         * modules/file-type (Makefile.am): Likewise.
7651         * modules/fileblocks (Makefile.am): Likewise.
7652         * modules/filemode (Makefile.am): Likewise.
7653         * modules/filenamecat (Makefile.am): Likewise.
7654         * modules/fnmatch (Makefile.am): Likewise.
7655         * modules/fopen-safer (Makefile.am): Likewise.
7656         * modules/fpending (Makefile.am): Likewise.
7657         * modules/fprintftime (Makefile.am): Likewise.
7658         * modules/free (Makefile.am): Likewise.
7659         * modules/fsusage (Makefile.am): Likewise.
7660         * modules/ftruncate (Makefile.am): Likewise.
7661         * modules/fts (Makefile.am): Likewise.
7662         * modules/gc (Makefile.am): Likewise.
7663         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
7664         * modules/getaddrinfo (Makefile.am): Likewise.
7665         * modules/getcwd (Makefile.am): Likewise.
7666         * modules/getdelim (Makefile.am): Likewise.
7667         * modules/getdomainname (Makefile.am): Likewise.
7668         * modules/getgroups (Makefile.am): Likewise.
7669         * modules/gethostname (Makefile.am): Likewise.
7670         * modules/gethrxtime (Makefile.am): Likewise.
7671         * modules/getline (Makefile.am): Likewise.
7672         * modules/getloadavg (Makefile.am): Likewise.
7673         * modules/getlogin_r (Makefile.am): Likewise.
7674         * modules/getopt (Makefile.am): Likewise.
7675         * modules/getpass (Makefile.am): Likewise.
7676         * modules/getpass-gnu (Makefile.am): Likewise.
7677         * modules/getsubopt (Makefile.am): Likewise.
7678         * modules/gettime (Makefile.am): Likewise.
7679         * modules/gettimeofday (Makefile.am): Likewise.
7680         * modules/getugroups (Makefile.am): Likewise.
7681         * modules/getusershell (Makefile.am): Likewise.
7682         * modules/glob (Makefile.am): Likewise.
7683         * modules/group-member (Makefile.am): Likewise.
7684         * modules/hard-locale (Makefile.am): Likewise.
7685         * modules/hash (Makefile.am): Likewise.
7686         * modules/hmac-md5 (Makefile.am): Likewise.
7687         * modules/hmac-sha1 (Makefile.am): Likewise.
7688         * modules/human (Makefile.am): Likewise.
7689         * modules/idcache (Makefile.am): Likewise.
7690         * modules/imaxabs (Makefile.am): Likewise.
7691         * modules/imaxdiv (Makefile.am): Likewise.
7692         * modules/inet_ntop (Makefile.am): Likewise.
7693         * modules/inet_pton (Makefile.am): Likewise.
7694         * modules/inttostr (Makefile.am): Likewise.
7695         * modules/isapipe (Makefile.am): Likewise.
7696         * modules/lchown (Makefile.am): Likewise.
7697         * modules/long-options (Makefile.am): Likewise.
7698         * modules/lstat (Makefile.am): Likewise.
7699         * modules/malloc (Makefile.am): Likewise.
7700         * modules/mathl (Makefile.am): Likewise.
7701         * modules/mbchar (Makefile.am): Likewise.
7702         * modules/md2 (Makefile.am): Likewise.
7703         * modules/md4 (Makefile.am): Likewise.
7704         * modules/md5 (Makefile.am): Likewise.
7705         * modules/memcasecmp (Makefile.am): Likewise.
7706         * modules/memchr (Makefile.am): Likewise.
7707         * modules/memcmp (Makefile.am): Likewise.
7708         * modules/memcoll (Makefile.am): Likewise.
7709         * modules/memcpy (Makefile.am): Likewise.
7710         * modules/memmem (Makefile.am): Likewise.
7711         * modules/memmove (Makefile.am): Likewise.
7712         * modules/mempcpy (Makefile.am): Likewise.
7713         * modules/memrchr (Makefile.am): Likewise.
7714         * modules/memset (Makefile.am): Likewise.
7715         * modules/memxor (Makefile.am): Likewise.
7716         * modules/mkancesdirs (Makefile.am): Likewise.
7717         * modules/mkdir (Makefile.am): Likewise.
7718         * modules/mkdir-p (Makefile.am): Likewise.
7719         * modules/mkdtemp (Makefile.am): Likewise.
7720         * modules/mkstemp (Makefile.am): Likewise.
7721         * modules/mktime (Makefile.am): Likewise.
7722         * modules/modechange (Makefile.am): Likewise.
7723         * modules/mountlist (Makefile.am): Likewise.
7724         * modules/nanosleep (Makefile.am): Likewise.
7725         * modules/openat (Makefile.am): Likewise.
7726         * modules/pagealign_alloc (Makefile.am): Likewise.
7727         * modules/physmem (Makefile.am): Likewise.
7728         * modules/poll (Makefile.am): Likewise.
7729         * modules/posixtm (Makefile.am): Likewise.
7730         * modules/posixver (Makefile.am): Likewise.
7731         * modules/putenv (Makefile.am): Likewise.
7732         * modules/quote (Makefile.am): Likewise.
7733         * modules/quotearg (Makefile.am): Likewise.
7734         * modules/raise (Makefile.am): Likewise.
7735         * modules/read-file (Makefile.am): Likewise.
7736         * modules/readline (Makefile.am): Likewise.
7737         * modules/readlink (Makefile.am): Likewise.
7738         * modules/readtokens (Makefile.am): Likewise.
7739         * modules/readutmp (Makefile.am): Likewise.
7740         * modules/realloc (Makefile.am): Likewise.
7741         * modules/regex (Makefile.am): Likewise.
7742         * modules/rename (Makefile.am): Likewise.
7743         * modules/rename-dest-slash (Makefile.am): Likewise.
7744         * modules/rijndael (Makefile.am): Likewise.
7745         * modules/rmdir (Makefile.am): Likewise.
7746         * modules/rpmatch (Makefile.am): Likewise.
7747         * modules/safe-read (Makefile.am): Likewise.
7748         * modules/safe-write (Makefile.am): Likewise.
7749         * modules/same (Makefile.am): Likewise.
7750         * modules/save-cwd (Makefile.am): Likewise.
7751         * modules/savedir (Makefile.am): Likewise.
7752         * modules/setenv (Makefile.am): Likewise.
7753         * modules/settime (Makefile.am): Likewise.
7754         * modules/sha1 (Makefile.am): Likewise.
7755         * modules/sig2str (Makefile.am): Likewise.
7756         * modules/snprintf (Makefile.am): Likewise.
7757         * modules/stdlib-safer (Makefile.am): Likewise.
7758         * modules/stpcpy (Makefile.am): Likewise.
7759         * modules/stpncpy (Makefile.am): Likewise.
7760         * modules/strcase (Makefile.am): Likewise.
7761         * modules/strcasestr (Makefile.am): Likewise.
7762         * modules/strchrnul (Makefile.am): Likewise.
7763         * modules/strcspn (Makefile.am): Likewise.
7764         * modules/strdup (Makefile.am): Likewise.
7765         * modules/strerror (Makefile.am): Likewise.
7766         * modules/strftime (Makefile.am): Likewise.
7767         * modules/strndup (Makefile.am): Likewise.
7768         * modules/strnlen (Makefile.am): Likewise.
7769         * modules/strpbrk (Makefile.am): Likewise.
7770         * modules/strsep (Makefile.am): Likewise.
7771         * modules/strstr (Makefile.am): Likewise.
7772         * modules/strtod (Makefile.am): Likewise.
7773         * modules/strtoimax (Makefile.am): Likewise.
7774         * modules/strtok_r (Makefile.am): Likewise.
7775         * modules/strtol (Makefile.am): Likewise.
7776         * modules/strtoll (Makefile.am): Likewise.
7777         * modules/strtoul (Makefile.am): Likewise.
7778         * modules/strtoull (Makefile.am): Likewise.
7779         * modules/strtoumax (Makefile.am): Likewise.
7780         * modules/strverscmp (Makefile.am): Likewise.
7781         * modules/time_r (Makefile.am): Likewise.
7782         * modules/timegm (Makefile.am): Likewise.
7783         * modules/tmpfile-safer (Makefile.am): Likewise.
7784         * modules/unistd-safer (Makefile.am): Likewise.
7785         * modules/unlinkdir (Makefile.am): Likewise.
7786         * modules/userspec (Makefile.am): Likewise.
7787         * modules/utime (Makefile.am): Likewise.
7788         * modules/utimecmp (Makefile.am): Likewise.
7789         * modules/utimens (Makefile.am): Likewise.
7790         * modules/vasnprintf (Makefile.am): Likewise.
7791         * modules/vasprintf (Makefile.am): Likewise.
7792         * modules/vsnprintf (Makefile.am): Likewise.
7793         * modules/xalloc (Makefile.am): Likewise.
7794         * modules/xgetcwd (Makefile.am): Likewise.
7795         * modules/xnanosleep (Makefile.am): Likewise.
7796         * modules/xreadlink (Makefile.am): Likewise.
7797         * modules/xstrtod (Makefile.am): Likewise.
7798         * modules/xstrtol (Makefile.am): Likewise.
7799         * modules/xstrtold (Makefile.am): Likewise.
7800         * modules/yesno (Makefile.am): Likewise.
7801
7802 2006-10-12  Jim Meyering  <jim@meyering.net>
7803
7804         * m4/getloadavg.m4: Revert the change below.
7805
7806         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
7807         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
7808         fail with a symlink, which is what coreutils' ./bootstrap now
7809         creates by default.
7810
7811 2006-10-12  Bruno Haible  <bruno@clisp.org>
7812
7813         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
7814         mingw.
7815         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
7816         MSVC and mingw explicitly.
7817
7818 2006-10-11  Simon Josefsson  <jas@extundo.com>
7819             Bruno Haible  <bruno@clisp.org>
7820
7821         Add support for multiple gnulib-tool invocations in the scope of a
7822         single configure.ac file.
7823         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
7824         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
7825         with the same contents as the _LIBADD variable.
7826         (func_emit_initmacro_start, func_emit_initmacro_end,
7827         func_emit_initmacro_done): New functions.
7828         (func_import, func_create_testdir): Invoke them. Allow the identifiers
7829         gl_LIBOBJS and gl_LTLIBOBJS.
7830
7831 2006-10-11  Bruno Haible  <bruno@clisp.org>
7832
7833         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
7834         (func_create_testdir): Don't create po/Makefile.am, don't invoke
7835         autoreconf. Instead, invoke autopoint explicitly but move back the
7836         *.m4 files from gnulib.
7837
7838 2006-10-11  Bruno Haible  <bruno@clisp.org>
7839
7840         * gnulib-tool (func_usage): Make module names after --create-testdir
7841         optional.
7842         (func_create_testdir): If no module was specified, use nearly all
7843         modules.
7844
7845 2006-10-12  Jim Meyering  <jim@meyering.net>
7846
7847         Big performance improvement for fts-based tools that use FTS_NOSTAT.
7848         Avoid spurious inode-mismatch problems on non-POSIX file systems.
7849         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
7850         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
7851         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
7852         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
7853         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
7854         (fts_set_stat_required): New function.
7855         (fts_open): Defer the calls to fts_stat, if possible or requested.
7856         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
7857         into fts_stat itself.
7858         (fts_read): Perform any required (deferred) fts_stat call.
7859         (fts_build): Likewise, for the directory we're about to open and read.
7860         In the readdir loop, carefully decide whether each entry will require
7861         an eventual call to fts_stat, using dirent.d_type info if available.
7862         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
7863         a command line argument into this function.  Update all callers.
7864         Map a return value of FTS_DOT to FTS_D for a command line argument.
7865         * modules/fts (Depends-on): Add d-type.  Alphabetize.
7866         Thanks to Miklos Szeredi for his tenacity and for the initial
7867         bug report about "find" failing on a FUSE-based file system.
7868
7869         * lib/fts.c (fts_open): Use consistent indentation.
7870
7871 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
7872
7873         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
7874         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
7875         reported by Jim Meyering.  All uses of cache variables renamed
7876         to match Autoconf's.
7877         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
7878         the other one.
7879
7880         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
7881         Fix misspelling in diagnostic.
7882
7883 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
7884
7885         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
7886         defined.  Problem reported by Matthew Woehlke.
7887
7888         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
7889         Add support for Tandem NonStop R series.
7890         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
7891         Use new macro.
7892
7893         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
7894         (has_trailing_slash): Omit size arg; all callers changed.
7895         Omit 'inline', since it doesn't help performance and we'd
7896         need to configure it.
7897         Don't count //, ///, etc. as having a trailing slash.
7898         As a side effect, this removes a C99ism reported by Matthew Woehlke.
7899         (rpl_rename_dest_slash): On failure, use rename's errno rather
7900         than (in some cases) an incorrect or junk errno.
7901         Simplify code by removing need to compute length; this does
7902         cause it to make two passes instead of one over the file name,
7903         but it's worth it.
7904
7905         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
7906         change, since Autoconf's version may no longer be appropriate now
7907         that we are using CVS Autoconf's version.  Add support for Tandem.
7908
7909 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
7910             Bruno Haible  <bruno@clisp.org>
7911
7912         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
7913         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
7914         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
7915         gl_AC_TYPE_LONG_LONG.
7916
7917         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
7918         instead of HAVE_LONG_LONG.
7919         * lib/printf-args.c (printf_fetchargs): Likewise.
7920         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
7921         * lib/vasnprintf.c (VASNPRINTF): Likewise.
7922         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
7923         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
7924         gl_AC_TYPE_LONG_LONG.
7925
7926 2006-10-11  Bruno Haible  <bruno@clisp.org>
7927
7928         * m4/longlong.m4: Add comments.
7929         * m4/ulonglong.m4: Likewise.
7930
7931 2006-10-10  Bruno Haible  <bruno@clisp.org>
7932
7933         Make it possible to #define stpcpy, strdup to aliases.
7934         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
7935         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
7936
7937 2006-10-10  Bruno Haible  <bruno@clisp.org>
7938
7939         Make it possible to #define gcd to an alias.
7940         * lib/gcd.c: Include config.h.
7941
7942 2006-10-10  Bruno Haible  <bruno@clisp.org>
7943
7944         Make it possible to #define c_isascii to an alias.
7945         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
7946         defined. Undefine the macros before defining them, to avoid gcc
7947         warnings.
7948         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
7949         define NO_C_CTYPE_MACROS early.
7950
7951 2006-10-10  Bruno Haible  <bruno@clisp.org>
7952
7953         Make it possible to #define set_program_name to an alias.
7954         * lib/progname.c: Don't undefine set_program_name; instead, undefine
7955         ENABLE_RELOCATABLE early.
7956
7957 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
7958
7959         Port to Tandem NSK OSS, which has 64-bit signed int but at most
7960         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
7961         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
7962         More generally, don't assume that 64-bit signed int is available
7963         if unsigned int is, and vice versa.
7964         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
7965         unsigned symbols, not on their signed counterparts.
7966         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
7967         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
7968         (UINT64_C, UINTMAX_C):
7969         Likewise.
7970         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
7971         unsigned counterparts.
7972         (Have_long_long, Unsigned): New macros.
7973         (Int): Renamed from INT.
7974         (strtoimax): Use the new macros.
7975         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
7976         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
7977         * modules/inttypes (inttypes.h): Substitute
7978         HAVE_UNSIGNED_LONG_LONG_INT.
7979         * modules/stdint (stdint.h): Likewise.
7980         (Files): Add m4/ulonglong.m4.
7981
7982 2006-10-10  Bruno Haible  <bruno@clisp.org>
7983
7984         Fix a gcc -Wshadow warning.
7985         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
7986         to 'bucket'.
7987         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
7988         gl_linked_indexof_from_to): Likewise.
7989         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
7990         Likewise.
7991         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
7992         Likewise.
7993         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
7994         Reported by Eric Blake.
7995
7996 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
7997
7998         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
7999         for NetBSD.  Problem reported by Bruno Haible.
8000
8001 2006-10-09  Jim Meyering  <jim@meyering.net>
8002
8003         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
8004         Patch from Bruno Haible.
8005
8006 2006-10-09  Jim Meyering  <jim@meyering.net>
8007
8008         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
8009         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
8010         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
8011
8012 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
8013
8014         Don't include <config.h> twice; this doesn't work in some cases,
8015         e.g., when config.h has "#define intmax_t long long int" and
8016         we include <config.h>, <inttypes.h>, <config.h> in that order.
8017         Problem reported by Matthew Woehlke in:
8018         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
8019         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
8020         * lib/fts-cycle.c: Don't include config.h.
8021         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
8022         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
8023         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
8024         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
8025         inttypes.h.
8026         * lib/xstrtoumax.c: Likewise.
8027         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
8028         __strtol and the like, so that this module is more like its siblings.
8029         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
8030         Remove; no longer needed now that we assume gnulib inttypes.h.
8031
8032 2006-10-08  Bruno Haible  <bruno@clisp.org>
8033
8034         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
8035         option.
8036
8037 2006-10-07  Jim Meyering  <jim@meyering.net>
8038
8039         * modules/inttypes (inttypes.h): Revert what seems to have been
8040         an inadvertent part of today's change: use "|", not "/" in the
8041         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
8042
8043 2006-10-07  Bruno Haible  <bruno@clisp.org>
8044
8045         * modules/sublist: New file.
8046
8047 2006-10-07  Bruno Haible  <bruno@clisp.org>
8048
8049         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
8050         * modules/argz (argz.h): Likewise.
8051         * modules/arpa_inet (arpa/inet.h): Likewise.
8052         * modules/byteswap (byteswap.h): Likewise.
8053         * modules/configmake (configmake.h): Likewise.
8054         * modules/fcntl (fcntl.h): Likewise.
8055         * modules/fnmatch (fnmatch.h): Likewise.
8056         * modules/getopt (getopt.h): Likewise.
8057         * modules/glob (glob.h): Likewise.
8058         * modules/inttypes (inttypes.h): Likewise.
8059         * modules/netinet_in (netinet/in.h): Likewise.
8060         * modules/poll (poll.h): Likewise.
8061         * modules/stdbool (stdbool.h): Likewise.
8062         * modules/stdint (stdint.h): Likewise.
8063         * modules/sys_select (sys/select.h): Likewise.
8064         * modules/sys_socket (sys/socket.h): Likewise.
8065         * modules/sys_stat (sys/stat.h): Likewise.
8066         * modules/sysexits (sysexits.h): Likewise.
8067         * modules/unistd (unistd.h): Likewise.
8068         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8069         Add a "DO NOT EDIT" comment to the generated file.
8070         (func_import): Likewise for gnulib-comp.m4.
8071
8072 2006-10-07  Bruno Haible  <bruno@clisp.org>
8073
8074         * lib/gl_sublist.h: New file.
8075         * lib/gl_sublist.c: New file.
8076
8077 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
8078
8079         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
8080         name (relative to the original working directory) and the file
8081         name component (relative to the temporary working directory).  All
8082         callers changed.
8083         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
8084         * lib/mkdir-p.c (make_dir_parents): Likewise.
8085         * lib/mkdir-p.h (make_dir_parents): Likewise.
8086
8087 2006-10-06  Eric Blake  <ebb9@byu.net>
8088
8089         Define several macros for use by the clean-temp module.
8090         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
8091         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
8092         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
8093
8094         * lib/clean-temp.h (close_stream_temp): New declaration.
8095         * lib/clean-temp.c (includes): Pull in headers according to what
8096         other modules are in use.
8097         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
8098
8099 2006-10-06  Bruno Haible  <bruno@clisp.org>
8100
8101         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
8102         instead of fopen, fwriteerror.
8103
8104 2006-10-06  Bruno Haible  <bruno@clisp.org>
8105
8106         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
8107         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
8108         int.
8109         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
8110         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
8111         Return an error indicator.
8112         Suggested by Eric Blake.
8113
8114 2006-10-06  Bruno Haible  <bruno@clisp.org>
8115
8116         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
8117         Reported by Eric Blake.
8118
8119 2006-10-06  Bruno Haible  <bruno@clisp.org>
8120
8121         * modules/closeout (Description): Mention stderr too.
8122
8123 2006-10-06  Bruno Haible  <bruno@clisp.org>
8124         and Paul Eggert  <eggert@cs.ucla.edu>
8125
8126         * lib/closeout.c (close_stdout): Also close stderr.
8127         * lib/closeout.h: Update comment.
8128
8129 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8130
8131         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
8132         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
8133         * lib/dirchownmod.c: Include lchown.h.
8134         * lib/lchown.c: Don't include files that lchown.h now includes.
8135         Don't declare chown, since lchown.h now does that.
8136         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
8137         (lchown): Define to rpl_chown if lchown is declared but
8138         does not exist.  Declare using a prototype if lchown is not
8139         declared.  Add a copyright notice.
8140         * lib/mkstemp.h: Include <unistd.h>.
8141         * lib/openat.c: Include lchown.h.
8142
8143         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
8144         we now test for that separately.
8145         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
8146         rather than O_NOFOLLOW, when testing whether it's possible to
8147         avoid a race condition reliably.
8148         * lib/savewd.c (savewd_chdir): Likewise.
8149
8150         Remove macros that are no longer needed now that stdint.h is
8151         reliable.
8152         * lib/fsusage.c (UINTMAX_MAX): Remove.
8153         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
8154         * lib/utimecmp.c (SIZE_MAX): Remove.
8155
8156         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
8157
8158         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
8159         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
8160         O_NOATIME works.
8161
8162 2006-10-05  Bruno Haible  <bruno@clisp.org>
8163
8164         * lib/gl_list.h (gl_sortedlist_search_from_to,
8165         gl_sortedlist_indexof_from_to): New declarations.
8166         (gl_list_implementation): New fields sortedlist_search_from_to,
8167         sortedlist_indexof_from_to.
8168         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
8169         inline functions.
8170         * lib/gl_list.c (gl_sortedlist_search_from_to,
8171         gl_sortedlist_indexof_from_to): New functions.
8172         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
8173         function.
8174         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
8175         (gl_array_sortedlist_search_from_to): New function.
8176         (gl_array_list_implementation): Update.
8177         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
8178         function.
8179         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
8180         (gl_carray_sortedlist_search_from_to): New function.
8181         (gl_carray_list_implementation): Update.
8182         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
8183         gl_linked_sortedlist_indexof_from_to): New functions.
8184         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8185         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8186         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
8187         gl_tree_sortedlist_indexof_from_to): New functions.
8188         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8189         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8190         Update.
8191         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8192         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
8193         Update.
8194
8195 2006-10-05  Bruno Haible  <bruno@clisp.org>
8196
8197         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
8198         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
8199         (struct gl_list_implementation): Add fields search_from_to,
8200         indexof_from_to. Remove fields search, indexof.
8201         (gl_list_search): Use the search_from_to method.
8202         (gl_list_search_from, gl_list_search_from_to): New functions.
8203         (gl_list_indexof): Use the indexof_from_to method.
8204         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8205         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
8206         (gl_list_search_from, gl_list_search_from_to): New functions.
8207         (gl_list_indexof): Use the indexof_from_to method.
8208         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
8209         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
8210         gl_array_indexof. Add start_index, end_index arguments.
8211         (gl_array_search_from_to): Renamed from gl_array_search. Add
8212         start_index, end_index arguments.
8213         (gl_array_remove, gl_array_list_implementation): Update.
8214         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
8215         gl_carray_indexof. Add start_index, end_index arguments.
8216         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
8217         start_index, end_index arguments.
8218         (gl_carray_remove, gl_carray_list_implementation): Update.
8219         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
8220         gl_linked_search. Add start_index, end_index arguments.
8221         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
8222         start_index, end_index arguments.
8223         (gl_linked_remove): Update.
8224         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
8225         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
8226         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
8227         field to 'size_t'.
8228         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
8229         gl_tree_search. Add start_index, end_index arguments.
8230         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8231         start_index, end_index arguments.
8232         (gl_tree_remove): Update.
8233         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
8234         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
8235         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
8236         function.
8237         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
8238         gl_tree_search. Add start_index, end_index arguments.
8239         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
8240         start_index, end_index arguments.
8241         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
8242         Update.
8243         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
8244
8245 2006-10-05  Bruno Haible  <bruno@clisp.org>
8246
8247         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
8248
8249         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
8250         fwriteerror_temp): New declarations.
8251         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
8252         (descriptors): New variable.
8253         (cleanup): First, close the descriptors.
8254         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
8255         fclose_temp, fwriteerror_temp): New functions.
8256
8257 2006-10-04  Jim Meyering  <jim@meyering.net>
8258
8259         * lib/fts.c (fts_open): Tiny comment change.
8260
8261 2006-10-04  Bruno Haible  <bruno@clisp.org>
8262
8263         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
8264         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
8265         gl_LOCK_BODY.
8266         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
8267         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
8268         gl_LOCK_EARLY_BODY.
8269         (gl_LOCK): Require gl_LOCK_BODY.
8270
8271 2006-10-04  Bruno Haible  <bruno@clisp.org>
8272
8273         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
8274         (gl_oset_search_atleast): New declaration.
8275         (struct gl_oset_implementation): Add field 'search_atleast'.
8276         (gl_oset_search_atleast): New inline function.
8277         * lib/gl_oset.c (gl_oset_search_atleast): New function.
8278         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
8279         (gl_array_oset_implementation): Update.
8280         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
8281         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
8282         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
8283
8284 2006-10-04  Bruno Haible  <bruno@clisp.org>
8285
8286         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
8287
8288 2006-10-03  Bruno Haible  <bruno@clisp.org>
8289
8290         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
8291         from gl_avltreehash_list_implementation.
8292
8293 2006-10-03  Bruno Haible  <bruno@clisp.org>
8294
8295         * lib/gl_oset.c (gl_oset_add): Fix return type.
8296
8297 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
8298
8299         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
8300
8301 2006-10-02  Eric Blake  <ebb9@byu.net>
8302
8303         * modules/strnlen (Depends-on): Add extensions.
8304
8305 2006-10-02  Eric Blake  <ebb9@byu.net>
8306
8307         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
8308         definition in 2.60+.
8309
8310 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
8311
8312         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
8313         checks.
8314
8315 2006-10-02  Bruno Haible  <bruno@clisp.org>
8316
8317         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
8318         to the AUTOMAKE_OPTIONS.
8319         Reported by Jim Meyering.
8320
8321 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
8322
8323         Work around bug in Solaris 10 /proc file system:
8324         /proc/self/fd/NNN/.. isn't the parent directory of
8325         the directory whose file descriptor is NNN.  This needs to
8326         be worked around at run time, not compile time, since a
8327         program might be built on Solaris 8, where things work, and
8328         run on Solaris 10.
8329         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
8330         to use the following interface instead:
8331         (OPENAT_BUFFER_SIZE): New macro.
8332         (openat_proc_name): New function.
8333         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
8334         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
8335         Likewise.
8336         * lib/openat-proc.c: New file.
8337         * modules/openat (Files): Add lib/openat-proc.c.
8338         (Depends-on): Add same-inode, stdbool.
8339         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
8340
8341 2006-09-29  Bruno Haible  <bruno@clisp.org>
8342
8343         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
8344         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
8345         argument. Set stdout_closed before testing for ferror, not after.
8346         (fwriteerror, fwriteerror_no_ebadf): New functions.
8347
8348 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8349
8350         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
8351
8352 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
8353
8354         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
8355         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
8356
8357 2006-09-28  Jim Meyering  <jim@meyering.net>
8358
8359         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
8360         Include <unistd.h>.
8361
8362 2006-09-28  Bruno Haible  <bruno@clisp.org>
8363
8364         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
8365         * modules/linkedhash-list (Depends-on): Likewise.
8366         * modules/rbtreehash-list (Depends-on): Likewise.
8367
8368 2006-09-28  Bruno Haible  <bruno@clisp.org>
8369
8370         * lib/strndup.h: Simplify the redefinition of strndup.
8371         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
8372         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
8373
8374 2006-09-28  Bruno Haible  <bruno@clisp.org>
8375
8376         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
8377         * lib/gl_linkedhash_list.c: Likewise.
8378         * lib/gl_rbtreehash_list.c: Likewise.
8379
8380 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
8381
8382         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
8383         getaddrinfo.
8384
8385         * lib/__fpending.h: Don't include <stdio_ext.h> unless
8386         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
8387         it causes <stdio_ext.h> to cause a compile-time error.
8388         Problem reported by Nelson H. F. Beebe.
8389         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
8390         of HAVE_DECL___PENDING.
8391
8392         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
8393         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
8394         declaration.
8395
8396 2006-09-27  Jim Meyering  <jim@meyering.net>
8397
8398         This file could end up with a definition for a function
8399         named __strndup, rather than rpl_strndup on a system with
8400         incomplete weak_alias support.
8401         * lib/strndup.c (strndup): Rename from __strndup.
8402         Remove #defines that used to map __strndup to strndup.
8403         Don't use K&R prototypes.
8404         Remove LIBC-related code, since this file is not sync'd with glibc.
8405         * lib/strndup.h: Revamp, accordingly.
8406         * m4/strndup.m4: Modernize.
8407
8408 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
8409
8410         * modules/savewd (Depends-on): Add 'raise'.
8411         * lib/savewd.c: Include <signal.h>, for 'raise'.
8412
8413 2006-09-26  Jim Meyering  <jim@meyering.net>
8414
8415         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
8416         when we detect Darwin 8.7.0's acl_get_file bug.
8417         Rearrange to perform the new (below) run-test while $LIBS
8418         contains any acl-related library.  Set USE_ACL at the end.
8419         (gl_ACL_GET_FILE): New function.
8420
8421 2006-09-26  Eric Blake  <ebb9@byu.net>
8422
8423         * lib/verror.c: Include <config.h> unconditionally.
8424
8425 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
8426
8427         * modules/clock-time (Maintainer): Add self.
8428         * modules/getlogin_r (Depends-on): Add extensions.
8429
8430 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8431
8432         * modules/clock-time: New module.
8433         * modules/nanosleep (Depends-on): Add clock-time.
8434         * modules/gethrxtime (Depends-on): Likewise.
8435         * modules/gettime (Depends-on): Likewise.
8436         * modules/settime (Depends-on): Likewise.
8437
8438         * modules/fts-lgpl: Depend on openat.
8439         * modules/mkancesdirs: Depend on savewd.
8440         * modules/mkdir-p: Likewise.
8441
8442 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8443
8444         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
8445
8446         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
8447         `gl_have_arbitrary_file_name_length_limit' to
8448         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
8449         actually works between configure runs.
8450
8451 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8452             Bruno Haible  <bruno@clisp.org>
8453
8454         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
8455
8456 2006-09-25  Jim Meyering  <jim@meyering.net>
8457
8458         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
8459         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
8460
8461 2006-09-25  Eric Blake  <ebb9@byu.net>
8462
8463         * gnulib-tool (func_import, func_create_testdir): Fix typos in
8464         exec's in 2006-09-18 patch when shuffling fds.
8465
8466 2006-09-25  Bruno Haible  <bruno@clisp.org>
8467
8468         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
8469         Reported by Jim Meyering.
8470
8471 2006-09-24  Jim Meyering  <jim@meyering.net>
8472
8473         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
8474         compare a pointer against a literal "0".  That caused failures with
8475         at least HP-UX's hpcc.
8476
8477 2006-09-22  Simon Josefsson  <jas@extundo.com>
8478
8479         * modules/gc-sha1:
8480         * modules/gc-md4:
8481         * modules/gc-hmac-sha1:
8482         * modules/gc-hmac-md5:
8483         * modules/gc-des:
8484         * modules/gc-arcfour: Distribute more files.
8485
8486 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8487
8488         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
8489         (gl_linked_iterator_from_to): Initialize struct completely.
8490         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
8491         (gl_tree_iterator_from_to): Likewise
8492         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
8493         * lib/gl_array_list.c [lint] (gl_array_iterator)
8494         (gl_array_iterator_from_to): Likewise.
8495         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
8496         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
8497         (gl_carray_iterator_from_to): Likewise.
8498
8499         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
8500         * lib/md4.c (md4_process_block): Remove unused variable.
8501         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
8502         parentheses for clarity.
8503
8504 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8505
8506         * modules/bison-i18n (Depends-on): Add gettext.
8507
8508 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8509
8510         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
8511         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
8512         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
8513         also add missing comma that caused broken test.
8514         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
8515         stdlib.h, for `abort'.
8516         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
8517         variables.
8518         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
8519         include unistd.h if present, for `rmdir'.
8520         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
8521         variables.
8522         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
8523         in the process include standard headers for prototypes.
8524         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
8525         gets declared on GNU/Linux.
8526         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
8527         unistd.h, for `rmdir'.
8528         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
8529
8530         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
8531         always true.
8532         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
8533
8534         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
8535
8536 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8537
8538         * gnulib-tool (func_version): Create output all at once.  This
8539         may help avoid triggering unnecessary SIGPIPEs, and at any
8540         rate it doesn't hurt.
8541
8542 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8543             Bruno Haible  <bruno@clisp.org>
8544
8545         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
8546         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
8547         * m4/signed.m4 (bh_C_SIGNED): Likewise.
8548
8549         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
8550         (gl_FUNC_VASPRINTF): Invoke it.
8551
8552 2006-09-22  Bruno Haible  <bruno@clisp.org>
8553
8554         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
8555         getloadavg.c as first argument.
8556
8557 2006-09-22  Bruno Haible  <bruno@clisp.org>
8558
8559         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
8560         at the beginning of the gl_INIT macro.
8561         * modules/getloadavg (configure.ac): Pass $gl_source_base to
8562         gl_GETLOADAVG.
8563
8564 2006-09-22  Bruno Haible  <bruno@clisp.org>
8565
8566         * gnulib-tool (func_create_megatestdir): Don't include the config-h
8567         module.
8568         Suggested by Ralf Wildenhues.
8569
8570 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
8571
8572         Import this patch from libc:
8573
8574         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
8575
8576         * lib/regex_internal.c (re_string_reconstruct): Handle
8577         offset < pstr->valid_raw_len && pstr->offsets_needed case.
8578         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
8579         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
8580         re_string_context_at.
8581
8582         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
8583         now requires it.
8584         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
8585         gl_REGEX now does it for us.
8586         (gl_REGEX): Add test taken from
8587         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
8588
8589         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
8590         Check that large offsets work.  Modernize Autoconf usages.
8591         Prefer "yes" to mean a good thing rather than a bad.
8592         Don't put "#define mkstemp" in config.h, as this might interfere
8593         with standard system headers that "#define mkstemp mkstemp64".
8594
8595         * modules/mkstemp (Depends-on): Add extensions, so that
8596         mkstemp is visible on some platforms.
8597         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
8598         (Include): Change to "mkstemp.h" from <stdlib.h>.
8599         (Files): Add mkstemp.h.
8600
8601         * lib/mkstemp.h: New file, since some standard headers
8602         #define mkstemp.
8603         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
8604         Include "mkstemp.h".
8605         Make the _LIBC code resemble glibc original more,
8606         e.g., use K&R style.
8607         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
8608         (mkstemp): Remove, since mkstemp.h does this for us.
8609         * lib/stdlib--.h: Include mkstemp.h.
8610
8611         Import this patch from libc:
8612
8613         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
8614
8615         * lib/tempname.c (__gen_tempname): Change attempts_min
8616         into a macro.  Use preprocessor to decide how to initialize
8617         attempts [Coverity CID 67].
8618
8619 2006-09-20  Bruno Haible  <bruno@clisp.org>
8620
8621         * lib/mkdtemp.c: Import from libc.
8622         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
8623                 * sysdeps/posix/tempname.c (__gen_tempname): Change
8624                 attempts_min into a macro.  Use preprocessor to decide how to
8625                 initialize attempts [Coverity CID 67].
8626         2001-11-27  Paul Eggert  <eggert@twinsun.com>
8627                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
8628                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
8629
8630 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8631
8632         * gnulib-tool (func_exit): New function, to allow to pass the
8633         exit status portably through the trap.  Use everywhere.
8634         (--help, --version): Signal a write error.
8635         (trap): catch SIGPIPE, for write errors.
8636         Exit at the end of the trap, with the correct exit status.
8637
8638 2006-09-19  Karl Berry  <karl@gnu.org>
8639
8640         * doc/gnulib.texi: note about the license texinfo files.
8641
8642 2006-09-19  Eric Blake  <ebb9@byu.net>
8643
8644         * gnulib-tool: Avoid space-tab.
8645
8646 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
8647
8648         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
8649         that prevented coreutils 6.1 from building.  Problem reported
8650         by Petter Reinholdtsen.
8651
8652 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
8653
8654         * gnulib-tool (avoidlist): Fix typo that broke options like
8655         --avoid=lock that are used by coreutils bootstrap.
8656
8657 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
8658
8659         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
8660         more systematically.
8661
8662 2006-09-18  Jim Meyering  <jim@meyering.net>
8663
8664         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
8665
8666 2006-09-18  Bruno Haible  <bruno@clisp.org>
8667
8668         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
8669
8670 2006-09-18  Bruno Haible  <bruno@clisp.org>
8671
8672         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
8673         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
8674         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
8675         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
8676         * m4/gettext.m4: Require autoconf >= 2.52.
8677         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
8678         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
8679         of gl_cv_header_inttypes_h.
8680
8681 2006-09-18  Bruno Haible  <bruno@clisp.org>
8682
8683         * lib/javaversion.c: Include configmake.h.
8684
8685 2006-09-18  Bruno Haible  <bruno@clisp.org>
8686
8687         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
8688         avoid that the while loops be executed in a subshell.
8689
8690 2006-09-18  Bruno Haible  <bruno@clisp.org>
8691
8692         * MODULES.html.sh (func_module): Break long lines.
8693         Suggested by Bruce Korb <bkorb@gnu.org>.
8694
8695 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8696
8697         Speed up by a factor of 1.12.
8698         * gnulib-tool (nl): New variable.
8699         (func_import): Rewrite include directive extraction to only read each
8700         directive once.
8701
8702 2006-09-17  Bruno Haible  <bruno@clisp.org>
8703
8704         * modules/javaversion (Makefile.am): Remove DEFS setting.
8705         (Depends-on): Add configmake, for PKGDATADIR definition.
8706
8707 2006-09-17  Bruno Haible  <bruno@clisp.org>
8708
8709         * gnulib-tool (func_create_testdir): Rewrite all files at once.
8710
8711 2006-09-17  Bruno Haible  <bruno@clisp.org>
8712
8713         * gnulib-tool (func_append): New function, stolen from libtool.m4.
8714         (func_modules_transitive_closure, func_modules_add_dummy,
8715         func_modules_to_filelist, func_import, func_create_testdir,
8716         func_create_megatestdir, ...): Use it wherever possible.
8717         Suggested by Ralf Wildenhues.
8718
8719 2006-09-16  Karl Berry  <karl@gnu.org>
8720
8721         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
8722         to avoid sectioning errors.
8723         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
8724         [ifinfo]: blank line after @center-ed titles.
8725         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
8726         Spell FSF address consistently with others.
8727         (These changes approved by rms.)
8728
8729 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8730
8731         Speed up by a factor of 1.61.
8732         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
8733         already checked module names again.
8734
8735 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8736
8737         Speed up by a factor of 1.13.
8738         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
8739         for new_files, and the input to func_add_or_update.
8740
8741 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8742
8743         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
8744         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
8745
8746 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8747
8748         * modules/mkancesdirs (Depends-on): Add fcntl.
8749         * modules/savewd: New file.
8750         * MODULES.html.sh (File system functions): Add savewd.
8751
8752         * modules/configmake (Makefile.am): Add support for the
8753         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
8754
8755 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8756
8757         * m4/savewd.m4: New file.
8758
8759 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8760
8761         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
8762         (dirchownmod): New arg FD.  All callers changed.
8763         Use FD rather than opening the directory ourself, as opening is
8764         now the caller's responsibility.
8765         * lib/dirchownmod.h: Likewise.
8766         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
8767         hosts that require <sys/types.h> before <sys/stat.h>.  Include
8768         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
8769         (test_dir): Remove.
8770         (mkancesdirs): Return length of prefix of FILE that has already
8771         been made, or -2 if there is a child doing the work.  Redo
8772         algorithm so that it is O(N) rather than O(N**2).  Optimize away
8773         ".", and treat ".." specially since it might stray back into
8774         already-created areas.  Use a subprocess if necessary.  New arg
8775         WD; all users changed.  MAKE_DIR function should now return 1
8776         if it creates a directory that is not readable.  Return -2 if
8777         a child process is spun off.
8778         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
8779         Adjust signature to match code.
8780         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
8781         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
8782         all users changed.
8783         * lib/savewd.c, lib/savewd.h: New files.
8784
8785 2006-09-15  Jim Meyering  <jim@meyering.net>
8786
8787         * modules/rename-dest-slash: New module.
8788         * MODULES.html.sh (posix_compat): Add it here.
8789
8790         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
8791
8792 2006-09-15  Jim Meyering  <jim@meyering.net>
8793
8794         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
8795         file.
8796
8797         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
8798
8799 2006-09-15  Jim Meyering  <jim@meyering.net>
8800
8801         * lib/rename-dest-slash.c (has_trailing_slash): Use
8802         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
8803         (rpl_rename_dest_slash): Perform the cheaper trailing slash
8804         test before testing whether SRC is a directory.
8805         Suggestions from Bruno Haible.
8806
8807         Avoid a warning about an unused variable.
8808         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
8809         into the #ifdef block where it's used.
8810
8811         * lib/rename-dest-slash.c: New file.
8812
8813 2006-09-14  Bruno Haible  <bruno@clisp.org>
8814
8815         * lib/allocsa.c: Include <config.h> unconditionally.
8816         * lib/asnprintf.c: Likewise.
8817         * lib/asprintf.c: Likewise.
8818         * lib/c-strcasecmp.c: Likewise.
8819         * lib/c-strcasestr.c: Likewise.
8820         * lib/c-strncasecmp.c: Likewise.
8821         * lib/c-strstr.c: Likewise.
8822         * lib/classpath.c: Likewise.
8823         * lib/clean-temp.c: Likewise.
8824         * lib/concatpath.c: Likewise.
8825         * lib/copy-file.c: Likewise.
8826         * lib/csharpcomp.c: Likewise.
8827         * lib/csharpexec.c: Likewise.
8828         * lib/execute.c: Likewise.
8829         * lib/fatal-signal.c: Likewise.
8830         * lib/findprog.c: Likewise.
8831         * lib/fwriteerror.c: Likewise.
8832         * lib/gl_array_list.c: Likewise.
8833         * lib/gl_array_oset.c: Likewise.
8834         * lib/gl_avltree_list.c: Likewise.
8835         * lib/gl_avltree_oset.c: Likewise.
8836         * lib/gl_avltreehash_list.c: Likewise.
8837         * lib/gl_carray_list.c: Likewise.
8838         * lib/gl_linked_list.c: Likewise.
8839         * lib/gl_linkedhash_list.c: Likewise.
8840         * lib/gl_list.c: Likewise.
8841         * lib/gl_oset.c: Likewise.
8842         * lib/gl_rbtree_list.c: Likewise.
8843         * lib/gl_rbtree_oset.c: Likewise.
8844         * lib/gl_rbtreehash_list.c: Likewise.
8845         * lib/imaxabs.c: Likewise.
8846         * lib/imaxdiv.c: Likewise.
8847         * lib/javacomp.c: Likewise.
8848         * lib/javaexec.c: Likewise.
8849         * lib/javaversion.c: Likewise.
8850         * lib/linebreak.c: Likewise.
8851         * lib/localcharset.c: Likewise.
8852         * lib/lock.c: Likewise.
8853         * lib/mbchar.c: Likewise.
8854         * lib/mbswidth.c: Likewise.
8855         * lib/mkdtemp.c: Likewise.
8856         * lib/pipe.c: Likewise.
8857         * lib/printf-args.c: Likewise.
8858         * lib/printf-parse.c: Likewise.
8859         * lib/progname.c: Likewise.
8860         * lib/progreloc.c: Likewise.
8861         * lib/readlink.c: Likewise.
8862         * lib/sh-quote.c: Likewise.
8863         * lib/stpcpy.c: Likewise.
8864         * lib/stpncpy.c: Likewise.
8865         * lib/strcasecmp.c: Likewise.
8866         * lib/strcasestr.c: Likewise.
8867         * lib/strcspn.c: Likewise.
8868         * lib/striconv.c: Likewise.
8869         * lib/strncasecmp.c: Likewise.
8870         * lib/strnlen1.c: Likewise.
8871         * lib/strstr.c: Likewise.
8872         * lib/strtok_r.c: Likewise.
8873         * lib/tls.c: Likewise.
8874         * lib/tmpdir.c: Likewise.
8875         * lib/unicodeio.c: Likewise.
8876         * lib/unsetenv.c: Likewise.
8877         * lib/vasnprintf.c: Likewise.
8878         * lib/vasprintf.c: Likewise.
8879         * lib/wait-process.c: Likewise.
8880         * lib/xallocsa.c: Likewise.
8881         * lib/xsetenv.c: Likewise.
8882         * lib/xstriconv.c: Likewise.
8883
8884 2006-09-13  Simon Josefsson  <jas@extundo.com>
8885
8886         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
8887         that internally, suggested by Ralf Wildenhues
8888         <Ralf.Wildenhues@gmx.de>.
8889
8890 2006-09-13  Simon Josefsson  <jas@extundo.com>
8891
8892         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
8893         @LIBOBJS@.
8894         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8895
8896 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
8897
8898         * lib/_fpending.c: Include <config.h> unconditionally, since we no
8899         longer worry about uses that don't define HAVE_CONFIG_H.
8900         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
8901         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
8902         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
8903         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
8904         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
8905         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
8906         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
8907         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
8908         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
8909         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
8910         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
8911         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
8912         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
8913         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
8914         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
8915         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
8916         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
8917         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
8918         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
8919         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
8920         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
8921         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
8922         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
8923         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
8924         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
8925         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
8926         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
8927         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
8928         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
8929         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
8930         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
8931         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
8932         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
8933         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
8934         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
8935         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
8936         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
8937         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
8938         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
8939         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
8940         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
8941         Likewise.
8942
8943 2006-09-13  Eric Blake  <ebb9@byu.net>
8944
8945         * lib/getopt.c: Fix typo in last commit.
8946
8947 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
8948
8949         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
8950         dgettext.
8951
8952 2006-09-12  Jim Meyering  <jim@meyering.net>
8953
8954         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
8955         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
8956         Reported by Nelson H. F. Beebe.
8957
8958 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8959
8960         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
8961         program_invocation_name and program_invocation_short_name are
8962         initialized.
8963         * lib/argp-namefrob.h: Move declarations of program_invocation_name
8964         and program_invocation_short_name to argp.h, so they are visible
8965         to user programs.
8966         * lib/argp.h: Likewise
8967
8968 2006-09-10  Bruno Haible  <bruno@clisp.org>
8969
8970         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
8971         m4/inttypes_h.m4, m4/uintmax_t.m4.
8972
8973 2006-09-10  Bruno Haible  <bruno@clisp.org>
8974
8975         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
8976         gl_AC_TYPE_UINTMAX_T.
8977
8978 2006-09-10  Bruno Haible  <bruno@clisp.org>
8979
8980         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
8981
8982 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
8983
8984         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
8985         convention.  Text proposed by Bruno Haible.
8986         (struct argp_option): Document the use of N_() wrappers.
8987
8988         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
8989         '\v', and translate the two parts separately, instead of feeding
8990         the whole string to gettext.  This allows to exclude
8991         '\v' from the strings visible to the translator by writing doc
8992         strings as N_("..") "\v" N_("..").
8993
8994 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
8995
8996         * config/srclist.txt: Undo latest change; the bug was fixed.
8997
8998 2006-09-09  Bruno Haible  <bruno@clisp.org>
8999
9000         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
9001         assignments if building a library without libtool.
9002         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
9003         in func_emit_lib_Makefile_am.
9004         (func_import): When building a static library libfoo.a, arrange to
9005         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
9006         (func_create_testdir): Likewise.
9007         * modules/gc (configure.ac, Makefile.am): If building statically,
9008         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
9009         * modules/iconvme (configure.ac, Makefile.am): Likewise.
9010         * modules/striconv (configure.ac, Makefile.am): Likewise.
9011         Based on a suggestion by Ralf Wildenhues.
9012
9013 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9014
9015         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
9016         Check for unistd.h too, since Autoconf doesn't assume POSIX.
9017         Also:
9018
9019         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9020         Add year_2050_test to catch glibc bug 2821
9021         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9022
9023         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
9024         Prefer #ifdef to #if.
9025
9026         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
9027         Return from 'main' instead of calling 'exit'.
9028
9029 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9030
9031         * lib/mktime.c (guess_time_tm): Fix bug where mktime
9032         returned the maximum time_t value rather than (time_t) -1.
9033         Problem originally reported by William Bardwell
9034         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
9035
9036         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9037         Moved to here ...
9038         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
9039         ... from here.
9040
9041 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
9042
9043         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
9044         2821 is fixed.
9045
9046 2006-09-08  Jim Meyering  <jim@meyering.net>
9047
9048         Don't make generated files read-only.  That would bother too many
9049         people.  However, do retain the ability to work when targets are
9050         read-only: remove the destination and temporary files before writing
9051         them (when generated via sed or echo), or by using the -f option for
9052         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
9053         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9054         * modules/byteswap, modules/configmake, modules/fcntl:
9055         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9056         * modules/localcharset, modules/netinet_in, modules/poll:
9057         * modules/stdbool, modules/stdint, modules/sys_select:
9058         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9059
9060 2006-09-08  Jim Meyering  <jim@meyering.net>
9061
9062         Avoid new build failure on FreeBSD 6.0.
9063         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
9064         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
9065         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
9066
9067 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9068
9069         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
9070
9071 2006-09-07  Jim Meyering  <jim@meyering.net>
9072
9073         Fix global typo in last change: use chmod u-w, not chmod u-x.
9074         Spotted by Paul Eggert and Bruce Korb.
9075         * modules/alloca-opt, modules/argz, modules/arpa_inet:
9076         * modules/byteswap, modules/configmake, modules/fcntl:
9077         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
9078         * modules/localcharset, modules/netinet_in, modules/poll:
9079         * modules/stdbool, modules/stdint, modules/sys_select:
9080         * modules/sys_socket, modules/sys_stat, modules/sysexits:
9081
9082 2006-09-06  Jim Meyering  <jim@meyering.net>
9083
9084         Make generated files be read-only.
9085         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
9086         Ensure that each generated file is now read-only.
9087         * modules/argz: Likewise.
9088         * modules/arpa_inet: Likewise.
9089         * modules/byteswap: Likewise.
9090         * modules/configmake: Likewise.
9091         * modules/fcntl: Likewise.
9092         * modules/fnmatch: Likewise.
9093         * modules/getopt: Likewise.
9094         * modules/glob: Likewise.
9095         * modules/inttypes: Likewise.
9096         * modules/netinet_in: Likewise.
9097         * modules/poll: Likewise.
9098         * modules/stdbool: Likewise.
9099         * modules/stdint: Likewise.
9100         * modules/sys_select: Likewise.
9101         * modules/sys_socket: Likewise.
9102         * modules/sys_stat: Likewise.
9103         * modules/sysexits: Likewise.
9104         * modules/localcharset: Same as above, but continue using temporary
9105         file named "t-$@" (why different?) rather than the "$@-t" used
9106         everywhere else.
9107
9108         * modules/sysexits (Makefile.am): Replace literal occurrences
9109         of "sysexit.h" more readable, and more consistent, "$@".
9110
9111 2006-09-06  Bruno Haible  <bruno@clisp.org>
9112
9113         * modules/striconv: New file.
9114         * modules/xstriconv: New file.
9115         * MODULES.html.sh (Internationalization functions): Add striconv,
9116         xstriconv.
9117
9118 2006-09-06  Bruno Haible  <bruno@clisp.org>
9119
9120         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
9121         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
9122         not using libtool correctly.
9123
9124 2006-09-06  Bruno Haible  <bruno@clisp.org>
9125
9126         * lib/striconv.h: New file.
9127         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
9128         iconvstring.c.
9129         * lib/xstriconv.h: New file.
9130         * lib/xstriconv.c: New file.
9131
9132 2006-09-06  Bruno Haible  <bruno@clisp.org>
9133
9134         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
9135         lib_..._LDFLAGS.
9136
9137 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9138
9139         * lib/argz_.h: Sync from Libtool.
9140
9141         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
9142                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
9143
9144         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
9145
9146 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9147
9148         * modules/trim: New file.
9149
9150 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
9151
9152         * lib/trim.h: New file.
9153         * lib/trim.c: New file.
9154
9155 2006-09-05  Bruno Haible  <bruno@clisp.org>
9156
9157         * MODULES.html.sh (String handling): Add trim.
9158
9159 2006-09-04  Karl Berry  <karl@gnu.org>
9160
9161         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
9162         until next release.
9163
9164 2006-09-03  Bruno Haible  <bruno@clisp.org>
9165
9166         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
9167         correctly.
9168
9169 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9170
9171         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
9172         not gl_GETLOADAVG.  Omit unneeded semicolons.
9173         Problems reported by Ralf Wildenhues in
9174         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9175         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
9176         at the end, which is the usual gnulib style.
9177
9178         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
9179         of doing all the work ourselves.
9180         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
9181         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
9182
9183 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9184
9185         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
9186         Problem reported by Ralf Wildenhues in
9187         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
9188
9189         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
9190         HAVE_STRUCT_STATFS_F_FSTYPENAME.
9191
9192 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
9193
9194         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
9195         yesterday's patch by changing test -n to test -z.
9196
9197 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9198
9199         * modules/getloadavg (Files): Add m4/getloadavg.m4.
9200         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
9201         the former is now obsolescent.
9202
9203         * modules/chdir-long (Depends-on): Add fcntl.
9204
9205 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9206
9207         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
9208         obsolescent, and programs should use gnulib instead.
9209         * m4/getloadavg.m4: New file, with contents taken from Autoconf
9210         but with prefixes changed.
9211
9212 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
9213
9214         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
9215         or stdbool.h, because they might not exist while configuring.
9216
9217         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
9218         Don't include unistd.h or limits.h; not needed, since chdir-long.h
9219         does that for us.
9220         (O_DIRECTORY): Remove.
9221
9222 2006-08-31  Eric Blake  <ebb9@byu.net>
9223
9224         * gnulib-tool: Don't let emacs change spaces to TAB.
9225
9226 2006-08-31  Bruno Haible  <bruno@clisp.org>
9227
9228         * gnulib-tool: When calling func_import more than once, do it in a
9229         subshell.
9230         Reported by Eric Blake <ebb9@byu.net>.
9231
9232 2006-08-31  Bruno Haible  <bruno@clisp.org>
9233
9234         * gnulib-tool (nl): Remove variable.
9235         (sed_transform_lib_file): Use more robust test for config-h module.
9236         (func_import): Fix typo in 2006-08-25 patch.
9237
9238 2006-08-31  Bruno Haible  <bruno@clisp.org>
9239
9240         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
9241         specified, augment Makefile.am variables instead of assigning them.
9242
9243 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9244
9245         Work around a bug in both the Linux and SunOS 64-bit kernels:
9246         nanosleep mishandles sleeps for longer than 2**31 seconds.
9247         Problem reported by Frank v Waveren in
9248         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9249         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
9250         Check for nanosleep bug.
9251         (LIB_NANOSLEEP): Append clock_gettime library if needed.
9252
9253 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9254
9255         Work around a bug in both the Linux and SunOS 64-bit kernels:
9256         nanosleep mishandles sleeps for longer than 2**31 seconds.
9257         Problem reported by Frank v Waveren in
9258         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
9259         * lib/nanosleep.c (BILLION): New constant.
9260         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
9261         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
9262         implementation.
9263
9264 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9265
9266         * modules/nanosleep (Depends-on): Add gettime.
9267
9268 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
9269         and Simon Josefsson  <jas@extundo.com>
9270         and Oskar Liljeblad  <oskar@osk.mine.nu>
9271
9272         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
9273         * gnulib-tool (func_import): New license type 'unmodifiable license
9274         text'.
9275         * modules/fdl: Use it.  Longer description.
9276         * module/gpl, module/lgpl: New files.
9277
9278 2006-08-30  Jim Meyering  <jim@meyering.net>
9279
9280         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
9281         shadowing the parameter.
9282
9283 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9284
9285         Sync from Libtool:
9286
9287         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9288
9289         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
9290         sharing with gnulib.  Report by Eric Blake.
9291
9292 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9293
9294         * modules/isapipe: New file.
9295         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
9296
9297 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9298
9299         * modules/configmake (Makefile.am): Add a comment, and omit
9300         the CONFIGMAKE_ prefix from generated macro names.  Suggested
9301         by Bruno Haible.
9302
9303 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9304
9305         * m4/isapipe.m4: New file.
9306
9307 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
9308
9309         * lib/isapipe.c, lib/isapipe.h: New files.
9310
9311 2006-08-29  Jim Meyering  <jim@meyering.net>
9312
9313         * modules/configmake (Makefile.am): Make configmake.h depend on
9314         Makefile.  Otherwise, a stale configmake.h could hang around.
9315
9316 2006-08-29  Eric Blake  <ebb9@byu.net>
9317
9318         * lib/error.c (error_at_line, print_errno_message): Match libc, after
9319         resolution of upstream bug 3044.
9320
9321 2006-08-29  Bruno Haible  <bruno@clisp.org>
9322
9323         * modules/localcharset (Depends-on): Add configmake.
9324         (Makefile.am): Remove setting of LIBDIR through DEFS.
9325
9326 2006-08-29  Bruno Haible  <bruno@clisp.org>
9327
9328         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
9329         defined.
9330
9331 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9332
9333         * modules/fcntl: New file.
9334         * modules/chdir-safer (Depends-on): Add fcntl.
9335         * modules/fts: Likewise.
9336         * modules/mkdir-p: Likewise.
9337
9338         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
9339         This undoes the most recent change, since we're now addressing the
9340         problem in a different way.
9341
9342         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
9343         into output, since the output might be called Makefile.am even
9344         if $makefile_name is something different.
9345         (func_import): Use $makefile_am rather than
9346         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
9347         empty.
9348
9349         * modules/inttypes (Files): Add m4/inttypes-h.m4.
9350
9351 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9352
9353         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
9354         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
9355         recent change to stdint.m4, since we're now addressing the problem in a
9356         different way.
9357
9358 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9359
9360         * m4/fcntl_h.m4: New file.
9361
9362 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
9363
9364         * lib/fcntl_.h: New file.
9365         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
9366         the fcntl module.
9367         * lib/dirchownmod.c: Likewise.
9368         * lib/fts.c: Likewise.
9369
9370         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
9371         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
9372         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
9373         just before including <inttypes.h>, to avoid circular inclusion.
9374
9375 2006-08-28  Jim Meyering  <jim@meyering.net>
9376
9377         * doc/visibility.texi: Actually read and correct the grammar of the
9378         sentence affected by yesterday's change.
9379
9380 2006-08-28  Eric Blake  <ebb9@byu.net>
9381
9382         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
9383         needs wrapper.
9384
9385 2006-08-28  Eric Blake  <ebb9@byu.net>
9386
9387         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
9388
9389 2006-08-28  Eric Blake  <ebb9@byu.net>
9390
9391         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
9392
9393 2006-08-28  Bruno Haible  <bruno@clisp.org>
9394
9395         * modules/c-strstr: New file, from GNU gettext.
9396         * MODULES.html.sh (String handling): Add c-strstr.
9397
9398 2006-08-28  Bruno Haible  <bruno@clisp.org>
9399
9400         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
9401         macros.
9402         Reported by Eric Blake.
9403
9404 2006-08-28  Bruno Haible  <bruno@clisp.org>
9405
9406         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
9407         (VASNPRINTF): Return a string of length > INT_MAX without failing.
9408         * lib/vasprintf.c: Include errno.h, limits.h.
9409         (EOVERFLOW): New fallback definition.
9410         (vasprintf): Test here whether the string length is > INT_MAX.
9411         * lib/vsnprintf.c: Include errno.h, limits.h.
9412         (EOVERFLOW): New fallback definition.
9413         (vsnprintf): Fix bug when generated string was too long for the buffer.
9414         Test here whether the string length is > INT_MAX.
9415
9416 2006-08-28  Bruno Haible  <bruno@clisp.org>
9417
9418         * lib/inttypes_.h (SCNX*): Remove definitions.
9419         Reported by Eric Blake.
9420
9421 2006-08-28  Bruno Haible  <bruno@clisp.org>
9422
9423         * lib/c-strstr.h: New file, from GNU gettext.
9424         * lib/c-strstr.c: New file, from GNU gettext.
9425
9426 2006-08-28  Bruno Haible  <bruno@clisp.org>
9427
9428         * gnulib-tool: Reorder some statements.
9429
9430 2006-08-28  Bruno Haible  <bruno@clisp.org>
9431
9432         * gnulib-tool: New option --makefile-name.
9433         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
9434         $makefile_name.
9435         (func_import): Write $makefile_name to the cache file, and read it from
9436         there unless explicitly specified. Use $makefile_name as file name
9437         instead of Makefile.am. Adjust the recommendations accordingly.
9438
9439 2006-08-28  Bruno Haible  <bruno@clisp.org>
9440
9441         * gnulib-tool (func_verify_module): Check against misapplying patch.
9442
9443 2006-08-28  Bruno Haible  <bruno@clisp.org>
9444
9445         * gnulib-tool (func_relativize, func_relconcat): New functions.
9446         Give an error if --local-dir is given with --update.
9447         Remove trailing slashes from $local_gnulib_dir.
9448         (func_import): Store the relativized $local_gnulib_dir in
9449         gnulib-cache.m4, and read it from there if not specified explicitly.
9450
9451 2006-08-28  Bruno Haible  <bruno@clisp.org>
9452
9453         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
9454         is the current directory. Respect also $local_gnulib_dir.
9455
9456 2006-08-28  Bruno Haible  <bruno@clisp.org>
9457             Simon Josefsson  <jas@extundo.com>
9458
9459         BeOS portability.
9460         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
9461
9462 2006-08-27  Jim Meyering  <jim@meyering.net>
9463
9464         * doc/visibility.texi: Remove duplicate word: "pointer".
9465
9466 2006-08-26  Bruno Haible  <bruno@clisp.org>
9467
9468         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
9469         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
9470         (Makefile.am): Create inttypes.h from inttypes_.h.
9471         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
9472
9473         * modules/imaxabs: New file.
9474
9475         * modules/imaxdiv: New file.
9476
9477 2006-08-26  Bruno Haible  <bruno@clisp.org>
9478
9479         * m4/inttypes.m4: New file.
9480         * m4/_inttypes_h.m4: Remove file.
9481         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
9482         PRI_MACROS_BROKEN.
9483         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
9484
9485         * m4/imaxabs.m4: New file.
9486
9487         * m4/imaxdiv.m4: New file.
9488
9489 2006-08-26  Bruno Haible  <bruno@clisp.org>
9490
9491         * lib/inttypes_.h: New file.
9492         * lib/inttypes.h: Remove file.
9493         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
9494
9495         * lib/imaxabs.c: New file.
9496
9497         * lib/imaxdiv.c: New file.
9498
9499 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9500
9501         New config-h module, so that "make" output needn't be cluttered
9502         by -DHAVE_CONFIG_H.
9503         * MODULES.html.sh (Support for building libraries and executables):
9504         Add config-h.
9505         * modules/config-h: New file.
9506         * gnulib-tool (nl, sed_transform_lib_file): New vars.
9507         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
9508         the config-h module is used.
9509
9510         New configmake module, so that "make" output needn't be cluttered
9511         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
9512         * MODULES.html.sh (Support for building libraries and executables):
9513         Add configmake.
9514         * modules/configmake: New file.
9515
9516 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
9517
9518         * m4/config-h.m4: New file.
9519
9520 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9521
9522         * config/srclist.txt: Add elisp-comp.
9523
9524 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
9525
9526         * MODULES.html.sh (Support for building libraries and executables):
9527         Add elisp-comp.
9528         * build-aux/elisp-comp: New file.
9529         * modules/elisp-comp: New file.
9530
9531 2006-08-24  Bruno Haible  <bruno@clisp.org>
9532
9533         * gnulib-tool (func_create_testdir): Use non-default values of
9534         sourcebase and m4base.
9535
9536 2006-08-24  Bruno Haible  <bruno@clisp.org>
9537
9538         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
9539         HTML structure.
9540
9541 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
9542
9543         * modules/openat (Depends-on): Add lchown.
9544
9545 2006-08-23  Bruno Haible  <bruno@clisp.org>
9546
9547         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
9548         of gl_LOCK_EARLY instead of gl_LOCK.
9549
9550 2006-08-23  Bruno Haible  <bruno@clisp.org>
9551
9552         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
9553         on OSF/1 to no.
9554         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
9555
9556 2006-08-23  Bruno Haible  <bruno@clisp.org>
9557
9558         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
9559         as unusable.
9560
9561         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
9562         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
9563         (gl_LOCK): New macro.
9564
9565 2006-08-22  Simon Josefsson  <jas@extundo.com>
9566
9567         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
9568         to md5 module.
9569
9570 2006-08-22  Simon Josefsson  <jas@extundo.com>
9571
9572         * MODULES.html.sh: Add "Support for maintaining and release
9573         projects".
9574
9575         * build-aux/gnupload: New file, from coreutils.
9576
9577 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9578
9579         Avoid the need for AC_LIBSOURCES in m4 macros.
9580         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
9581         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
9582         * modules/check-version (EXTRA_DIST): Add check-version.h.
9583         * modules/crc (EXTRA_DIST): Add crc.h.
9584         * modules/des (EXTRA_DIST): Add des.h.
9585         * modules/gc (EXTRA_DIST): Add gc.h.
9586         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
9587         * modules/getline (EXTRA_DIST): Add getline.h.
9588         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
9589         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
9590         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
9591         * modules/md2 (EXTRA_DIST): Add md2.h.
9592         * modules/md4 (EXTRA_DIST): Add md4.h.
9593         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
9594         * modules/read-file (EXTRA_DIST): Add read-file.h.
9595         * modules/readline (EXTRA_DIST): Add readline.h.
9596         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
9597         rijndael-api-fst.h.
9598
9599 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9600
9601         * m4/rijndael.m4 (gl_ARCFOUR):
9602         * m4/arctwo.m4 (gl_ARCTWO):
9603         * m4/check-version.m4 (gl_CHECK_VERSION):
9604         * m4/crc.m4 (gl_CRC):
9605         * m4/des.m4 (gl_DES):
9606         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
9607         * m4/gc.m4 (gl_GC):
9608         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
9609         * m4/getline.m4 (gl_FUNC_GETLINE):
9610         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
9611         * m4/hmac-md5.m4 (gl_HMAC_MD5):
9612         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
9613         * m4/md2.m4 (gl_MD2):
9614         * m4/md4.m4 (gl_MD4):
9615         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
9616         * m4/read-file.m4 (gl_FUNC_READ_FILE):
9617         * m4/readline.m4 (gl_FUNC_READLINE):
9618         * m4/rijndael.m4 (gl_RIJNDAEL):
9619         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
9620         to get the necessary .h files and whatnot.
9621
9622 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
9623
9624         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
9625         gnulib rather than the other way around.
9626         * config/srclistvars.sh (COREUTILS): Remove.
9627
9628 2006-08-22  Jim Meyering  <jim@meyering.net>
9629
9630         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
9631
9632         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
9633
9634 2006-08-22  Eric Blake  <ebb9@byu.net>
9635
9636         * modules/regexprops-generic: New file.
9637         * MODULES.html.sh (Support for building documentation): List it.
9638
9639 2006-08-22  Eric Blake  <ebb9@byu.net>
9640
9641         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
9642         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
9643         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
9644         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
9645
9646 2006-08-22  Bruno Haible  <bruno@clisp.org>
9647
9648         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
9649         and lib_LTLIBRARIES like the other lib_* variables.
9650
9651 2006-08-22  Bruno Haible  <bruno@clisp.org>
9652
9653         * build-aux/x-to-1.in: New file, from GNU gettext.
9654
9655 2006-08-22  Bruno Haible  <bruno@clisp.org>
9656
9657         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
9658         <utmpx.h> exists.
9659
9660 2006-08-22  Bruno Haible  <bruno@clisp.org>
9661
9662         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
9663         <utmpx.h> exists.
9664
9665 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
9666
9667         BeOS portability.
9668         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
9669         exist.
9670         Problem reported by Bruno Haible.
9671
9672 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
9673
9674         Avoid the need for AC_LIBSOURCES in m4 macros.
9675         * modules/acl (EXTRA_DIST): Add acl.h.
9676         * modules/argmatch (Files): Add m4/argmatch.m4.
9677         (configure.ac): Add gl_ARGMATCH.
9678         (EXTRA_DIST): Renamed from lib_SOURCES, for
9679         consistency with the other modules.  Remove argmatch.c.
9680         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
9681         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
9682         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
9683         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
9684         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
9685         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
9686         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
9687         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
9688         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
9689         * modules/closeout (EXTRA_DIST): Add closeout.h.
9690         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
9691         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
9692         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
9693         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
9694         dirname.h; remove basename.c and stripslash.c.
9695         * modules/exclude (EXTRA_DIST): Add exclude.h.
9696         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
9697         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
9698         * modules/file-type (EXTRA_DIST): Add file-type.h.
9699         * modules/filemode (EXTRA_DIST): Add filemode.h.
9700         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
9701         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
9702         * modules/fpending (EXTRA_DIST): Add __fpending.h.
9703         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
9704         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
9705         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
9706         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
9707         * modules/getdate (EXTRA_DIST): Add getdate.c.
9708         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
9709         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
9710         * modules/getpass (EXTRA_DIST): Add getpass.h.
9711         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
9712         * modules/group-member (EXTRA_DIST): Add group-member.h.
9713         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
9714         * modules/hash (EXTRA_DIST): Add hash.h.
9715         * modules/human (EXTRA_DIST): Add human.h.
9716         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
9717         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
9718         * modules/lchown (EXTRA_DIST): Add lchown.h.
9719         * modules/long-options (EXTRA_DIST): Add long-options.h.
9720         * modules/lstat (EXTRA_DIST): Add lstat.h.
9721         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
9722         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
9723         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
9724         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
9725         * modules/memxor (EXTRA_DIST): Add memxor.h.
9726         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
9727         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
9728         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
9729         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
9730         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
9731         * modules/physmem (EXTRA_DIST): Add physmem.h.
9732         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
9733         * modules/posixver (EXTRA_DIST): Add posixver.h.
9734         * modules/quote (EXTRA_DIST): Add quote.h.
9735         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
9736         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
9737         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
9738         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
9739         regex_internal.h regexec.c.
9740         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
9741         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
9742         * modules/same (EXTRA_DIST): Add same.h.
9743         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
9744         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
9745         * modules/savedir (EXTRA_DIST): Add savedir.h.
9746         * modules/sha1 (EXTRA_DIST): Add sha1.h.
9747         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
9748         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
9749         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
9750         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
9751         * modules/strdup (EXTRA_DIST): Add strdup.h.
9752         * modules/strftime (EXTRA_DIST): Add strftime.h.
9753         * modules/strndup (EXTRA_DIST): Add strndup.h.
9754         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
9755         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
9756         * modules/time_r (EXTRA_DIST): Add time_r.h.
9757         * modules/timespec (EXTRA_DIST): Add timespec.h.
9758         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
9759         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
9760         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
9761         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
9762         * modules/userspec (EXTRA_DIST): Add userspec.h.
9763         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
9764         * modules/utimens (EXTRA_DIST): Add utimens.h.
9765         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
9766         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
9767         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
9768         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
9769         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
9770         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
9771         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
9772         * modules/yesno (EXTRA_DIST): Add yesno.h.
9773
9774 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
9775
9776         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
9777
9778         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
9779         * m4/dev-ino.m4, same-inode.m4: Remove.
9780
9781         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
9782         * m4/acl.m4 (AC_FUNC_ACL):
9783         * m4/backupfile.m4 (gl_BACKUPFILE):
9784         * m4/c-strtod.m4 (gl_C99_STRTOLD):
9785         * m4/canon-host.m4 (gl_CANON_HOST):
9786         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
9787         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
9788         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
9789         * m4/cloexec.m4 (gl_CLOEXEC):
9790         * m4/close-stream.m4 (gl_CLOSE_STREAM):
9791         * m4/closeout.m4 (gl_CLOSEOUT):
9792         * m4/dirfd.m4 (gl_FUNC_DIRFD):
9793         * m4/dirname.m4 (gl_DIRNAME):
9794         * m4/exclude.m4 (gl_EXCLUDE):
9795         * m4/exitfail.m4 (gl_EXITFAIL):
9796         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
9797         * m4/file-type.m4 (gl_FILE_TYPE):
9798         * m4/filemode.m4 (gl_FILEMODE):
9799         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
9800         * m4/fpending.m4 (gl_FUNC_FPENDING):
9801         * m4/fprintftime.m4 (gl_FPRINTFTIME):
9802         * m4/fts.m4 (gl_FUNC_FTS):
9803         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
9804         * m4/getdate.m4 (gl_GETDATE):
9805         * m4/gethrxtime.m4 (gl_GETHRXTIME):
9806         * m4/getpagesize.m4 (gl_GETPAGESIZE):
9807         * m4/getpass.m4 (gl_FUNC_GETPASS):
9808         * m4/gettime.m4 (gl_GETTIME):
9809         * m4/getugroups.m4 (gl_GETUGROUPS):
9810         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
9811         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
9812         * m4/hard-locale.m4 (gl_HARD_LOCALE):
9813         * m4/hash.m4 (gl_HASH):
9814         * m4/idcache.m4 (gl_IDCACHE):
9815         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
9816         * m4/lchown.m4 (gl_FUNC_LCHOWN):
9817         * m4/long-options.m4 (gl_LONG_OPTIONS):
9818         * m4/lstat.m4 (gl_FUNC_LSTAT):
9819         * m4/md5.m4 (gl_MD5):
9820         * m4/memcasecmp.m4 (gl_MEMCASECMP):
9821         * m4/memcoll.m4 (gl_MEMCOLL):
9822         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
9823         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
9824         * m4/memxor.m4 (gl_MEMXOR):
9825         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
9826         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
9827         * m4/modechange.m4 (gl_MODECHANGE):
9828         * m4/mountlist.m4 (gl_MOUNTLIST):
9829         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
9830         * m4/openat.m4 (gl_FUNC_OPENAT):
9831         * m4/pathmax.m4 (gl_PATHMAX):
9832         * m4/physmem.m4 (gl_PHYSMEM):
9833         * m4/posixtm.m4 (gl_POSIXTM):
9834         * m4/posixver.m4 (gl_POSIXVER):
9835         * m4/quote.m4 (gl_QUOTE):
9836         * m4/quotearg.m4 (gl_QUOTEARG):
9837         * m4/readtokens.m4 (gl_READTOKENS):
9838         * m4/readutmp.m4 (gl_READUTMP):
9839         * m4/regex.m4 (gl_REGEX):
9840         * m4/safe-read.m4 (gl_SAFE_READ):
9841         * m4/safe-write.m4 (gl_SAFE_WRITE):
9842         * m4/same.m4 (gl_SAME):
9843         * m4/save-cwd.m4 (gl_SAVE_CWD):
9844         * m4/savedir.m4 (gl_SAVEDIR):
9845         * m4/settime.m4 (gl_SETTIME):
9846         * m4/sha1.m4 (gl_SHA1):
9847         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
9848         * m4/stat-macros.m4 (gl_STAT_MACROS):
9849         * m4/stat-time.m4 (gl_STAT_TIME):
9850         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
9851         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
9852         * m4/strdup.m4 (gl_FUNC_STRDUP):
9853         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
9854         * m4/strndup.m4 (gl_FUNC_STRNDUP):
9855         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
9856         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
9857         * m4/time_r.m4 (gl_TIME_R):
9858         * m4/timespec.m4 (gl_TIMESPEC):
9859         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
9860         * m4/unlinkdir.m4 (gl_UNLINKDIR):
9861         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
9862         * m4/userspec.m4 (gl_USERSPEC):
9863         * m4/utimecmp.m4 (gl_UTIMECMP):
9864         * m4/utimens.m4 (gl_UTIMENS):
9865         * m4/xalloc.m4 (gl_XALLOC):
9866         * m4/xgetcwd.m4 (gl_XGETCWD):
9867         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
9868         * m4/xreadlink.m4 (gl_XREADLINK):
9869         * m4/xstrtod.m4 (gl_XSTRTOD):
9870         * m4/yesno.m4 (gl_YESNO):
9871         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
9872         to get the necessary .h files and whatnot.
9873
9874 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
9875             Bruno Haible  <bruno@clisp.org>
9876
9877         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
9878         /bin/sh understanding of '!' conditional negation.
9879
9880 2006-08-21  Jim Meyering  <jim@meyering.net>
9881
9882         * modules/openat (Depends-on): Really alphabetize.
9883
9884         * modules/acl (Depends-on): Add error and quote.
9885
9886         * check-module (find_included_lib_files): Add at-func.c to the
9887         ok-to-include-more-than-once white list.
9888
9889         * modules/openat (Depends-on): Add lstat.  Alphabetize.
9890
9891 2006-08-21  Bruno Haible  <bruno@clisp.org>
9892
9893         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
9894         Emit a pkgdata_DATA variable only if some snippets add contents to it.
9895         Reported by Martin Lambers <marlam@marlam.de>.
9896
9897 2006-08-21  Bruno Haible  <bruno@clisp.org>
9898
9899         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
9900         specify an installation location, don't emit a noinst_LIBRARIES or
9901         noinst_LTLIBRARIES assignment.
9902
9903 2006-08-21  Bruno Haible  <bruno@clisp.org>
9904
9905         BeOS portability.
9906         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
9907         BeOS has mbrtowc() but no <wctype.h>.
9908
9909 2006-08-21  Bruno Haible  <bruno@clisp.org>
9910
9911         BeOS portability.
9912         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
9913         exist.
9914
9915 2006-08-21  Bruno Haible  <bruno@clisp.org>
9916
9917         BeOS portability.
9918         * lib/mbchar.h: Include <wctype.h> only if it exists.
9919
9920 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9921
9922         Remove files that are no longer needed by their respective modules.
9923         * m4/obstack.m4: Remove.
9924         * m4/strerror_r.m4: Remove.
9925         * m4/uint32_t.m4: Remove.
9926         * m4/uintptr_t.m4: Remove.
9927         * m4/ullong_max.m4: Remove.
9928         * m4/xstrtoimax.m4: Remove.
9929         * m4/xstrtoumax.m4: Remove.
9930
9931         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
9932         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
9933         dependencies now capture this.
9934
9935         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
9936         Do not use AC_LIBSOURCES, since gnulib modules now do this.
9937         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
9938         * m4/human.m4 (gl_HUMAN): Likewise.
9939         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
9940         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
9941
9942         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
9943
9944         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
9945         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
9946         stdint.
9947         * m4/human.m4 (gl_HUMAN): Likewise.
9948         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
9949         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
9950         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
9951         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
9952         * m4/xstrtol (gl_XSTRTOL): Likewise.
9953
9954         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
9955         AC_TYPE_LONG_LONG_INT.
9956         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
9957         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
9958         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
9959         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
9960
9961         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
9962         on stdbool.
9963
9964         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
9965         (gl_PREREQ_XSTRTOUL): Remove.
9966
9967         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
9968
9969         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
9970         mode.
9971
9972 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
9973
9974         Add and change modules to make it easier for coreutils to use
9975         gnulib-tool.
9976         * modules/backupfile (Files): Remove m4/d-ino.m4.
9977         (Depends-on): Add d-ino.
9978         * modules/cycle-check (Depends-on): Add stdint.
9979         (lib_SOURCES): Add cycle-check.h.
9980         * modules/d-ino: New module.
9981         * modules/d-type: New module.
9982         * modules/error (Files): Remove m4/strerror_r.m4.
9983         * modules/filemode (Files): Add m4/st_dm_mode.m4.
9984         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
9985         m4/inttypes_h.m4, m4/uintmax_t.m4.
9986         (Depends-on): Add stdint.
9987         (lib_SOURCES): Add fsusage.h.
9988         * modules/getcwd (Files): Remove d-ino.m4.
9989         (Depends-on): Add d-ino.
9990         * modules/getndelim2 (Depends-on): Add stdint.
9991         * modules/glob (Files): Remove m4/d-type.m4.
9992         (Depends-on): Add d-type.
9993         * modules/host-os: New module.
9994         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
9995         m4/inttypes_h.m4, m4/uintmax_t.m4.
9996         * Depends-on: Add stdint.
9997         (lib_SOURCES): Add human.h.
9998         * modules/inttostr (Files): Remove m4/intmax_t.m4,
9999         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
10000         m4/uintmax_t.m4, m4/ulonglong.m4.
10001         (Depends-on): Add stdint.
10002         (EXTRA_DIST): Add inttostr.h.
10003         * modules/lchmod: New module.
10004         * modules/link-follow: New module.
10005         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
10006         (Depends-on): Add lchmod.
10007         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
10008         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
10009         (Depends-on): Add stdint.
10010         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
10011         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
10012         (Depends-on): Add stdint.
10013         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
10014         * modules/perl: New module.
10015         * modules/regex (Depends-on): Add stdint.
10016         * modules/rmdir-errno: New module.
10017         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10018         m4/intmax_t.m4.
10019         (Depends-on): Add stdint.
10020         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
10021         m4/uintmax_t.m4.
10022         (Depends-on): Add stdint.
10023         * modules/unlink-busy: New module.
10024         * modules/utimecmp (Depends-on): Add stdint.
10025         * modules/uptime: New module.
10026         * modules/winsz-ioctl: New module.
10027         * modules/winsz-termios: New module.
10028         * modules/xnanosleep (Depends-on): Add nanosleep.
10029         * modules/ullong_max: Remove.
10030         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
10031         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
10032         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
10033         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
10034         (Depends-on): Add inttypes.
10035         (lib_SOURCES): Add xstrtol.h.
10036         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
10037         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
10038         * MODULES.html.sh: Move 'assert' into the assert section.
10039         Move 'dummy' into the linking section.
10040         Remove ullong_max.
10041         Add section for compatibility checks for POSIX:2001 functions,
10042         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
10043         winsz-ioctl, and winsz-termios into it.
10044         Add lchmod.
10045         Add top-level Misc section and put host-os, perl, and uptime
10046         into it.
10047
10048 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
10049
10050         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
10051         now assume the stdint module.  Do not include inttypes.h.
10052         * lib/fsusage.h: Likewise.
10053         * lib/getndelim2.c: Likewise.
10054         * lib/human.h: Likewise.
10055         * lib/inttostr.h: Likewise.
10056         * lib/obstack.c: Likewise.
10057         * lib/regex_internal.h: Likewise.
10058         * lib/tempname.c: Likewise.
10059         * lib/utimecmp.c: Likewise.
10060         * lib/xstrtol.h: Likewise.
10061
10062         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
10063
10064         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
10065         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
10066         * lib/xtime.h: Likewise.
10067
10068 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10069
10070         * modules/openat (Files): Add lib/fchmodat.c.
10071         Fixes problem reported by Jay Youngman.
10072
10073 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
10074
10075         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
10076         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
10077
10078 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
10079             Bruno Haible  <bruno@clisp.org>
10080
10081         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
10082         and is a script that invokes bison. Tighten the code. Add comments.
10083
10084 2006-08-18  Jim Meyering  <jim@meyering.net>
10085
10086         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
10087         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
10088         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
10089         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
10090
10091 2006-08-18  Bruno Haible  <bruno@clisp.org>
10092
10093         * modules/bison-i18n: New file.
10094         * MODULES.html.sh (Internationalization functions): Add it.
10095
10096 2006-08-18  Bruno Haible  <bruno@clisp.org>
10097
10098         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
10099         sys/statvfs.h. When getmntinfo was found, check its declaration and
10100         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
10101
10102 2006-08-18  Bruno Haible  <bruno@clisp.org>
10103
10104         * m4/bison-i18n.m4: New file, from bison.
10105
10106 2006-08-18  Bruno Haible  <bruno@clisp.org>
10107
10108         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
10109         (ME_DUMMY): Treat "kernfs" as a dummy.
10110         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
10111
10112 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10113
10114         Update from coreutils.
10115
10116         2006-08-15  Jim Meyering  <jim@meyering.net>
10117
10118         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
10119
10120         2006-01-17  Jim Meyering  <jim@meyering.net>
10121
10122         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
10123
10124         2006-01-11  Jim Meyering  <jim@meyering.net>
10125
10126         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
10127         Check for the lchmod function.
10128
10129 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
10130
10131         Update from coreutils.
10132
10133         * lib/__fpending.h: Add copyright notice.
10134         * lib/fprintftime.h: Likewise.
10135         * lib/savedir.c: Use (C) in copyright notice.
10136         * lib/savedir.h: Likewise.
10137
10138         2006-08-15  Jim Meyering  <jim@meyering.net>
10139
10140         * lib/at-func.c: New file, with the logic of all emulated at-functions.
10141         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
10142         in support of the EXPECTED_ERRNO macro.
10143         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
10144         definitions.  Instead, define the appropriate symbols and include
10145         "at-func.c".
10146         * lib/mkdirat.c (mkdirat): Likewise.
10147         * lib/fchmodat.c (fchmodat): Likewise.
10148         (ENOSYS): Remove definition.
10149         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
10150         it.  Don't include "unistd--.h" -- it wasn't ever used.
10151
10152         2006-01-17  Jim Meyering  <jim@meyering.net>
10153
10154         Rewrite fts.c not to change the current working directory,
10155         by using openat, fstatat, fdopendir, etc..
10156
10157         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
10158         (HAVE_OPENAT_SUPPORT): Define.
10159         [_LIBC] (fchdir): Don't undef or define; no longer used.
10160         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
10161         Now, this `function' always succeeds, and consumes its file descriptor
10162         parameter -- so callers must not close such FDs.  Update callers.
10163         (diropen_fd, opendirat, cwd_advance_fd): New functions.
10164         (diropen): Add parameter, SP.  Adjust all callers.
10165         Implement using diropen_fd, rather than open.
10166         (fts_open): Initialize new member, fts_cwd_fd.
10167         Remove fts_rft-setting code.
10168         (fts_close): Close fts_cwd_fd, if necessary.
10169         (__opendir2): Define in terms of opendir or opendirat,
10170         depending on whether the FST_NOCHDIR flag is set.
10171         (fts_build): Since fts_safe_changedir consumes its FD, and since
10172         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
10173         and close the dup'd file descriptor upon failure.
10174         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
10175         (fts_safe_changedir): Tweak semantics to reflect that this function
10176         now calls cwd_advance_fd and hence consumes its FD argument.
10177         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
10178         [struct FTS] (fts_rft): Remove now-unused member.
10179         [struct FTS] (fts_cycle.state): Improve comment.
10180
10181         * lib/openat.c (openat_needs_fchdir): New function.
10182         * lib/openat.h (openat_needs_fchdir): Declare it.
10183
10184 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
10185
10186         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
10187         Problem and fix reported by Pádraig Brady in
10188         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
10189
10190 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10191
10192         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
10193
10194 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10195
10196         * lib/memcoll.c (memcoll): Optimize for the common case where the
10197         arguments are bytewise equal.
10198
10199 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10200
10201         * doc/regexprops-generic.texi: Add a copyright notice.
10202
10203 2006-08-15  Bruno Haible  <bruno@clisp.org>
10204
10205         * modules/tmpdir (License): Change to LGPL.
10206
10207 2006-08-15  Bruno Haible  <bruno@clisp.org>
10208
10209         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
10210         module.
10211
10212 2006-08-14  Simon Josefsson  <jas@extundo.com>
10213
10214         * config/srclist.txt: Add gnupload.
10215
10216 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10217
10218         Change copyright notice from LGPL 2 to GPL 2, since that's the
10219         standard form used in the gnulib repository.
10220         * tests/test-lock.c: Likewise.
10221         * tests/test-stdint.c: Likewise.
10222         * tests/test-tls.c: Likewise.
10223
10224         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
10225         prelude-manager.  User shorter URLs for GNU projects, without '?'.
10226         Add copyright notice.
10227
10228         * check-module: Add copyright notice.  Output a copyright
10229         notice if "--version" is specified.
10230         * modules/COPYING: New file.
10231         * tests/test-getaddrinfo.c: Add copyright notice.
10232         * tests/test-verify.c: Likewise.
10233
10234 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10235
10236         Change copyright notice from LGPL 2 to GPL 2, since that's the
10237         standard form used in the gnulib repository.
10238         * lib/lock.c: LGPL -> GPL.
10239         * lib/lock.h: Likewise.
10240         * lib/strnlen1.c: Likewise.
10241         * lib/strnlen1.h: Likewise.
10242         * lib/tls.c: Likewise.
10243         * lib/tls.h: Likewise.
10244         * lib/tmpdir.c: Likewise.
10245
10246         * lib/TODO: Remove; this belongs only in coreutils.
10247
10248 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10249
10250         Add copyright notices to long-enough files that lack them, since
10251         otherwise the files aren't clearly free.  Use the same notice that
10252         getdate.texi already uses.
10253         * doc/alloca-opt.texi: Add copyright notice.
10254         * doc/alloca.texi: Likewise.
10255         * doc/ctime.texi: Likewise.
10256         * doc/functions.texi: Likewise.
10257         * doc/gcd.texi: Likewise.
10258         * doc/gnulib-tool.texi: Likewise.
10259         * doc/inet_ntoa.texi: Likewise.
10260         * doc/visibility.texi: Likewise.
10261
10262         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
10263         * doc/quote.texi: Add copyright notice.
10264
10265         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
10266         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
10267         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
10268         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
10269         is now obsolete, and give a pointer to the Sun list.
10270         Add copyright notice.
10271
10272 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10273
10274         * config/srclistvars.sh: Add copyright notice.
10275
10276 2006-08-14  Eric Blake  <ebb9@byu.net>
10277
10278         Import the following change from libc:
10279
10280         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
10281
10282         Upstream bug 2997.
10283         * lib/misc/error.c: Add space between program name and message if file
10284         name is missing.
10285
10286 2006-08-12  Karl Berry  <karl@gnu.org>
10287
10288         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
10289         remove, these originate in gnulib now.
10290
10291 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10292
10293         * doc/Makefile (standards.info standards.html standards.dvi):
10294         Also depend on make-stds.texi.
10295
10296 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
10297
10298         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
10299         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
10300
10301         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
10302         in wchar_t.  Problem reported by Eric Blake.
10303
10304         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
10305         LEN is smaller than SIZE.  Suggested by Bruno Haible.
10306         Also, help the compiler to keep LEN in a register.
10307
10308 2006-08-11  Eric Blake  <ebb9@byu.net>
10309
10310         * users.txt: Sort.  Add tar.
10311
10312 2006-08-11  Bruno Haible  <bruno@clisp.org>
10313
10314         * users.txt: New file.
10315
10316 2006-08-11  Bruno Haible  <bruno@clisp.org>
10317
10318         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
10319         before <wchar.h>. Needed for OSF/1 and BSD/OS.
10320
10321 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10322
10323         * modules/snprintf (Depends-on): Remove minmax.
10324         (Maintainer): Add self and Bruno.
10325
10326 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
10327
10328         * lib/.cppi-disable: Add snprintf.h, socket_.h.
10329         * lib/snprintf.c: Include <errno.h> and <limits.h>.
10330         (EOVERFLOW): Define if the system does not.
10331         Do not include "minmax.h"; it wasn't used.
10332         (snprintf): Don't assume size_t promotes to an unsigned type.
10333         Fix bug when generated string was too long for the buffer: the
10334         buffer's contents are supposed to be the initial prefix of the
10335         output.  Don't assume vasnprintf returns EOVERFLOW if the size
10336         exceeds INT_MAX; do the check ourselves.
10337
10338         Import the following changes from libc:
10339
10340         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
10341
10342         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
10343         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
10344         set wc to the byte which couldn't be converted.
10345         (re_string_reconstruct): Don't clear valid_raw_len before calling
10346         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
10347         tip_context using re_string_context_at.
10348
10349         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
10350
10351         * lib/posix/regex.h: g++ still cannot handled [restrict].
10352
10353         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
10354
10355         * lib/posix/regex.h: Remove special handling for VMS.
10356
10357 2006-08-10  Jim Meyering  <jim@meyering.net>
10358
10359         * modules/same-inode: New module.
10360         * modules/dev-ino: New module.
10361         * modules/cycle-check: Depend on these modules, rather than simply
10362         including their .h files.
10363         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
10364         required via m4/cycle-check.m4.
10365         * modules/same: Depend on new same-inode module, rather than
10366         including same-inode.h.
10367         * modules/chdir-safer: New file.
10368
10369         * modules/chown (Depends-on): Add stat-macros.
10370
10371 2006-08-10  Jim Meyering  <jim@meyering.net>
10372
10373         * m4/cycle-check.m4: New file.
10374         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
10375         * m4/dev-ino.m4, m4/same-inode.m4: New files.
10376
10377 2006-08-10  Eric Blake  <ebb9@byu.net>
10378
10379         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
10380         in from original proposal.
10381
10382 2006-08-10  Eric Blake  <ebb9@byu.net>
10383         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10384
10385         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
10386         namespace.
10387
10388 2006-08-10  Bruno Haible  <bruno@clisp.org>
10389
10390         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
10391         as well.
10392
10393 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10394
10395         Sync from coreutils.
10396
10397         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
10398
10399         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
10400         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
10401
10402 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10403
10404         * modules/restrict: Remove; no longer needed now that we assume
10405         Autoconf 2.59 or later.
10406         * MODULES.html.sh: Remove 'restrict'.
10407         * modules/argp (Depends-on): Remove 'restrict'.
10408         * modules/base64 (Depends-on): Likewise.
10409         * modules/gc (Depends-on): Likewise.
10410         * modules/getaddrinfo (Depends-on): Likewise.
10411         * modules/glob (Depends-on): Likewise.
10412         * modules/inet_ntop (Depends-on): Likewise.
10413         * modules/inet_pton (Depends-on): Likewise.
10414         * modules/memxor (Depends-on): Likewise.
10415         * modules/regex (Depends-on): Likewise.
10416         * modules/strtok_r (Depends-on): Likewise.
10417         * modules/time_r (Depends-on): Likewise.
10418
10419 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
10420
10421         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
10422         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
10423         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
10424         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
10425         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
10426         * m4/memxor.m4 (gl_MEMXOR): Likewise.
10427         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
10428         gl_C_RESTRICT replaced by AC_C_RESTRICT.
10429
10430         Merge from coreutils.
10431         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
10432         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
10433         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
10434         * m4/time_r.m4 (gl_TIME_R): Likewise.
10435
10436 2006-08-09  Karl Berry  <karl@gnu.org>
10437
10438         * config/srclist.txt: no more gettext-tools, per Bruno.
10439
10440 2006-08-08  Eric Blake  <ebb9@byu.net>
10441
10442         * modules/verror: New module.
10443         * MODULES.html.sh: Document it.
10444
10445 2006-08-08  Eric Blake  <ebb9@byu.net>
10446
10447         * lib/verror.h, lib/verror.c: New files.
10448
10449 2006-08-08  Eric Blake  <ebb9@byu.net>
10450
10451         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
10452         verror_at_line output complies with GNU Coding Standards even when
10453         file is NULL.
10454
10455 2006-08-07  Bruno Haible  <bruno@clisp.org>
10456
10457         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
10458         versions of AIX.
10459         Reported by Ralf Wildenhues.
10460
10461 2006-08-07  Bruno Haible  <bruno@clisp.org>
10462
10463         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
10464         in an AC_DEFUN. Needed so that the autoconf snippets can use
10465         AC_REQUIRE.
10466
10467 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10468
10469         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10470         Initialize pkgdata_DATA.
10471         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
10472         overriding it.
10473
10474 2006-08-06  Eric Blake  <ebb9@byu.net>
10475
10476         * lib/error.h: Fold in some upstream changes from glibc.
10477         * lib/error.c: Likewise.
10478
10479 2006-08-04  Bruno Haible  <bruno@clisp.org>
10480
10481         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10482         Make the mostlyclean-local rule depend on mostlyclean-generic.
10483         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
10484
10485 2006-07-31  Bruno Haible  <bruno@clisp.org>
10486
10487         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
10488         <stdlib.h>, <string.h>.
10489
10490 2006-07-30  Bruno Haible  <bruno@clisp.org>
10491
10492         * modules/readlink (License): Change to LGPL.
10493
10494 2006-07-30  Bruno Haible  <bruno@clisp.org>
10495
10496         * modules/javaversion (Makefile.am): Distribute javaversion.java and
10497         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
10498         set PKGDATADIR to point to it.
10499
10500 2006-07-30  Bruno Haible  <bruno@clisp.org>
10501
10502         * modules/csharpexec (configure.ac): Comment out macro invocation.
10503         * modules/javaexec (configure.ac): Likewise.
10504         * modules/javacomp-script (configure.ac): Likewise.
10505
10506         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
10507
10508 2006-07-30  Bruno Haible  <bruno@clisp.org>
10509
10510         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
10511         linked-list.
10512
10513 2006-07-30  Bruno Haible  <bruno@clisp.org>
10514
10515         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
10516
10517 2006-07-30  Bruno Haible  <bruno@clisp.org>
10518
10519         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
10520         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
10521         get removed.
10522
10523 2006-07-29  Bruno Haible  <bruno@clisp.org>
10524
10525         Make it possible for gnulib-tool to work with locally modified or
10526         augmented gnulib repositories.
10527         * gnulib-tool (func_usage): Document --local-dir option.
10528         (local_gnulib_dir): New variable.
10529         Handle --local-dir option.
10530         (func_lookup_file): New function.
10531         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
10532         (func_get_description, func_get_filelist, func_get_description,
10533         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
10534         func_get_automake_snippet, func_get_include_directive,
10535         func_get_license, func_get_maintainer): Use func_lookup_file.
10536         (func_import, func_create_testdir): Use func_lookup_file.
10537
10538 2006-07-29  Bruno Haible  <bruno@clisp.org>
10539
10540         * modules/setenv (Depends-on): Add unistd.
10541
10542 2006-07-29  Bruno Haible  <bruno@clisp.org>
10543
10544         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
10545
10546 2006-07-29  Bruno Haible  <bruno@clisp.org>
10547
10548         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
10549
10550 2006-07-29  Bruno Haible  <bruno@clisp.org>
10551
10552         * gnulib-tool (import, update): If there is no Makefile.am, look at
10553         aclocal.m4, instead of bailing out.
10554
10555 2006-07-29  Bruno Haible  <bruno@clisp.org>
10556
10557         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
10558         Categorize the options by when they are useful.
10559
10560 2006-07-29  Bruno Haible  <bruno@clisp.org>
10561
10562         * gnulib-tool (func_usage): Document option --no-libtool.
10563         Handle option --no-libtool.
10564         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
10565         for changed semantics of $libtool variable.
10566         (func_import): Likewise. If libtool is not used, show this through
10567         an option --no-libtool.
10568         (func_create_testdir): Update.
10569
10570 2006-07-29  Bruno Haible  <bruno@clisp.org>
10571
10572         * gnulib-tool (func_import): Extend error message about missing
10573         --doc-base.
10574
10575 2006-07-29  Bruno Haible  <bruno@clisp.org>
10576
10577         * gnulib-tool (func_import): Don't create the $docbase directory if
10578         there is no file to store there.
10579
10580 2006-07-29  Bruno Haible  <bruno@clisp.org>
10581
10582         * gnulib-tool (autoconf_minversion): If a --dir option is given and
10583         relevant, look for configure.ac there, not in the current directory.
10584         Also use a simple search for AC_PREREQ, not "autoconf --trace".
10585
10586 2006-07-29  Bruno Haible  <bruno@clisp.org>
10587
10588         * gnulib-tool (SORT): New variable.
10589         (func_usage): Undocument --assume-autoconf option.
10590         Remove --assume-autoconf option handling.
10591         (autoconf_minversion): Determine from the contents of configure.ac.
10592         (func_import): Remove autoconf_minversion handling.
10593         Suggested by Eric Blake.
10594
10595 2006-07-29  Bruno Haible  <bruno@clisp.org>
10596
10597         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
10598
10599 2006-07-29  Bruno Haible  <bruno@clisp.org>
10600
10601         * config/srclist.txt (*setenv.[ch]): Remove rules.
10602
10603 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10604
10605         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
10606
10607 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10608
10609         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
10610         arpa/inet.h.
10611
10612 2006-07-28  Simon Josefsson  <jas@extundo.com>
10613
10614         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
10615         * modules/inet_pton (Depends-on): Likewise.
10616
10617 2006-07-28  Simon Josefsson  <jas@extundo.com>
10618
10619         * m4/netinet_in_h.m4: New file.
10620
10621 2006-07-28  Simon Josefsson  <jas@extundo.com>
10622
10623         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
10624         #include's.
10625
10626 2006-07-28  Simon Josefsson  <jas@extundo.com>
10627
10628         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
10629         #include's.
10630
10631 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
10632
10633         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
10634         setgid on directories only if they set these bits.
10635         * lib/modechange.h: Remove obsolete comment about masks.
10636
10637 2006-07-28  Eric Blake  <ebb9@byu.net>
10638
10639         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
10640         macro expansion.
10641
10642 2006-07-28  Bruno Haible  <bruno@clisp.org>
10643
10644         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
10645
10646 2006-07-28  Bruno Haible  <bruno@clisp.org>
10647
10648         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
10649
10650 2006-07-28  Bruno Haible  <bruno@clisp.org>
10651
10652         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
10653         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
10654         Define fallbacks.
10655         Avoids link error on FreeBSD 4.x.
10656         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
10657
10658         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
10659         encoding.
10660         * lib/mbswidth.c (iswcntrl): Likewise.
10661
10662 2006-07-27  Bruno Haible  <bruno@clisp.org>
10663
10664         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
10665         test.
10666
10667 2006-07-27  Bruno Haible  <bruno@clisp.org>
10668
10669         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
10670         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
10671         defined.
10672
10673 2006-07-26  Eric Blake  <ebb9@byu.net>
10674
10675         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
10676
10677 2006-07-26  Eric Blake  <ebb9@byu.net>
10678
10679         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
10680         like mingw that lack mkstemp.
10681         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
10682         avoid compilation warning on mingw.
10683
10684 2006-07-26  Bruno Haible  <bruno@clisp.org>
10685
10686         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
10687         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
10688         INT_FAST*_MIN, INTPTR_MIN.
10689
10690 2006-07-25  Bruno Haible  <bruno@clisp.org>
10691
10692         * modules/version-etc (Depends-on): Add stdarg.
10693
10694 2006-07-25  Bruno Haible  <bruno@clisp.org>
10695
10696         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
10697         complex commands.
10698
10699 2006-07-25  Bruno Haible  <bruno@clisp.org>
10700
10701         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
10702         defined in <stdarg.h> or config.h.
10703
10704 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
10705
10706         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
10707         (gl_STDIO_SAFER): Remove.
10708
10709 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
10710
10711         * MODULES.html.sh (File stream based Input/Output):
10712         Add fopen-safer, tmpfile-safer; remove stdio-safer.
10713         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
10714         * modules/fopen-safer, modules/tmpfile-safer: New files.
10715         * modules/stdio-safer: Remove.
10716
10717 2006-07-24  Bruno Haible  <bruno@clisp.org>
10718
10719         * modules/tmpdir: New file.
10720         * MODULES.html.sh (File system functions): Add it.
10721
10722 2006-07-24  Bruno Haible  <bruno@clisp.org>
10723
10724         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
10725         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
10726
10727 2006-07-24  Bruno Haible  <bruno@clisp.org>
10728
10729         * modules/clean-temp: New file.
10730
10731 2006-07-24  Bruno Haible  <bruno@clisp.org>
10732
10733         * m4/tmpdir.m4: New file, from GNU gettext.
10734
10735 2006-07-24  Bruno Haible  <bruno@clisp.org>
10736
10737         * lib/tmpdir.h: New file, from GNU gettext.
10738         * lib/tmpdir.c: New file, from GNU gettext.
10739
10740 2006-07-24  Bruno Haible  <bruno@clisp.org>
10741
10742         * lib/clean-temp.h: New file, from GNU gettext.
10743         * lib/clean-temp.c: New file, from GNU gettext.
10744
10745 2006-07-23  Eric Blake  <ebb9@byu.net>
10746
10747         * modules/stdio-safer (Files): Add tmpfile-safer.c.
10748         (Depends-on): Add binary-io.
10749
10750 2006-07-23  Eric Blake  <ebb9@byu.net>
10751
10752         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
10753
10754 2006-07-23  Eric Blake  <ebb9@byu.net>
10755
10756         * lib/tmpfile-safer.c: New file.
10757         * lib/stdio-safer.h (fopen_safer): Add prototype.
10758         * lib/stdio--.h (tmpfile): Make safer.
10759
10760 2006-07-23  Bruno Haible  <bruno@clisp.org>
10761
10762         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
10763         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
10764         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
10765         gl_linked_remove_at): Use it.
10766
10767 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
10768         and Simon Josefsson <jas@extundo.com>
10769
10770         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
10771
10772         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
10773
10774 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
10775
10776         * modules/close-stream: New file.
10777         * modules/closeout (Description): Make it clear that it exits
10778         with a diagnostic on error.
10779         (Depends-on): Add close-stream.  Remove fpending, stdbool.
10780         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
10781
10782 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
10783
10784         * m4/close-stream.m4: New file.
10785
10786 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
10787
10788         * lib/close-stream.c, lib/close-stream.h: New files.
10789
10790 2006-07-22  Bruno Haible  <bruno@clisp.org>
10791
10792         Merge from GNU gettext 0.15.
10793
10794         2006-05-01  Bruno Haible  <bruno@clisp.org>
10795
10796                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
10797
10798         2006-07-22  Bruno Haible  <bruno@clisp.org>
10799
10800                 * modules/javaversion: New file.
10801                 * MODULES.html.sh (Java): Add javaversion.
10802
10803         2006-03-12  Bruno Haible  <bruno@clisp.org>
10804
10805                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
10806
10807         2005-12-04  Bruno Haible  <bruno@clisp.org>
10808
10809                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
10810                 (untested).
10811
10812         2006-06-21  Bruno Haible  <bruno@clisp.org>
10813
10814                 Avoid warnings from recent versions of mcs.
10815                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
10816                 -o, -L, -r any more. Use options documented since mcs-1.0
10817                 instead. Similarly for -g.
10818
10819         2005-12-04  Bruno Haible  <bruno@clisp.org>
10820
10821                 * build-aux/csharpcomp.sh.in: Suffix for resources is
10822                 .resources, not .resource.
10823
10824         2005-07-09  Bruno Haible  <bruno@clisp.org>
10825
10826                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
10827                 add a .dll suffix.
10828                 Reported by Mark Junker <mjscod@gmx.de>.
10829
10830         2006-07-22  Bruno Haible  <bruno@clisp.org>
10831
10832                 * modules/gettext: Upgrade to gettext-0.15.
10833                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
10834                 m4/visibility.m4.
10835                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
10836
10837 2006-07-22  Bruno Haible  <bruno@clisp.org>
10838
10839         Merge from GNU gettext 0.15.
10840
10841         2006-03-25  Bruno Haible  <bruno@clisp.org>
10842
10843                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
10844
10845         2006-07-21  Bruno Haible  <bruno@clisp.org>
10846
10847                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
10848                 "1.1".
10849
10850         2006-05-09  Bruno Haible  <bruno@clisp.org>
10851
10852                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
10853                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
10854                 for the conftestver execution.
10855
10856         2006-05-01  Bruno Haible  <bruno@clisp.org>
10857
10858                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
10859                 optional target-version argument. Verify that the compiler
10860                 groks source of the specified source-version, or add -source
10861                 option as necessary. Verify that the compiler produces
10862                 bytecode in the specified target-version, or add -target and
10863                 -source options as necessary. Make the result of the test
10864                 available as variable CONF_JAVAC. Also log error output in
10865                 config.log.
10866
10867         2006-03-11  Bruno Haible  <bruno@clisp.org>
10868
10869                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
10870
10871         2006-05-09  Bruno Haible  <bruno@clisp.org>
10872
10873                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
10874                 CLASSPATH_SEPARATOR to a semicolon.
10875
10876         2006-03-12  Bruno Haible  <bruno@clisp.org>
10877
10878                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
10879                 available as variable CONF_JAVA, for subsequent autoconf
10880                 tests. Also log error output in config.log.
10881
10882         2006-07-19  Bruno Haible  <bruno@clisp.org>
10883
10884                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
10885                 that getline works on glibc2 systems. Needed to avoid trouble
10886                 in relocatable.c.
10887                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
10888
10889         2005-12-04  Bruno Haible  <bruno@clisp.org>
10890
10891                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
10892                 launcher (untested).
10893
10894         2005-12-04  Bruno Haible  <bruno@clisp.org>
10895
10896                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
10897
10898         2006-07-22  Bruno Haible  <bruno@clisp.org>
10899
10900                 * gettext.m4: Update from GNU gettext-0.15.
10901                 * nls.m4: Likewise.
10902                 * po.m4: Likewise.
10903                 * inttypes-pri.m4: Likewise.
10904                 * inttypes-h.m4: Renamed from inttypes.m4.
10905                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
10906
10907 2006-07-22  Bruno Haible  <bruno@clisp.org>
10908
10909         Merge from GNU gettext 0.15.
10910
10911         2005-07-05  Bruno Haible  <bruno@clisp.org>
10912
10913                 * printf-args.c (printf_fetchargs): Work around broken
10914                 definition of wint_t on mingw.
10915
10916         2005-02-12  Bruno Haible  <bruno@clisp.org>
10917
10918                 * xallocsa.h: Add extern "C" for C++.
10919
10920         2006-05-17  Bruno Haible  <bruno@clisp.org>
10921
10922                 Cygwin portability.
10923                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
10924
10925         2006-04-30  Bruno Haible  <bruno@clisp.org>
10926
10927                 * progreloc.c: Include <mach-o/dyld.h> if available.
10928                 (find_executable): Use _NSGetExecutablePath when possible.
10929
10930         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
10931
10932                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
10933                 function.
10934
10935         2005-12-29  Bruno Haible  <bruno@clisp.org>
10936
10937                 * progreloc.c (set_program_name_and_installdir): Fix
10938                 compilation error.
10939
10940         2005-12-04  Bruno Haible  <bruno@clisp.org>
10941
10942                 Cygwin portability.
10943                 * progreloc.c: Include <windows.h> also on Cygwin.
10944                 (find_executable): Add support for Cygwin.
10945                 (set_program_name_and_installdir): Handle also platforms with
10946                 nonempty EXEEXT.
10947
10948         2006-07-11  Bruno Haible  <bruno@clisp.org>
10949
10950                 * javacomp.c: Fix a comment.
10951                 Reported by Jim Meyering.
10952
10953         2006-04-30  Bruno Haible  <bruno@clisp.org>
10954
10955                 * javacomp.h (compile_java_class): Add source_version,
10956                 target_version arguments.
10957                 * javacomp.c: Rewritten to choose only a compiler that
10958                 respects the specified source_version and target_version.
10959
10960         2006-06-27  Bruno Haible  <bruno@clisp.org>
10961
10962                 Assume correct S_ISDIR macro.
10963                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
10964
10965         2006-07-22  Bruno Haible  <bruno@clisp.org>
10966
10967                 * javaversion.h: New file, from GNU gettext.
10968                 * javaversion.c: New file, from GNU gettext.
10969                 * javaversion.java: New file, from GNU gettext.
10970                 * javaversion.class: New file, from GNU gettext.
10971
10972         2006-05-17  Bruno Haible  <bruno@clisp.org>
10973
10974                 Cygwin portability.
10975                 * javaexec.c (execute_java_class): Test for jview program
10976                 also on Cygwin.
10977
10978         2006-04-09  Bruno Haible  <bruno@clisp.org>
10979
10980                 * fatal-signal.c: Don't include string.h.
10981                 (at_fatal_signal): Use a copying loop instead of memcpy.
10982
10983         2005-12-04  Bruno Haible  <bruno@clisp.org>
10984
10985                 * csharpexec.c: Add support for 'clix' launcher (untested).
10986                 (execute_csharp_using_sscli): New function.
10987                 (execute_csharp_program): Call it.
10988
10989         2006-06-21  Bruno Haible  <bruno@clisp.org>
10990
10991                 Avoid warnings from recent versions of mcs.
10992                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
10993                 -o, -L, -r any more. Use options documented since mcs-1.0
10994                 instead. Similarly for -g.
10995
10996         2005-07-09  Bruno Haible  <bruno@clisp.org>
10997
10998                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
10999                 add a .dll suffix.
11000                 Reported by Mark Junker <mjscod@gmx.de>.
11001
11002         2006-06-17  Bruno Haible  <bruno@clisp.org>
11003
11004                 * config.charset: Update for NetBSD 3.0.
11005
11006         2006-05-17  Bruno Haible  <bruno@clisp.org>
11007
11008                 Cygwin portability.
11009                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
11010
11011         2006-05-16  Bruno Haible  <bruno@clisp.org>
11012
11013                 * localcharset.c [CYGWIN]: Include <windows.h>.
11014                 (get_charset_aliases): For Cygwin, return the same CPxxx
11015                 aliases list as under WIN32.
11016                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
11017                 the environment variables. Fall back to GetACP().
11018
11019         2006-04-05  Bruno Haible  <bruno@clisp.org>
11020
11021                 * config.charset: Update Juan Manuel Guerrero's address.
11022
11023         2005-02-12  Bruno Haible  <bruno@clisp.org>
11024
11025                 * allocsa.h: Add extern "C" for C++.
11026
11027         2005-02-10  Bruno Haible  <bruno@clisp.org>
11028
11029                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
11030                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
11031
11032         2006-07-22  Bruno Haible  <bruno@clisp.org>
11033
11034                 * gettext.h: Update to GNU gettext-0.15.
11035
11036 2006-07-22  Bruno Haible  <bruno@clisp.org>
11037
11038         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
11039         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
11040         lib-prefix.m4, longdouble.m4, ssize_t.m4.
11041
11042 2006-07-21  Eric Blake  <ebb9@byu.net>
11043
11044         * modules/stdlib-safer: New file.
11045         * MODULES.html.sh (File stream based Input/Output): Add
11046         stdlib-safer.
11047
11048 2006-07-21  Eric Blake  <ebb9@byu.net>
11049
11050         * lib/stdlib-safer.h: New file from coreutils, required by
11051         stdlib--.h.
11052
11053 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
11054
11055         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
11056
11057 2006-07-20  Bruno Haible  <bruno@clisp.org>
11058
11059         * gnulib-tool: Recognize new option --assume-autoconf.
11060         (autoconf_minversion): New variable.
11061         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
11062
11063 2006-07-20  Bruno Haible  <bruno@clisp.org>
11064
11065         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
11066
11067 2006-07-19  Derek R. Price  <derek@ximbiot.com>
11068
11069         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
11070         Reindent and repaginate.
11071
11072 2006-07-19  Derek Price  <derek@ximbiot.com>
11073
11074         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
11075         Correct grammar.
11076
11077 2006-07-17  Bruno Haible  <bruno@clisp.org>
11078
11079         * modules/list: New file.
11080         * modules/array-list: New file.
11081         * modules/carray-list, modules/carray-list-tests: New files.
11082         * modules/linked-list, modules/linked-list-tests: New files.
11083         * modules/avltree-list, modules/avltree-list-tests: New files.
11084         * modules/rbtree-list, modules/rbtree-list-tests: New files.
11085         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
11086         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
11087         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
11088         * modules/oset: New file.
11089         * modules/array-oset: New file.
11090         * modules/avltree-oset, modules/avltree-oset-tests: New files.
11091         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
11092         * tests/test-carray_list.c: New file.
11093         * tests/test-linked_list.c: New file.
11094         * tests/test-avltree_list.c: New file.
11095         * tests/test-rbtree_list.c: New file.
11096         * tests/test-linkedhash_list.c: New file.
11097         * tests/test-avltreehash_list.c: New file.
11098         * tests/test-rbtreehash_list.c: New file.
11099         * tests/test-avltree_oset.c: New file.
11100         * tests/test-rbtree_oset.c: New file.
11101         * MODULES.html.sh (Container data structures): New section.
11102
11103 2006-07-17  Bruno Haible  <bruno@clisp.org>
11104
11105         * m4/gl_list.m4: New file.
11106
11107 2006-07-17  Bruno Haible  <bruno@clisp.org>
11108
11109         * lib/gl_list.h: New file.
11110         * lib/gl_list.c: New file.
11111         * lib/gl_array_list.h: New file.
11112         * lib/gl_array_list.c: New file.
11113         * lib/gl_carray_list.h: New file.
11114         * lib/gl_carray_list.c: New file.
11115         * lib/gl_linked_list.h: New file.
11116         * lib/gl_linked_list.c: New file.
11117         * lib/gl_anylinked_list1.h: New file.
11118         * lib/gl_anylinked_list2.h: New file.
11119         * lib/gl_avltree_list.h: New file.
11120         * lib/gl_avltree_list.c: New file.
11121         * lib/gl_anyavltree_list1.h: New file.
11122         * lib/gl_anyavltree_list2.h: New file.
11123         * lib/gl_rbtree_list.h: New file.
11124         * lib/gl_rbtree_list.c: New file.
11125         * lib/gl_anyrbtree_list1.h: New file.
11126         * lib/gl_anyrbtree_list2.h: New file.
11127         * lib/gl_anytree_list1.h: New file.
11128         * lib/gl_anytree_list2.h: New file.
11129         * lib/gl_linkedhash_list.h: New file.
11130         * lib/gl_linkedhash_list.c: New file.
11131         * lib/gl_anyhash_list1.h: New file.
11132         * lib/gl_anyhash_list2.h: New file.
11133         * lib/gl_avltreehash_list.h: New file.
11134         * lib/gl_avltreehash_list.c: New file.
11135         * lib/gl_rbtreehash_list.h: New file.
11136         * lib/gl_rbtreehash_list.c: New file.
11137         * lib/gl_anytreehash_list1.h: New file.
11138         * lib/gl_anytreehash_list2.h: New file.
11139
11140         * lib/gl_oset.h: New file.
11141         * lib/gl_oset.c: New file.
11142         * lib/gl_array_oset.h: New file.
11143         * lib/gl_array_oset.c: New file.
11144         * lib/gl_avltree_oset.h: New file.
11145         * lib/gl_avltree_oset.c: New file.
11146         * lib/gl_rbtree_oset.h: New file.
11147         * lib/gl_rbtree_oset.c: New file.
11148         * lib/gl_anytree_oset.h: New file.
11149
11150 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11151
11152         * m4/mkancesdirs.m4: New file.
11153         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
11154         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
11155         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
11156         it.
11157
11158 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11159
11160         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
11161         * lib/mkancesdirs.h: New files.
11162         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
11163         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
11164         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
11165         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
11166         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
11167         callers changed.  Revamp internals significantly, by not
11168         attempting to create directories that are temporarily more
11169         permissive than the final results.  Do not attempt to use
11170         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
11171         This removes some race conditions, fixes some bugs, and simplifies
11172         things.  Use new dirchownmod function to do owner and mode changes.
11173         * lib/mkdir-p.h: Likewise.
11174         * lib/modechange.c (octal_to_mode): New function.
11175         (struct mode_change): New member mentioned.
11176         (make_node_op_equals): New arg mentioned.  All callers changed.
11177         (mode_compile): Keep track of which mode bits the user has explicitly
11178         mentioned.
11179         (mode_adjust): New arg DIR, so that we implement the X op correctly.
11180         New arg PMODE_BITS, to keep track of which mode bits the user
11181         mentioned; it treats S_ISUID and S_ISGID speciall.
11182         All callers changed.
11183         * lib/modechange.h: Likewise.
11184
11185 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
11186
11187         * MODULES.html.sh: Add mkancestors.
11188         * modules/mkancesdirs: New module.
11189         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
11190         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
11191         The chdir-safer and afs files are now orphans; I'll remove them
11192         unless someone speaks up.
11193         Add lib/dirchownmod.c, lib/dirchownmod.h.
11194         (Depends-on): Remove alloca, chown, save-cwd, dirname.
11195         Add lchown, mkancesdirs.
11196         (Maintainer): Add self.
11197
11198 2006-07-15  Karl Berry  <karl@gnu.org>
11199
11200         * gnulib-tool: help message wording/arrangement.
11201
11202 2006-07-14  Simon Josefsson  <jas@extundo.com>
11203
11204         * doc/gnulib.texi (Libtool and Windows): New section.
11205
11206 2006-07-12  Simon Josefsson  <jas@extundo.com>
11207
11208         * modules/gendocs (License): Fix license, approved by Karl.
11209
11210 2006-07-12  Eric Blake  <ebb9@byu.net>
11211
11212         * MODULES.html.sh: Add gendocs.
11213
11214 2006-07-11  Eric Blake  <ebb9@byu.net>
11215
11216         * modules/fdl: New module, to install doc/fdl.texi.
11217         * MODULES.html.sh: Add new section for documentation modules.
11218         * gnulib-tool: Avoid space-tab.
11219         (--doc-base): New option, to manage files from doc.
11220
11221 2006-07-11  Eric Blake  <ebb9@byu.net>
11222
11223         * m4/absolute-header.m4: Fix comments to match recent change.
11224
11225 2006-07-11  Eric Blake  <ebb9@byu.net>
11226
11227         * gnulib-tool: List --doc-base before --tests-base.
11228
11229 2006-07-11  Derek R. Price  <derek@ximbiot.com>
11230
11231         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
11232
11233 2006-07-11  Bruno Haible  <bruno@clisp.org>
11234
11235         * README: Mention where to put documentation.
11236
11237 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11238
11239         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
11240
11241 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11242
11243         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
11244         to stdint.m4.
11245
11246 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11247
11248         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
11249         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
11250         "no/such/file/stdint.h" when there is no such file, so that
11251         the resulting C code can be parsed by dodgy compilers.
11252         Problems reported by Bob Proulx.
11253
11254 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11255
11256         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
11257         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11258         macros into the GNU _D_EXACT_NAMLEN.
11259         * lib/savedir.c:  Likewise.
11260         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
11261
11262 2006-07-10  Derek R. Price  <derek@ximbiot.com>
11263         and Paul Eggert  <eggert@cs.ucla.edu>
11264
11265         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
11266         * m4/savedir.m4:
11267         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
11268         macros into the GNU _D_EXACT_NAMLEN.
11269
11270 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11271
11272         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
11273         around the absolute name, to work around a problem with the HP-UX
11274         11.23 native C compiler, reported by Bob Proulx.
11275
11276 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11277
11278         * doc/maintain.texi, make-stds.texi: Sync from
11279         <http://savannah.gnu.org/projects/gnustandards>.
11280
11281 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11282
11283         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
11284
11285 2006-07-09  Jim Meyering  <jim@meyering.net>
11286
11287         * m4/glob.m4: Remove a doubled word in a comment.
11288
11289 2006-07-09  Jim Meyering  <jim@meyering.net>
11290
11291         * lib/argp-pv.c: Remove a doubled word in a comment.
11292         * lib/check-version.c (check_version): Likewise.
11293         * lib/javacomp.c (compile_java_class): Likewise.
11294
11295 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11296
11297         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
11298         for the benefit of people using Autoconf 2.60.  If you want to
11299         support older Autoconf versions you can copy m4/onceonly_2_57.m4
11300         (or m4/onceonly.m4, if pre-2.57) manually.
11301
11302 2006-07-08  Jim Meyering  <jim@meyering.net>
11303
11304         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
11305         comment.
11306         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
11307         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
11308         comment.
11309
11310 2006-07-08  Jim Meyering  <jim@meyering.net>
11311
11312         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
11313
11314 2006-07-07  Simon Josefsson  <jas@extundo.com>
11315
11316         * tests/test-crc.c: Change expected crc value, the test vector
11317         were probably computed using the old broken crc.c?
11318
11319 2006-07-06  Simon Josefsson  <jas@extundo.com>
11320
11321         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
11322         now the canonical place for the M4 file).
11323
11324         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
11325         from the sys_socket dependency now.
11326
11327         * modules/inet_pton (Files): Ditto.
11328
11329         * modules/inet_ntop (Files): Ditto.
11330
11331 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
11332
11333         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
11334         not gl_PREREQ_GETUSERSHELL.
11335
11336 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11337
11338         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
11339         with only one argument, for Autoconf 2.60.
11340         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
11341         expand to nothing, so add a shell command to avoid syntax error.
11342         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
11343
11344 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11345
11346         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
11347
11348 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11349
11350         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
11351         no longer needed.  Check for isblank decl.
11352         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
11353         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
11354         of existence.
11355
11356 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11357
11358         * lib/getloadavg.c: Use __VMS, not VMS.
11359         * lib/getopt.c: Likewise.
11360         * lib/getpagesize.h: Likewise.
11361         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
11362         and probably does not work.
11363
11364 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11365
11366         * lib/.cppi-disable: Add wcwidth.
11367         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
11368         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
11369         (ISGRAPH): Remove.  All uses changed to isgraph.
11370         (FOLD) [!defined _LIBC]: Remove special case.
11371         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
11372         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
11373         HAVE_ISBLANK.
11374         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
11375         case.
11376
11377 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
11378
11379         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
11380         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
11381         brackets.  Other minor changes to suppress some compiler
11382         warnings.
11383
11384 2006-07-06  Derek R. Price  <derek@ximbiot.com>
11385         and Paul Eggert  <eggert@cs.ucla.edu>
11386
11387         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
11388         of invoking obsolescent AC_HEADER_DIRENT macro.
11389         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
11390         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
11391         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
11392         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
11393         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
11394         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
11395         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
11396         * m4/readdir.m4: Remove; no longer needed.
11397
11398 2006-07-06  Derek R. Price  <derek@ximbiot.com>
11399         and Paul Eggert  <eggert@cs.ucla.edu>
11400
11401         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
11402         Don't worry about this obsolete case any more.
11403         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
11404         directories.
11405         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
11406         worry about this obsolete case any more.
11407         * lib/fts.c: Likewise.
11408         * lib/getcwd.c: Likewise.
11409         * lib/glob.h: Likewise.
11410         * lib/savedir.c: Likewise.
11411
11412 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11413
11414         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
11415         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
11416         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
11417         needed.
11418         All uses removed.
11419         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11420         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
11421         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
11422         needed.
11423         * m4/getdate.m4 (gl_GETDATE): Likewise.
11424         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
11425         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
11426         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
11427         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11428         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
11429         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
11430         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
11431         needed.
11432
11433 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11434
11435         * lib/memcasecmp.c: Include <limits.h>.
11436         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
11437         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
11438         Don't assume isdigit succeeds only on '0' through '9'.
11439
11440 2006-07-05  Eric Blake  <ebb9@byu.net>
11441
11442         * modules/getaddrinfo (Depends-on): Add snprintf.
11443
11444 2006-07-05  Eric Blake  <ebb9@byu.net>
11445
11446         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
11447         to avoid 'header present but could not be compiled' on cygwin.
11448
11449 2006-07-05  Eric Blake  <ebb9@byu.net>
11450
11451         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
11452         missing from netdb.h.
11453         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
11454
11455 2006-07-05  Derek R. Price  <derek@ximbiot.com>
11456
11457         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
11458         no longer needed.
11459         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
11460         * m4/getdate.m4 (gl_GETDATE): Likewise.
11461         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
11462         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
11463         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
11464         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
11465         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
11466
11467 2006-07-05  Derek R. Price  <derek@ximbiot.com>
11468
11469         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
11470         All uses of is_space replaced by isspace.
11471         * lib/exit.h: Don't talk about STDC_HEADERS.
11472         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
11473         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
11474         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
11475         replaced by isprint etc.
11476         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
11477         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
11478         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
11479         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
11480         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
11481         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
11482
11483 2006-07-05  Bruno Haible  <bruno@clisp.org>
11484
11485         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
11486         the function exists, before testing against AIX.
11487         Reported by Martin Lambers <marlam@marlam.de>.
11488
11489 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11490
11491         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
11492         From Mark D. Baushke.
11493
11494 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11495
11496         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
11497         to the absolute name, not just one, to bypass Sun C 5.8's
11498         "warning: #include of /usr/include/... may be non-portable".
11499
11500 2006-07-04  Eric Blake  <ebb9@byu.net>
11501
11502         * modules/dirname-tests: New test module.
11503         * tests/test-dirname.c: New file, replacing dirname.c
11504         TEST_DIRNAME section that was recently deleted.
11505
11506 2006-07-04  Bruno Haible  <bruno@clisp.org>
11507
11508         Assume ANSI C header files and <ctype.h> functions.
11509         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
11510         (mbsnwidth): Use isprint, iscntrl instead.
11511
11512 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11513
11514         Merge from coreutils.
11515         * MODULES.html.sh: Add xstrtold.
11516         * modules/xstrtold: New file.
11517         * modules/cycle-check (Files): Add lib/same-inode.h.
11518         * modules/dirname (Files): Add m4/double-slash-root.m4.
11519         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
11520         * modules/mkdir-p (Files): Add lib/same-inode.h.
11521         * modules/same (Files): Add lib/same-inode.h.
11522
11523 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11524
11525         * m4/absolute-header.m4: Renamed from full-header-path.m4.
11526         This is to keep the terminology clean; POSIX talks about
11527         "absolute pathnames", not "full pathnames", but the GNU
11528         Coding Standards say to use "path" for something else;
11529         so use "absolute" to keep both sides happy.
11530         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
11531         Set gl_absolute_header, not gl_full_header_path.
11532         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
11533         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
11534         All uses changed.
11535
11536         Merge from coreutils.
11537
11538         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
11539
11540         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
11541         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
11542         want to require the building of c-strtod.o.
11543         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
11544         needs -lm directly.
11545         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
11546
11547         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
11548
11549         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
11550         --as-needed option if available.  Problem reported by Albert Chin in
11551         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
11552         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
11553         cc merely issues a bunch of annoying warnings for --as-needed
11554         (this problem was reported by Bob Proulx).  Also, try linking with
11555         -lm to detect a bug in binutils 2.16 (this problem was reported
11556         by Ralf Wildenhues).
11557
11558         2006-06-18  Jim Meyering  <jim@meyering.net>
11559
11560         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
11561         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
11562         macro.
11563         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
11564         also check for glibc-2.4's abort-inducing bug.
11565
11566         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
11567         Low-probability clean-up should be to use rmdir to get rid of
11568         the just-created directory, not unlink.
11569
11570         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
11571         configure fail, and request a bug report to inform us about it.
11572         Add a comment that, barring reports to the contrary, in 2007 we'll
11573         assume ftruncate is universally available.
11574
11575         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
11576
11577         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
11578
11579         2006-03-12  Jim Meyering  <jim@meyering.net>
11580
11581         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
11582         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
11583         * m4/same.m4 (gl_SAME): Likewise.
11584         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
11585
11586         2006-03-11  Eric Blake  <ebb9@byu.net>
11587
11588         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
11589         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
11590         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
11591         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
11592
11593 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11594
11595         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
11596         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
11597         reported by Mark D. Baushke, one in
11598         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
11599
11600         Merge from coreutils.
11601
11602         * lib/.cppi-disable: Add stdint_.h.
11603         * lib/.cvsignore: Add stdint.h.
11604
11605         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
11606
11607         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
11608         both double and long double versions.
11609         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
11610         * lib/xstrtold.c: New file.
11611         * lib/xstrtod.h (xstrtold): New decl.
11612
11613         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
11614
11615         * lib/filemode.c (setst): Remove.
11616         (strmode): Rewrite to avoid setst.  This makes the code shorter,
11617         (arguably) clearer, and the generated code is a bit smaller on my
11618         Debian GNU/Linux stable x86 host.
11619
11620         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
11621
11622         * lib/filemode.c: Include "filemode.h" first, to test the interface.
11623         Assume that filemode.h includes sys/types.h and sys/stat.h.
11624         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
11625         (ftypelet): Reorder to put common cases first, for efficiency.
11626         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
11627         to do 'M'.
11628         (strmode): Renamed from mode_string, and now stores 12 bytes instead
11629         of 10, for compatibility with FreeBSD.  All callers changed.
11630         (filemodestring): Now stores 12 bytes instead of 10, and sets file
11631         types that can't be deduced solely from st_mode.  First arg is now a
11632         const pointer.
11633         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
11634         (strmode): Renamed from mode_string.
11635         (filemodestring): New decl.
11636         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
11637         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
11638         needed.
11639         (S_ISPORT, S_ISWHT): New macros, if not already defined.
11640
11641         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
11642
11643         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
11644         fsusage.h now does that.  Include fsusage.h first, to test interface.
11645         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
11646         at most one method (the old code could have generated decls that
11647         didn't conform to C89, not that this was ever exercised).
11648         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
11649
11650         2006-03-19  Jim Meyering  <jim@meyering.net>
11651
11652         Work even in a chroot where d_ino values for entries in "/"
11653         don't match the stat.st_ino values for the same names.
11654         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
11655         number, iterate through all entries again, using lstat instead.
11656         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
11657         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
11658
11659         * lib/getcwd.c (__getcwd): Clarify a comment.
11660         Use memcpy in place of a call to strcpy.
11661
11662         2006-03-12  Jim Meyering  <jim@meyering.net>
11663
11664         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
11665         matches that of the current directory (which we're about to chdir ".."
11666         out of), then save the dev-ino of the parent, instead.
11667
11668         * lib/same-inode.h (SAME_INODE): New file/macro.
11669         * lib/chdir-safer.c (SAME_INODE): Remove definition.
11670         Include "same-inode.h", instead.
11671         * lib/same.c: Likewise.
11672         * lib/cycle-check.h: Include "same-inode.h".
11673         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
11674         * lib/cycle-check.c (SAME_INODE): Remove definition.
11675         * lib/root-dev-ino.h: Include "same-inode.h".
11676
11677         2006-03-11  Eric Blake  <ebb9@byu.net>
11678
11679         * lib/same.c (same_name): s/base_name/last_component/
11680         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
11681         * lib/filenamecat.c (file_name_concat): Likewise.
11682
11683         2006-03-11  Eric Blake  <ebb9@byu.net>,
11684                     Paul Eggert  <eggert@cs.ucla.edu>
11685
11686         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
11687         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
11688         drive prefix.
11689         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
11690         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
11691         (last_component): New method.
11692         * lib/dirname.c (dir_len): Determine when drive letters need a
11693         subsequent slash.  Preserve // when it is special.
11694         (dir_name): Don't append dot when drive letter is absolute.
11695         [TEST_DIRNAME]: Move into a full-blown gnulib test.
11696         * lib/basename.c (base_name): New semantics - malloc the result.
11697         Preserve // when it is special.  Preserve relative files that look
11698         like drive letters.
11699         (base_len): Preserve // when it is special.
11700         (last_component): New method, similar to old base_name semantics.
11701         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
11702         base_name.  Strip redundant slashes from ///.
11703
11704 2006-07-03  Jim Meyering  <jim@meyering.net>
11705
11706         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
11707         macro is used before the first cycle_check call.
11708
11709 2006-07-03  Eric Blake  <ebb9@byu.net>
11710
11711         * modules/dirname (Depends-on): Add xstrndup.
11712
11713 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11714
11715         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
11716         test cases, so that config.log is a bit easier to follow.
11717
11718 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11719
11720         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
11721         both are 64 bits, since this seems to be the tradition, and this
11722         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
11723         we ever run into a host that prefers long long to long in this
11724         case, we'll need another configure-time test.  Problem reported by
11725         Jim Meyering.
11726
11727 2006-07-02  Eric Blake  <ebb9@byu.net>
11728
11729         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
11730
11731 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11732
11733         * modules/inttypes (Depends-on): No longer depends on stdint.
11734         * modules/stdint (Description): Say more about assumptions.
11735         Say that the fast types might differ.  Say macros are used.
11736         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
11737         (Makefile.am): Revise list of substituted symbols to match
11738         new stdint.m4.
11739         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
11740         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
11741         * tests/test-stdint.c (verify_same_types)
11742         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
11743         the code conforms to C99/C89.
11744         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
11745         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
11746
11747 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11748
11749         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
11750         but fix a bug, by requiring at least 64 bits.
11751         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
11752         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
11753         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
11754         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
11755
11756         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
11757         changes.  Make 2.59 a prerequisite.  Check and substitute for
11758         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
11759         inttypes.h.  Do not use special include files; just use the
11760         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
11761         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
11762         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
11763         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
11764         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
11765         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
11766         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
11767         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
11768         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
11769         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
11770         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
11771         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
11772         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
11773         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
11774         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
11775         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
11776         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
11777         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
11778         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
11779         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
11780         WINT_MAX.  Check for C99 conformance more strictly, by detecting
11781         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
11782         not check for things that C99 does not require, e.g., int8_t.  If
11783         a test isn't needed unless <stdint.h> isn't working, and is
11784         unlikely to be needed for any other reason, then don't do it
11785         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
11786         size_t, since we assume C89 freestanding at least.  Do not check
11787         for sig_atomic_t, wchar_t, or wint_t, since the code now does
11788         the right thing even if the types are not defined.  Instead use:
11789         (gl_STDINT_TYPE_PROPERTIES): New macro.
11790         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
11791         testing whether <sys/types.h> clashes, as Autoconf does this for
11792         us now.  All uses removed.
11793         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
11794         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
11795         (gl_CHECK_TYPE_SAME):
11796         Remove; no longer needed.
11797         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
11798         exists, since we'll return 0 anyway in that case.
11799         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
11800
11801 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
11802
11803         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
11804         possible collision with system files.
11805         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
11806         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
11807         WCHAR_MIN and WCHAR_MAX in this case.
11808         (<stddef.h>): Do not include; no longer needed.
11809         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
11810         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
11811         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
11812         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
11813         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
11814         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
11815         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
11816         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
11817         !defined(__c99))]: Include in this case too, since it's harmless
11818         now.
11819         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
11820         dangerous to do so.
11821         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
11822         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
11823         (_STDINT_MIN, _STDINT_MAX): New macros.
11824         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
11825         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
11826         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
11827         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
11828         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
11829         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
11830         macros, not typedefs; this simplifies things quite a bit.
11831         Use long int for all types narrower than int64_t.
11832         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
11833         Define in terms of long long int or int64_t or long int,
11834         not int64_t or int32_t.  This saves some compile-time testing.
11835         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
11836         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
11837         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
11838         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
11839         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
11840         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
11841         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
11842         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
11843         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
11844         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
11845         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
11846         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
11847         undef any previous version and define our own version, for
11848         simplicity and consistency with the new macros for types.
11849         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
11850         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
11851         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
11852         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
11853         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
11854         @WINT_T_SUFFIX@ to keep things simple here.
11855         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
11856         Simplify by assuming typical 8/16/32/64 host, since we're
11857         already doing that elsewhere anyway.
11858         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
11859         and assume long long int is 64 bits if available.  This
11860         speeds up 'configure'.
11861
11862 2006-07-01  Eric Blake  <ebb9@byu.net>
11863
11864         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
11865         Reported by Andreas Buening.
11866
11867 2006-07-01  Eric Blake  <ebb9@byu.net>
11868
11869         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
11870
11871 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
11872
11873         * lib/getaddrinfo.c: fixed typo
11874
11875 2006-06-29  Jim Meyering  <jim@meyering.net>
11876
11877         * modules/strftime (Maintainer): Add my name, since with the
11878         FPRINTFTIME changes strftime.c has forked from glibc.
11879
11880 2006-06-29  Eric Blake  <ebb9@byu.net>
11881
11882         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
11883
11884 2006-06-29  Eric Blake  <ebb9@byu.net>
11885
11886         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
11887
11888 2006-06-29  Eric Blake  <ebb9@byu.net>
11889
11890         * lib/stat_.h: New file.
11891
11892 2006-06-29  Eric Blake  <ebb9@byu.net>
11893
11894         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
11895         unused static function.
11896
11897 2006-06-29  Eric Blake  <ebb9@byu.net>
11898
11899         * doc/functions.texi (Function Portability): Document missing lstat
11900         on mingw.
11901
11902 2006-06-29  Eric Blake  <ebb9@byu.net>
11903
11904         * MODULES.html.sh: Add sys_stat.
11905         * modules/sys_stat: New module.
11906         * modules/mkstemp (Depends-on): Add sys_stat.
11907
11908 2006-06-29  Derek R. Price  <derek@ximbiot.com>
11909
11910         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
11911
11912 2006-06-29  Derek R. Price  <derek@ximbiot.com>
11913
11914         * m4/c-bs-a.m4: Removed.
11915
11916 2006-06-29  Derek R. Price  <derek@ximbiot.com>
11917
11918         * lib/strftime.c: Assume strftime() exists.
11919
11920 2006-06-29  Derek Price  <derek@ximbiot.com>
11921
11922         * modules/c-bs-a: Removed - \a is C89.
11923         * MODULES.html.sh: Remove c-bs-a.
11924
11925 2006-06-29  Bruno Haible  <bruno@clisp.org>
11926
11927         * modules/wcwidth (License): Change to LGPL.
11928
11929 2006-06-28  Simon Josefsson  <jas@extundo.com>
11930
11931         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
11932         on _WIN32.
11933
11934         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
11935         getnameinfo.
11936
11937 2006-06-28  Simon Josefsson  <jas@extundo.com>
11938
11939         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
11940
11941 2006-06-28  Simon Josefsson  <jas@extundo.com>
11942
11943         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
11944         functions there.  It will succeed on Windows XP, but on Windows
11945         2000 and (presumably) earlier, it will fail, and use the internal
11946         re-implementation.
11947         (use_win32_p): New function.
11948         (getaddrinfo): Use strtoul on servname, to support numeric ports.
11949         Support AI_NUMERICSERV to disable getservbyname.
11950         (getnameinfo): New function, only supports
11951         NI_NUMERICHOST|NI_NUMERICSERV for now.
11952
11953         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
11954         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
11955         getnameinfo.
11956
11957 2006-06-28  Eric Blake  <ebb9@byu.net>
11958
11959         * modules/wcwidth: New file.
11960         * modules/mbchar (Depends-on): Add wcwidth.
11961         * modules/mbswidth (Depends-on): Add wcwidth.
11962         * MODULES.html.sh: Add wcwidth.
11963
11964 2006-06-28  Eric Blake  <ebb9@byu.net>
11965
11966         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
11967         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
11968
11969 2006-06-28  Eric Blake  <ebb9@byu.net>
11970
11971         * lib/xvasprintf.h: Fix comments.
11972
11973 2006-06-28  Eric Blake  <ebb9@byu.net>
11974
11975         * lib/mbchar.h (wcwidth): Include wcwidth.h.
11976         * lib/mbswidth.c (wcwidth): Move from here...
11977         * lib/wcwidth.h: ...to this new file.
11978
11979 2006-06-28  Derek R. Price  <derek@ximbiot.com>
11980
11981         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
11982
11983         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
11984         it's obsolete.
11985         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
11986
11987 2006-06-28  Derek R. Price  <derek@ximbiot.com>
11988
11989         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
11990         Autoconf 2.60 says this stuff was obsolete.
11991
11992 2006-06-28  Bruno Haible  <bruno@clisp.org>
11993
11994         * modules/wcwidth (Files): Add m4/wchar_t.m4.
11995
11996 2006-06-28  Bruno Haible  <bruno@clisp.org>
11997
11998         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
11999         gt_TYPE_WCHAR_T.
12000
12001 2006-06-28  Bruno Haible  <bruno@clisp.org>
12002
12003         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
12004         declaration for wcwidth.
12005         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
12006
12007 2006-06-28  Bruno Haible  <bruno@clisp.org>
12008
12009         * lib/mkdtemp.c [MINGW]: Include <io.h>.
12010         (mkdir): Define using _mkdir.
12011
12012 2006-06-28  Bruno Haible  <bruno@clisp.org>
12013
12014         * lib/getaddrinfo.h: Fix POSIX URL.
12015         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
12016         _WIN32.
12017         (use_win32_p): Make static.
12018         (getaddrinfo): Reject service name if it is empty or does not consist
12019         solely of decimal digits, or if its value is > 65535.
12020         (getnameinfo): Remove useless casts.
12021
12022 2006-06-27  Simon Josefsson  <jas@extundo.com>
12023
12024         * modules/sys_select: New file, suggested by Bruno Haible, Paul
12025         Eggert and Martin Lambers.
12026
12027 2006-06-27  Simon Josefsson  <jas@extundo.com>
12028
12029         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
12030         Eggert and Martin Lambers.
12031
12032 2006-06-27  Bruno Haible  <bruno@clisp.org>
12033
12034         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
12035         result to 0, not to empty.
12036         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
12037
12038 2006-06-27  Bruno Haible  <bruno@clisp.org>
12039
12040         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
12041
12042 2006-06-26  Simon Josefsson  <jas@extundo.com>
12043
12044         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
12045         present.
12046
12047 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
12048
12049         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
12050         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
12051         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
12052
12053 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
12054
12055         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
12056
12057 2006-06-26  Bruno Haible  <bruno@clisp.org>
12058
12059         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
12060
12061 2006-06-26  Bruno Haible  <bruno@clisp.org>
12062
12063         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
12064
12065 2006-06-26  Bruno Haible  <bruno@clisp.org>
12066
12067         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
12068         SGI C compiler in pre-C99 mode.
12069         Suggested by Mark D. Baushke and Larry Jones.
12070
12071 2006-06-26  Bruno Haible  <bruno@clisp.org>
12072
12073         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
12074         WCHAR_MAX.
12075         Reported by Mark D. Baushke and Larry Jones.
12076
12077 2006-06-26  Bruno Haible  <bruno@clisp.org>
12078
12079         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
12080         in pre-C99 mode.
12081         Suggested by Mark D. Baushke and Larry Jones.
12082
12083 2006-06-23  Simon Josefsson  <jas@extundo.com>
12084             Bruno Haible  <bruno@clisp.org>
12085
12086         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
12087         Emit mostlyclean-local rule.
12088         (func_emit_tests_Makefile_am): Likewise.
12089         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
12090
12091 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
12092
12093         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
12094
12095 2006-06-23  Bruno Haible  <bruno@clisp.org>
12096
12097         * tests/test-stdint.c: Update to match ISO C 99 Technical
12098         Corrigendum 1.
12099
12100 2006-06-23  Bruno Haible  <bruno@clisp.org>
12101
12102         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
12103
12104 2006-06-23  Bruno Haible  <bruno@clisp.org>
12105
12106         * lib/stdint_.h: Treat IRIX like OpenBSD.
12107
12108 2006-06-23  Bruno Haible  <bruno@clisp.org>
12109
12110         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
12111         ISO C 99 Technical Corrigendum 1.
12112
12113 2006-06-22  Simon Josefsson  <jas@extundo.com>
12114
12115         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
12116         MinGW.
12117
12118 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12119
12120         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
12121         needed.  Some compiler complained about some of them.  Problem reported
12122         by Larry Jones in
12123         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
12124
12125 2006-06-21  Simon Josefsson  <jas@extundo.com>
12126
12127         * tests/test-getaddrinfo.c: New file.
12128
12129         * modules/getaddrinfo-tests: New file.
12130
12131         * MODULES.html.sh: Add inet_pton.
12132
12133         * modules/inet_pton: New file.
12134
12135 2006-06-21  Simon Josefsson  <jas@extundo.com>
12136
12137         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
12138         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
12139         of using the (limited) gnulib implementation on Windows XP.
12140
12141         * m4/inet_pton.m4: New file.
12142
12143 2006-06-21  Simon Josefsson  <jas@extundo.com>
12144
12145         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
12146         variable.
12147
12148         * lib/socket_.h: Don't define WINVER.
12149
12150         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
12151         slightly modified to work in gnulib.
12152
12153 2006-06-21  Simon Josefsson  <jas@extundo.com>
12154
12155         * doc/gnulib.texi (Windows sockets): Add.
12156
12157 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
12158
12159         * lib/read-file.c (fread_file): Start with buffer allocation of
12160         0 bytes rather than 1 byte; this simplifies the code.
12161         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
12162         code to free buffer and save/restore errno.
12163         (internal_read_file): Remove unused local.
12164
12165 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12166
12167         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
12168         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
12169         Problem reported by Denis Excoffier in
12170         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
12171
12172 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
12173
12174         * modules/sys_socket, modules/socklen: Include sys/types since
12175         FreeBSD 4.x's sys/socket.h needs it.
12176
12177 2006-06-19  Simon Josefsson  <jas@extundo.com>
12178
12179         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
12180
12181 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
12182
12183         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
12184
12185 2006-06-19  Bruno Haible  <bruno@clisp.org>
12186
12187         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
12188         and FULL_PATH_INTTYPES_H in angle brackets.
12189         Reported by Mark D. Baushke <mdb@gnu.org>.
12190
12191 2006-06-17  Eric Blake  <ebb9@byu.net>
12192
12193         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
12194         errno.
12195
12196 2006-06-17  Bruno Haible  <bruno@clisp.org>
12197
12198         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
12199         <sys/inttypes.h>.
12200
12201 2006-06-17  Bruno Haible  <bruno@clisp.org>
12202
12203         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
12204         whether errno is declared. Assume <errno.h> declares errno.
12205
12206 2006-06-17  Bruno Haible  <bruno@clisp.org>
12207
12208         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
12209
12210 2006-06-17  Bruno Haible  <bruno@clisp.org>
12211
12212         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
12213         problem on Solaris 2.5.1.
12214
12215 2006-06-16  Eric Blake  <ebb9@byu.net>
12216
12217         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
12218         * lib/unicodeio.c [!defined errno]: Likewise.
12219         * lib/strtol.c [!defined errno]: Likewise.
12220         * lib/strtod.c [!defined errno]: Likewise.
12221
12222 2006-06-15  Eric Blake  <ebb9@byu.net>
12223
12224         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
12225
12226 2006-06-15  Eric Blake  <ebb9@byu.net>
12227
12228         * config/srclist.txt (ssize_t.m4): Lose sync.
12229
12230 2006-06-15  Bruno Haible  <bruno@clisp.org>
12231
12232         * modules/stdint (Files): Include m4/full-header-path.m4,
12233         m4/size_max.m4, m4/wchar_t.m4.
12234         (Makefile.am): Many more substitutions.
12235         * modules/stdint-tests: New file.
12236         * tests/test-stdint.c: New file.
12237
12238 2006-06-15  Bruno Haible  <bruno@clisp.org>
12239
12240         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
12241         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
12242         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
12243         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
12244         gl_CHECK_TYPE_SAME): New macros.
12245
12246 2006-06-15  Bruno Haible  <bruno@clisp.org>
12247
12248         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
12249
12250 2006-06-15  Bruno Haible  <bruno@clisp.org>
12251
12252         * lib/stdint_.h: Rewritten to be fully auto-configured.
12253         Fixes bug on HP-UX/IA64.
12254
12255 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
12256
12257         * lib/getdate.y (__attribute__): Don't define if already defined.
12258         Problem reported by Larry Jones.
12259         * lib/utimens.c (__attribute__): Likewise.
12260
12261 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
12262
12263         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
12264         reported by Andreas Schwab.
12265
12266 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12267             Bruno Haible  <bruno@clisp.org>
12268
12269         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
12270         check for the declaration of strnlen and a run test that exposes the
12271         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
12272         rpl_strndup.
12273
12274 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12275             Bruno Haible  <bruno@clisp.org>
12276
12277         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
12278
12279 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12280
12281         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
12282         compile test, for Tru64 4.0D.
12283
12284 2006-05-28  Karl Berry  <karl@gnu.org>
12285
12286         * config/srclist.txt (printf-args.c): lose sync.
12287
12288 2006-05-26  Martin Lambers  <marlam@marlam.de>
12289
12290         * lib/getpass.c: Updates the test for the native W32 API, and adds
12291         missing includes, thus fixing compilation warnings.
12292
12293 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
12294
12295         * lib/exclude.c (exclude_fnmatch): New function.
12296         (excluded_file_name): Call exclude_fnmatch.
12297         * lib/exclude.h (excluded_file_name): New prototype
12298
12299 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
12300
12301         * lib/tempname.c (small_open, large_open): New macros.
12302         (__open, __open64) [!_LIBC]: Remove.
12303         (__gen_tempname): Use small_open and large_open instead of __open
12304         and __open64.  This fixes a portability bug on HP-UX 11.11i
12305         reported by Simon Wing-Tang in
12306         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
12307
12308 2006-05-24  Bruno Haible  <bruno@clisp.org>
12309
12310         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
12311         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
12312         Reported by Thorsten Maerz <torte@netztorte.de> via
12313         Aaron Stone <aaron@serendipity.cx>.
12314
12315 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12316
12317         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
12318         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
12319         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
12320         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
12321         not really conditional on the cache.
12322         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
12323
12324 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
12325
12326         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
12327         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
12328         (my_usleep): Don't mishandle maximum value.
12329
12330 2006-05-19  Jim Meyering  <jim@meyering.net>
12331
12332         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
12333
12334 2006-05-17  Bruno Haible  <bruno@clisp.org>
12335
12336         Cygwin portability.
12337         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
12338
12339 2006-05-17  Bruno Haible  <bruno@clisp.org>
12340
12341         * lib/stdint_.h: Fix recognition of Cygwin.
12342
12343 2006-05-15  Bruno Haible  <bruno@clisp.org>
12344
12345         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
12346         on libtool patch by Ralf Wildenhues.
12347
12348 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
12349
12350         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
12351         test for C99 conformance; (bool) 0.5 is an integer constant
12352         expression, but (bool) -0.5 is not.  Problem reported by Fedor
12353         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
12354
12355 2006-05-11  Simon Josefsson  <jas@extundo.com>
12356
12357         * m4/xvasprintf.m4: Fix obvious typo.
12358
12359 2006-05-11  Jim Meyering  <jim@meyering.net>
12360
12361         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
12362         James Lemley.
12363
12364 2006-05-10  Simon Josefsson  <jas@extundo.com>
12365
12366         * lib/md4.c: Typo fix, update copyright years.
12367         (K1, K2): Don't use L because it turn computations into 64-bit on
12368         64-bit platforms.
12369
12370 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
12371
12372         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
12373         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
12374         unwanted sign propagation, e.g., on hosts with 64-bit int.
12375         There still are some problems with reeelly weird theoretical hosts
12376         (e.g., 33-bit int) but it's not worth worrying about now.
12377         * lib/sha1.c (rol): Likewise.
12378         (K1, K2, K3, K4): Remove unnecessary L suffix.
12379
12380 2006-05-10  Bruno Haible  <bruno@clisp.org>
12381
12382         * lib/des.c: Cast to avoid warnings.
12383
12384 2006-05-09  Bruno Haible  <bruno@clisp.org>
12385
12386         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
12387         (Depends-on): Depend also on xsize, stdarg.
12388         (configure.ac): Add gl_XVASPRINTF.
12389
12390 2006-05-09  Bruno Haible  <bruno@clisp.org>
12391
12392         * m4/xvasprintf.m4: New file.
12393
12394 2006-05-09  Bruno Haible  <bruno@clisp.org>
12395
12396         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
12397         (EOVERFLOW): Define fallback value.
12398         (xstrcat): New function.
12399         (xvasprintf): Recognize the special case of a string concatenation.
12400
12401 2006-05-08  Eric Blake  <ebb9@byu.net>
12402
12403         * gnulib-tool (func_version): Base copyright year on CVS date.
12404         (func_emit_copyright_notice): New function.
12405         (func_emit_lib_Makefile_am): Use it.
12406         (func_emit_tests_Makefile_am): Likewise.
12407         (func_import): Likewise.
12408
12409 2006-05-08  Bruno Haible  <bruno@clisp.org>
12410
12411         * modules/stdarg: New file.
12412         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
12413
12414 2006-05-08  Bruno Haible  <bruno@clisp.org>
12415
12416         * m4/stdarg.m4: New file, from GNU gettext.
12417
12418 2006-05-08  Bruno Haible  <bruno@clisp.org>
12419
12420         * config/srclist.txt (build-aux/config.rpath): different from latest
12421         release.
12422
12423 2006-05-08  Bruno Haible  <bruno@clisp.org>
12424
12425         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
12426
12427 2006-05-05  Jim Meyering  <jim@meyering.net>
12428
12429         * m4/warning.m4: New file, derived from bison's file by the same name.
12430
12431 2006-05-03  Bruno Haible  <bruno@clisp.org>
12432
12433         * lib/stdint_.h: Shorter URL.
12434         * lib/inttypes.h: Likewise.
12435
12436 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12437
12438         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
12439
12440 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12441
12442         * lib/verify.h: Document the internals better.  Most of this change
12443         was written by Bruno Haible.
12444
12445 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
12446
12447         * doc/verify.texi: New file, partly based on a proposal by
12448         Bruno Haible.
12449
12450 2006-05-02  Bruno Haible  <bruno@clisp.org>
12451
12452         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
12453         test from here...
12454         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
12455
12456 2006-04-29  Bruno Haible  <bruno@clisp.org>
12457
12458         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
12459         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
12460
12461 2006-04-29  Bruno Haible  <bruno@clisp.org>
12462
12463         * gnulib-tool: Make --update option actually work.
12464
12465 2006-04-29  Bruno Haible  <bruno@clisp.org>
12466
12467         * doc/gcd.texi: New file.
12468         * doc/gnulib.texi: Include it.
12469
12470 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
12471
12472         * lib/getdate.y (get_date): When adding relative date, start with the
12473         initial time, not with the result of the first mktime call.
12474
12475 2006-04-25  Bruno Haible  <bruno@clisp.org>
12476
12477         * gnulib-tool (func_import): Output the include directives in three
12478         blocks, sorted separately.
12479         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12480
12481 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
12482
12483         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
12484         to define main with arguments, for C++.  Reported by Eric Blake.
12485         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
12486         Prefer 'int main ()' to 'int main (void)', for C++.
12487         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
12488         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
12489         for 'main', for C99 and C++.
12490
12491 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
12492
12493         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
12494         Don't assume that exit status -1 is valid.
12495         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
12496         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
12497         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
12498         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
12499         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
12500         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
12501         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
12502         functions can be used without declaring them, or that you can
12503         exit with status -1.
12504         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
12505
12506 2006-04-24  Karl Berry  <karl@gnu.org>
12507
12508         * config/srclist.txt (longdouble.m4): sync lost.
12509
12510 2006-04-24  Eric Blake  <ebb9@byu.net>
12511
12512         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
12513
12514 2006-04-24  Bruno Haible  <bruno@clisp.org>
12515
12516         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
12517         poll() implementation in AIX.
12518         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12519
12520 2006-04-24  Bruno Haible  <bruno@clisp.org>
12521
12522         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
12523         assigned exactly once.
12524
12525 2006-04-23  Claudio Fontana  <claudio@gnu.org>
12526             Bruno Haible  <bruno@clisp.org>
12527
12528         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
12529         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
12530         for AM_CPPFLAGS.
12531
12532 2006-04-23  Bruno Haible  <bruno@clisp.org>
12533
12534         * modules/copy-file: Depend on unistd.
12535         * modules/execute: Likewise.
12536         * modules/fatal-signal: Likewise.
12537         * modules/findprog: Likewise.
12538         * modules/mkdtemp : Likewise.
12539         * modules/pipe: Likewise.
12540         * modules/wait-process: Likewise.
12541
12542 2006-04-23  Bruno Haible  <bruno@clisp.org>
12543
12544         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
12545         condition was already detected.
12546         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12547
12548 2006-04-23  Bruno Haible  <bruno@clisp.org>
12549
12550         * lib/copy-file.c: Include <unistd.h> unconditionally.
12551         * lib/execute.c: Likewise.
12552         * lib/fatal-signal.c: Likewise.
12553         * lib/findprog.c: Likewise.
12554         * lib/mkdtemp.c: Likewise.
12555         * lib/pipe.h: Likewise.
12556         * lib/pipe.c: Likewise.
12557         * lib/wait-process.h: Likewise.
12558
12559 2006-04-23  Bruno Haible  <bruno@clisp.org>
12560
12561         * gnulib-tool (func_usage): Fix --import description. Document
12562         --update.
12563         (func_import): Create temporary file in a temporary directory, if
12564         --dry-run is specified. Silence errors from 'grep' when there are no
12565         m4 files in $m4dir.
12566         (func_create_testdir): Silence errors from 'grep' when there are no
12567         m4 files in $m4dir.
12568         Reported by Karl Berry <karl@freefriends.org>.
12569
12570 2006-04-20  Bruno Haible  <bruno@clisp.org>
12571
12572         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
12573         one argument, so that the code will be portable to Autoconf 2.60.
12574         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
12575         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
12576         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
12577
12578 2006-04-19  Derek Price  <derek@ximbiot.com>
12579             Eric Blake  <ebb9@byu.net>
12580
12581         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
12582         rather than "/full/path.h".  Update comment to match.  Shorten &
12583         generalize m4_translit call via AS_TR_CPP.
12584
12585 2006-04-19  Derek Price  <derek@ximbiot.com>
12586             Eric Blake  <ebb9@byu.net>
12587
12588         * lib/inttypes.h: Correct grammar in comment.
12589
12590 2006-04-18  Derek Price  <derek@ximbiot.com>
12591             Paul Eggert  <eggert@cs.ucla.edu>
12592
12593         * modules/inttypes: New file.
12594         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
12595
12596 2006-04-18  Derek Price  <derek@ximbiot.com>
12597             Paul Eggert  <eggert@cs.ucla.edu>
12598
12599         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
12600         New files.
12601
12602 2006-04-18  Derek Price  <derek@ximbiot.com>
12603             Paul Eggert  <eggert@cs.ucla.edu>
12604
12605         * lib/inttypes.h: New file.
12606         * lib/strtoimax.c: Assume <inttypes.h>.
12607
12608 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
12609
12610         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
12611         isn't mounted.  Problem reported by Kir Kolyshkin.
12612
12613 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
12614
12615         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
12616         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
12617         Derek R. Price.
12618         * lib/regex.h (RE_DUP_MAX): Update comment to match current
12619         implementation.
12620
12621 2006-04-12  Eric Blake  <ebb9@byu.net>
12622
12623         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
12624         is now done automatically by the corresponding Autoconf macro.
12625
12626 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
12627
12628         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
12629         time_r.h.
12630
12631 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
12632
12633         Merge regex changes from libc, removing some of our
12634         POSIX-conformance changes that were rejected and redoing them in a
12635         less-intrusive way.
12636
12637         * lib/regcomp.c (re_compile_internal, init_dfa):
12638         Length arg is now size_t, not Idx.  All uses changed.
12639         (peek_token): Forward decl now says internal_function.
12640         (__re_error_msgid, __re_error_msgid_idx):
12641         Now static rather than extern with attribute_hidden.
12642         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
12643         For some reason libc prefers K&R style defns for external functions.
12644         (regerror) [!defined _LIBC]: Likewise.
12645         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
12646         (seek_collating_symbol_entry, lookup_collation_sequence_value):
12647         (build_range_exp, build_collating_symbol):
12648         Use K&R-style defn.
12649         (re_compile_fastmap): Use '\0' to memset, not 0.
12650         (utf8_sb_map): Make the calculations more obvious.
12651         (init_dfa, parse_bracket_exp, build_charclass_op):
12652         Call calloc and cast result, as glibc does.
12653         (init_word_char, fetch_token, peek_token, peek_token_bracket):
12654         (build_range_exp, build_collating_symbol):
12655         Now internal functions.
12656
12657         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
12658
12659         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
12660         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
12661         Don't depend on VMS; depend on __VMS instead, for POSIX
12662         namespace cleanness.
12663         (regoff_t): Define to ssize_t, not long int.
12664
12665         Remove the REG_ macros named below.  Instead, make the old names
12666         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
12667         __USE_GNU_REGEX.
12668         (REG_BACKSLASH_ESCAPE_IN_LISTS):
12669         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
12670         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
12671         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
12672         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
12673         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
12674         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
12675         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
12676         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
12677         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
12678         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
12679         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
12680         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
12681         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
12682         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
12683         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
12684         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
12685         (REG_NREGS):
12686         Remove.  All uses replaced by the old RE_* names.
12687         (RE_BACKSLASH_ESCAPE_IN_LISTS):
12688         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
12689         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
12690         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
12691         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
12692         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
12693         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
12694         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
12695         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
12696         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
12697         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
12698         Don't bother having these macros be independent of each others'
12699         values, since they no longer exist in the POSIX name space.
12700
12701         Rename the following member names back to their old names,
12702         unless !__USE_GNU_REGEX.  All uses changed back.
12703         (buffer): Renamed from re_buffer.
12704         (allocated): Renamed from re_allocated.
12705         (used): Renamed from re_used.
12706         (syntax): Renamed from re_syntax.
12707         (fastmap): Renamed from re_fastmap.
12708         (translate): Renamed from re_translate.
12709         (can_be_null): Renamed from re_can_be_null.
12710         (regs_allocated): Renamed from re_regs_allocated.
12711         (fastmap_accurate): Renamed from re_fastmap_accurate.
12712         (no_sub): Renamed from re_no_sub.
12713         (not_bol): Renamed from re_not_bol.
12714         (not_eol): Renamed from re_not_eol.
12715         (newline_anchor): Renamed from re_newline_anchor.
12716         (num_regs): Renamed from rm_num_regs.
12717         (start): Renamed from rm_start.
12718         (end): Renamed from rm_end.
12719
12720         (free_state): Move up a bit.
12721
12722         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
12723         #define to be empty.
12724         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
12725         when that is what is intended.
12726         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
12727         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
12728         (MAX): New macro.
12729         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
12730         All uses changed back to re_malloc, etc.  It's now the caller's
12731         responsibility to check for overflow; all callers changed.
12732         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
12733         (re_x2nrealloc): Remove.
12734         (free_state): Remove decl.
12735
12736         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
12737         (re_set_registers, re_exec):
12738         Use K&R-style defn.
12739
12740         2006-01-31  Roland McGrath  <roland@redhat.com>
12741
12742         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
12743         Reported by Mike Frysinger <vapier@gentoo.org>.
12744
12745         2006-01-15  Andreas Jaeger  <aj@suse.de>
12746
12747         [BZ #1950]
12748         * lib/regex_internal.c (re_string_reconstruct): Adjust for
12749         build_wcs_upper_buffer change.
12750         (build_wcs_upper_buffer): Change return type.
12751
12752         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
12753
12754         * lib/regex_internal.h: Include <stdint.h> if available.
12755
12756         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
12757
12758         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
12759
12760         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
12761
12762         * lib/regcomp.c: Adjust for changed secondary hash function.
12763
12764         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
12765
12766         * lib/regex.h: Pretty printing.
12767         Clean up namespace a bit.
12768
12769         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
12770
12771         * lib/regexec.c (update_cur_sifted_state, check_arrival,
12772         check_arrival_add_next_nodes): Avoid using uninitialized variable.
12773
12774         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
12775                     Ulrich Drepper  <drepper@redhat.com>
12776
12777         [BZ #1302]
12778         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
12779         changed.
12780         (bitset_word_t): Renamed from bitset_word.  All uses changed.
12781
12782         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
12783
12784         [BZ #281]
12785         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
12786         * lib/regcomp.c: Remove unnecessary uses of
12787         unsigned RE_TRANSLATE_TYPE.
12788         * lib/regex_internal.h: Likewise.
12789         * lib/regex_internal.c: Likewise.
12790         * lib/regexec.c: Likewise.
12791         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
12792
12793         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
12794
12795         * lib/regexec.c (find_recover_state): Remove unnecessary
12796         initialization.
12797         (transit_state_bkref): Make DFA a const pointer.
12798         (get_subexp): Likewise.
12799         (check_arrival): Likewise.
12800         (update_cur_sifted_state): Likewise.
12801         (re_search_internal): Likewise.
12802         (prune_impossible_nodes): Likewise.
12803         (acquire_init_state_context): Likewise.
12804         (proceed_next_node): Likewise.
12805         (set_regs): Likewise.
12806         (free_fail_stack_return): Likewise.
12807         (check_arrival_expand_ecl): Mark DFA parameter as const.
12808         (check_arrival_expand_ecl_sub): Likewise.
12809         (check_subexp_limits): Likewise.
12810         (sub_epsilon_src_nodes):  Likewise.
12811         (add_epsilon_src_nodes):  Likewise.
12812         (merge_state_array): Likewise.
12813         (update_regs): Likewise.
12814         (build_trtable): Likewise.
12815         (sift_states_backward): Mark MCTX parameter as const.
12816         (build_sifted_states): Likewise.
12817         (update_cur_sifted_state): Likewise.
12818         (sift_states_mkref): Likewise.
12819         (check_arrival_expand_ecl): Mark eclosure as const.
12820         (check_dst_limits_calc_pos_1): Likewise.
12821         * lib/regex_internal.h (re_match_context_t): Make dfa a const
12822         pointer.
12823
12824         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
12825
12826         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
12827         (transit_state_sb): Likewise.
12828         (transit_state_mb): Likewise.
12829         (sift_states_iter_mb): Likewise.
12830         (check_arrival_add_next_nodes): Likewise.
12831         (check_node_accept_bytes): Change first parameter to pointer-to-const.
12832         [_LIBC] (re_search_2_stub): Use mempcpy.
12833
12834         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
12835         mbrtowc for very simple UTF-8 case.
12836
12837         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
12838         a pointer-to-const.
12839         (re_acquire_state_context): Likewise.
12840         * lib/regex_internal.h: Adjust prototypes.
12841
12842         * lib/regex.c: Prevent using C++ compilers.
12843
12844         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
12845         (re_acquire_state_context): Likewise.
12846
12847 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
12848
12849         * modules/regex (Depends-on): Add ssize_t.
12850
12851 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
12852
12853         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
12854         translation table.
12855
12856 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
12857
12858         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
12859
12860 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
12861             Bruno Haible  <bruno@clisp.org>
12862
12863         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
12864         <sys/types.h> and <inttypes.h>.
12865
12866 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12867
12868         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
12869         `__error_t_defined', so argp.h will not typedef the former.
12870
12871 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
12872
12873         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
12874         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
12875         glibc names.  Even if glibc is changed to conform to POSIX, the
12876         traditional names will be available anyway, since regex depends on
12877         the extensions module.  Also, fix a longstanding typo in the
12878         implementation of Spencer ERE test #75 from grep 2.3.  Problems
12879         reported by Emanuele Giaquinta.  Also, change sense of cached
12880         variable, so that the message makes sense.
12881
12882 2006-03-24  Simon Josefsson  <jas@extundo.com>
12883
12884         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
12885         including some doc fixes.
12886         (base64_encode_alloc): Fix +1 bug on allocation failures.
12887
12888 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12889
12890         * lib/base64.c (base64_encode): Do not read past end of array with
12891         unsanitized input on systems with CHAR_BIT > 8.
12892
12893 2006-03-24  Eric Blake  <ebb9@byu.net>
12894
12895         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
12896
12897 2006-03-22  Karl Berry  <karl@gnu.org>
12898
12899         * config/srclist.txt (*setenv.[ch]): get from coreutils.
12900         * config/srclistvars.sh (COREUTILS): new var.
12901
12902 2006-03-17  Jim Meyering  <jim@meyering.net>
12903
12904         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
12905         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
12906
12907 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
12908
12909         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
12910         no longer needs it.  Instead, check that regoff_t is as least
12911         as wide as ptrdiff_t.
12912
12913         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
12914         so that our regex.h stays compatible with the installed regex.
12915         This is helpful for installers who configure --without-included-regex.
12916         Problem reported by Emanuele Giaquinta.
12917
12918 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
12919
12920         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
12921         Typedef to long int, not to off_, as POSIX will likely change
12922         in that direction.
12923
12924 2006-03-15  Eric Blake  <ebb9@byu.net>
12925
12926         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
12927
12928 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
12929
12930         * lib/argp-help.c (validate_uparams): Fix typo
12931         * lib/argp-parse.c (argp_default_options): Consistently begin help
12932         messages with a lowercase letter.
12933
12934 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
12935
12936         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
12937         overrun buffers and shouldn't be used (much as gets shouldn't be
12938         used).
12939         * lib/time_r.c (asctime_r, ctime_r): Likewise.
12940
12941 2006-03-08  Simon Josefsson  <jas@extundo.com>
12942
12943         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
12944         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12945
12946 2006-03-08  Simon Josefsson  <jas@extundo.com>
12947
12948         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
12949         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12950
12951 2006-03-08  Simon Josefsson  <jas@extundo.com>
12952
12953         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
12954         signal that configure disabled the device.
12955
12956 2006-03-08  Simon Josefsson  <jas@extundo.com>
12957
12958         * build-aux/maint.mk: Fix refresh-po, to handle no translated
12959         languages.
12960
12961 2006-03-07  Simon Josefsson  <jas@extundo.com>
12962
12963         * modules/getopt (Depends-on): Add unistd.
12964
12965         * modules/unistd: New file.
12966
12967 2006-03-07  Simon Josefsson  <jas@extundo.com>
12968
12969         * modules/gc-random: New file.
12970
12971 2006-03-07  Simon Josefsson  <jas@extundo.com>
12972
12973         * m4/unistd_h.m4: New file.
12974
12975 2006-03-07  Simon Josefsson  <jas@extundo.com>
12976
12977         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
12978         test to be side-effect free by storing the result in the cache
12979         variable gl_cv_lib_readline, and moving the assignment of
12980         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
12981         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12982
12983 2006-03-07  Simon Josefsson  <jas@extundo.com>
12984
12985         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
12986         error on missing devices (the functions will return an error).
12987
12988         * m4/gc.m4: Move random stuff to gc-random.m4
12989
12990 2006-03-07  Simon Josefsson  <jas@extundo.com>
12991
12992         * lib/unistd_.h: New file.
12993
12994 2006-03-07  Simon Josefsson  <jas@extundo.com>
12995
12996         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
12997
12998 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
12999
13000         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
13001         Problem reported by Juan Manuel Guerrero.
13002
13003 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13004
13005         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
13006         the unistd module.
13007         * lib/getlogin_r.c: Likewise.
13008         * lib/getlogin_r.h: Likewise.
13009         * lib/glob.c: Likewise.
13010         * lib/pagealign_alloc.c: Likewise.
13011         * lib/unistd_.h: Remove; no longer needed.
13012
13013 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
13014
13015         * MODULES.html.sh (Support for systems lacking POSIX:2001):
13016         Add unistd.
13017         * modules/c-stack (Depends-on): Add unistd.
13018         * modules/getlogin_r: Likewise.
13019         * modules/glob: Likewise.
13020         * modules/pagealign_alloc: Likewise.
13021         * modules/unistd (Files): Remove lib/unistd_.h.
13022         (EXTRA_DIST): Remove.
13023         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
13024         need unistd_.h.
13025         (MOSTLYCLEANFILES): Remove unistd.h-t.
13026
13027 2006-03-03  Simon Josefsson  <jas@extundo.com>
13028
13029         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
13030
13031 2006-03-03  Simon Josefsson  <jas@extundo.com>
13032
13033         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
13034         libidn and bison.
13035
13036 2006-03-03  Simon Josefsson  <jas@extundo.com>
13037
13038         * build-aux/maint.mk: Add indent target.
13039
13040 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
13041
13042         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
13043         our replacement poll.h in any case, to avoid a differing
13044         declaration from a system header.  Seen on AIX.
13045
13046 2006-03-01  Simon Josefsson  <jas@extundo.com>
13047
13048         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
13049         <kasal@ucw.cz>.
13050
13051 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13052
13053         * modules/gettime (Depends-on): Add extensions module.
13054         * modules/nanosleep (Depends-on): Likewise.
13055         * modules/settime (Depends-on): Likewise.
13056
13057 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13058
13059         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
13060         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
13061         pedantically.
13062         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
13063         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
13064
13065         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
13066         not "==".  Reported by Ralf Wildenhues.
13067
13068 2006-03-01  Karl Berry  <karl@gnu.org>
13069
13070         * doc/Copyright/request-*: new files, synced from gnuorg.
13071
13072 2006-03-01  Karl Berry  <karl@gnu.org>
13073
13074         * config/srclist.txt (Copyright/*): new entries.
13075
13076 2006-02-28  Simon Josefsson  <jas@extundo.com>
13077
13078         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
13079
13080 2006-02-27  Simon Josefsson  <jas@extundo.com>
13081
13082         * lib/base64.h: Indent #define's.  From Jim Meyering
13083         <jim@meyering.net>.
13084
13085 2006-02-27  Jim Meyering  <jim@meyering.net>
13086
13087         Revert the change of 2006-02-24, so these files can continue
13088         to be sync'd from gettext.
13089         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
13090         of `config.h'.
13091
13092 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
13093
13094         * modules/intprops: New file.
13095         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
13096         Add intprops.
13097         * modules/getloadavg (Files): Remove lib/intprops.h.
13098         (Depends-on): Add intprops.
13099         * modules/human: Likewise.
13100         * modules/inttostr: Likewise.
13101         * modules/openat: Likewise.
13102         * modules/sig2str: Likewise.
13103         * modules/userspec: Likewise.
13104         * modules/utimecmp: Likewise.
13105         * modules/xnanosleep: Likewise.
13106         * modules/xstrtol: Likewise.
13107
13108 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
13109
13110         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
13111         * modules/lock-tests (TESTS): Use $(EXEEXT).
13112         * modules/tls-tests: Likewise.
13113         * modules/argp-tests: Likewise.
13114         (check_PROGRAMS): New var, replacing...
13115         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
13116
13117 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13118
13119         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
13120         `config.h'.
13121
13122 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
13123
13124         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
13125
13126 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13127
13128         Sync from coreutils.
13129         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
13130         gl_CHDIR_SAFER.
13131
13132 2006-02-22  Jim Meyering  <jim@meyering.net>
13133
13134         Sync from coreutils.
13135         * m4/chdir-safer.m4: New file.
13136
13137 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
13138
13139         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
13140         AT_FDCWD exceeds INT_MAX.
13141         * lib/openat.h (AT_FDCWD): Likewise.
13142
13143 2006-02-17  Eric Blake  <address@hidden>
13144
13145         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
13146
13147 2006-02-16  Simon Josefsson  <jas@extundo.com>
13148
13149         * modules/getaddrinfo (Depends-on): Add sys_socket.
13150
13151 2006-02-15  Simon Josefsson  <jas@extundo.com>
13152
13153         * build-aux/maint.mk: Add dsyntax-check rule.
13154
13155 2006-02-15  Eric Blake  <ebb9@byu.net>
13156
13157         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
13158         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
13159         'present but cannot compile' warnings on cygwin.
13160         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
13161         use ws2tcpip.h if sys/socket.h works.
13162         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
13163         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
13164
13165 2006-02-14  Simon Josefsson  <jas@extundo.com>
13166
13167         * modules/maintainer-makefile (Files): Rename.
13168
13169         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
13170         and (the local) Makefile.cfg to maint-cfg.mk.
13171
13172         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
13173         to the latter.
13174
13175         * modules/maintainer-makefile: New module.
13176
13177         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
13178         severaly stripped to make it possible to build it up from scratch
13179         with reliable tests.
13180
13181         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
13182         fixes to permit overriding the default actions when configure and
13183         makefile are not available.
13184
13185 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
13186
13187         Sync from coreutils.
13188         * modules/lstat (Depends-on): Don't depend on xalloc.
13189         (License): Change from GPL to LGPL, since this is now simply a
13190         replacement for a libc function.
13191
13192 2006-02-14  Jim Meyering  <jim@meyering.net>
13193
13194         Sync from coreutils.
13195
13196         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
13197         failure on deficient systems, and simplify gnulib lgpl dependencies.
13198         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
13199         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
13200
13201         * lib/xalloc-die.c: Remove unused definition of N_.
13202
13203 2006-02-14  Jim Meyering  <jim@meyering.net>
13204
13205         Sync from coreutils.
13206         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
13207         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
13208         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
13209         double-quote uses of that variable, to accommodate the rare case in
13210         which getmntent is available in none of the libraries checked.  This
13211         happens at least on FreeBSD 5.0.
13212
13213 2006-02-13  Simon Josefsson  <jas@extundo.com>
13214
13215         * gnulib-tool (Usage): Fix --import, from
13216         karl@freefriends.org (Karl Berry).
13217
13218 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
13219
13220         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
13221
13222 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
13223
13224         * lib/argp-namefrob.h: Restore changes accidentally lost during the
13225         "autoupdate" on 2005-12-12.
13226
13227 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13228
13229         * modules/closeout (Depends-on): Remove atexit.
13230
13231 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13232
13233         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
13234         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
13235
13236 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13237
13238         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
13239         __EXTENSIONS__ if this causes compilation to fail.  Problem
13240         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
13241         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
13242
13243 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
13244
13245         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
13246         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
13247         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
13248         All uses changed.
13249
13250 2006-01-26  Simon Josefsson  <jas@extundo.com>
13251
13252         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
13253         prototype is visible on mingw32.
13254
13255         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
13256         for mingw32.
13257
13258         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
13259         mingw32).
13260
13261 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
13262
13263         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
13264         attempt to open for write; this always fails, at least on POSIX
13265         hosts.  This reinstates the 2006-01-09 change, which was
13266         inadvertently removed.
13267
13268 2006-01-26  Bruno Haible  <bruno@clisp.org>
13269
13270         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
13271         Reported by Paul Eggert.
13272
13273 2006-01-26  Bruno Haible  <bruno@clisp.org>
13274             Paul Eggert  <eggert@cs.ucla.edu>
13275
13276         * lib/stdbool_.h (_Bool)
13277         [(! (defined __cplusplus || defined __BEOS__)
13278           && !defined __GNUC__
13279           && !(defined __HP_cc || defined __xlc__
13280                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
13281                || defined __sgi))]:
13282         #define to signed char in these cases too; this simplifies
13283         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
13284         etc., separately) and makes it more conservative.
13285
13286 2006-01-25  Simon Josefsson  <jas@extundo.com>
13287
13288         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
13289         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
13290         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
13291
13292 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
13293
13294         * lib/argp-namefrob.h: Bugfix. Remove stray #
13295
13296 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
13297
13298         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
13299         so that we test the test.
13300         Check for yet another HP-UX cc bug involving *bool |= bool.
13301
13302 2006-01-25  Karl Berry  <karl@gnu.org>
13303
13304         * config/srclist.txt (vasnprintf.c): sync lost.
13305
13306 2006-01-25  Jim Meyering  <jim@meyering.net>
13307
13308         Sync from the stable (b5) branch of coreutils:
13309
13310         * lib/fts.c (fts_children): Don't let close() clobber errno from
13311         failed fchdir().
13312
13313         * lib/fts.c (fts_stat): When following a symlink-to-directory,
13314         don't necessarily interpret stat-fails+lstat-succeeds as indicating
13315         a dangling symlink.  That can also happen at least for ELOOP.
13316         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
13317         FYI, this bug predates the inclusion of fts.c in coreutils.
13318
13319         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
13320         in their own block, so pre-c99 compilers don't object.
13321
13322         Avoid the double-free (first in fts_read, second in fts_close) that
13323         would occur when an `active' directory is made inaccessible (e.g.,
13324         via chmod a-x) during a traversal.
13325         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
13326         before returning.  Reproduce this failure by
13327         mkdir -p a/b; cd a; chmod a-x . b
13328         Reported by Stavros Passas.
13329
13330 2006-01-25  Jim Meyering  <jim@meyering.net>
13331
13332         * lib/fileblocks.c: Remove more useless parentheses.
13333         * lib/readutmp.h: Likewise.
13334
13335 2006-01-25  Bruno Haible  <bruno@clisp.org>
13336
13337         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
13338         warnings.
13339         Reported by Paul Eggert.
13340
13341 2006-01-25  Bruno Haible  <bruno@clisp.org>
13342
13343         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
13344         rid of a trap command. For Solaris sh.
13345         Reported by Mark D. Baushke <mdb@gnu.org>.
13346
13347 2006-01-24  Simon Josefsson  <jas@extundo.com>
13348
13349         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
13350         Bruno.
13351
13352 2006-01-24  Karl Berry  <karl@gnu.org>
13353
13354         * config/srclist.txt (argp-namefrob.h): sync lost.
13355
13356 2006-01-24  Jim Meyering  <jim@meyering.net>
13357
13358         * modules/openat (Files): Add lib/intprops.h.
13359         From Mark D. Baushke.
13360
13361 2006-01-24  Jim Meyering  <jim@meyering.net>
13362
13363         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
13364         Reported by Mark D. Baushke.
13365
13366 2006-01-24  Jim Meyering  <jim@meyering.net>
13367
13368         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
13369
13370 2006-01-24  Bruno Haible  <bruno@clisp.org>
13371
13372         * modules/strnlen (Maintainer): Change from glibc to all.
13373
13374 2006-01-24  Bruno Haible  <bruno@clisp.org>
13375
13376         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
13377         Patch by Paul Eggert.
13378
13379 2006-01-24  Bruno Haible  <bruno@clisp.org>
13380
13381         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
13382         already has it.
13383         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
13384         2005-11-26.
13385
13386         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
13387         'signed char' to avoid problems with the built-in _Bool type.
13388         Reported by Paul Eggert on 2005-11-26.
13389
13390 2006-01-24  Bruno Haible  <bruno@clisp.org>
13391
13392         * gnulib-tool (func_import): Avoid constructing complicated sed
13393         expressions inside backquote.
13394         Report and solution by Mark D. Baushke <mdb@gnu.org>.
13395
13396 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
13397
13398         These changes imported from libc.
13399         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
13400         test and two separate function calls.
13401         * lib/strndup.c (__strndup): Add libc_hidden_def.
13402
13403 2006-01-23  Simon Josefsson  <jas@extundo.com>
13404
13405         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
13406         Remove the test_*_SOURCES variable: automake infers it by default.
13407         * modules/tls-tests: Likewise.
13408
13409 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13410
13411         Work around porting bugs reported by Dieter in
13412         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
13413         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
13414         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
13415         Include "getopt.h" first, to check interface.
13416         (getenv): Declare only if defined HAVE_DECL_GETENV &&
13417         !HAVE_DECL_GETENV.
13418         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
13419         (__strndup): Revert to K&R-style function dfns, the glibc style.
13420         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
13421         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
13422         Include strnlen.h first, to get prototype properly.
13423         (strnlen): Renamed from __strnlen.
13424         Remove weak alias.
13425
13426 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13427
13428         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
13429
13430 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
13431
13432         * config/srclist.txt: Adjust to reflect glibc reorganization.
13433         This affects only comments.
13434
13435 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
13436
13437          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
13438          Reported by Bruce Korb <bkorb@gnu.org>.
13439
13440 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
13441
13442         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
13443         to pacify gcc -Wswitch-default.
13444
13445 2006-01-22  Bruno Haible  <bruno@clisp.org>
13446
13447         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
13448         temporary buffer for sprintf, take into account the precision also
13449         for 'd', 'i', 'u', 'o', 'x', 'X'.
13450
13451 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
13452
13453         * modules/argp-tests: New module
13454         * tests/test-argp.c: New file
13455         * tests/test-argp-2.sh: New file
13456
13457 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
13458
13459         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
13460         (__argp_base_name): Removed
13461         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
13462         typo.
13463         (__argp_base_name): Provide macro definition or extern declaration
13464         depending on the configuration
13465
13466 2006-01-20  Simon Josefsson  <jas@extundo.com>
13467
13468         * modules/inet_ntop (Depends-on): Depend on sys_socket.
13469
13470 2006-01-20  Simon Josefsson  <jas@extundo.com>
13471
13472         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
13473
13474 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13475
13476         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
13477         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
13478         Suggested by Bruno Haible.
13479
13480 2006-01-20  Karl Berry  <karl@gnu.org>
13481
13482         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
13483         until changes propagate, I guess.
13484
13485 2006-01-19  Simon Josefsson  <jas@extundo.com>
13486
13487         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
13488
13489 2006-01-19  Simon Josefsson  <jas@extundo.com>
13490
13491         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
13492
13493 2006-01-19  Simon Josefsson  <jas@extundo.com>
13494
13495         * gnulib-tool: Set check_PROGRAMS.
13496
13497         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
13498         modules/des-tests, modules/gc-arcfour-tests,
13499         modules/gc-arctwo-tests, modules/gc-des-tests,
13500         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
13501         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
13502         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
13503         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
13504         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
13505         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
13506         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
13507         test_*_SOURCES.
13508
13509 2006-01-18  Simon Josefsson  <jas@extundo.com>
13510
13511         * modules/socklen (Depends-on): Depend on sys_socket.
13512
13513 2006-01-18  Simon Josefsson  <jas@extundo.com>
13514
13515         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
13516         modules/des-tests, modules/gc-arcfour-tests,
13517         modules/gc-arctwo-tests, modules/gc-des-tests,
13518         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
13519         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
13520         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
13521         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
13522         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
13523         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
13524         $(EXEEXT) to automake TESTS variable, for mingw32.
13525
13526 2006-01-17  Simon Josefsson  <jas@extundo.com>
13527
13528         * modules/socklen (Include): Need sys/socket.h.
13529
13530 2006-01-17  Bruno Haible  <bruno@clisp.org>
13531
13532         * modules/ssize_t (Include): Add <sys/types.h>.
13533
13534 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
13535
13536         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
13537         it's not portable and it doesn't work with cross-compiles.
13538         Problem reported by Bruno Haible.  Fix missing-$ typo in
13539         'test "gl_cv_ignore_unused_libraries" ...' that prevented
13540         -zignore from being used with Sun's C compiler.
13541
13542 2006-01-12  Simon Josefsson  <jas@extundo.com>
13543
13544         * lib/base64.c: Fix warning, reported by Bruno Haible
13545         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
13546
13547 2006-01-12  Bruno Haible  <bruno@clisp.org>
13548
13549         * modules/ldd: New file.
13550         * build-aux/ldd.sh.in: New file.
13551         * MODULES.html.sh (Support for building libraries and executables): Add
13552         ldd.
13553
13554 2006-01-12  Bruno Haible  <bruno@clisp.org>
13555
13556         * m4/ldd.m4: New file.
13557
13558 2006-01-12  Bruno Haible  <bruno@clisp.org>
13559
13560         * gnulib-tool (func_import, func_create_testdir): Don't go into an
13561         endless loop while replacing $auxdir with build-aux.
13562
13563 2006-01-11  Simon Josefsson  <jas@extundo.com>
13564
13565         * lib/stdint_.h (SIZE_MAX): Add missing (.
13566
13567 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
13568
13569         Sync from coreutils.
13570         * lib/md5.c: Fix commentary typos.
13571         (alignof, UNALIGNED_P): No need for a GCC-specific version.
13572         * lib/md5.h (__attribute__): Remove; unused.
13573         * lib/sha1.c: Fix commentary to match md5 better.
13574         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
13575         so that we don't need to worry about alignment.  All uses changed.
13576         This merges the 2005-10-28 md5 change into sha1.
13577
13578 2006-01-11  Jim Meyering  <jim@meyering.net>
13579
13580         Sync from coreutils.
13581         * lib/md5.c (OP): Fix spacing.
13582
13583 2006-01-11  Bruno Haible  <bruno@clisp.org>
13584
13585         Ensure automatic ordering between gl_LOCK and gl_ARGP.
13586         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
13587         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
13588
13589 2006-01-11  Bruno Haible  <bruno@clisp.org>
13590
13591         Ensure automatic ordering between gl_LOCK and gl_ARGP.
13592         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
13593         the "early" section as well.
13594
13595 2006-01-11  Bruno Haible  <bruno@clisp.org>
13596
13597         Avoid "ar: no archive members specified" error on MacOS X.
13598         * gnulib-tool (func_modules_add_dummy): New function.
13599         (func_import, func_create_testdir): Invoke it.
13600
13601 2006-01-11  Bruno Haible  <bruno@clisp.org>
13602
13603         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
13604         with $auxdir in AC_CONFIG_FILES statements.
13605
13606 2006-01-11  Bruno Haible  <bruno@clisp.org>
13607
13608         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
13609         Initialize also noinst_HEADERS to empty.
13610
13611 2006-01-11  Bruno Haible  <bruno@clisp.org>
13612
13613         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
13614         variables.
13615         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
13616         autoreconf.
13617
13618 2006-01-11  Bruno Haible  <bruno@clisp.org>
13619
13620         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
13621         overridable by the user.
13622         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13623
13624 2006-01-10  Simon Josefsson  <jas@extundo.com>
13625
13626         * modules/sys_socket: New file.
13627
13628 2006-01-10  Simon Josefsson  <jas@extundo.com>
13629
13630         * m4/sys_socket_h.m4: New file.
13631
13632 2006-01-10  Simon Josefsson  <jas@extundo.com>
13633
13634         * lib/socket_.h: New file.
13635
13636 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13637
13638         * modules/readutmp (Maintainer): Add myself.
13639
13640 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13641
13642         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
13643         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
13644         People who are still concerned with buggy memcmp implementations
13645         can invoke gl_FUNC_MEMCMP themselves.
13646
13647 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13648
13649         * lib/regex_internal.h (BITSET_WORD_BITS):
13650         Work around a bug in 64-bit PGC (before version 6.1-2), where the
13651         preprocessor mishandles large unsigned values as if they were signed.
13652         Problem reported by Claudio Fontana in
13653         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
13654
13655 2006-01-10  Jim Meyering  <jim@meyering.net>
13656
13657         Avoid the double-free (first in fts_read, second in fts_close) that
13658         would occur when an `active' directory is made inaccessible (e.g.,
13659         via chmod a-x) during a traversal.
13660         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
13661         before returning.  Reproduce this failure by
13662         mkdir -p a/b; cd a; chmod a-x . b
13663         Reported by Stavros Passas.
13664
13665         Sync from coreutils.
13666         * lib/sha1.c: Tweak grammar in a comment.
13667
13668 2006-01-10  Jim Meyering  <jim@meyering.net>
13669
13670         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
13671         Patch by Joerg Sonnenberger.
13672
13673 2006-01-10  Bruno Haible  <bruno@clisp.org>
13674
13675         * modules/readutmp: Depend on module free.
13676         * modules/strtok_r: Depend on module restrict.
13677
13678 2006-01-10  Bruno Haible  <bruno@clisp.org>
13679
13680         * modules/gettext (configure.ac): Add an invocation of
13681         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
13682
13683 2006-01-10  Bruno Haible  <bruno@clisp.org>
13684
13685         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
13686         Reported by Werner Lemberg <wl@gnu.org>.
13687
13688 2006-01-10  Bruno Haible  <bruno@clisp.org>
13689
13690         * lib/localcharset.c: Update from GNU gettext.
13691
13692 2006-01-10  Bruno Haible  <bruno@clisp.org>
13693
13694         * lib/argp.h (__const): Remove macro. Use const instead.
13695         * lib/argp-fmtstream.h (__const): Likewise.
13696         * lib/glob_.h (__const): Remove macro.
13697         * lib/glob-libc.h: Use const instead of __const.
13698
13699 2006-01-10  Bruno Haible  <bruno@clisp.org>
13700
13701         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
13702         variable.
13703         Needed to avoid an automake error regarding the 'gettext' module.
13704
13705 2006-01-09  Simon Josefsson  <jas@extundo.com>
13706
13707         * modules/inet_ntop (Depends-on): Add restrict.
13708
13709 2006-01-09  Simon Josefsson  <jas@extundo.com>
13710
13711         * modules/gc-rijndael-tests (License): Put under LGPL.
13712
13713         * modules/gc-des-tests (License): Likewise.
13714
13715         * modules/gc-arcfour-tests (License): Likewise.
13716
13717         * modules/gc-arctwo-tests (License): Likewise.
13718
13719         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
13720
13721         * modules/gc-hmac-sha1-tests (Files): Likewise.
13722
13723         * modules/gc-hmac-md5-tests (License): Likewise.
13724
13725         * modules/gc-sha1-tests (License): Likewise.
13726
13727         * modules/gc-md5-tests (License): Likewise.
13728
13729         * modules/gc-md4-tests (License): Likewise.
13730
13731         * modules/gc-md2-tests (License): Likewise.
13732
13733         * modules/gc-tests (License): Likewise.
13734
13735         * modules/des-tests (License): Likewise.
13736
13737         * modules/md4-tests (License): Likewise.
13738
13739         * modules/md2-tests (License): Likewise.
13740
13741 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13742
13743         Sync from coreutils:
13744
13745         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
13746         * modules/lib-ignore: New file.
13747         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
13748         chdir-safer.m4, lchmod.m4.
13749         * modules/openat: Add mkdirat.c, openat-priv.h.
13750
13751 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13752
13753         Sync from coreutils.
13754         * m4/lib-ignore.m4: New file.
13755         * m4/lchmod.m4: New file.
13756
13757 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13758
13759         Sync from coreutils.
13760         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
13761         for write access: POSIX says that must fail.
13762         * lib/fts.c (diropen): Likewise.
13763         * lib/save-cwd.c (save_cwd): Likewise.
13764         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
13765         well, for minor improvements on hosts that lack O_DIRECTORY.
13766         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
13767         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
13768         Fall back on chown if open failed with EACCES.
13769
13770         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
13771         Report an error at compile-time if only a 1-second nominal clock
13772         resolution is found.
13773
13774         * lib/lchmod.h: New file.
13775         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
13776         (make_dir_parents): Use lchown rather than chown, and
13777         lchmod rather than chmod.
13778
13779         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
13780         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
13781         "proc" reported by n0dalus.
13782
13783         * lib/mountlist.c: Include <limits.h>.
13784         (dev_from_mount_options)
13785         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
13786         New function.  It no longer assumes "dev=" has the System V meaning
13787         on Linux (since it doesn't).  It also parses "dev=" more carefully.
13788         (read_file_system_list)
13789         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
13790         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
13791         dev= in that case.
13792
13793         * lib/posixtm.h (PDS_PRE_2000): New macro.
13794         * lib/posixtm.c (year): Arg is now syntax_bits rather than
13795         allow_century.  All usages changed.  Reject dates outside the range
13796         1969-1999 if PDS_PRE_2000 is used.
13797
13798 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
13799
13800         Sync from coreutils.
13801         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
13802         (Time of day items): Mention the possibility of leap seconds.
13803         Problem reported by Dr. David Alan Gilbert.
13804
13805 2006-01-09  Jim Meyering  <jim@meyering.net>
13806
13807         Sync from coreutils.
13808
13809         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
13810
13811         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
13812
13813         * lib/modechange.c (mode_compile): Reject an invalid mode string
13814         that starts with an octal digit.  From Andreas Gruenbacher.
13815
13816         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
13817         and dup to open_safer and dup_safer, respectively.
13818         (openat_permissive): Fix typo in comment.
13819
13820         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
13821         "gettext.h"; either no longer needed or are guaranteed by openat.h.
13822         (_): Remove; no longer needed.
13823         (openat): Renamed from rpl_openat; no need for rpl_openat
13824         since openat.h renames openat for us.
13825         Replace most of the body with a call to openat_permissive,
13826         to avoid duplicate code.
13827         Port to (probably hypothetical) environments were mode_t is
13828         wider than int.
13829         (openat_permissive): Require mode arg, so that we can check
13830         types better.  Put it just after flags.  Change cwd failure
13831         indicator from pointer-to-bool to pointer-to-errno-value.
13832         All callers changed.
13833         Invoke openat_save_fail and/or openat_restore_fail if
13834         cwd_errno is null, so that openat can call us.
13835         (openat_permissive, fdopendir, fstatat, unlinkat):
13836         Simplify errno handling to avoid some duplicate code,
13837         as it's OK to set errno on success.
13838         * lib/openat.h: Revamp code so that function macros depend on
13839         __OPENAT_PREFIX only, not also on AT_FDCWD.
13840         (openat_ro): Remove.  Caller changed to use openat_permissive.
13841         (openat_permissive): Now a macro, if not a function.
13842         (openat_restore_fail, openat_save_fail): Now always functions,
13843         since mkdirat needs them even if __OPENAT_PREFIX is defined.
13844
13845         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
13846         and openat.c.
13847         * lib/mkdirat.c: Include openat-priv.h.
13848         Remove definitions of macros defined therein.
13849         * lib/openat.c: Likewise.
13850
13851         * lib/mkdirat.c (mkdirat): New file and function.
13852         * lib/openat.h (mkdirat): Declare.
13853
13854         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
13855
13856         * lib/openat.h (openat_permissive): Declare.
13857         (openat_ro): Define.
13858
13859         * lib/openat.c (EXPECTED_ERRNO): New macro.
13860         (openat_permissive): New function -- used in remove.c rewrite.
13861         (all functions): Set errno just before returning, only if there
13862         was an actual failure.
13863         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
13864
13865         Emulate openat-family functions using Linux's procfs, if possible.
13866         Idea and some code based on Ulrich Drepper's glibc changes.
13867
13868         * lib/openat.c: (BUILD_PROC_NAME): New macro.
13869         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
13870         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
13871         before falling back on save_cwd and restore_cwd.
13872         (fdopendir, fstatat, unlinkat): Likewise.
13873
13874         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
13875         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
13876
13877         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
13878         as second argument to va_arg.  Otherwise, some versions of gcc
13879         warn that `if this code is reached, the program will abort'.
13880
13881 2006-01-09  Jim Meyering  <jim@meyering.net>
13882
13883         Sync from coreutils.
13884         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
13885         Require openat-priv.h.
13886
13887 2006-01-09  Bruno Haible  <bruno@clisp.org>
13888
13889         * modules/strnlen (Include): Use strnlen.h.
13890
13891 2006-01-09  Bruno Haible  <bruno@clisp.org>
13892
13893         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
13894
13895 2006-01-09  Bruno Haible  <bruno@clisp.org>
13896
13897         * lib/sysexit_.h (EX_OK): New macro.
13898         Suggested by Martin Lambers <marlam@marlam.de>.
13899
13900 2006-01-09  Bruno Haible  <bruno@clisp.org>
13901
13902         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
13903         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
13904
13905 2006-01-09  Bruno Haible  <bruno@clisp.org>
13906
13907         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
13908         numbers.
13909
13910 2006-01-09  Bruno Haible  <bruno@clisp.org>
13911
13912         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
13913         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
13914         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
13915         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
13916
13917 2006-01-09  Bruno Haible  <bruno@clisp.org>
13918
13919         * build-aux/javacomp.sh.in: New file, moved from lib/.
13920         * modules/javacomp-script (Files): Update.
13921         (configure.ac): Add AC_CONFIG_FILES invocation.
13922         (EXTRA_DIST): Remove variable.
13923
13924         * build-aux/javaexec.sh.in: New file, moved from lib/.
13925         * modules/javaexec (Files): Update.
13926         (configure.ac): Add AC_CONFIG_FILES invocation.
13927         (EXTRA_DIST): Remove javaexec.sh.in.
13928
13929         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
13930         * modules/csharpcomp-script (Files): Update.
13931         (configure.ac): Add AC_CONFIG_FILES invocation.
13932         (EXTRA_DIST): Remove variable.
13933
13934         * build-aux/csharpexec.sh.in: New file, moved from lib/.
13935         * modules/csharpexec (Files): Update.
13936         (configure.ac): Add AC_CONFIG_FILES invocation.
13937         (EXTRA_DIST): Remove csharpexec.sh.in.
13938
13939 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
13940
13941         Sync from coreutils.
13942
13943         Add POSIX ACL support
13944         * lib/acl.h (copy_acl, set_acl): Add declarations.
13945         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
13946         systems other than Linux.
13947         (chmod_or_fchmod): New function: use fchmod when possible,
13948         and chmod otherwise.
13949         (file_has_acl): Add a POSIX ACL implementation, with a
13950         Linux-specific subcase.
13951         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
13952         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
13953         acls are unsupported.
13954         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
13955         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
13956         are unsupported.
13957
13958 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
13959
13960         Sync from coreutils.
13961         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
13962
13963 2006-01-07  Bruno Haible  <bruno@clisp.org>
13964
13965         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
13966         gl_EARLY.
13967
13968 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13969
13970         * lib/strftime.c (tzname): Don't declare if it is already #defined.
13971         Problem reported for Mingw by Mark Junker.
13972
13973 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
13974
13975         * README: Gnulib normally doesn't generate a tarball.
13976
13977 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
13978
13979         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
13980         long int, not int, for nanosecond counts, so that people who are
13981         used to POSIX struct timespec won't be surprised.  Reported by Jim
13982         Meyering.
13983
13984 2005-12-28  Bruno Haible  <bruno@clisp.org>
13985
13986         * build-aux/config.rpath: Update from GNU gettext.
13987
13988 2005-12-16  Jim Meyering  <jim@meyering.net>
13989
13990         * modules/fprintftime: New module.
13991         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
13992
13993 2005-12-16  Jim Meyering  <jim@meyering.net>
13994
13995         * m4/fprintftime.m4: New file.
13996
13997 2005-12-16  Jim Meyering  <jim@meyering.net>
13998
13999         * lib/fprintftime.c, lib/fprintftime.h: New files.
14000
14001 2005-12-15  Simon Josefsson  <jas@extundo.com>
14002
14003         * modules/socklen (configure.ac): Fix M4 macro name, to align with
14004         new m4/socklen.m4.
14005
14006 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14007
14008         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
14009         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
14010
14011 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
14012
14013         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
14014         * lib/argp-help.c (fill_in_uparams): Check if the constructed
14015         struct uparams is valid. Fall back to the default values if it is
14016         not.
14017
14018 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14019
14020         * modules/argp (Files): Add argp-pin.c
14021         (Depends-on): dirname
14022         (lib_SOURCES): Add argp-pin.c
14023
14024 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14025
14026         * m4/argp.m4:  Check if program_invocation_name and
14027         program_invocation_short_name are declared and define appropriate
14028         macros if they are not.
14029
14030 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
14031
14032         * lib/argp-help.c (__argp_base_name): New function
14033         (__argp_short_program_name): Rewrite using __argp_base_name
14034         * lib/argp-namefrob.h: Define program_invocation_name and
14035         program_invocation_short_name if requested
14036         (__argp_base_name): Add prototype
14037         * lib/argp-parse.c (argp_def): Use gettext wrappers
14038         (argp_default_parser): Use __argp_base_name
14039         * lib/argp-pin.c: New file. Defines program_invocation_name and
14040         program_invocation_short_name on systems that lack them.
14041
14042 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14043
14044         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
14045         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14046         porting problem reported by Georg Schwarz in
14047         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14048
14049 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
14050
14051         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
14052         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
14053         porting problem reported by Georg Schwarz in
14054         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
14055
14056 2005-12-05  Bruno Haible  <bruno@clisp.org>
14057
14058         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
14059         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
14060         Reported by Mark Junker <mjscod@gmx.de>.
14061
14062 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
14063
14064         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
14065         Use implementation from Albert Chin, with some
14066         comments/corrections by Stepan Kasal and myself.
14067
14068 2005-12-02  Bruno Haible  <bruno@clisp.org>
14069
14070         * gnulib-tool (func_import): Accept GPLed build tool modules when
14071         --lgpl is given.
14072         * modules/csharpcomp-script: New file.
14073         * modules/csharpcomp: Depend on it.
14074         * modules/javacomp-script: New file.
14075         * modules/javacomp: Depend on it.
14076         Suggested by Simon Josefsson.
14077
14078 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
14079
14080         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
14081         statement, to work around an HP-UX 10.20 compiler bug reported by
14082         Peter O'Gorman.
14083
14084 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14085
14086         * modules/savedir (Depends-on): Add openat.
14087
14088 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14089
14090         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
14091         (uintmax_t) [defined uintmax_t]: Do not declare.
14092         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
14093         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
14094         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
14095         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
14096         sake of portability to weird hosts that C allows (though we don't
14097         know of any practical examples).
14098
14099         * lib/savedir.h (fdsavedir): New decl.
14100         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
14101         contains most of the former guts of savedir.
14102         (savedir): Use savedirstream.
14103         Include "openat.h".
14104
14105 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
14106
14107         * modules/obstack (Files): Add m4/ulonglong.m4.
14108         Problem reported by Davide Angelocola.
14109
14110 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
14111
14112         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
14113         coreutils no longer futzes with rounding modes.
14114
14115 2005-11-14  Jim Meyering  <jim@meyering.net>
14116
14117         * lib/mkstemp-safer.c: Include <config.h>, required for possible
14118         replacement of mkstemp.
14119
14120 2005-11-10  Simon Josefsson  <jas@extundo.com>
14121
14122         * lib/readline.c: Remove EOL.
14123
14124 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14125
14126         * modules/gethrxtime (Depends-on): Add gettime.
14127
14128 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14129
14130         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
14131         or gettimeofday; no longer needed.
14132
14133 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14134
14135         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
14136         time business.
14137         (gethrxtime) [! (HAVE_NANOUPTIME
14138         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
14139         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
14140         our own approximation.
14141
14142 2005-11-08  Eric Blake  <ebb9@byu.net>
14143
14144         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14145
14146 2005-11-08  Eric Blake  <ebb9@byu.net>
14147
14148         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
14149
14150 2005-11-04  Bruno Haible  <bruno@clisp.org>
14151
14152         * gnulib-tool: Implement --update mode.
14153
14154 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14155
14156         Fix porting problem reported by Theodoros V. Kalamatianos.
14157         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
14158         Don't assume that futimes failing means we must fail.
14159
14160 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
14161
14162         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
14163         variables to suggest the intended function of the PATH_MAX check.
14164
14165 2005-10-30  Kean Johnston  <jkj@sco.com>
14166
14167         Trivial changes to support SCO systems.
14168         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
14169         as PATH_MAX.
14170         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
14171         where __ptr is null when no I/O is pending.
14172
14173 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
14174
14175         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
14176         leave errno alone.  Problem reported by Dmitry V. Levin.
14177
14178 2005-10-28  Simon Josefsson  <jas@extundo.com>
14179
14180         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
14181         Test more.
14182
14183         * tests/test-gc-md2.c, tests/test-md2.c: New files.
14184
14185         * modules/md2, modules/md2-tests: New files.
14186
14187 2005-10-28  Simon Josefsson  <jas@extundo.com>
14188
14189         * m4/inet_ntop.m4: More tests.
14190
14191         * m4/gc-md2.m4, md2.m4: New file.
14192
14193 2005-10-28  Simon Josefsson  <jas@extundo.com>
14194
14195         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
14196         "restrict" keywords, as per POSIX.  Protect the function
14197         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
14198         Don't use K&R prototypes.  Check the sprintf return values.
14199         Re-define EAFNOSUPPORT if not present.  Indent.
14200
14201         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
14202         suggested by Bruno Haible <bruno@clisp.org>.
14203
14204         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
14205
14206         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
14207
14208         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
14209         libgcrypt).
14210
14211         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
14212
14213         * lib/md2.h, lib/md2.c: New files.
14214
14215 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
14216
14217         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
14218         errno alone.  Problem reported by Frederic Jolliton.
14219
14220 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
14221
14222         * modules/verify (License): Change from GPL to LGPL.  This is a
14223         tiny module and there are apparently near-equivalents that are
14224         under the BSD license.
14225
14226 2005-10-24  Simon Josefsson  <jas@extundo.com>
14227
14228         * modules/sha1: Relicense to LGPL.
14229
14230 2005-10-24  Simon Josefsson  <jas@extundo.com>
14231
14232         * lib/md4.h: Shrink buffer size, now that we changed the type.
14233
14234 2005-10-23  Simon Josefsson  <jas@extundo.com>
14235
14236         * gnulib-tool (func_import): Fix --tests-base.
14237
14238 2005-10-22  Simon Josefsson  <jas@extundo.com>
14239
14240         * modules/arcfour (Depends-on): Need stdint.
14241
14242 2005-10-22  Simon Josefsson  <jas@extundo.com>
14243
14244         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
14245         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
14246
14247 2005-10-22  Simon Josefsson  <jas@extundo.com>
14248
14249         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
14250         suggested by Bruno Haible <bruno@clisp.org>.
14251
14252 2005-10-22  Simon Josefsson  <jas@extundo.com>
14253
14254         * lib/crc.h: Include stddef.h, for size_t.
14255
14256 2005-10-22  Simon Josefsson  <jas@extundo.com>
14257
14258         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
14259         arcfour_context struct (simplify test vector testing in GNU
14260         Shishi).
14261
14262 2005-10-21  Simon Josefsson  <jas@extundo.com>
14263
14264         * modules/des, modules/des-tests: New files.
14265
14266         * modules/gc-des, modules/gc-des-tests: New files.
14267
14268         * tests/test-des.c, tests/test-gc-des.c: New file.
14269
14270 2005-10-21  Simon Josefsson  <jas@extundo.com>
14271
14272         * modules/arctwo, modules/arctwo-tests: New files.
14273
14274         * tests/test-arctwo.c: New file.
14275
14276         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
14277
14278         * tests/test-gc-arctwo.c: New file.
14279
14280 2005-10-21  Simon Josefsson  <jas@extundo.com>
14281
14282         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
14283         Bruno Haible <bruno@clisp.org>.
14284
14285         * m4/gc-des.m4: New file.
14286
14287 2005-10-21  Simon Josefsson  <jas@extundo.com>
14288
14289         * m4/arctwo.m4: New file.
14290
14291         * m4/gc-arctwo.m4: New file.
14292
14293 2005-10-21  Simon Josefsson  <jas@extundo.com>
14294
14295         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
14296         block.
14297
14298 2005-10-21  Simon Josefsson  <jas@extundo.com>
14299
14300         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
14301         <bruno@clisp.org>.
14302
14303         * lib/hmac-sha1.c (hmac_sha1): Likewise.
14304
14305         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
14306         Bruno Haible <bruno@clisp.org>.
14307
14308         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
14309         <bruno@clisp.org>.
14310
14311 2005-10-21  Simon Josefsson  <jas@extundo.com>
14312
14313         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
14314
14315 2005-10-21  Simon Josefsson  <jas@extundo.com>
14316
14317         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
14318
14319 2005-10-21  Simon Josefsson  <jas@extundo.com>
14320
14321         * lib/des.h, lib/des.c: New files.
14322
14323         * lib/gc-gnulib.c: Support DES.c
14324
14325 2005-10-21  Simon Josefsson  <jas@extundo.com>
14326
14327         * lib/arctwo.h, lib/arctwo.c: New files.
14328
14329         * lib/gc-gnulib.c: Support ARCTWO.
14330
14331 2005-10-21  Simon Josefsson  <jas@extundo.com>
14332
14333         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
14334         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
14335
14336 2005-10-21  Simon Josefsson  <jas@extundo.com>
14337
14338         * gnulib-tool (func_import, func_create_testdir): Define automake
14339         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
14340         Makefile.am snippet),
14341         suggested by Bruno Haible <bruno@clisp.org>.
14342
14343         * modules/gc (Makefile.am): Use it.
14344
14345 2005-10-21  Bruno Haible  <bruno@clisp.org>
14346
14347         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
14348         patch.
14349
14350 2005-10-19  Simon Josefsson  <jas@extundo.com>
14351
14352         * tests/test-gc-rijndael.c: New file.
14353
14354         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
14355
14356 2005-10-19  Simon Josefsson  <jas@extundo.com>
14357
14358         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
14359         interface too.
14360
14361 2005-10-19  Simon Josefsson  <jas@extundo.com>
14362
14363         * tests/test-gc-arcfour.c: New file.
14364
14365         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
14366
14367 2005-10-19  Simon Josefsson  <jas@extundo.com>
14368
14369         * modules/gc-md4, modules/gc-md4-tests: New file.
14370
14371         * tests/test-gc-md4.c: New file.
14372
14373 2005-10-19  Simon Josefsson  <jas@extundo.com>
14374
14375         * m4/gc-md4.m4: New file.
14376
14377 2005-10-19  Simon Josefsson  <jas@extundo.com>
14378
14379         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
14380         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
14381         <kasal@ucw.cz>.
14382
14383 2005-10-19  Simon Josefsson  <jas@extundo.com>
14384
14385         * m4/gc-arcfour.m4: New file.
14386
14387         * m4/gc-rijndael.m4: New file.
14388
14389 2005-10-19  Simon Josefsson  <jas@extundo.com>
14390
14391         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
14392
14393 2005-10-19  Simon Josefsson  <jas@extundo.com>
14394
14395         * lib/gc-gnulib.c: Support ARCFOUR.
14396
14397 2005-10-19  Simon Josefsson  <jas@extundo.com>
14398
14399         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
14400         support.
14401
14402         * lib/gc.h: Add ECB enum type.
14403
14404         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
14405
14406 2005-10-18  Simon Josefsson  <jas@extundo.com>
14407
14408         * tests/test-md5.c: New file.
14409
14410         * modules/md5-tests: New file.
14411
14412 2005-10-18  Simon Josefsson  <jas@extundo.com>
14413
14414         * tests/test-md4.c: New file.
14415
14416         * modules/md4, modules/md4-tests: New files.
14417
14418 2005-10-18  Simon Josefsson  <jas@extundo.com>
14419
14420         * m4/md4.m4: New file.
14421
14422 2005-10-18  Simon Josefsson  <jas@extundo.com>
14423
14424         * lib/md4.h, lib/md4.c: New files, based on md5.?.
14425
14426 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
14427
14428         * gnulib-tool (func_create_testdir): Omit the second check whether
14429         BUILT_SOURCES in nonempty.
14430
14431 2005-10-17  Simon Josefsson  <jas@extundo.com>
14432
14433         * tests/test-rijndael.c: New file.
14434
14435 2005-10-17  Simon Josefsson  <jas@extundo.com>
14436
14437         * modules/sha1: Depend on stdint instead of md5.
14438
14439         * modules/md5: Depend on stdint, remove uint32_t.
14440
14441 2005-10-17  Simon Josefsson  <jas@extundo.com>
14442
14443         * modules/gc-sha1-tests: New file.
14444
14445         * tests/test-gc-sha1.c: New file.
14446
14447 2005-10-17  Simon Josefsson  <jas@extundo.com>
14448
14449         * m4/md5.m4: Remove call to uint32_t.m4.
14450
14451 2005-10-17  Simon Josefsson  <jas@extundo.com>
14452
14453         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
14454
14455         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
14456         md5.h.
14457
14458         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
14459
14460         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
14461
14462 2005-10-17  Simon Josefsson  <jas@extundo.com>
14463
14464         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
14465
14466 2005-10-17  Simon Josefsson  <jas@extundo.com>
14467
14468         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
14469
14470 2005-10-17  Simon Josefsson  <jas@extundo.com>
14471
14472         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
14473
14474         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
14475
14476 2005-10-17  Bruno Haible  <bruno@clisp.org>
14477
14478         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
14479         that it can also be used in a test.
14480
14481 2005-10-16  Bruno Haible  <bruno@clisp.org>
14482
14483         * gnulib-tool (func_emit_tests_Makefile_am): Also define
14484         TESTS_ENVIRONMENT, so that individual tests can augment it.
14485
14486         * gnulib-tool (func_create_testdir): Use an intermediate target for
14487         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
14488         macros, like $(ALLOCA_H), which cannot be passed through the command
14489         line.
14490
14491 2005-10-15  Simon Josefsson  <jas@extundo.com>
14492
14493         * modules/rijndael-tests: New file.
14494
14495         * modules/rijndael: New file.
14496
14497 2005-10-15  Simon Josefsson  <jas@extundo.com>
14498
14499         * m4/rijndael.m4: New file.
14500
14501 2005-10-15  Simon Josefsson  <jas@extundo.com>
14502
14503         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
14504
14505         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
14506
14507 2005-10-14  Simon Josefsson  <jas@extundo.com>
14508
14509         * tests/test-arcfour.c: New file.
14510
14511         * modules/arcfour, modules/arcfour-tests: New files.
14512
14513 2005-10-14  Simon Josefsson  <jas@extundo.com>
14514
14515         * m4/arcfour.m4: New file.
14516
14517 2005-10-14  Simon Josefsson  <jas@extundo.com>
14518
14519         * lib/arcfour.h, lib/arcfour.c: New files.
14520
14521 2005-10-14  Roland McGrath  <roland@redhat.com>
14522
14523         Import from libc.  [BZ #1331]
14524         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
14525         macro argument.
14526         Reported by Matej Vela <vela@debian.org>.
14527
14528 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
14529
14530         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
14531         include <wchar.h>; no longer needed.
14532
14533 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
14534
14535         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
14536
14537 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
14538         and  Ulrich Drepper  <drepper@redhat.com>
14539
14540         Import from libc.
14541         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
14542         instead of inline stream orientation test and two separate
14543         function calls.  Pay no attention to USE_IN_LIBIO.
14544
14545 2005-10-13  Simon Josefsson  <jas@extundo.com>
14546
14547         * modules/gc-hmac-md5-tests: New file.
14548
14549         * tests/test-gc-hmac-sha1.c: New file.
14550
14551         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
14552
14553         * modules/gc-hmac-md5-tests: New file.
14554
14555         * tests/test-gc-md5.c: New file.
14556
14557         * modules/gc-md5-tests: New file.
14558
14559 2005-10-13  Simon Josefsson  <jas@extundo.com>
14560
14561         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
14562         Move memory allocation outside of loop.
14563
14564 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
14565
14566         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
14567         intermediate directory is in a read-only file system.  Problem
14568         reported by Eric Blake.
14569
14570 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
14571
14572         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
14573
14574 2005-10-12  Simon Josefsson  <jas@extundo.com>
14575
14576         * tests/test-hmac-sha1.c: New file.
14577
14578         * modules/hmac-sha1-tests: New file.
14579
14580         * modules/hmac-sha1: New file.
14581
14582 2005-10-12  Simon Josefsson  <jas@extundo.com>
14583
14584         * modules/gc-sha1: New file.
14585
14586 2005-10-12  Simon Josefsson  <jas@extundo.com>
14587
14588         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
14589
14590         * tests/test-gc-pbkdf2-sha1.c: New file.
14591
14592 2005-10-12  Simon Josefsson  <jas@extundo.com>
14593
14594         * modules/gc-md5, modules/gc-hmac-md5: New files.
14595
14596         * modules/gc (Files): Remove md5, memxor and hmac files.
14597
14598 2005-10-12  Simon Josefsson  <jas@extundo.com>
14599
14600         * m4/gc-pbkdf2-sha1.m4: New file.
14601
14602         * m4/gc-hmac-sha1.m4: New file.
14603
14604         * m4/gc-sha1: New file.
14605
14606         * m4/hmac-sha1.m4: New file.
14607
14608 2005-10-12  Simon Josefsson  <jas@extundo.com>
14609
14610         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
14611
14612         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
14613
14614 2005-10-12  Simon Josefsson  <jas@extundo.com>
14615
14616         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
14617         suggested by Bruno Haible <bruno@clisp.org>.
14618
14619 2005-10-12  Simon Josefsson  <jas@extundo.com>
14620
14621         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
14622
14623 2005-10-12  Simon Josefsson  <jas@extundo.com>
14624
14625         * lib/gc-pbkdf2-sha1.c: New file.
14626
14627         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
14628
14629 2005-10-12  Simon Josefsson  <jas@extundo.com>
14630
14631         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
14632
14633         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
14634
14635 2005-10-12  Simon Josefsson  <jas@extundo.com>
14636
14637         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
14638         GC_USE_HMAC_MD5, respectively.
14639
14640         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
14641         (gc_md5): Fix typo.
14642
14643         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
14644
14645         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
14646
14647         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
14648
14649 2005-10-12  Bruno Haible  <bruno@clisp.org>
14650
14651         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
14652         Reported by Stepan Kasal <kasal@ucw.cz>.
14653
14654 2005-10-11  Simon Josefsson  <jas@extundo.com>
14655
14656         * tests/test-crc.c: New file.
14657
14658         * modules/crc, modules/crc-tests: New files.
14659
14660 2005-10-11  Simon Josefsson  <jas@extundo.com>
14661
14662         * m4/crc.m4: New file.
14663
14664 2005-10-11  Simon Josefsson  <jas@extundo.com>
14665
14666         * lib/gc.h: Add gc_hash and gc_hash_buffer.
14667
14668         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
14669
14670         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
14671
14672 2005-10-11  Simon Josefsson  <jas@extundo.com>
14673
14674         * lib/crc.h, lib/crc.c: New files.
14675
14676         * lib/gc.h (gc_hash_buffer): Add doc.
14677
14678 2005-10-11  Bruno Haible  <bruno@clisp.org>
14679
14680         * modules/c-strcasestr: New file.
14681         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
14682
14683 2005-10-11  Bruno Haible  <bruno@clisp.org>
14684
14685         * modules/c-strcase: New file.
14686         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
14687
14688 2005-10-11  Bruno Haible  <bruno@clisp.org>
14689
14690         * lib/strcasecmp.c: Include limits.h.
14691         (strcasecmp): Avoid integer overflow on exotic platforms.
14692         * lib/strncasecmp.c: Include limits.h.
14693         (strncasecmp): Avoid integer overflow on exotic platforms.
14694         Reported by Paul Eggert.
14695
14696 2005-10-11  Bruno Haible  <bruno@clisp.org>
14697
14698         * lib/c-strcasestr.h: New file, from GNU gettext.
14699         * lib/c-strcasestr.c: New file, from GNU gettext.
14700
14701 2005-10-11  Bruno Haible  <bruno@clisp.org>
14702
14703         * lib/c-strcase.h: New file, from GNU gettext.
14704         * lib/c-strcasecmp.c: New file, from GNU gettext.
14705         * lib/c-strncasecmp.c: New file, from GNU gettext.
14706
14707 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
14708
14709         * modules/mempcpy (License): GPL -> LGPL.
14710         * modules/strchrnul (License): Likewise.
14711         * modules/sysexits (License): Likewise.
14712
14713 2005-10-08  Simon Josefsson  <jas@extundo.com>
14714
14715         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
14716
14717 2005-10-07  Simon Josefsson  <jas@extundo.com>
14718
14719         * m4/memxor.m4: Remove gl_C_RESTRICT call.
14720
14721 2005-10-06  Simon Josefsson  <jas@extundo.com>
14722
14723         * tests/test-hmac-md5.c: New file.
14724
14725         * modules/hmac-md5-tests: New file.
14726
14727         * modules/hmac-md5: New file.
14728
14729 2005-10-06  Simon Josefsson  <jas@extundo.com>
14730
14731         * m4/hmac-md5.m4: New file.
14732
14733         * m4/memxor.m4: Require gl_C_RESTRICT.
14734
14735 2005-10-06  Simon Josefsson  <jas@extundo.com>
14736
14737         * lib/memxor.c (memxor): Avoid casts and warnings.
14738
14739 2005-10-06  Simon Josefsson  <jas@extundo.com>
14740
14741         * lib/hmac-md5.c: New file.
14742
14743         * lib/hmac.h: New file.
14744
14745 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
14746
14747         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
14748         promotes to int, not unsigned int, to catch the AIX 5.3
14749         compiler bug.
14750
14751 2005-10-05  Simon Josefsson  <jas@extundo.com>
14752
14753         * modules/memxor: New file.
14754
14755         * modules/iconv (Files): Move config.rpath to havelib, it is used
14756         there.
14757
14758         * modules/havelib (Files): Add config.rpath.
14759
14760 2005-10-05  Simon Josefsson  <jas@extundo.com>
14761
14762         * m4/memxor.m4: New file.
14763
14764 2005-10-05  Simon Josefsson  <jas@extundo.com>
14765
14766         * lib/memxor.c (memxor): Fix compiler error.
14767
14768         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
14769         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
14770
14771         * lib/memxor.h, lib/memxor.c: New files.
14772
14773         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
14774         we assume all systems have it, suggested by Jim Meyering
14775         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
14776         any systems lack sys/socket.h; mingw32 is known to lack it, but we
14777         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
14778         same reasons.
14779
14780 2005-10-05  Simon Josefsson  <jas@extundo.com>
14781
14782         * config/srclist.txt: Add glibc bug 1423 for md5.h.
14783
14784 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
14785
14786         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
14787         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
14788         needed, since the source code now assumes these .h files.
14789
14790 2005-10-05  Derek Price  <derek@ximbiot.com>
14791
14792         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
14793
14794 2005-10-05  Bruno Haible  <bruno@clisp.org>
14795
14796         * modules/stdint (License): Change to LGPL.
14797
14798 2005-10-04  Simon Josefsson  <jas@extundo.com>
14799
14800         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
14801         D. Baushke" <mdb@gnu.org>.
14802
14803 2005-10-04  Bruno Haible  <bruno@clisp.org>
14804
14805         * lib/verify.h (verify_true): Provide alternative definition for C++.
14806
14807 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
14808
14809         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
14810         (SSIZE_MAX): New macro, if not already defined.
14811         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
14812         than 2 GiB.
14813
14814 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
14815
14816         Sync from coreutils.
14817         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
14818         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
14819         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
14820         ULLONG_MAX doesn't work with 2.7.2.1.
14821
14822 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
14823
14824         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
14825         From Ben Pfaff.
14826
14827         * modules/exclude (Depends-on): Depend on verify.
14828         * modules/strtoimax (Depends-on): Likewise.
14829         * modules/utimecmp (Depends-on): Likewise.
14830
14831 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
14832
14833         * lib/exclude.c: Include verify.h.
14834         (verify): Remove.  All callers changed to use verify.h's version.
14835         * lib/strtoimax.c: Likewise.
14836         * lib/utimecmp.c: Likewis.e
14837
14838         Sync from coreutils.
14839         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
14840         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
14841         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
14842         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
14843         bother returning ENOSYS if settimeofday or stime fails; just let
14844         them return whatever errno they want to return.
14845         * lib/utimens.c: Include unistd.h, for dup2.
14846         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
14847         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
14848
14849 2005-10-02  Jim Meyering  <jim@meyering.net>
14850
14851         Sync from coreutils.
14852         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
14853         from glibc-2.2.5 that fails for read-only files.
14854
14855 2005-10-02  Jim Meyering  <jim@meyering.net>
14856
14857         Sync from coreutils.
14858         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
14859         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
14860         `#if HAVE_CONFIG_H'.
14861         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
14862         Remove AT_FDCWD test.
14863         Do not consume the fd unless successful.
14864         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
14865         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
14866         block, so that we don't even try to compile it if settimeofday is
14867         available.  This works around a compilation failure on OSF1 V5.1,
14868         due to stime requiring a `long int*' while tv_sec is `int'.
14869
14870 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
14871
14872         Sync from coreutils.
14873         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
14874         against `yes', rather than just testing for nonempty.
14875
14876 2005-10-01  Simon Josefsson  <jas@extundo.com>
14877
14878         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
14879         and Darwin.
14880
14881         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
14882         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
14883         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
14884         freeaddrinfo and gai_strerror are declared by the POSIX headers.
14885         Check if struct addrinfo is declared.
14886
14887 2005-10-01  Simon Josefsson  <jas@extundo.com>
14888
14889         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
14890         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
14891         AI_* and EAI_* definitions.  Protect function declarations.
14892
14893 2005-10-01  Jim Meyering  <jim@meyering.net>
14894
14895         Sync from coreutils.
14896
14897         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
14898         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
14899         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
14900         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
14901         in the inet and nsl libraries.  Required on Solaris 5.7.
14902
14903 2005-10-01  Jim Meyering  <jim@meyering.net>
14904
14905         Sync from coreutils.
14906         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
14907         in the inet and nsl libraries.  Required on Solaris 5.7.
14908
14909 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
14910
14911         * lib/getdelim.c (getdelim): Remove unused variables.
14912
14913 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
14914
14915         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
14916         so that the code works even with ancient cpp.  Portability problem
14917         with GCC 2.7.2.1 reported by Thomas M.Ott.
14918
14919 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
14920
14921         * modules/regex (Depends-on): Add strcase.
14922
14923         * modules/gethostname (Licence): Change from GPL to LGPL, since
14924         gethostname.c is a trivial implementation of a standard library
14925         function.
14926         * modules/poll (License): Change from GPL to LGPL, since it's
14927         derived from LGPL code.
14928
14929 2005-09-27  Jim Meyering  <jim@meyering.net>
14930
14931         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
14932         HAVE_CONFIG_H.
14933
14934         * lib/intprops.h (signed_type_or_expr__): Define.
14935         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
14936         for unsigned types.
14937
14938 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
14939
14940         * lib/verify.h (verify_expr): Remove, replacing with:
14941         (verify_true): New macro that returns true instead of void.
14942         (verify_type__): Remove.
14943         (verify): Use verify_true rather than verify_type__.
14944
14945 2005-09-26  Bruno Haible  <bruno@clisp.org>
14946
14947         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
14948         is necessary.
14949         (lib_SOURCES): Remove mbchar.c.
14950         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
14951         (Files): Add m4/mbrtowc.m4.
14952         * modules/mbiter: Likewise.
14953         * modules/mbuiter: Likewise.
14954
14955 2005-09-26  Bruno Haible  <bruno@clisp.org>
14956
14957         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
14958         compile mbchar.c if they are not both present.
14959         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
14960         * m4/mbiter.m4 (gl_MBITER): Likewise.
14961         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
14962         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
14963         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
14964
14965 2005-09-25  Jim Meyering  <jim@meyering.net>
14966
14967         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
14968         also uses socklen_t.
14969
14970 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
14971
14972         * lib/utimens.c (ENOSYS): Define if not already defined.
14973         (futimens): Support having a null PATH if the file descriptor
14974         is nonnegative.
14975
14976         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
14977         Remove.
14978         (__attribute): Define to empty unless GCC 3.1 or later.
14979         This works around a core dump on OpenBSD 3.4, which has GCC
14980         2.95.3, which dumps core when given __attribute__(()).  It also
14981         simplifies other tests, since we really don't want to bother with
14982         worrying about which ancient version of GCC supported what.
14983         Original problem reported by Yoann Vandoorselaere, with part of
14984         the fix suggested by Derek Price.
14985
14986 2005-09-24  Jim Meyering  <jim@meyering.net>
14987
14988         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
14989         so we can once again use a positive bitfield width of 1 -- now we
14990         don't have to explain why we were using a bitfield width of 2.
14991
14992 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
14993
14994         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
14995         and similarly for the other external symbols.  Problem reported
14996         by James Gallager.
14997
14998         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
14999         bug reported by Jim Meyering.
15000
15001         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
15002         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
15003         not needed, since socklen is a prerequisite module.
15004
15005 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
15006
15007         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
15008         Problem reported by Eric Blake.
15009         (getaddrinfo): Initialize se so that it's not garbage.
15010         Redo internal storage allocation so that it doesn't make unportable
15011         assumptions about alignment.
15012         Fix a memory leak.
15013
15014         * lib/utimens.c (futimens): Use futimesat if available.
15015         Prefer it to futimes since it doesn't have the futimes bug.
15016
15017         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
15018         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
15019         Instead, declare a function that returns a pointer to an array,
15020         and use verify_type__ to declare the size of the array.
15021         Problem and germ of a solution reported by Bruno Haible.
15022         (verify_type__): Use 2, not 1, for bitfield size, to avoid
15023         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
15024
15025 2005-09-23  Jim Meyering  <jim@meyering.net>
15026
15027         Sync from coreutils.
15028         Correct build failure (socklen_t not defined) on at least
15029         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
15030         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
15031
15032 2005-09-23  Jim Meyering  <jim@meyering.net>
15033
15034         * modules/getaddrinfo (Depends-on): Add socklen.
15035
15036 2005-09-23  Bruno Haible  <bruno@clisp.org>
15037
15038         * tests/test-verify.c: New file.
15039
15040 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15041
15042         Sync from coreutils.
15043
15044         * modules/argmatch (Depends-on): Add verify.
15045         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
15046         unistd-safer.
15047         * modules/save-cwd (Depends-on): Likewise.
15048
15049         * modules/openat (Files): Add lib/openat-die.c.
15050         (Depends-on): Remove error, exitfail.
15051         Add dirname.
15052
15053         * modules/verify: New file.
15054         * MODULES.html.sh (Diagnostics <assert.h>): New section,
15055         with "verify" module.
15056
15057 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15058
15059         Sync from coreutils.
15060
15061         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
15062         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
15063         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
15064         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
15065         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
15066         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
15067         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
15068         Don't bother checking for string.h, stdlib.h, unistd.h.
15069         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
15070         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
15071         module's job.
15072         * m4/jm-macros.m4 (gl_MACROS): Likewise.
15073         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
15074
15075         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
15076         (gl_GETDATE): Use it.
15077
15078         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
15079
15080 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15081
15082         Sync from coreutils.
15083
15084         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
15085         stat-time.h.
15086         * lib/argmatch.h: Include verify.h
15087         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
15088         (ARGMATCH_ASSERT): Remove; unused.
15089         * lib/canonicalize.c: Assume STDC_HEADERS.
15090         * lib/exclude.c: Include "strcase.h".
15091         * lib/regex_internal.h [!defined _LIBC]: Likewise.
15092         * lib/getusershell.c: Include stdio--.h rather than stdio.h
15093         and stdio-safer.h.
15094         (getusershell): Call fopen, not fopen_safer.
15095         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
15096         Do not include unistd-safer.h.
15097         (save_cwd): Don't call fd_safer; no longer needed
15098         now that we include fcntl--.h.
15099
15100         * lib/getdate.y (relative_time): New type.
15101         (RELATIVE_TIME_0): New constant.
15102         (parser_control): Use relative_time instead of doing it ourselves.
15103         (%union): Add new relative_time rel member.
15104         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
15105         Now typeless.
15106         (relunit, relunit_snumber): Now of type rel.
15107         (zone, rel, relunit, get_date): Adjust to above changes.
15108
15109         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
15110         Do not include unistd-safer.h.
15111         (getloadavg): Don't call fd_safer; no longer needed
15112         now that we include fcntl--.h.
15113
15114         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
15115         (make_dir_parents): Treat ENOSYS like EEXIST.
15116
15117         Improve quality of diagnostics on restore_cwd failure.
15118         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
15119         (make_dir_parents): Last arg is now int * (for errno), not bool *.
15120         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
15121         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
15122         each time through the loop.  Do not diagnose restore_cwd failure;
15123         that is the caller's job (and perhaps the caller does not care).
15124
15125         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
15126         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
15127         If the file already exists but is not a directory, don't bother
15128         to try to make its parents.
15129         Close potential file descriptor leak if we can't chdir("/") (!).
15130         Don't always return true if chdir($PWD) fails; return true only
15131         if the requested action was done successfully (except for the
15132         chdir($PWD)).
15133         Don't log final directory unless we actually made it.
15134         Refactor to avoid duplicate code to fix up permissions.
15135         Don't attempt to fix up parent permissions if chdir($PWD) fails.
15136
15137         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
15138         to make it a bit faster and (I hope) clearer.
15139         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
15140         Fix bug in formats like %2N.
15141
15142         * lib/verify.h: New file.
15143
15144 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
15145
15146         Sync from coreutils.
15147         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
15148
15149 2005-09-22  Jim Meyering  <jim@meyering.net>
15150
15151         Sync from coreutils.
15152
15153         * m4/lstat.m4 (gl_FUNC_LSTAT):
15154         Use AC_LIBSOURCES to require lstat.c and lstat.h.
15155         Remove obsolete comment.
15156         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
15157         * m4/xstrtod.m4: Likewise.
15158
15159         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
15160
15161 2005-09-22  Jim Meyering  <jim@meyering.net>
15162
15163         Sync from coreutils.
15164
15165         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
15166
15167         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
15168         the .tm_year member, since otherwise gcc-4.0 would now warn about
15169         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
15170
15171         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
15172         order to avoid an unsuppressible warning from gcc on 64-bit systems.
15173
15174         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
15175         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
15176         when run in a time zone for which daylight savings time is in effect
15177         for the starting date.
15178
15179         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
15180         stop us from restricting permissions of just-created absolute-named
15181         directories.
15182         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
15183         to restore initial working directory.
15184         * lib/mkdir-p.c (make_dir_parents): New parameter:
15185         different_working_dir, to tell caller if/when we change the working
15186         directory and are unable to return to the initial one.
15187         * lib/mkdir-p.h (make_dir_parents): Update prototype.
15188         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
15189         `return false'.  This fixes a bug introduced on 2004-07-30.
15190
15191         * lib/openat.c (fdopendir): Be sure to close the supplied
15192         file descriptor before returning.  This makes our replacement
15193         implementation a little closer to Solaris's, where fdopendir
15194         ties the file descriptor to the returned DIR* pointer.
15195         * lib/openat.c (unlinkat): New function.
15196         * lib/openat.h (unlinkat): Add prototype.
15197         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
15198         (openat_restore_fail): Rename from openat_restore_die.
15199         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
15200
15201         Provide an alternative to exiting immediately upon save_cwd or
15202         restore_cwd failure.  Now, an application can arrange e.g.,
15203         to perform a longjump in that case.
15204         * lib/openat.c: Include dirname.h.
15205         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
15206         (rpl_openat, fdopendir, fstatat): Call openat_save_die
15207         and openat_restore_die rather than calling error directly.
15208         Don't include "error.h" or "exitfail.h"; they're no longer needed.
15209
15210         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
15211         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
15212         define.
15213
15214         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
15215         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
15216                             int utc, int nanoseconds);
15217         Background:
15218         date should not have to allocate a megabyte of virtual memory to
15219         handle a format argument like +%1048575T.  When implemented with
15220         strftime, it must allocate such a buffer, use strftime to fill it
15221         in, print it, then free it.
15222         With fprintftime, it simply prints everything and exits.
15223         With no need for memory allocation, that's one fewer way to fail.
15224         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
15225         optional field width, not before, so we accept %9:z, not %:9z.
15226         (my_strftime): Be sure to use L_('x') for literals.
15227
15228         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
15229         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
15230         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
15231         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
15232         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
15233         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
15234         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
15235         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
15236         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
15237         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
15238         * lib/xgethostname.c, lib/xreadlink.c:
15239         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
15240
15241         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
15242         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
15243         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
15244         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
15245         and don't include <sys/file.h>).
15246
15247 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
15248
15249         Sync from coreutils.
15250
15251         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
15252         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
15253         [!LDAV_DONE]: Avoid unused variable warning.
15254
15255 2005-09-21  Bruno Haible  <bruno@clisp.org>
15256
15257         * lib/unicodeio.h (unicode_to_mb): New declaration.
15258
15259 2005-09-20  Derek Price  <derek@ximbiot.com>
15260
15261         * lib/getaddrinfo.c: Don't include <netdb.h> included from
15262         getaddrinfo.h.
15263
15264 2005-09-20  Bruno Haible  <bruno@clisp.org>
15265
15266         * gnulib-tool: Remove trailing slashes from the values specified for
15267         --source-base, --m4-base, --tests-base, --aux-dir.
15268         Suggested by Simon Josefsson <jas@extundo.com>.
15269
15270 2005-09-20  Bruno Haible  <bruno@clisp.org>
15271
15272         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
15273         func_modules_to_filelist, func_import, func_create_testdir): Make all
15274         sorting results locale-independent, so that gnulib-cache.m4 doesn't
15275         change when gnulib-tool is invoked in a different locale.
15276
15277 2005-09-19  Simon Josefsson  <jas@extundo.com>
15278
15279         * m4/socklen.m4: Fix typo.
15280
15281 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15282
15283         Use a consistent style for including <config.h>.
15284         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
15285         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
15286         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
15287         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
15288         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
15289         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
15290         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
15291         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
15292         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
15293         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
15294         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
15295         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
15296         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
15297         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
15298         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
15299         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
15300         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
15301         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
15302         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
15303         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
15304         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
15305         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
15306         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
15307         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
15308         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
15309         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
15310         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
15311         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
15312         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
15313         lib/xstrtoumax.c, lib/yesno.c:
15314         Standardize inclusion of config.h.
15315         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
15316         lib/inttostr.h:  Removed inclusion of config.h from header files.
15317         * lib/inttostr.c:  Adjusted in-tree users.
15318         * lib/timespec.h: Remove superfluous warning to include config.h.
15319         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
15320         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
15321         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
15322         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
15323         config.h with HAVE_CONFIG_H.
15324
15325 2005-09-19  Jim Meyering  <jim@meyering.net>
15326
15327         * modules/pathmax (License): Change to LGPL.
15328
15329 2005-09-19  Derek Price  <derek@ximbiot.com>
15330
15331         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
15332
15333 2005-09-19  Bruno Haible  <bruno@clisp.org>
15334
15335         * gnulib-tool (import): Provide default for --tests-base.
15336
15337 2005-09-19  Bruno Haible  <bruno@clisp.org>
15338
15339         * doc/quote.texi: New file, extracted from gnulib.texi.
15340         * doc/ctime.texi: New file, extracted from gnulib.texi.
15341         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
15342         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
15343         * doc/gnulib.texi: Include them.
15344
15345 2005-09-18  Bruno Haible  <bruno@clisp.org>
15346
15347         Portability fix.
15348         * gnulib-tool (func_readlink): New function.
15349         (func_ln_if_changed): Use it.
15350
15351 2005-09-18  Bruno Haible  <bruno@clisp.org>
15352
15353         * gnulib-tool: Support --with-tests also with --import.
15354         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
15355         (func_import): Use variables $testsbase and $inctests. Emit a
15356         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
15357         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
15358         SUBDIRS += $testsdir.
15359         (func_create_testdir): Update.
15360
15361 2005-09-18  Bruno Haible  <bruno@clisp.org>
15362
15363         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
15364         instead of $dry_run.
15365         (func_cp_if_changed, func_mv_if_changed): Remove functions.
15366         (func_ln_if_changed): Don't handle dry-run here.
15367         (func_import): In dry-run mode, detect more precisely which actions
15368         would be performed, and don't use "...ing" verbs.
15369
15370 2005-09-18  Bruno Haible  <bruno@clisp.org>
15371
15372         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
15373         (func_import): Use join on two temporary files instead of three nested
15374         loops, in order to determine which files are new or old.
15375
15376 2005-09-18  Bruno Haible  <bruno@clisp.org>
15377
15378         * gnulib-tool (func_import): Comment out code that spits out the
15379         new files with --dry-run.
15380
15381 2005-09-18  Bruno Haible  <bruno@clisp.org>
15382
15383         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
15384
15385 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15386
15387         * lib/stat-time.h: New file.
15388         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
15389         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
15390         in a different way.
15391         (timespec_cmp): New function.
15392         * lib/utimecmp.c: Include stat-time.h.
15393         (SYSCALL_RESOLUTION): Depend on whether various struct stat
15394         members exist, not on the obsolescent ST_MTIM_NSEC.
15395         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
15396
15397 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15398
15399         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
15400
15401 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
15402
15403         * MODULES.html.sh (File system functions): Add stat-time.
15404         * modules/stat-time: New file.
15405         * modules/timespec (Files): Remove m4/st_mtim.m4; this
15406         is now done in a different way, by the stat-time module.
15407         * modules/utimecmp (Depends-on): Add stat-time.
15408
15409 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
15410
15411         * m4/st_mtim.m4: Remove.  Superseded by...
15412         * m4/stat-time.m4: New file.
15413         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
15414         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
15415
15416 2005-09-15  Derek Price  <derek@ximbiot.com>
15417
15418         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
15419
15420 2005-09-15  Derek Price  <derek@ximbiot.com>
15421
15422         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
15423         * lib/regex_internal.c: Ditto, using this...
15424         (__GNUC_PREREQ): ...new macro.
15425         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
15426         using...
15427         (__GNUC_PREREQ): ...this new macro.
15428
15429         * lib/strstr.h: Include string.h. Define strstr as a macro here.
15430
15431 2005-09-15  Derek Price  <derek@ximbiot.com>
15432             Paul Eggert  <eggert@cs.ucla.edu>
15433
15434         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
15435         changes, consolidating in...
15436         * lib/regex_internal.h: ...this file.
15437
15438 2005-09-13  Jim Meyering  <jim@meyering.net>
15439
15440         * lib/canon-host.c: Filter through gnu indent and reword comments
15441         slightly.
15442         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
15443
15444 2005-09-13  Derek Price  <derek@ximbiot.com>
15445
15446         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
15447         failure.
15448         Reported by Jim Meyering  <jim@meyering.net>.
15449
15450 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
15451
15452         * lib/base64.c: Typo.
15453         (base64_encode): Put b64str in initialized data section.
15454
15455 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
15456
15457         Merge glibc and coreutils changes into gnulib, plus a few
15458         extra fixes.
15459         * lib/md5.c: Use #error rather than a string.
15460         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
15461         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
15462         (__attribute__): Define to empty for non recent-GCC.
15463         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
15464         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
15465         Renamed from their non-__ counterparts, with new macros replacing
15466         them if not _LIBC.  Add __THROW attribute.
15467         (rol): Remove.
15468         (struct md5_ctx): Align buffer if using GCC.
15469         * lib/sha1.h (struct sha1_ctx): Likewise.
15470         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
15471         The old name was backwards.
15472         (NOTSWAP): Remove; not used.
15473         (rol): New macro, moved here from md5.h.
15474         (sha1_process_block): Remove a FIXME that doesn't make sense.
15475
15476 2005-09-12  Derek Price  <derek@ximbiot.com>
15477
15478         Return usable errors from canon-host.
15479         * lib/canon-host.h: New file.
15480         * lib/canon-host.c (canon_host): Wrap...
15481         (canon_host_r): ...this new function, which now relies exclusively on
15482         getaddrinfo.
15483         (ch_strerror): New function.
15484         (last_cherror): New global.
15485         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
15486         interface.
15487         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
15488         void *.
15489         (freeaddrinfo): Free ai->ai_canonname when set.
15490
15491 2005-09-12  Derek Price  <derek@ximbiot.com>
15492
15493         Make canon-host require getaddrinfo.
15494         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
15495         AC_LIBSOURCE canon-host.h.  Call...
15496         (gl_PREREQ_CANON_HOST): ...this new function, which requires
15497         gl_GETADDRINFO.
15498         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
15499
15500 2005-09-12  Derek Price  <derek@ximbiot.com>
15501
15502         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
15503         LGPL.
15504         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
15505
15506 2005-09-12  Derek Price  <derek@ximbiot.com>
15507
15508         * lib/gai_strerror.c: Include config.h when available.  Include
15509         getaddrinfo.h before other headers to test interface.
15510         Reported by Larry Jones <lawrence.jones@ugs.com>.
15511
15512 2005-09-12  Derek Price  <derek@ximbiot.com>
15513             Paul Eggert  <eggert@cs.ucla.edu>
15514
15515         * modules/glob (Files): Add glob-libc.h.
15516
15517 2005-09-12  Derek Price  <derek@ximbiot.com>
15518             Paul Eggert  <eggert@cs.ucla.edu>
15519
15520         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
15521         glob_.h, glob-libc.h.
15522         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
15523
15524 2005-09-12  Derek Price  <derek@ximbiot.com>
15525             Paul Eggert  <eggert@cs.ucla.edu>
15526
15527         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
15528         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
15529         protecting things that should be done only in gnulib contexts.
15530         * lib/glob_.h: New file, containing only the glob things needed for
15531         gnulib.
15532         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
15533         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
15534         (glob, globfree, glob_pattern_p): Now defined simply in terms of
15535         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
15536         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
15537         and to respect the namespace rules better.
15538
15539 2005-09-08  Simon Josefsson  <jas@extundo.com>
15540
15541         * modules/socklen: New file.
15542
15543 2005-09-08  Simon Josefsson  <jas@extundo.com>
15544
15545         * m4/socklen.m4: New file.
15546
15547 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15548
15549         * modules/utimens (Files): Add m4/utimbuf.m4, since
15550         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
15551         Reported by Sergey Poznyakoff.
15552
15553 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15554
15555         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
15556         definitions, since that's the preferred style in glibc.
15557         Fix a minor spacing issue, and update copyright notice to match
15558         glibc's.
15559
15560 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
15561
15562         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
15563
15564 2005-09-06  Simon Josefsson  <jas@extundo.com>
15565
15566         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
15567         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
15568
15569 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
15570
15571         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
15572         warning.
15573
15574 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
15575
15576         * config/srclist.txt: Add glibc bug 1302.
15577
15578 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
15579
15580         Change bitset word type from unsigned int to unsigned long int,
15581         as this has better performance on typical 64-bit hosts.
15582         Port bitset code to hosts with unusual word sizes.
15583         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
15584         (build_collating_symbol):
15585         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
15586         argument is a bitset.  This is merely a style issue, but it makes
15587         it clearer that an entire array is expected.
15588         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
15589         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
15590         Port to the case where bitset_word is not the same as unsigned int.
15591         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
15592         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
15593         Likewise.
15594         * lib/regexec.c (check_dst_limits_calc_pos_1,
15595         check_subexp_matching_top):
15596         (build_trtable, group_nodes_into_DFAstates):
15597         Likewise.
15598         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
15599         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
15600         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
15601         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
15602         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
15603         * lib/regcomp.c (optimize_subexps, lower_subexp):
15604         Work even if bitset_word has holes in its bitwise representation.
15605         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
15606         * lib/regexec.c (check_dst_limits_calc_pos_1,
15607         check_subexp_matching_top):
15608         Likewise.
15609         * lib/regex_internal.c (re_string_reconstruct):
15610         Don't assume UCHAR_MAX == 255.
15611         * lib/regex_internal.h (bitset_set_all): Likewise.
15612         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
15613         All uses changed.
15614         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
15615         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
15616         All uses changed.
15617         (BITSET_WORD_MAX): New macro.
15618         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
15619         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
15620         (bitset_empty, bitset_copy):
15621         Prefer sizeof (bitset) to multiplying it out ourselves.
15622         (bitset_not_merge): Remove; unused.
15623         (bitset_contain): Return bool, not unsigned int with one bit on.
15624         All callers changed.
15625         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
15626         alignment than re_node_set; do this by defining a new internal
15627         type struct dests_alloc and using it to allocate memory.
15628
15629 2005-09-05  Bruno Haible  <bruno@clisp.org>
15630
15631         * gnulib-tool (func_import): Fix comparison in handling of symbolic
15632         links.
15633
15634 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
15635
15636         * modules/size_max (Makefile.am): Add size_max.h
15637
15638 2005-09-04  Derek Price  <derek@ximbiot.com>
15639
15640         * gnulib-tool (func_import): Fix reversed $symbolic logic.
15641
15642 2005-09-03  Simon Josefsson  <jas@extundo.com>
15643
15644         * gnulib-tool: Fix typo.
15645
15646 2005-09-03  Simon Josefsson  <jas@extundo.com>
15647
15648         * config/srclist.txt: Add glibc bug 1293.
15649
15650 2005-09-03  Derek Price  <derek@ximbiot.com>
15651
15652         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
15653         From Larry Jones <lawrence.jones@ugs.com>.
15654
15655 2005-09-02  Simon Josefsson  <jas@extundo.com>
15656
15657         * modules/socklen: New file.
15658
15659 2005-09-02  Simon Josefsson  <jas@extundo.com>
15660
15661         * modules/havelib: New module.
15662
15663         * modules/gettext, modules/iconv, modules/lock, modules/readline:
15664         Use havelib.
15665
15666 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
15667
15668         Check for arithmetic overflow when calculating sizes, to prevent
15669         some buffer-overflow issues.  These patches are conservative, in the
15670         sense that when I couldn't determine whether an overflow was possible,
15671         I inserted a run-time check.
15672         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
15673         macros.
15674         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
15675         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
15676         (re_xnrealloc, re_x2nrealloc): New inline functions.
15677         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
15678         parse_bracket_exp):
15679         (build_equiv_class, build_charclass): Check for arithmetic overflow
15680         in size expression calculations.
15681         * lib/regex_internal.c (re_string_realloc_buffers):
15682         (build_wcs_upper_buffer, re_node_set_add_intersect):
15683         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
15684         (re_dfa_add_node, register_state): Likewise.
15685         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
15686         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
15687         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
15688         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
15689
15690 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
15691
15692         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
15693         m4/ulonglong.m4.  Problem reported by Martin Lambers.
15694
15695 2005-09-02  Bruno Haible  <bruno@clisp.org>
15696
15697         Support for lib vs. lib64 distinction on biarch platforms.
15698         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
15699         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
15700         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
15701
15702 2005-09-02  Bruno Haible  <bruno@clisp.org>
15703
15704         * gnulib-tool (import): In the other first-use case, provide defaults
15705         as well.
15706
15707 2005-09-02  Bruno Haible  <bruno@clisp.org>
15708
15709         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
15710         patches not yet found in the latest gettext release.
15711
15712 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15713
15714         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
15715         to avoid a collision with bits/local_lim.h in glibc.
15716         All uses changed.  Problem reported by Dmitry V. Levin in
15717         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
15718
15719         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
15720         bugs in int versus size_t comparisons.
15721         (re_string_context_at): Fix bug where the code assumed that
15722         Idx is signed.
15723
15724         Use bool where appropriate.
15725         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
15726         All callers changed.
15727         (calc_eclosure_iter): Likewise, for ROOT arg.
15728         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
15729         (build_charclass_op): Likewise, for NON_MATCH arg.
15730         * lib/regex_internal.c (re_string_allocate, re_string_construct):
15731         (re_string_construct_common): Likewise, for ICASE arg.
15732         * lib/regexec.c (re_search_2_stub, re_search_stub):
15733         Likewise, for RET_LEN arg.
15734         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
15735         (set_regs): Likewise, for FL_BACKTRACK arg.
15736         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
15737         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
15738         (calc_eclosure_iter, parse_bracket_exp):
15739         Use bool for internal variables that are booleans.
15740         * lib/regexec.c (re_search_internal, check_matching,
15741         proceed_next_node):
15742         (set_regs, build_sifted_states, sift_states_bkref):
15743         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
15744         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
15745         (find_collation_sequence_value):
15746         Likewise.
15747         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
15748         (re_node_set_compare):
15749         Return bool, not int. All callers changed.
15750         * lib/regexec.c (check_halt_node_context, check_dst_limits):
15751         (build_trtable, check_node_accept): Likewise.
15752         * lib/regex_internal.h: Include stdbool.h.
15753
15754         Fix bugs uncovered when converting to bool.
15755         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
15756         failure instead of charging ahead blindly.
15757         * lib/regex_internal.c (register_state): Likewise.
15758         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
15759         for freeing internal storage.
15760         (group_nodes_into_DFA_states): Use unsigned int, not int, for
15761         bitset pieces used as boolean, to avoid undefined behavior
15762         on hosts that do int overflow checking.
15763
15764 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
15765
15766         * config/srclist.txt: Add glibc bugs 1285-1287.
15767
15768 2005-09-01  Jim Meyering  <jim@meyering.net>
15769
15770         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
15771         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
15772         Require gl_STAT_MACROS, too.
15773
15774 2005-09-01  Bruno Haible  <bruno@clisp.org>
15775
15776         * gnulib-tool (import): In the first-use case, provide defaults.
15777
15778 2005-09-01  Bruno Haible  <bruno@clisp.org>
15779
15780         * gnulib-tool (func_import): Remove the .tmp files.
15781
15782 2005-09-01  Bruno Haible  <bruno@clisp.org>
15783
15784         * gnulib-tool (func_import): Fix handling of symbolic links.
15785
15786 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15787
15788         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
15789         old glibc regex code mishandles strings longer than 2**31 bytes.
15790         This patch fixes this when the regex code is used in gnulib
15791         (i.e., outside glibc).
15792
15793         This patch should not affect the use of the regex code inside
15794         glibc.  No doubt this problem also needs to be handled for glibc
15795         as well, but the result will be an incompatible change to the
15796         glibc ABI, and the old ABI will have to be supported too.  That
15797         can be the the subject for another patch.
15798
15799         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
15800         governing whether the rest of this patch is active.  By default,
15801         the macro is disabled and the patch has no effect.
15802         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
15803         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
15804         (struct re_pattern_buffer, re_search, re_search_2, re_match):
15805         (re_match_2, re_set_registers): Use the new types.
15806         * lib/regex_internal.h (Idx, re_hashval_t): New types.
15807         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
15808         New macros.
15809         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
15810         (re_string_context_at, bin_tree_t, re_dfastate_t):
15811         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
15812         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
15813         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
15814         (re_string_char_size_at, re_string_wchar_at):
15815         (re_string_elem_size_at):
15816         Use the new types and macros to port to 64-bit hosts.
15817         Use unsigned types for internal values, so that the code
15818         mostly works even for arrays larger than SSIZE_MAX.
15819         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
15820         (search_duplicated_node, calc_eclosure_iter, fetch_number):
15821         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
15822         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
15823         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
15824         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
15825         (calc_inveclosure, parse_dup_op, build_range_exp):
15826         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
15827         (fetch_number, create_token_tree, mark_opt_subexp):
15828         Likewise.
15829         * lib/regex_internal.c (re_string_construct_common,
15830         create_ci_newstate):
15831         (create_cd_newstate, re_string_allocate, re_string_construct):
15832         (re_string_realloc_buffers, build_wcs_upper_buffer):
15833         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
15834         (re_string_reconstruct, re_string_peek_byte_case):
15835         (re_string_fetch_byte_case, re_string_context_at):
15836         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
15837         (re_node_set_init_copy, re_node_set_add_intersect):
15838         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
15839         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
15840         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
15841         (re_acquire_state, re_acquire_state_context, register_state):
15842         Likewise.
15843         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
15844         search_cur_bkref_entry):
15845         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
15846         (re_search_internal, re_search_2_stub, re_search_stub)
15847         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
15848         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
15849         (update_cur_sifted_state, check_dst_limits):
15850         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
15851         (check_subexp_limits, sift_states_bkref, merge_state_array):
15852         (check_subexp_matching_top, get_subexp, get_subexp_sub):
15853         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
15854         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
15855         (expand_bkref_cache, check_node_accept_bytes):
15856         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
15857         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
15858         (acquire_init_state_context, check_halt_node_context):
15859         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
15860         (sift_states_backward, clean_state_log_if_needed):
15861         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
15862         (find_recover_state, transit_state_sb, transit_state_mb):
15863         (transit_state_bkref, build_trtable, match_ctx_clean):
15864         Likewise.
15865         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
15866         to work around an assumption that REG_MISSING is negative.
15867
15868         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
15869         (seek_collating_symbol_entry) [defined _LIBC]:
15870         (lookup_collation_sequence_value) [defined _LIBC]:
15871         (build_range_exp, build_collating_symbol) [defined _LIBC]:
15872         Use prototypes rather than old-style function definitions.
15873         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
15874         (transit_state_sb) [0]:
15875         (find_collation_sequence_value) [defined _LIBC]: Likewise.
15876
15877         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
15878         rm_eo.
15879
15880         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
15881         (optimize_subexps, lower_subexp):
15882         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
15883         since the signed shift might overflow.  Use 1u<<31 instead.
15884         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
15885         Likewise.
15886         * lib/regexec.c (check_dst_limits_calc_pos_1,
15887         check_subexp_matching_top): Likewise.
15888
15889         * lib/regcomp.c (optimize_subexps, lower_subexp):
15890         Use CHAR_BIT rather than 8, for clarity.
15891         * lib/regexec.c (check_dst_limits_calc_pos_1):
15892         (check_subexp_matching_top): Likewise.
15893         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
15894         have to worry about portability issues when shifting it left.
15895         Remove no-longer-needed test for table_size > 0.
15896         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
15897         in a word, as the resulting behavior is undefined.
15898         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
15899         in one case, a <= should have been an <, and in another case the
15900         whole test was missing.
15901         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
15902         the standard name CHAR_BIT.
15903         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
15904         this is not true on one's complement and signed-magnitude hosts.
15905
15906         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
15907         next_last_offset.
15908         (struct re_dfa_t): Remove unused member states_alloc.
15909         * lib/regcomp.c (init_dfa): Don't initialize unused members.
15910
15911 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15912
15913         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
15914         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
15915         and large-file glibc and in 32-bit large-file Solaris.
15916
15917 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15918
15919         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
15920         lengths fit in regoff_t; this isn't true if regoff_t is the same
15921         width as size_t.
15922         * lib/regex.c (re_search_internal): 5th arg is LAST_START
15923         (= START + RANGE) instead of RANGE.  This avoids overflow
15924         problems when regoff_t is the same width as size_t.
15925         All callers changed.
15926         (re_search_2_stub): Check for overflow when adding the
15927         sizes of the two strings.
15928         (re_search_stub): Check for overflow when adding START
15929         to RANGE; if it occurs, substitute the extreme value.
15930
15931 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
15932
15933         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
15934
15935 2005-08-31  Jim Meyering  <jim@meyering.net>
15936
15937         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
15938         a pointer-to-const.
15939         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
15940         (register_state): Likewise.
15941         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
15942         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
15943         (group_nodes_into_DFAstates): Likewise.
15944
15945 2005-08-31  Jim Meyering  <jim@meyering.net>
15946
15947         * check-module: Add a FIXME comment.
15948
15949 2005-08-31  Eric Blake  <ebb9@byu.net>
15950
15951         * modules/unistd-safer (Files): Add unistd--.h.
15952         * modules/stdio-safer (Files): Add stdio--.h.
15953
15954 2005-08-31  Derek Price  <derek@ximbiot.com>
15955
15956         * lib/getdelim.c (getdelim): Return EOF on EOF.
15957         Reported by Larry Jones <lawrence.jones@ugs.com>.
15958
15959 2005-08-31  Bruno Haible  <bruno@clisp.org>
15960
15961         Avoid unnecessary diffs in the generated lib/Makefile.am.
15962         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
15963         the generated files.
15964         (func_import): Don't set cmd.
15965
15966 2005-08-31  Bruno Haible  <bruno@clisp.org>
15967
15968         * lib/strstr.c: Include <stddef.h>, for NULL.
15969         * lib/strcasestr.c: Likewise.
15970         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
15971
15972 2005-08-31  Bruno Haible  <bruno@clisp.org>
15973
15974         * gnulib-tool: New option --macro-prefix.
15975         (func_import): Use macro_prefix.
15976         (import): Handle option --macro-prefix.
15977
15978 2005-08-31  Bruno Haible  <bruno@clisp.org>
15979
15980         * gnulib-tool (import): Rename most ac_* variables to cached_*.
15981         Also use new variables cached_lgpl, cached_libtool.
15982
15983 2005-08-31  Bruno Haible  <bruno@clisp.org>
15984
15985         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
15986         always instantiating them.
15987
15988 2005-08-31  Bruno Haible  <bruno@clisp.org>
15989
15990         * gnulib-tool (func_import): Read the previous cached settings
15991         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
15992         earlier added by gnulib but are now dropped. Warn when a gnulib file
15993         overwrites a non-gnulib file.
15994
15995 2005-08-31  Bruno Haible  <bruno@clisp.org>
15996
15997         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
15998         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
15999         projects that don't keep autogenerated files in CVS. Put into
16000         actioncmd only the specified modules, not the transitive closure.
16001
16002 2005-08-31  Bruno Haible  <bruno@clisp.org>
16003
16004         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
16005         Create directories that shall be filled.
16006         (import): Don't look for gl_* macros in configure.ac. Recurse across
16007         all directories containing a gnulib-cache.m4 files, if meaningful.
16008
16009 2005-08-31  Bruno Haible  <bruno@clisp.org>
16010
16011         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
16012         (import): Set seen_libtool when we see gl_LIBTOOL.
16013
16014 2005-08-31  Bruno Haible  <bruno@clisp.org>
16015
16016         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
16017         declaration macro definitions from generated gnulib.m4.
16018
16019 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
16020
16021         * lib/iconvme.h: Add prototype for iconv_alloc.
16022
16023 2005-08-29  Simon Josefsson  <jas@extundo.com>
16024
16025         * lib/iconvme.c: Fix errno.
16026
16027 2005-08-29  Bruno Haible  <bruno@clisp.org>
16028
16029         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
16030         that it works when the directory contains spaces.
16031
16032 2005-08-29  Bruno Haible  <bruno@clisp.org>
16033
16034         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
16035
16036 2005-08-29  Bruno Haible  <bruno@clisp.org>
16037
16038         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
16039         Emit more advice.
16040
16041 2005-08-29  Bruno Haible  <bruno@clisp.org>
16042         and Stepan Kasal  <kasal@ucw.cz>
16043
16044         * check-module: If more parameters are given, check each of them
16045         separately; add more exceptions, as noted by Jim Meyering.
16046         (check_module): New procedure.
16047         (%exempt_header): Now contains all exceptions.
16048
16049 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
16050
16051         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
16052
16053 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
16054
16055         * lib/iconvme.c: Split iconv_string into iconv_alloc.
16056
16057 2005-08-28  Bruno Haible  <bruno@clisp.org>
16058
16059         * m4/gnulib-tool.m4: New file.
16060
16061 2005-08-27  Jim Meyering  <jim@meyering.net>
16062
16063         * modules/unistd-safer (Files): Add pipe-safer.c.
16064         * modules/fcntl-safer (Files): Add creat-safer.c.
16065
16066 2005-08-27  Jim Meyering  <jim@meyering.net>
16067
16068         * m4/stdlib-safer.m4: New file.  From coreutils.
16069         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
16070         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
16071         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
16072         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
16073         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
16074
16075 2005-08-27  Jim Meyering  <jim@meyering.net>
16076
16077         * lib/fopen-safer.c: Merge minor changes from coreutils.
16078         * lib/dup-safer.c: Likewise.
16079         * lib/fd-safer.c: Likewise.
16080
16081         Merge from coreutils.
16082         * lib/stdio--.h: New file.
16083         * lib/stdlib--.h: New file.
16084         * lib/mkstemp-safer.c: New file.
16085
16086         GNU tar needs these.
16087         * lib/pipe-safer.c: New file.
16088         * lib/creat-safer.c: New file.
16089         * lib/fcntl--.h (creat): Define to creat_safer.
16090         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
16091         * lib/unistd--.h (pipe): Define to pipe_safer.
16092         * lib/unistd-safer.h: Declare pipe_safer.
16093
16094 2005-08-26  Simon Josefsson  <jas@extundo.com>
16095
16096         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
16097         Haible <bruno@clisp.org>.
16098
16099 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
16100
16101         * lib/regex_internal.h: Remove all references to
16102         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
16103         or better.
16104         (bitset_not, bitset_merge, bitset_not_merge):
16105         (bitset_mask, re_string_allocate, re_string_construct):
16106         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
16107         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
16108         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
16109         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
16110         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16111         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16112         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
16113         (re_acquire_state_context):
16114         Remove unnecessary forward decls.
16115         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
16116         Put __attribute at function definition,
16117         now that the function decl has been removed.
16118         * lib/regex_internal.c (re_string_peek_byte_case):
16119         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
16120         Likewise.
16121
16122 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
16123
16124         * m4/regex.m4: Add AC_PREREQ(2.50).
16125         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
16126
16127 2005-08-25  Simon Josefsson  <jas@extundo.com>
16128
16129         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
16130         __fsetlocking.
16131
16132 2005-08-25  Simon Josefsson  <jas@extundo.com>
16133
16134         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
16135         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
16136         GLIBC specific code.
16137
16138 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16139
16140         Make regex safe for g++.  This fixes one real bug (an "err"
16141         that should have been "*err").  g++ problem reported by
16142         Sam Steingold.
16143         * lib/regex_internal.h (re_calloc): New macro, consistent with
16144         re_malloc etc.  All callers of calloc changed to use re_calloc.
16145         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
16146         not int.  All callers changed.
16147         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
16148         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
16149         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
16150         (find_recover_state): Change "err" to "*err"; this fixes what
16151         appears to be a real bug.
16152         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
16153         versus int.
16154
16155 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16156
16157         * modules/regex (Depends-on): Add malloc, since the code
16158         assumes that !malloc(0) means failure.
16159
16160 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16161
16162         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
16163
16164         alloca modernization/simplification for regex.
16165         * lib/regex.c: Remove portability cruft for alloca.  This no longer
16166         needs to be at the start of the file, and can be moved into
16167         regex_internal.h and simplified.
16168         * lib/regex_internal.h: Include <alloca.h>.
16169         (__libc_use_alloca) [!defined _LIBC]: New macro.
16170         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
16171         now works outside glibc.
16172
16173 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
16174
16175         * config/srclist.txt: Add glibc bugs 1241, 1245.
16176
16177 2005-08-25  Jim Meyering  <jim@meyering.net>
16178
16179         * lib/open-safer.c: Include <config.h>.
16180         Otherwise, we'd lose LARGEFILE support in any file using
16181         e.g. "fcntl--.h"
16182
16183 2005-08-25  Bruno Haible  <bruno@clisp.org>
16184
16185         * m4/minmax.m4: Require autoconf 2.52.
16186         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
16187         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
16188         alternatives of translit over the alphabet.
16189         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
16190
16191 2005-08-24  Simon Josefsson  <jas@extundo.com>
16192
16193         * tests/test-getpass.c: New file.
16194
16195 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16196
16197         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
16198         for GNU regex features.
16199
16200 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16201
16202         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
16203         * lib/regex.h (regerror): Likewise.
16204
16205         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
16206         requires this.  (The code never needed it.)
16207
16208         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
16209         All uses of recently-renamed identifiers changed to use the new,
16210         POSIX-compliant names.  The code will build and run just fine
16211         without these changes, but it's better to eat our own dog food
16212         and use the standard-conforming names.
16213
16214         * lib/regex.h: Fix a multitude of POSIX name space violations.
16215         These changes have an effect only for programs that define
16216         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
16217         do not change anything for programs compiled in the normal way.
16218         Also, there is no effect on the ABI.
16219
16220         (_REGEX_SOURCE): New macro.
16221         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
16222         defined and _GNU_SOURCE is not; this fixes a name space violation.
16223
16224         Rename the following macros to obey POSIX requirements.
16225         The old names are still visible as macros if _REGEX_SOURCE is defined.
16226         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
16227         RE_BACKSLASH_ESCAPE_IN_LISTS.
16228         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
16229         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
16230         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
16231         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
16232         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
16233         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
16234         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
16235         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
16236         (REG_INTERVALS): renamed from RE_INTERVALS.
16237         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
16238         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
16239         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
16240         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
16241         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
16242         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
16243         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
16244         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
16245         RE_UNMATCHED_RIGHT_PAREN_ORD.
16246         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
16247         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
16248         (REG_DEBUG): renamed from RE_DEBUG.
16249         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
16250         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
16251         unusual, since we can't clash with the POSIX REG_ICASE.
16252         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
16253         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
16254         (REG_NO_SUB): renamed from RE_NO_SUB.
16255         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
16256         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
16257         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
16258         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
16259         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
16260         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
16261         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
16262         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
16263         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
16264         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
16265         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
16266         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
16267         RE_SYNTAX_POSIX_MINIMAL_BASIC.
16268         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
16269         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
16270         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
16271         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
16272         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
16273         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
16274         (REG_FIXED): Renamed from REGS_FIXED.
16275         (REG_NREGS): Renamed from RE_NREGS.
16276
16277         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
16278         of other REG_* macros, since POSIX says the user is allowed to
16279         #undef these macros selectively.
16280
16281         (reg_errcode_t): Update comment stating what other tables need
16282         to be consistent.
16283
16284         Rename the following enum values to obey POSIX requirements.
16285         The old names are still visible as macros.
16286         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
16287         is not defined, since GNU is supposed to be a superset of POSIX as
16288         much as possible, and since we want reg_errcode_t to be a signed
16289         type for implementation consistency.
16290         (_REG_NOERROR): Renamed from REG_NOERROR.
16291         (_REG_NOMATCH): Renamed from REG_NOMATCH.
16292         (_REG_BADPAT): Renamed from REG_BADPAT.
16293         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
16294         (_REG_ECTYPE): Renamed from REG_ECTYPE.
16295         (_REG_EESCAPE): Renamed from REG_EESCAPE.
16296         (_REG_ESUBREG): Renamed from REG_ESUBREG.
16297         (_REG_EBRACK): Renamed from REG_EBRACK.
16298         (_REG_EPAREN): Renamed from REG_EPAREN.
16299         (_REG_EBRACE): Renamed from REG_EBRACE.
16300         (_REG_BADBR): Renamed from REG_BADBR.
16301         (_REG_ERANGE): Renamed from REG_ERANGE.
16302         (_REG_ESPACE): Renamed from REG_ESPACE.
16303         (_REG_BADRPT): Renamed from REG_BADRPT.
16304         (_REG_EEND): Renamed from REG_EEND.
16305         (_REG_ESIZE): Renamed from REG_ESIZE.
16306         (_REG_ERPAREN): Renamed from REG_ERPAREN.
16307         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
16308         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
16309         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
16310         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
16311
16312         (_REG_RE_NAME, _REG_RM_NAME): New macros.
16313         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
16314         changed.  But support the old name if the new one is not defined
16315         and if _REGEX_SOURCE.
16316
16317         Change the following member names in struct re_pattern_buffer.
16318         The old names are still supported if !_REGEX_SOURCE.
16319         The new names are always supported, regardless of _REGEX_SOURCE.
16320         (re_buffer): Renamed from buffer.
16321         (re_allocated): Renamed from allocated.
16322         (re_used): Renamed from used.
16323         (re_syntax): Renamed from syntax.
16324         (re_fastmap): Renamed from fastmap.
16325         (re_translate): Renamed from translate.
16326         (re_can_be_null): Renamed from can_be_null.
16327         (re_regs_allocated): Renamed from regs_allocated.
16328         (re_fastmap_accurate): Renamed from fastmap_accurate.
16329         (re_no_sub): Renamed from no_sub.
16330         (re_not_bol): Renamed from not_bol.
16331         (re_not_eol): Renamed from not_eol.
16332         (re_newline_anchor): Renamed from newline_anchor.
16333
16334         Change the following member names in struct re_registers.
16335         The old names are still supported if !_REGEX_SOURCE.
16336         The new names are always supported, regardless of _REGEX_SOURCE.
16337         (rm_num_regs): Renamed from num_regs.
16338         (rm_start): Renamed from start.
16339         (rm_end): Renamed from end.
16340
16341         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
16342         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
16343         Prepend __ to parameter names.
16344
16345         Undo yesterday's changes.
16346
16347 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
16348
16349         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
16350         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
16351         lib/regex.c.
16352
16353 2005-08-24  Jim Meyering  <jim@meyering.net>
16354
16355         Sync from coreutils.
16356         * m4/fcntl-safer.m4: New file.
16357
16358         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
16359         and object files for this module.
16360
16361 2005-08-24  Jim Meyering  <jim@meyering.net>
16362
16363         Sync from coreutils.
16364         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
16365
16366 2005-08-24  Jim Meyering  <jim@meyering.net>
16367
16368         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
16369         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
16370
16371 2005-08-24  Jim Meyering  <jim@meyering.net>
16372
16373         * modules/fcntl-safer: New module.
16374         * modules/fts (Depends-on): Add fcntl-safer.
16375         * MODULES.html.sh (File descriptor based Input/Output):
16376         Add fcntl-safer.
16377
16378 2005-08-24  Bruno Haible  <bruno@clisp.org>
16379
16380         Support for unit test modules.
16381         * modules/README: Mention tests modules.
16382         * modules/TEMPLATE-TESTS: New file.
16383         * gnulib-tool: New options --extract-tests-module, --with-tests and
16384         --tests-base (unused for the moment).
16385         (testsbase, inctests): New variables.
16386         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
16387         (func_verify_module): Exclude TEMPLATE-TESTS.
16388         (func_verify_nontests_module, func_verify_tests_module): New functions.
16389         (func_get_dependencies): Add implicit dependency for tests modules.
16390         (func_get_tests_module): New function.
16391         (func_modules_transitive_closure): When --with-tests was specified,
16392         include the unit tests as well, unless explicitly avoided.
16393         (func_emit_lib_Makefile_am): Ignore the tests modules here.
16394         (func_emit_tests_Makefile_am): New function.
16395         (func_create_testdir): When --with-tests was specified, emit a
16396         tests/ directory.
16397         * MODULES.html.sh (Future developments): Update.
16398
16399 2005-08-24  Bruno Haible  <bruno@clisp.org>
16400
16401         * modules/tls-tests: New file.
16402         * tests/test-tls.c: New file, from GNU gettext.
16403
16404 2005-08-24  Bruno Haible  <bruno@clisp.org>
16405
16406         * modules/lock-tests: New file.
16407         * tests/test-lock.c: New file, from GNU gettext.
16408
16409 2005-08-24  Bruno Haible  <bruno@clisp.org>
16410
16411         * lib/lock.h: Add multiple inclusion guard.
16412         * lib/tls.h: Add multiple inclusion guard.
16413
16414 2005-08-24  Bruno Haible  <bruno@clisp.org>
16415
16416         * gnulib-tool: Add support for the --aux-dir option to
16417         --create-testdir, --create-megatestdir, --test, --megatest.
16418         (func_create_testdir, func_create_megatestdir): Optionally emit a
16419         AC_CONFIG_AUX_DIR directive.
16420         (create-testdir, create-megatestdir, test, megatest): Provide a
16421         default value for $auxdir.
16422
16423 2005-08-24  Bruno Haible  <bruno@clisp.org>
16424
16425         * gnulib-tool (import): Use compound statement instead of subshell
16426         where possible.
16427
16428 2005-08-24  Bruno Haible  <bruno@clisp.org>
16429
16430         * gnulib-tool (import): Change --aux-dir default to "build-aux".
16431
16432 2005-08-24  Bruno Haible  <bruno@clisp.org>
16433
16434         * gnulib-tool (func_version): Update.
16435
16436 2005-08-24  Bruno Haible  <bruno@clisp.org>
16437
16438         * gnulib-tool (func_import, func_create_testdir,
16439         func_create_megatestdir): Quote all autoconf macro arguments.
16440
16441 2005-08-24  Bruno Haible  <bruno@clisp.org>
16442
16443         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
16444         option --force, because --force causes the aclocal.m4 of each
16445         subdirectory to be newer than the corresponding config.h.in.
16446
16447 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16448
16449         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
16450         All contents moved to gl_REGEX.
16451         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
16452         assume that it does.
16453
16454 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16455
16456         * lib/regex.h (REG_NOSYS)
16457         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
16458         Define, since POSIX requires it as of 2001.
16459         (_REG_ENOSYS)
16460         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
16461         New private symbol, used to keep the enum signed in all cases.
16462         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
16463         Youngman in
16464         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
16465
16466         * lib/regex_internal.c (re_string_skip_chars, register_state):
16467         (calc_state_hash):
16468         Remove forward decls; no longer needed now that we use prototypes.
16469         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
16470         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
16471         (clean_state_log_if_needed): Likewise.
16472
16473 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
16474
16475         * config/srclist.txt: Add glibc bugs 1231-1233.
16476
16477 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16478
16479         Fix problems reported by Sam Steingold in
16480         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
16481         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
16482         assumed that reg_errcode_t is a signed type, which is not
16483         necessarily true if _XOPEN_SOURCE is not defined.
16484         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
16485         since some compilers warn about it otherwise.
16486
16487 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16488
16489         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
16490         (init_word_char, create_initial_state, duplicate_node_closure):
16491         (fetch_token, peek_token_bracket, build_range_exp):
16492         (build_collating_symbol): Remove forward decls; no longer needed
16493         now that we use prototypes.
16494
16495         * lib/regcomp.c:
16496         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
16497         (re_compile_fastmap_iter, regcomp, regerror, regfree):
16498         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
16499         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
16500         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
16501         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
16502         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
16503         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
16504         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
16505         (build_range_exp, build_collating_symbol, parse_bracket_exp):
16506         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
16507         (build_charclass, build_charclass_op, fetch_number, create_tree):
16508         (create_token_tree, mark_opt_subexp, duplicate_tree):
16509         Use prototypes rather than old-style definitions.
16510
16511         * lib/regex_internal.c:
16512         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
16513         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
16514         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
16515         (re_string_reconstruct, re_string_peek_byte_case):
16516         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
16517         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
16518         (re_node_set_init_copy, re_node_set_add_intersect):
16519         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
16520         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
16521         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
16522         (re_acquire_state, re_acquire_state_context, register_state):
16523         (create_ci_newstate, create_cd_newstate, free_state):
16524         Likewise.
16525         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
16526         re_search_2):
16527         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
16528         (re_search_internal, prune_impossible_nodes):
16529         (acquire_init_state_context, check_matching, static):
16530         (check_halt_node_context, check_halt_state_context, proceed_next_node):
16531         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
16532         (update_regs, sift_states_backward, build_sifted_states):
16533         (clean_state_log_if_needed, merge_state_array):
16534         (update_cur_sifted_state, add_epsilon_src_nodes):
16535         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
16536         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
16537         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
16538         (find_recover_state, check_subexp_matching_top, transit_state_mb):
16539         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
16540         (check_arrival, check_arrival_add_next_nodes):
16541         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
16542         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
16543         (check_node_accept_bytes, check_node_accept, extend_buffers):
16544         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
16545         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
16546         (sift_ctx_init):
16547         Likewise.
16548
16549         * lib/regex_internal.h:
16550         (re_string_allocate, re_string_construct, re_string_reconstruct):
16551         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
16552         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
16553         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
16554         (re_string_context_at, re_string_peek_byte_case):
16555         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
16556         is defined, since we now use prototypes always.
16557
16558         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
16559         C89 or better.  All uses removed.
16560
16561 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
16562
16563         * config/srclist.txt: Add glibc bugs 1220-1227.
16564
16565 2005-08-20  Jim Meyering  <jim@meyering.net>
16566
16567         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
16568         of unused local, dfa.
16569
16570 2005-08-20  Bruno Haible  <bruno@clisp.org>
16571
16572         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
16573
16574 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16575
16576         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
16577         (re_node_set_insert_last, re_dfa_add_node):
16578         Rename local variables to avoid GCC shadowing warnings.
16579
16580 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16581
16582         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
16583         [defined lint]: Suppress bogus uninitialized-variable warnings.
16584
16585         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
16586         and let the caller return REG_ESPACE if out of space.  This
16587         removes an uninitialied-variable warning with GCC 4.0.1, and also
16588         avoids taking the address of a local variable.  All callers
16589         changed.
16590
16591 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
16592
16593         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
16594         $LIBCSRC/posix/regexec.c.
16595         Add glibc bug 1217 for regcomp.c.
16596
16597 2005-08-19  Jim Meyering  <jim@meyering.net>
16598
16599         * lib/regexec.c (proceed_next_node): Redo local variables to
16600         avoid GCC shadowing warnings.
16601
16602 2005-08-18  Bruno Haible  <bruno@clisp.org>
16603
16604         * lib/strstr.c (strstr): Fix return value in multibyte case.
16605         * lib/strcasestr.c (strcasestr): Likewise.
16606
16607 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
16608
16609         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
16610
16611 2005-08-17  Jim Meyering  <jim@meyering.net>
16612
16613         Make the %s format (seconds since the epoch) work for a negative
16614         number and when used with a zero-padded field width, e.g. %015s.
16615
16616         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
16617         label so that it precedes the code to set `digits'.  Otherwise,
16618         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
16619         print `00-22'.  Now, it prints `-0022', as it should.
16620
16621 2005-08-17  Bruno Haible  <bruno@clisp.org>
16622
16623         * modules/strstr (Files): Add m4/mbrtowc.m4.
16624         (Depends-on): Add mbuiter.
16625
16626 2005-08-17  Bruno Haible  <bruno@clisp.org>
16627
16628         * modules/strcasestr: New file.
16629         * MODULES.html.sh (String handling, based on ANSI C 89): Add
16630         strcasestr.
16631
16632 2005-08-17  Bruno Haible  <bruno@clisp.org>
16633
16634         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
16635
16636 2005-08-17  Bruno Haible  <bruno@clisp.org>
16637
16638         * modules/mbuiter: New file.
16639         * MODULES.html.sh (Extended multibyte and wide character utilities):
16640         Add mbuiter.
16641
16642 2005-08-17  Bruno Haible  <bruno@clisp.org>
16643
16644         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
16645         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
16646
16647 2005-08-17  Bruno Haible  <bruno@clisp.org>
16648
16649         * m4/strcasestr.m4: New file.
16650
16651 2005-08-17  Bruno Haible  <bruno@clisp.org>
16652
16653         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
16654         * lib/strstr.c: Completely rewritten, with multibyte locale support.
16655
16656 2005-08-17  Bruno Haible  <bruno@clisp.org>
16657
16658         * lib/strcasestr.h: New file.
16659         * lib/strcasestr.c: New file.
16660
16661 2005-08-17  Bruno Haible  <bruno@clisp.org>
16662
16663         * lib/strcasecmp.c: Use mbuiter.h.
16664
16665 2005-08-17  Bruno Haible  <bruno@clisp.org>
16666
16667         * lib/mbuiter.h: New file.
16668
16669 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
16670
16671         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
16672         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
16673         and gl_GETOPT are both invoked via different paths (as happens
16674         with GNU tar CVS because it uses both argp and getopt), the former
16675         wins.
16676
16677 2005-08-16  Bruno Haible  <bruno@clisp.org>
16678
16679         * modules/tls: New file.
16680         * MODULES.html.sh (Multithreading): Add tls.
16681
16682 2005-08-16  Bruno Haible  <bruno@clisp.org>
16683
16684         * modules/strnlen1: New file.
16685         * MODULES.html.sh (String handling): Add strnlen1.
16686
16687 2005-08-16  Bruno Haible  <bruno@clisp.org>
16688
16689         * modules/strcase (Files): Add m4/mbrtowc.m4.
16690         (Depends-on): Add strnlen1, mbchar.
16691
16692 2005-08-16  Bruno Haible  <bruno@clisp.org>
16693
16694         * modules/mbiter: New file.
16695         * MODULES.html.sh (Extended multibyte and wide character utilities):
16696         Add mbiter.
16697
16698 2005-08-16  Bruno Haible  <bruno@clisp.org>
16699
16700         * modules/mbfile: New file.
16701         * MODULES.html.sh (Extended multibyte and wide character utilities):
16702         Add mbfile.
16703
16704 2005-08-16  Bruno Haible  <bruno@clisp.org>
16705
16706         * modules/mbchar: New file.
16707         * MODULES.html.sh (Extended multibyte and wide character utilities):
16708         New section.
16709
16710 2005-08-16  Bruno Haible  <bruno@clisp.org>
16711
16712         * m4/tls.m4: New file, from GNU gettext.
16713
16714 2005-08-16  Bruno Haible  <bruno@clisp.org>
16715
16716         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
16717         always.
16718         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
16719
16720 2005-08-16  Bruno Haible  <bruno@clisp.org>
16721
16722         * m4/mbiter.m4: New file.
16723
16724 2005-08-16  Bruno Haible  <bruno@clisp.org>
16725
16726         * m4/mbfile.m4: New file.
16727
16728 2005-08-16  Bruno Haible  <bruno@clisp.org>
16729
16730         * m4/mbchar.m4: New file.
16731
16732 2005-08-16  Bruno Haible  <bruno@clisp.org>
16733
16734         * lib/tls.h: New file, from GNU gettext.
16735         * lib/tls.c: New file, from GNU gettext.
16736
16737 2005-08-16  Bruno Haible  <bruno@clisp.org>
16738
16739         * lib/strnlen1.h: New file.
16740         * lib/strnlen1.c: New file.
16741
16742 2005-08-16  Bruno Haible  <bruno@clisp.org>
16743
16744         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
16745         (mbi_init): Update.
16746         (mbi_avail, mbi_advance): Let the iteration end before the terminating
16747         NUL byte, not after it.
16748
16749 2005-08-16  Bruno Haible  <bruno@clisp.org>
16750
16751         * lib/strcase.h (strcasecmp): Add note in comments.
16752         * lib/strncasecmp.c: Use code from strcasecmp.c.
16753         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
16754         (strcasecmp): Work correctly in multibyte locales.
16755
16756 2005-08-16  Bruno Haible  <bruno@clisp.org>
16757
16758         * lib/mbiter.h: New file.
16759
16760 2005-08-16  Bruno Haible  <bruno@clisp.org>
16761
16762         * lib/mbfile.h: New file.
16763
16764 2005-08-16  Bruno Haible  <bruno@clisp.org>
16765
16766         * lib/mbchar.h: New file.
16767         * lib/mbchar.c: New file.
16768
16769 2005-08-16  Bruno Haible  <bruno@clisp.org>
16770
16771         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
16772         the valid ones. Makes the comparison operations transitive:
16773         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
16774         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
16775
16776 2005-08-15  Simon Josefsson  <jas@extundo.com>
16777
16778         * modules/ssize_t (License): Change to 'unlimited'.
16779
16780         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
16781
16782 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
16783
16784         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
16785         Add comments for each pending glibc patch.
16786
16787 2005-08-15  Bruno Haible  <bruno@clisp.org>
16788
16789         * lib/regex.h (__restrict_arr): Don't define to __restrict if
16790         __cplusplus is defined.
16791
16792 2005-08-14  Jim Meyering  <jim@meyering.net>
16793
16794         Sync from coreutils.
16795
16796         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
16797         Use the hash-table-based cycle-detection code not just when
16798         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
16799         Reported by James Youngman in
16800         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
16801         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
16802         FTS_TIGHT_CYCLE_CHECK.
16803         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
16804         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
16805         once again.
16806         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
16807         * lib/fts.c (fd_safer): Remove decl.
16808         Include fcntl--.h rather than unistd-safer.h
16809         (fts_safe_changedir): Don't call fd_safer; no longer needed
16810         now that we include fcntl--.h.
16811
16812 2005-08-12  Simon Josefsson  <jas@extundo.com>
16813
16814         * modules/getndelim2: Use ssize_t module.
16815         * modules/getnline: Likewise.
16816         * modules/safe-read: Likewise.
16817         * modules/xreadlink: Likewise.
16818
16819         * modules/ssize_t: New file.
16820
16821 2005-08-12  Simon Josefsson  <jas@extundo.com>
16822
16823         * m4/readline.m4: Look for termcap, curses or ncurses if required.
16824
16825 2005-08-12  Simon Josefsson  <jas@extundo.com>
16826
16827         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16828         ssize_t.
16829
16830 2005-08-12  Simon Josefsson  <jas@extundo.com>
16831
16832         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
16833         readline, getdelim and check_version.
16834         (Support for systems lacking ISO C 99: Sizes of integer types):
16835         Add size_max.
16836
16837 2005-08-12  Bruno Haible  <bruno@clisp.org>
16838
16839         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
16840
16841 2005-08-11  Simon Josefsson  <jas@extundo.com>
16842
16843         * modules/readline: New file.
16844
16845         * modules/strnlen (Files): Add strnlen.h.
16846
16847 2005-08-11  Simon Josefsson  <jas@extundo.com>
16848
16849         * m4/readline.m4: New file.
16850
16851 2005-08-11  Simon Josefsson  <jas@extundo.com>
16852
16853         * lib/readline.h, readline.c: New file.
16854
16855 2005-08-11  Simon Josefsson  <jas@extundo.com>
16856
16857         * doc/gnulib.texi (Initial import, Finishing touches): Mention
16858         gl_AVOID.
16859
16860 2005-08-11  Bruno Haible  <bruno@clisp.org>
16861
16862         * lib/strnlen.h (strnlen): Change parameter name to match comment.
16863
16864 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
16865
16866         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
16867
16868 2005-08-10  Simon Josefsson  <jas@extundo.com>
16869
16870         * tests/test-iconvme.c: New file.
16871
16872 2005-08-10  Simon Josefsson  <jas@extundo.com>
16873
16874         * m4/strnlen.m4: New file.
16875
16876         * m4/strndup.m4: Don't check for strnlen declaration, done in
16877         strnlen.m4.
16878
16879 2005-08-10  Simon Josefsson  <jas@extundo.com>
16880
16881         * lib/strndup.c: Use strnlen.h.
16882
16883         * lib/strnlen.h: New file.
16884
16885 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
16886
16887         * README: Typos.
16888
16889 2005-08-02  Simon Josefsson  <jas@extundo.com>
16890
16891         * modules/readline: New file.
16892
16893 2005-08-02  Simon Josefsson  <jas@extundo.com>
16894
16895         * modules/getdelim: New file.
16896
16897         * modules/getline: Rewrite, don't use getndelim2.
16898
16899 2005-08-02  Simon Josefsson  <jas@extundo.com>
16900
16901         * m4/getline.m4: Separate out getdelim stuff into separate module.
16902
16903         * m4/getdelim.m4: New file.
16904
16905 2005-08-02  Simon Josefsson  <jas@extundo.com>
16906
16907         * lib/getline.h, getline.c: Rewrite.
16908
16909         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
16910
16911 2005-07-31  Bruno Haible  <bruno@clisp.org>
16912
16913         * lib/lock.h (gl_lock_initializer): New macro.
16914         (gl_lock_define_initialized): Use it.
16915         (gl_rwlock_initializer): New macro.
16916         (gl_rwlock_define_initialized): Use it.
16917         (gl_recursive_lock_initializer): New macro.
16918         (gl_recursive_lock_define_initialized): Use it.
16919
16920 2005-07-30  Karl Berry  <karl@gnu.org>
16921
16922         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
16923         Report from Ben Pfaff, regarding getopt.
16924
16925 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
16926
16927         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
16928         normal way.
16929         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
16930         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
16931         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
16932         (gl_GETOPT): Use the new macros.  Most of the implementation
16933         is moved to the new macros.  This is for programs like Emacs
16934         that don't want all the functionality of gl_GETOPT.
16935
16936 2005-07-26  Bruno Haible  <bruno@clisp.org>
16937
16938         * m4/lock.m4: Update from GNU gettext.
16939
16940 2005-07-26  Bruno Haible  <bruno@clisp.org>
16941
16942         * lib/lock.h: Update from GNU gettext.
16943         * lib/lock.c: Update from GNU gettext.
16944
16945 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
16946
16947         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
16948         obsolescent AC_TRY_RUN.  Include the default includes files, for
16949         'exit'.
16950
16951 2005-07-24  Bruno Haible  <bruno@clisp.org>
16952
16953         * modules/visibility: New file.
16954         * MODULES.html.sh (Misc): Add visibility.
16955
16956 2005-07-24  Bruno Haible  <bruno@clisp.org>
16957
16958         * m4/visibility.m4: New file.
16959
16960 2005-07-24  Bruno Haible  <bruno@clisp.org>
16961
16962         * doc/visibility.texi: New file.
16963
16964 2005-07-22  Bruno Haible  <bruno@clisp.org>
16965
16966         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
16967         $(ALLOCA_H), redundant through BUILT_SOURCES.
16968         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
16969         redundant through BUILT_SOURCES.
16970         * modules/byteswap (Makefile.am): Remove explicit dependency on
16971         $(BYTESWAP_H), redundant through BUILT_SOURCES.
16972         * modules/fnmatch (Makefile.am): Remove explicit dependency on
16973         $(FNMATCH_H), redundant through BUILT_SOURCES.
16974         * modules/getopt (Makefile.am): Remove explicit dependency on
16975         $(GETOPT_H), redundant through BUILT_SOURCES.
16976         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
16977         redundant through BUILT_SOURCES.
16978         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
16979         redundant through BUILT_SOURCES.
16980         * modules/stdbool (Makefile.am): Remove explicit dependency on
16981         $(STDBOOL_H), redundant through BUILT_SOURCES.
16982         * modules/stdint (Makefile.am): Remove explicit dependency on
16983         $(STDINT_H), redundant through BUILT_SOURCES.
16984         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
16985         Remove explicit dependency on $(SYSEXITS_H).
16986         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
16987
16988 2005-07-18  Simon Josefsson  <jas@extundo.com>
16989
16990         * lib/check-version.c (check_version): Accept identical versions too.
16991
16992 2005-07-18  Bruno Haible  <bruno@clisp.org>
16993
16994         * modules/lock: New file.
16995         * MODULES.html.sh (Multithreading): New section.
16996
16997 2005-07-18  Bruno Haible  <bruno@clisp.org>
16998
16999         * m4/lock.m4: New file, from GNU gettext.
17000
17001 2005-07-18  Bruno Haible  <bruno@clisp.org>
17002
17003         * lib/lock.h: New file, from GNU gettext.
17004         * lib/lock.c: New file, from GNU gettext.
17005
17006 2005-07-18  Bruno Haible  <bruno@clisp.org>
17007
17008         * lib/lock.h (gl_once_t): New type.
17009         (gl_once_define, gl_once): New macros.
17010         * lib/lock.c (fresh_once): New variable.
17011         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
17012         functions.
17013
17014 2005-07-16  Simon Josefsson  <jas@extundo.com>
17015
17016         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
17017         workaround, suggested by Bruno.
17018
17019 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17020
17021         * modules/xalloc (Depends-on): Add xalloc-die.
17022         * modules/xvasprintf (Depends-on): Add xalloc-die.
17023
17024 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
17025
17026         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
17027         with a minor change.
17028
17029 2005-07-15  Bruno Haible  <bruno@clisp.org>
17030
17031         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
17032         When using lib/poll.c, define poll as rpl_poll.
17033
17034 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
17035
17036         * modules/argp (Depends-on): Remove unlocked-io.
17037
17038 2005-07-14  Derek Price  <derek@ximbiot.com>
17039
17040         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
17041         for glob symlink bug.
17042
17043 2005-07-14  Bruno Haible  <bruno@clisp.org>
17044
17045         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
17046         Instead, test for *_unlocked function declarations directly.
17047
17048 2005-07-11  Simon Josefsson  <jas@extundo.com>
17049
17050         * modules/size_max: New file.
17051
17052         * modules/xsize: Depend on size_max module for size_max.m4.
17053
17054 2005-07-11  Simon Josefsson  <jas@extundo.com>
17055
17056         * lib/size_max.h: New file.
17057
17058 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
17059
17060         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
17061         copyright symbol and the year.
17062         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
17063         (version_etc_va): Use parameterized copyright notice.
17064         Reword to conform to the current GNU coding standards.
17065
17066 2005-07-11  Karl Berry  <karl@gnu.org>
17067
17068         * doc/gnulib.texi (Quoting): new node.
17069         (Initial import): more info, from Patrice.
17070
17071 2005-07-11  Bruno Haible  <bruno@clisp.org>
17072
17073         * gnulib-tool (func_usage): Document option --avoid.
17074         (Command line options): Handle --avoid.
17075         (func_acceptable): New function.
17076         (func_modules_transitive_closure): Use it.
17077
17078 2005-07-11  Bruno Haible  <bruno@clisp.org>
17079
17080         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
17081         Reported by Jim Meyering.
17082
17083 2005-07-10  Bruno Haible  <bruno@clisp.org>
17084
17085         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
17086         Needed when size_t is smaller than 'unsigned int'.
17087         Reported by Paul Eggert.
17088
17089 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17090
17091         * modules/argp (Depends-on): Add unlocked-io
17092
17093 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
17094
17095         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
17096         block of defines.
17097
17098 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
17099
17100         * config/srclist.txt: Comment out regcomp.c, since we have a porting
17101         fix now.
17102
17103 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
17104         and Paul Eggert  <eggert@cs.ucla.edu>
17105
17106         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
17107         in wint_t, not wchar_t.  Remove now-unnecessary cast.
17108
17109 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17110
17111         * modules/regex (Files): Add lib/regex_internal.c,
17112         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
17113         (Depends-on): Add extensions.
17114         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
17115
17116 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17117
17118         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
17119         pathconf.
17120         * m4/same.m4 (gl_SAME): Likewise.
17121         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
17122
17123         * m4/regex.m4: Adjust to new libc regex implementation.
17124         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
17125         all the .c and .h parts of (the new) regex.
17126         Quote the m4 stuff better.
17127         Check for RE_ICASE bug of old gnulib.
17128         Check for REG_STARTEND of recent libc.
17129         Rename local variables from jm_* to gl_*.
17130         Quote operand of "test -f".
17131         Say "recent enough" version of libc, not "version 2".
17132         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
17133         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
17134         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
17135         Remove check for btowc, isascii.
17136         Require AM_LANGINFO_CODESET.
17137
17138 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17139
17140         * lib/regex.c, regex.h: Sync from libc.
17141         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
17142         * lib/regexec.c:
17143         New files, synced from libc, except that regex_internal.h
17144         currently has a small porting fix.
17145
17146 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
17147
17148         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
17149         regex_internal.c, regexec.c.
17150         Add regex_internal.h too, but as a comment, since the libc version
17151         is currently broken in gnulib mode.
17152
17153 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
17154
17155         Support programs like Emacs that use gnulib but not gettext.
17156         * MODULES.html.sh (Internationalization functions): Add gettext-h.
17157         * modules/gettext-h: New file.
17158         * modules/gettext (Files): Remove lib/gettext.h.
17159         (Depends-on): Add gettext-h.
17160         (Makefile.am): Remove lib_SOURCES.
17161         * modules/argmatch, modules/c-stack, modules/closeout:
17162         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
17163         * modules/execute, modules/file-type, modules/getaddrinfo:
17164         * modules/getopt, modules/human, modules/javacomp:
17165         * modules/javaexec, modules/mkdir-p, modules/obstack:
17166         * modules/openat, modules/pagealign_alloc, modules/pipe:
17167         * modules/quotearg, modules/regex, modules/rpmatch:
17168         * modules/unicodeio, modules/userspec, modules/version-etc:
17169         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
17170         * modules/xsetenv:
17171         Depend on gettext-h, not gettext.
17172
17173 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
17174
17175         * gnulib-tool (func_import): Add support for 'public domain' license.
17176         * modules/alloca, modules/atexit, modules/memmove:
17177         Now public domain, not GPL.
17178         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
17179         * modules/realloc, modules/strerror, modules/strtod:
17180         Now LGPL, not GPL.
17181
17182 2005-07-05  Bruno Haible  <bruno@clisp.org>
17183
17184         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
17185         autoconf CVS. Needed for mingw.
17186
17187 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17188
17189         Remove the dependency of the strftime module on the tzset module.
17190         * modules/strftime (Depends-on): Remove dependency on tzset.
17191
17192 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17193
17194         Remove the dependency of the strftime module on the tzset module.
17195         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
17196         gl_FUNC_TZSET_CLOBBER.
17197
17198 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
17199
17200         Remove the dependency of the strftime module on the tzset module.
17201         * lib/strftime.c (my_strftime)
17202         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
17203         Copy the input structure, to work around some of the bug with
17204         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
17205         Solaris releases, you should also use the tzset module, but we won't
17206         require it as a dependency any more since we don't want LGPLed code
17207         to depend on GPLed code.
17208
17209 2005-07-02  Jim Meyering  <jim@meyering.net>
17210
17211         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
17212         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
17213         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
17214         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
17215
17216 2005-07-02  Jim Meyering  <jim@meyering.net>
17217
17218         * lib/backupfile.c (backup_args): Change a `0' to NULL.
17219
17220 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
17221
17222         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
17223         declares only 'struct timespec;' (!).
17224
17225 2005-07-01  Jim Meyering  <jim@meyering.net>
17226
17227         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
17228         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
17229         * lib/save-cwd.c, tempname.c:
17230         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
17231         and don't include <sys/file.h>).
17232
17233 2005-06-29  Jim Meyering  <jim@meyering.net>
17234
17235         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
17236         type name.  Use the variable name instead.
17237         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
17238         Likewise.
17239
17240 2005-06-28  Simon Josefsson  <jas@extundo.com>
17241
17242         * modules/check-version (Files): Add check-version.m4.
17243
17244 2005-06-28  Simon Josefsson  <jas@extundo.com>
17245
17246         * m4/check-version.m4: New file, suggested by Jim Meyering
17247         <jim@meyering.net>.
17248
17249 2005-06-28  Simon Josefsson  <jas@extundo.com>
17250
17251         * lib/check-version.h, lib/check-version.c: New files.
17252
17253 2005-06-28  Simon Josefsson  <jas@extundo.com>
17254
17255         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
17256         collision with global variable.  Better indentation.  Don't
17257         increment buffer pointer beyond buffer end.  Based on comments
17258         from Paul Eggert <eggert@cs.ucla.edu>.
17259
17260         * lib/base64.h: Indent.
17261
17262 2005-06-28  Simon Josefsson  <jas@extundo.com>
17263
17264         * doc/gnulib.texi (Library version handling): New section.
17265
17266 2005-06-28  Jim Meyering  <jim@meyering.net>
17267
17268         * check-module (find_included_lib_files): Hard-code another
17269         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
17270         but modules/fts-lgpl (correctly) does not list those files.
17271
17272         * modules/canonicalize (Files): Add lib/pathmax.h.
17273
17274 2005-06-25  Simon Josefsson  <jas@extundo.com>
17275
17276         * modules/check-version: New file.
17277
17278 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
17279
17280         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
17281         initializer of struct addrinfo, as an indication that we don't
17282         care how many members the structure has.
17283
17284 2005-06-24  Derek Price  <derek@ximbiot.com>
17285         and Bruno Haible  <bruno@clisp.org>
17286
17287         Remove stat module & update lstat.
17288         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
17289         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
17290         * m4/stat.m4: Remove this file.
17291
17292 2005-06-24  Derek Price  <derek@ximbiot.com>
17293         and Bruno Haible  <bruno@clisp.org>
17294
17295         Remove stat module & update lstat.
17296         * lib/stat.c: Remove this file...
17297         (slash_aware_lstat): ...moving this content and its support...
17298         * lib/lstat.c (rpl_lstat): ...into here.
17299         * lib/lstat.h: New file.
17300
17301 2005-06-24  Derek Price  <derek@ximbiot.com>
17302         and Bruno Haible  <bruno@clisp.org>
17303
17304         Remove stat module & update lstat.
17305         * config/srclist.txt (libc sources): Remove stat.
17306
17307 2005-06-24  Derek Price  <derek@ximbiot.com>
17308         and Bruno Haible  <bruno@clisp.org>
17309
17310         Remove stat module & update lstat.
17311         * MODULES.html.sh (stat): Remove.
17312         * MODULES.html: Regenerated.
17313         * modules/lstat (Description): Correct function name.
17314         (Files): Add "lstat.h".
17315         (Depends-on): Remove stat, add xalloc, stat-macros.
17316         * modules/stat: Remove this file.
17317         (Include): Add "lstat.h", remove <sys/stat.h>.
17318
17319 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
17320
17321         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
17322         (ranged_convert): Don't save conversion in a temporary struct.
17323         This causes a warning with GCC 4.0.0, and anyway in the typical
17324         case it's not worth the extra 100 bytes or so of code.
17325         (ranged_convert, __mktime_internal): When calling a function via a
17326         pointer P, use P () rather than (*P) (), as we now assume C89 or
17327         better.
17328
17329 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
17330
17331         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
17332         "who -r" failed to give output.  Problem reported by Tim Waugh.
17333
17334         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
17335         (xcalloc): Use it to avoid needless tests.
17336         Problem reported by Jim Meyering.
17337
17338 2005-06-20  Derek Price  <derek@ximbiot.com>
17339
17340         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
17341         unnecessary for Autoconfs > 2.59c.
17342
17343 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
17344
17345         * lib/argp.h (__option_is_short): Check upper limit of
17346         __key. Isprint() requires its argument to have the value
17347         of an unsigned char or EOF.
17348
17349 2005-06-16  Jim Meyering  <jim@meyering.net>
17350
17351         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
17352         when either N or S is zero.
17353
17354 2005-06-16  Derek Price  <derek@ximbiot.com>
17355
17356         * m4/bison.m4: Declare YACC & YFLAGS precious.
17357
17358 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
17359
17360         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
17361         multibyte string or pattern, fall back on unibyte matching.
17362         Problem reported by James Youngman.
17363
17364 2005-06-08  Bruno Haible  <bruno@clisp.org>
17365
17366         * modules/csharpcomp: New file.
17367         * MODULES.html.sh (C#): Add csharpcomp.
17368
17369 2005-06-08  Bruno Haible  <bruno@clisp.org>
17370
17371         * m4/csharpcomp.m4: New file, from GNU gettext.
17372
17373 2005-06-08  Bruno Haible  <bruno@clisp.org>
17374
17375         * lib/csharpcomp.h: New file, from GNU gettext.
17376         * lib/csharpcomp.c: New file, from GNU gettext.
17377         * lib/csharpcomp.sh.in: New file, from GNU gettext.
17378
17379 2005-06-08  Bruno Haible  <bruno@clisp.org>
17380
17381         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
17382         warning on mingw.
17383
17384 2005-06-07  Derek Price  <derek@ximbiot.com>
17385
17386         Sync from CVS.
17387         * lib/glob_.h: Indent nested #ifdef.
17388
17389 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17390
17391         Sync from coreutils.
17392         Use "file name" when talking about file names, instead of "filename"
17393         or "path", as per the GNU coding standards.
17394         * lib/mkdir-p.c: Renamed from makepath.c.
17395         (make_dir_parents): Renamed from make_path.  All callers changed.
17396         * lib/mkdir-p.h: Likewise.  All includers changed.
17397         * lib/filenamecat.c: Renamed from path-concat.c.
17398         (file_name_concat): Renamed from path_concat.  All callers changed.
17399         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
17400         * lib/filenamecat.h: Likewise.  All includers changed.
17401         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
17402         in comments or local variable names.
17403         * lib/basename.c: Likewise.
17404         * lib/canonicalize.c, canonicalize.h: Likewise.
17405         * lib/dirname.c, dirname.h: Likewise.
17406         * lib/euidaccess.c: Likewise.
17407         * lib/exclude.c: Likewise
17408         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
17409         * lib/fsusage.c, fsuage.h: Likewise.
17410         * lib/fts.c, fts_.h: Likewise.
17411         * lib/getcwd.c: Likewise.
17412         * lib/getloadavg.c: Likewise.
17413         * lib/mkstemp.c: Likewise.
17414         * lib/mountlist.c, mountlist.h: Likewise.
17415         * lib/openat.c, openat.h: Likewise.
17416         * lib/readlink-stub.c: Likewise.
17417         * lib/readutmp.c, readutmp.h: Likewise.
17418         * lib/rename.c: Likewise.
17419         * lib/rmdir.c: Likewise.
17420         * lib/same.c: Likewise.
17421         * lib/savedir.c: Likewise.
17422         * lib/stripslash.c: Likewise.
17423         * lib/tempname.c: Likewise.
17424         * lib/xreadlink.c: Likewise.
17425         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
17426         All uses changed.
17427         * lib/exclude.h: Likewise.
17428
17429         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
17430         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17431         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
17432         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17433         * lib/pathmax.h: Include <limits.h> unconditionally, since other
17434         files have been getting away with it for years (MORE/BSD 4.3
17435         is extinct now).
17436         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
17437         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
17438
17439         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
17440         Define to 256, not 255, as per modern POSIX.
17441
17442 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17443
17444         Sync from coreutils.
17445         Use "file name" when talking about file names, instead of "filename"
17446         or "path", as per the GNU coding standards.
17447         * MODULES.html.sh: mkdir-p renamed from makepath.
17448         filenamecat renamed from path-concat.
17449         * modules/filenamecat: Renamed from modules/path-concat.
17450         (Files): filenamecat.h and filenamecat.c renamed from
17451         path-concat.h and path-concat.c.
17452         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
17453         (Include): filenamecat.h, not path-concat.h.
17454         * modules/mkdir-p: Renamed from modules/makepath.
17455         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
17456         makepath.c.
17457         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
17458         (Include): mkdir-p.h, not makepath.h.
17459
17460 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
17461
17462         Sync from coreutils.
17463         * m4/mkdir-p.m4: Renamed from makepath.m4.
17464         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
17465         Rename files from makepath.c to mkdir-p.c, and from
17466         makepath.h to mkdir-p.h.
17467         * m4/filenamecat.m4: Renamed from path-concat.m4.
17468         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
17469         Rename files from path-concat.c to filenamecat.c,
17470         and from path-concat.h to filenamecat.h.
17471         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
17472         "file name" in local variables or comments.
17473         * m4/rename.m4: Likewise.
17474
17475 2005-06-01  Bruno Haible  <bruno@clisp.org>
17476
17477         * modules/csharpexec: New file.
17478         * MODULES.html.sh (C#): New section.
17479
17480 2005-06-01  Bruno Haible  <bruno@clisp.org>
17481
17482         * m4/csharp.m4: New file, from GNU gettext.
17483         * m4/csharpexec.m4: New file, from GNU gettext.
17484
17485 2005-06-01  Bruno Haible  <bruno@clisp.org>
17486
17487         * lib/csharpexec.h: New file, from GNU gettext.
17488         * lib/csharpexec.c: New file, from GNU gettext.
17489         * lib/csharpexec.sh.in: New file, from GNU gettext.
17490
17491 2005-05-31  Derek Price  <derek@ximbiot.com>
17492             Paul Eggert  <eggert@cs.ucla.edu>
17493
17494         Sync from cvs.
17495         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
17496
17497 2005-05-31  Derek Price  <derek@ximbiot.com>
17498             Paul Eggert  <eggert@cs.ucla.edu>
17499
17500         Sync from cvs.
17501         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
17502
17503 2005-05-29  Derek Price  <derek@ximbiot.com>
17504
17505         * config/srclist.txt (glob_.h, glob.c): Add these files.
17506
17507 2005-05-29  Derek Price  <derek@ximbiot.com>
17508
17509         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
17510         * modules/glob: New file.
17511         * modules/getlogin_r: Add link to POSIX spec in description.
17512
17513 2005-05-29  Derek Price  <derek@ximbiot.com>
17514             Paul Eggert  <eggert@cs.ucla.edu>
17515
17516         * m4/glob.m4: New file.
17517
17518 2005-05-29  Derek Price  <derek@ximbiot.com>
17519             Paul Eggert  <eggert@cs.ucla.edu>
17520
17521         * lib/glob_.h, lib/glob.c: New files.
17522
17523 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17524
17525         * modules/fts (Files): Remove m4/inttypes-pri.m4.
17526         * modules/fts-lgpl (Depends-on): Remove gettext.
17527
17528 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17529
17530         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
17531         and don't require gt_INTTYPES_PRI.
17532
17533 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
17534
17535         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
17536
17537         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
17538         the configuration hassle isn't worth it.
17539         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
17540         (LONGEST_MODIFIER, PRIuMAX): Remove.
17541
17542 2005-05-27  Bruno Haible  <bruno@clisp.org>
17543
17544         * lib/getlogin_r.h: Remove second include of <stddef.h>.
17545
17546 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
17547
17548         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
17549         _POSIX_PTHREAD_SEMANTICS for Solaris.
17550
17551 2005-05-25  Derek Price  <derek@ximbiot.com>
17552
17553         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
17554
17555 2005-05-25  Derek Price  <derek@ximbiot.com>
17556             Paul Eggert  <eggert@cs.ucla.edu>
17557
17558         * modules/getlogin_r, m4/getlogin_r.m4: New files.
17559         * lib/getlogin_r.c, getlogin_r.h: New files.
17560
17561 2005-05-25  Bruno Haible  <bruno@clisp.org>
17562             Derek Price  <derek@ximbiot.com>
17563
17564         * lib/getlogin_r.h: Simplify API documentation.
17565
17566 2005-05-23  Derek Price  <derek@ximbiot.com>
17567
17568         * modules/minmax (Files): Add m4/minmax.m4.
17569         (configure.ac): Add gl_MINMAX.
17570
17571 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
17572
17573         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
17574         so that unistd-safer.h (GPL'ed code) need not be included.
17575
17576 2005-05-22  Bruno Haible  <bruno@clisp.org>
17577
17578         * m4/minmax.m4: New file.
17579         Based on a patch by Derek Price <derek@ximbiot.com>.
17580
17581 2005-05-22  Bruno Haible  <bruno@clisp.org>
17582
17583         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
17584         (INT64_MIN): Fix definition.
17585         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
17586
17587         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
17588         NEED_SIGNED_INT_TYPES.
17589
17590         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
17591         HAVE_SYSTEM_INTTYPES.
17592
17593 2005-05-22  Bruno Haible  <bruno@clisp.org>
17594
17595         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
17596         Also include <sys/param.h> if it defines MIN, MAX.
17597         Based on a patch by Derek Price <derek@ximbiot.com>.
17598
17599 2005-05-21  Jim Meyering  <jim@meyering.net>
17600
17601         * modules/fts (Files): Add m4/inttypes-pri.m4.
17602         (Depends-on): Add lstat and remove gettext.  Alphabetize.
17603
17604 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17605
17606         New fts module.
17607         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
17608         (setup_dir, free_dir): New functions.
17609         (enter_dir, leave_dir): Define trivial
17610         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
17611         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
17612         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
17613         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
17614         Move to fts-cycle.c.
17615         (fts_open): Use setup_dir.
17616         (fts_close): Use free_dir.
17617         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
17618         This adds a label and some gotos, but the alternatives were messier.
17619         Check for memory allocation failure when entering a dir.
17620         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
17621         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
17622         (FTS): New member fts_cycle, that is a union that contains the
17623         old active_dir_ht and cycle_state.  All uses changed to mention
17624         fts_cycle.ht and fts_cycle.state.
17625         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
17626         fts.c, with the following changes:
17627         (setup_dir, free_dir): New functions.
17628         (enter_dir): Now returns bool.  Return true if successful, false
17629         if memory exhausted.  All callers changed.
17630         Do not bother partly cleaning up on
17631         memory allocation failure; that is free_dir's job.
17632         However, free ad if hash_insert fails, to avoid memory leak.
17633         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
17634         fts->fts_options to see which union member to use.
17635
17636 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17637
17638         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
17639         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
17640
17641 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
17642
17643         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
17644
17645 2005-05-20  Jim Meyering  <jim@meyering.net>
17646
17647         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
17648         Now a macro, to pacify GCC.
17649
17650 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
17651
17652         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
17653         of -1.
17654
17655 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
17656
17657         * lib/chown.c (rpl_chown): Return -1 on failure.
17658
17659 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
17660
17661         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
17662         Don't check for stddef.h.
17663         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
17664         don't use its results.
17665         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
17666         since we include them unconditionally.  Don't require
17667         AM_STDBOOL_H, since stdbool is a prerequisite.
17668         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
17669         since we assume C89 or better.
17670         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
17671         as we don't use their results.
17672         Don't check for fchdir, memmove, memset, strrchr, as we use
17673         them unconditionally.
17674         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
17675         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
17676
17677 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
17678
17679         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
17680         Include <stddef.h> unconditionally, since we assume C89 now.
17681         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
17682         * lib/fts.c: Include fts_.h first, to check interface.
17683         Do not include intprops.h; no longer needed.
17684         Include cycle-check.h and hash.h, since fts_.h no longer does.
17685         Remove unnecessary casts of closedir to void.
17686         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
17687         decide whether to decrement nlinks.
17688         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
17689         (FTS): Use struct hash_table * instead of Hash_table, so that
17690         we no longer need to include hash.h here.
17691
17692 2005-05-18  Jim Meyering  <jim@meyering.net>
17693
17694         * modules/dirfd (License): Change to LGPL.  Most of the code
17695         is already in the public domain.
17696
17697 2005-05-18  Jim Meyering  <jim@meyering.net>
17698
17699         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
17700         Reported by Yoann Vandoorselaere.
17701
17702 2005-05-17  Jim Meyering  <jim@meyering.net>
17703
17704         * m4/fts.m4: New file, from coreutils.
17705
17706 2005-05-17  Jim Meyering  <jim@meyering.net>
17707
17708         * lib/fts.c, lib/fts_.h: New files, from coreutils.
17709
17710 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17711
17712         Sync from coreutils.
17713         * m4/unlinkdir.m4: New file.
17714
17715 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17716
17717         Sync from coreutils.
17718         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
17719         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
17720         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
17721         White space changes only.
17722         * lib/makepath.c (make_path): Port to hosts where leading "//" is
17723         special.
17724         * lib/yesno.c: Include getline.h, not ctype.h.
17725         (yesno): Don't remove leading white space; POSIX doesn't allow it.
17726         Use getline to remove arbitrary restriction on response length.
17727
17728 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
17729
17730         * config/srclist-update: Spell out "Street" in FSF postal
17731         mail address; this is the style the FSF seems to prefer.
17732
17733         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
17734         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
17735         this updates FSF postal mail address.
17736
17737         Sync from coreutils.
17738         * modules/unlinkdir: New file.
17739         * modules/yesno (Depends-on): Add getline.
17740         * MODULES.html.sh (File system functions): Add unlinkdir.
17741
17742 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17743
17744         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
17745         lib/strsep.h:
17746         Change the initial comment to refer to GPL, not LGPL.
17747         gnulib-tool will change it to LGPL as needed.
17748
17749         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
17750         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
17751         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
17752         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
17753         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
17754         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
17755         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
17756         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
17757         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
17758         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
17759         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
17760         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
17761         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
17762         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
17763         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
17764         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
17765         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
17766         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
17767         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
17768         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
17769         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
17770         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
17771         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
17772         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
17773         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
17774         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
17775         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
17776         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
17777         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
17778         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
17779         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
17780         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
17781         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
17782         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
17783         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
17784         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
17785         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
17786         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
17787         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
17788         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
17789         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
17790         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
17791         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
17792         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
17793         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
17794         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
17795         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
17796         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
17797         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
17798         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
17799         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
17800         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
17801         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
17802         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
17803         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
17804         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
17805         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
17806         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
17807         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
17808         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
17809         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
17810         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
17811         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
17812         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
17813         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
17814         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
17815         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
17816         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
17817         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
17818         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
17819         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
17820         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
17821         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
17822         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
17823         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
17824         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
17825         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
17826         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
17827         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
17828         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
17829         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
17830         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
17831         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
17832         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
17833         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
17834         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
17835         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
17836         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
17837         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
17838         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
17839         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
17840         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
17841         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
17842         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
17843         lib/yesno.c, lib/yesno.h:
17844         Update FSF postal mail address.
17845
17846 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
17847
17848         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
17849         tests/test-memmem.c, tests/test-stpncpy.c:
17850         Update FSF postal mail address.
17851
17852 2005-05-13  Bruno Haible  <bruno@clisp.org>
17853
17854         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
17855         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
17856         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
17857         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
17858         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
17859         Add support for 64-bit integers in the MSVC compiler.
17860
17861 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
17862
17863         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
17864
17865 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
17866
17867         * gnulib-tool (func_import): Sort and uniquify recommended includes.
17868
17869 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
17870
17871         * doc/getdate.texi (General date syntax): Don't say that date
17872         date --iso-8601=ns generates acceptable dates; it doesn't yet.
17873         Problem reported by Nic Ferrier.
17874
17875 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17876
17877         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
17878         specified in ai_socktype. Fix invalid ai_protocol
17879         check. ai_protocol is usually set to 0 or depending on
17880         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
17881         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
17882         ai_socktype / ai_protocol in the returned addrinfo structure.
17883
17884 2005-05-10  Simon Josefsson  <jas@extundo.com>
17885
17886         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
17887         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
17888
17889 2005-05-10  Karl Berry  <karl@gnu.org>
17890
17891         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
17892         (from http://www.gnu.org/licenses).
17893         * doc/COPYING.LIB: also rename to COPYING.LESSER.
17894         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
17895         fdl.texi suffices.
17896
17897 2005-05-10  Karl Berry  <karl@gnu.org>
17898
17899         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
17900         (COPYING.DOC): remove.
17901
17902         * config/srclist-update: new FSF address.
17903
17904 2005-05-10  Derek Price  <derek@ximbiot.com>
17905
17906         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
17907         possible.
17908
17909 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17910             Bruno Haible  <bruno@clisp.org>
17911
17912         * modules/inet_ntop: New file.
17913         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17914         inet_ntop.
17915
17916 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17917             Bruno Haible  <bruno@clisp.org>
17918
17919         * m4/inet_ntop.m4: New file.
17920
17921 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
17922             Bruno Haible  <bruno@clisp.org>
17923
17924         * lib/inet_ntop.h: New file.
17925         * lib/inet_ntop.c: New file, from glibc with modifications.
17926
17927 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
17928
17929         * modules/time_r (License): Change to LGPL.
17930         * modules/extensions (License): Change to LGPL.  Actually,
17931         the license is more permissive than that, but currently gnulib-tool
17932         doesn't know how to handle more-permissive licenses.
17933
17934         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
17935         Problem reported by Dave Love.
17936
17937 2005-05-08  Jim Meyering  <jim@meyering.net>
17938
17939         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
17940         blank.
17941
17942 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
17943
17944         * modules/argmatch (Depends-on): Add stdbool.
17945         * modules/backupfile (Depends-on): Likewise.
17946         * modules/chdir-long (Depends-on): Likewise.
17947         * modules/closeout (Depends-on): Likewise.
17948         * modules/cycle-check (Depends-on): Likewise.
17949         * modules/dirname (Depends-on): Likewise.
17950         * modules/fnmatch (Depends-on): Likewise.
17951         * modules/fsusage (Depends-on): Likewise.
17952         * modules/fwriteerror (Depends-on): Likewise.
17953         * modules/getcwd (Depends-on): Likewise.
17954         * modules/getloadavg (Depends-on): Likewise.
17955         * modules/hard-locale (Depends-on): Likewise.
17956         * modules/makepath (Depends-on): Likewise.
17957         * modules/mountlist (Depends-on): Likewise.
17958         * modules/nanosleep (Depends-on): Likewise.
17959         * modules/posixtm (Depends-on): Likewise.
17960         * modules/quotearg (Depends-on): Likewise.
17961         * modules/readtokens (Depends-on): Likewise.
17962         * modules/readtokens0 (Depends-on): Likewise.
17963         * modules/readutmp (Depends-on): Likewise.
17964         * modules/save-cwd (Depends-on): Likewise.
17965         * modules/strftime (Depends-on): Likewise.
17966         * modules/userspec (Depends-on): Likewise.
17967         * modules/utimecmp (Depends-on): Likewise.
17968         * modules/xgetcwd (Depends-on): Likewise.
17969         * modules/xnanosleep (Depends-on): Likewise.
17970         * modules/xstrtod (Depends-on): Likewise.
17971         * modules/yesno (Depends-on): Likewise.
17972
17973 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
17974
17975         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
17976         needless checks.
17977
17978 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
17979
17980         Merge from coreutils.  Among other things,
17981         add bulletproofing for cases where stdin, stdout, or stderr are closed.
17982         * lib/fd-safer.c: New file.
17983         * lib/fcntl-safer.h, open-safer.c: Remove.
17984         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
17985         * lib/dup-safer.c: Include unistd-safer.h first.
17986         Don't include errno.h.
17987         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
17988         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
17989         * lib/file-type.c: Rely on file-type.h change.
17990         * lib/getloadavg.c: Include unistd-safer.h.
17991         (getloadavg): Use safer open.
17992         * lib/getusershell.c: Include "stdio-safer.h".
17993         (getusershell): Use safer fopen.
17994         * lib/long-options.c (long_options): Use NULL rather than 0.
17995         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
17996         'free'.
17997         * lib/modechange.c: Likewise.
17998         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
17999         (MODE_DONE): New constant.
18000         (struct mode_change): Remove 'next' member.
18001         (make_node_op_equals): New function; like the old one of the
18002         same name, except it allocates an array.
18003         (mode_compile, mode_create_from_ref): Use it.
18004         (mode_compile): Allocate result as an array, not a linked list.
18005         Parse octal string ourself, so that we catch mistakes like "+0".
18006         (mode_adjust): Arg is an array, not a linked list.
18007         * lib/modechange.c: Include stat-macros.h, xalloc.h.
18008         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
18009         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
18010         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
18011         Remove.  This is now stat-macros.h's job.
18012         (talloc): Remove.  All callers replaced by xalloc, so that
18013         our invokers don't have to worry about reporting memory failures.
18014         (make_node_op_equals): Remove.
18015         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18016         New constants.
18017         (struct mode_change): Moved here from modechange.h.
18018         (mode_append_entry): Remove.
18019         (mode_compile): Remove MASKED_OPS arg, since it encouraged
18020         apps to have incorrect behavior.  Use simpler algorithm for head
18021         and tail.  Don't futz with umask; that's now the job of mode_adjust.
18022         Detect more invalid usages rather than having somewhat-random behavior.
18023         Don't insert an "a=" action, as that leads to incorrect behavior.
18024         (mode_compile, mode_create_from_ref): Return NULL on error instead
18025         of an enum, since now there's only one way to have an error.  All
18026         callers changed.
18027         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
18028         at the correct time.  Simplify calculation of "+u" and its ilk.
18029         Don't mishandle "+X".
18030         (mode_free): Remove "register" and localize decls.
18031         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
18032         (struct mode_change): Move to modechange.c; callers don't
18033         need to see this stuff.
18034         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
18035         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
18036         (mode_change, mode_adjust): Reflect the new signatures noted above.
18037         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
18038         that might redefine system include files.
18039         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
18040         (my_usleep): Use NULL rather than (void *) 0.
18041         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
18042         Use siginterrupt to specify that system calls should be interrupted.
18043         (rpl_nanosleep): Move initialization of suspended closer to call of
18044         my_usleep.
18045         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
18046         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
18047         (desirable_utmp_entry): New function.
18048         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
18049         using x2nrealloc, to simplify logic.
18050         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
18051         size calculation.  Do not assume utmp file is a regular file.
18052         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
18053         (READ_UTMP_CHECK_PIDS): New constant.
18054         * lib/save-cwd.c: Include unistd-safer.h.
18055         (save_cwd): Use fd_safer.
18056         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
18057         [!_LIBC] Include "stat-macros.h" instead.
18058         * lib/unistd-safer.h (fd_safer): New decl.
18059
18060 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18061
18062         * modules/getloadavg (Depends-on): Add unistd-safer.
18063         * modules/getusershell (Depends-on): Add stdio-safer.
18064         * modules/lstat (Depends-on): Remove xalloc.
18065         * modules/mkstemp (Depends-on): Add stat-macros.
18066         * modules/modechange (Depends-on): Remove xstrtol.
18067         Add stat-macros, xalloc.
18068         * modules/save-cwd (Depends-on): Add unistd-safer.
18069         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
18070         * modules/unistd-safer (Files): Add lib/fd-safer.c
18071         (Makefile.am): Remove lib_SOURCES.
18072
18073         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
18074         Remove fcntl-safer; unistd-safer supersedes it.
18075
18076 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18077
18078         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
18079         AC_HEADER_STAT.
18080         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
18081         (gl_PREREQ_CHOWN): Remove.
18082         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
18083         it.  Don't require AC_HEADER_STAT.
18084         (gl_PREREQ_LSTAT): Remove.
18085         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
18086         Don't require AC_HEADER_STAT.
18087         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
18088         (gl_PREREQ_RMDIR): Remove.
18089         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
18090         mention stat-macros.h or AC_HEADER_STAT, since we'll make
18091         the stat-macros module a prerequisite.
18092         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
18093         * m4/filemode.m4 (gl_FILEMODE): Likewise.
18094         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
18095         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
18096         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
18097         variable names.
18098         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
18099         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
18100         variable prefixes.
18101         * m4/fcntl-safer.m4: Remove.
18102         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
18103         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
18104         Invoke gl_PREREQ_FD_SAFER.
18105         (gl_PREREQ_FD_SAFER): New macro.
18106         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
18107         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
18108         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
18109         Remove duplicate call to AC_LIBOBJ(readutmp).
18110         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
18111
18112         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
18113         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
18114
18115 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
18116
18117         * MODULES.html.sh (Misc): Add byteswap.
18118
18119 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18120
18121         * modules/getcwd (Depends-on): Add extensions.
18122         * modules/openat (Depends-on): Likewise.
18123
18124 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18125
18126         * modules/byteswap: New file.
18127
18128 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18129
18130         * m4/byteswap.m4: New file.
18131
18132 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
18133
18134         * lib/byteswap_.h: New file.
18135
18136 2005-04-25  Karl Berry  <karl@gnu.org>
18137
18138         * m4/gettext.m4: Update from GNU gettext 0.14.4.
18139
18140 2005-04-25  Albert Chin  <china@thewrittenword.com>
18141
18142         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
18143         Toolkit C bug.
18144
18145 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
18146
18147         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
18148         (func_ln_if_changed) Remove forcibly for no error message
18149         in case file does not exist.
18150
18151 2005-04-19  Simon Josefsson  <jas@extundo.com>
18152
18153         * gnulib-tool (Options): Make --symlink mean --symbolic.
18154
18155 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
18156
18157         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
18158
18159 2005-04-16  Simon Josefsson  <jas@extundo.com>
18160
18161         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
18162
18163 2005-04-15  Simon Josefsson  <jas@extundo.com>
18164
18165         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
18166
18167 2005-04-15  Simon Josefsson  <jas@extundo.com>
18168
18169         * gnulib-tool: Rename --symlink to --symbolic.
18170
18171 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
18172
18173         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
18174         symbolic links to files instead of copying/moving.  Add --aux-dir,
18175         specifying directory relative --dir where auxiliary build tools
18176         are placed.
18177
18178 2005-04-14  Bruno Haible  <bruno@clisp.org>
18179
18180         * modules/allocsa (License): Change to LGPL.
18181         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
18182
18183 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
18184
18185         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
18186         that "UTC +1 second" continues to work.  Problem reported
18187         by Dmitry V. Levin.
18188         (relunit_snumber): New rule.
18189         (relunit): Use it.
18190
18191 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
18192
18193         * lib/getdate.y (universal_time_zone_table): New constant.
18194         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
18195         universal_time_zone_table.
18196         (lookup_zone): Prefer universal_time_zone_table to
18197         local_time_zone_table, so that "GMT" time stamps are allowed in
18198         London during the summer.  Problem reported by Ian Abbott.
18199
18200 2005-04-12  Jim Meyering  <jim@meyering.net>
18201
18202         * lib/human.c (humblock): Set *options even when returning due to
18203         xstrtoumax conversion failure.  Thanks to a used-uninitialized
18204         warning from gcc-4.
18205
18206 2005-04-09  Jim Meyering  <jim@meyering.net>
18207
18208         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
18209         -Wuninitialized: initialize tm0.tm_year.
18210
18211 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
18212
18213         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
18214         count, since there's no maximum.  All uses changed.
18215         Add member dsts_seen.
18216         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
18217         not being INT_MAX.
18218         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
18219         Use pc_rels_seen to decide whther a date is absolute.
18220
18221         * lib/getdate.y (number): Don't overwrite year.
18222         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
18223         check.
18224
18225 2005-04-02  Simon Josefsson  <jas@extundo.com>
18226
18227         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
18228         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
18229
18230 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
18231
18232         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
18233         where no absolute path name can be longer than PATH_MAX.
18234
18235 2005-03-27  Jim Meyering  <jim@meyering.net>
18236
18237         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
18238
18239 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
18240
18241         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
18242         "one's complement" -> "ones' complement" in comment, as per Knuth.
18243         "value of type" -> "type or expression" in comment.
18244         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
18245
18246 2005-03-26  Jim Meyering  <jim@meyering.net>
18247
18248         Comment nits.
18249         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
18250         Correct typos: s/or/of/.
18251
18252 2005-03-26  Jim Meyering  <jim@meyering.net>
18253
18254         * modules/check-include-files: Move to ../ and rename to...
18255         * check-module: ...this.
18256
18257 2005-03-25  Jim Meyering  <jim@meyering.net>
18258
18259         * modules/xvasprintf (Files): Add xalloc.h.
18260
18261 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
18262
18263         * modules/gettext (Files): config/config.rpath ->
18264         build-aux/config.rpath
18265         * modules/iconv (Files): Likewise.
18266         Problem reported by Oskar Liljeblad.
18267
18268 2005-03-23  Jim Meyering  <jim@meyering.net>
18269
18270         * modules/check-include-files: New script to check for
18271         missing dependencies, multiple includes, etc.
18272
18273         * modules/c-strtold (Depends-on): Add xalloc.
18274         * modules/c-strtod (Depends-on): Add xalloc.
18275         * modules/hash (Depends-on): Add xalloc.
18276         (Files): Remove lib/xalloc.h.
18277
18278         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
18279         * modules/userspec (Files): Add lib/inttostr.h.
18280
18281 2005-03-23  Jim Meyering  <jim@meyering.net>
18282
18283         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
18284
18285 2005-03-22  Jim Meyering  <jim@meyering.net>
18286
18287         * modules/stat-macros: New module.
18288         * modules/canonicalize, modules/euidaccess, modules/file-type,
18289         * modules/filemode, modules/lchown, modules/makepath,
18290         * modules/rmdir, modules/stat: Depend on new stat-macros module
18291         rather than listing lib/stat-macros.h manually.
18292         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
18293
18294 2005-03-22  Jim Meyering  <jim@meyering.net>
18295
18296         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
18297
18298 2005-03-22  Bruno Haible  <bruno@clisp.org>
18299
18300         * config/srclist.txt: Replace target directory 'config' with
18301         'build-aux'.
18302         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
18303         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
18304         ../build-aux/.
18305
18306 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
18307
18308         * modules/chdir-long (Depends-on): Add mempcpy.
18309
18310         * modules/acl, modules/backupfile, modules/c-strtod,
18311         modules/c-strtold, modules/canon-host, modules/canonicalize,
18312         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
18313         modules/exclude, modules/exitfail, modules/file-type,
18314         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
18315         modules/getdate, modules/getline, modules/getpagesize,
18316         modules/getpass, modules/getugroups, modules/group-member,
18317         modules/hard-locale, modules/hash, modules/human, modules/idcache,
18318         modules/inttostr, modules/long-options, modules/makepath,
18319         modules/md5, modules/memcasecmp, modules/memcoll,
18320         modules/modechange, modules/mountlist, modules/path-concat,
18321         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
18322         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
18323         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
18324         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
18325         modules/strftime, modules/strndup, modules/strverscmp,
18326         modules/timespec, modules/unlocked-io, modules/userspec,
18327         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
18328         modules/yesno:
18329         Remove lib_SOURCES line from Makefile.am section, as this is now
18330         done automatically by the corresponding Autoconf macro.
18331
18332 2005-03-21  Jim Meyering  <jim@meyering.net>
18333
18334         Changes imported from coreutils.
18335
18336         * lib/cycle-check.c: Don't include xalloc.h.
18337
18338         * lib/path-concat.c: Don't include assert.h.
18339         (path_concat): Remove assertion that would have triggered
18340         for ABASE starting with more than one slash.
18341         Reported by Andreas Schwab.
18342
18343         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
18344         properly when ABASE is an absolute file name.
18345         Correct the description of this function.
18346         Include <assert.h>.
18347         Add an assertion and a test driver.
18348         This fixes a bug introduced on 2004-07-02.
18349         Andreas Schwab reported the resulting failure of cp --parents:
18350         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
18351
18352 2005-03-21  Jim Meyering  <jim@meyering.net>
18353
18354         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
18355         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
18356
18357 2005-03-21  Jim Meyering  <jim@meyering.net>
18358         and  Paul Eggert  <eggert@cs.ucla.edu>
18359
18360         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
18361         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
18362         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
18363         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
18364         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
18365         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
18366         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
18367         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
18368         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
18369         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
18370         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
18371         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
18372         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
18373         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
18374         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
18375         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
18376         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
18377         for these modules.
18378
18379 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
18380
18381         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
18382         (which shouldn't happen), generate nothing instead of returning 0
18383         immediately, so that nstrftime (NULL, ...) doesn't return 0.
18384
18385 2005-03-16  Bruno Haible  <bruno@clisp.org>
18386
18387         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
18388         HAVE_LONGLONG_64BIT.
18389
18390 2005-03-16  Bruno Haible  <bruno@clisp.org>
18391
18392         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
18393         HAVE_LONGLONG_64BIT.
18394
18395 2005-03-16  Bruno Haible  <bruno@clisp.org>
18396
18397         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
18398         HAVE_LONGLONG_64BIT.
18399
18400 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
18401
18402         * lib/strftime.c (my_strftime): Prepend space to format so that we can
18403         reliably distinguish strftime failure from empty output on POSIX
18404         hosts.
18405
18406 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
18407
18408         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
18409         (iconv_string): Don't guess a size-zero buffer, as that might cause
18410         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
18411         result would be 'too large', where 'too large' is (heuristically)
18412         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
18413         overflow concerns.  This will prevent some unwanted malloc failures
18414         when the inputs are very large.
18415
18416 2005-03-15  Karl Berry  <karl@gnu.org>
18417
18418         * config/srclist.txt (config.rpath): from gettext.
18419         * config/config.rpath: update.
18420
18421 2005-03-15  Bruno Haible  <bruno@clisp.org>
18422
18423         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
18424         to 'negate'.
18425
18426         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
18427         variable.
18428
18429         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
18430         results.
18431
18432 2005-03-14  Simon Josefsson  <jas@extundo.com>
18433
18434         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
18435         <fx@gnu.org>.
18436
18437 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
18438
18439         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
18440         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
18441         intprops.h.
18442         * lib/strtol.c: Likewise.
18443
18444 2005-03-14  Jim Meyering  <jim@meyering.net>
18445
18446         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
18447         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
18448         to be nonzero so that we (and caller) can detect the difference
18449         between a valid zero-length expansion and an error return, even
18450         when the underlying strftime fails before writing anything into
18451         that location.
18452
18453 2005-03-14  Bruno Haible  <bruno@clisp.org>
18454
18455         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
18456         Update from GNU gettext 0.14.3.
18457
18458 2005-03-10  Jim Meyering  <jim@meyering.net>
18459
18460         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
18461
18462 2005-03-10  Jim Meyering  <jim@meyering.net>
18463
18464         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
18465         so that this module works on systems without fchdir.
18466
18467 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
18468
18469         Factor int-properties macros into a single file, except for
18470         glibc-related files.
18471         * lib/intprops.h: New file.
18472         * lib/getloadavg.c: Include it instead of limits.h.
18473         (INT_STRLEN_BOUND): Remove.
18474         * lib/human.c: Include intprops.h.
18475         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
18476         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
18477         302/1000.
18478         * lib/inttostr.h: Include intprops.h instead of limits.h.
18479         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
18480         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
18481         for consistency with intprops.h.
18482         (time_t_is_integer, twos_complement_arithmetic): Use them.
18483         * lib/sig2str.h: Include <signal.h>, intprops.h.
18484         (INT_STRLEN_BOUND): Remove.
18485         * lib/strftime.c (TYPE_SIGNED): Remove.
18486         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
18487         * lib/strtol.c: Adjust comments to match intprops.h.
18488         * lib/userspec.c: Include intprops.h.
18489         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
18490         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
18491         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
18492         instead of rolling our own expressions.
18493         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
18494
18495         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
18496         instead of int.
18497         (my_strftime): Do not mishandle years close to INT_MAX, by doing
18498         the right thing even if adding 1900 would overflow.  Similarly
18499         for tm_mon + 1 and tm_yday + 1.
18500         Make %Y always equivalent to %C%y, and similarly for %G and %g.
18501         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
18502         (DO_SIGNED_NUMBER): New macro.
18503         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
18504
18505 2005-03-07  Bruno Haible  <bruno@clisp.org>
18506
18507         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
18508
18509 2005-03-07  Bruno Haible  <bruno@clisp.org>
18510
18511         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
18512
18513 2005-03-04  Derek R. Price  <derek@ximbiot.com>
18514
18515         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
18516         (func_import): Only replace files via --import when they have actually
18517         changed.
18518
18519 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18520
18521         * m4/mmap-anon.m4: New file.
18522         * m4/pagealign_alloc.m4: New file.
18523
18524 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18525             Bruno Haible  <bruno@clisp.org>
18526
18527         * modules/pagealign_alloc: New file.
18528         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
18529
18530 2005-03-03  Derek R. Price  <derek@ximbiot.com>
18531             Bruno Haible  <bruno@clisp.org>
18532
18533         * lib/pagealign_alloc.h: New file.
18534         * lib/pagealign_alloc.c: New file.
18535
18536 2005-03-03  Bruno Haible  <bruno@clisp.org>
18537
18538         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
18539         Use an all-permissive copyright notice, recommended by RMS.
18540
18541 2005-03-02  Bruno Haible  <bruno@clisp.org>
18542
18543         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
18544         of AIX, the replacement has to be done only after <string.h> is
18545         included, therefore not in config.h. stpncpy.h does the replacement,
18546         and stpncpy.c uses it.
18547
18548 2005-03-02  Bruno Haible  <bruno@clisp.org>
18549
18550         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
18551         stpncpy.c uses it.
18552
18553 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18554
18555         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
18556         The workaround isn't strictly needed for POSIX conformance, and
18557         it's too much of a pain to configure and maintain.  We'll ask
18558         people to fix their kernels instead.
18559         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
18560         (NANOSLEEP_BUG_WORKAROUND): Remove.
18561         (xnanosleep): Remove the workaround.
18562
18563 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18564
18565         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
18566         Reported by Derek Price.
18567         (Include): Add "timespec.h".
18568
18569         * modules/xnanosleep (Depends-on): Remove gethrxtime.
18570
18571 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
18572
18573         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
18574         to detect nanosleep bug.
18575
18576 2005-03-01  Bruno Haible  <bruno@clisp.org>
18577
18578         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
18579
18580 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
18581
18582         * modules/gethrxtime: New file.
18583         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
18584         (Depends-on): Add gethrxtime.
18585         (configure.ac): Add gl_XNANOSLEEP.
18586         (Makefile.am): Remove lib_SOURCES line.
18587
18588 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
18589
18590         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
18591         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
18592
18593 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
18594
18595         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
18596         * lib/timespec.h (gettime): Return void, since it always
18597         succeeds now.  All uses changed.
18598         * lib/gettime.c (gettime) Likewise.
18599         [HAVE_NANOTIME]: Prefer nanotime.
18600         Assume gettimeofday succeeds, as POSIX requires.
18601         Assime time () succeeds, since other code already does.
18602         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
18603         (timespec_subtract): Remove.
18604         (NANOSLEEP_BUG_WORKAROUND): New constant.
18605         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
18606         things considerably.  Use it only on GNU/Linux hosts, since the
18607         workaround shouldn't be needed elsewhere.
18608
18609 2005-02-24  Bruno Haible  <bruno@clisp.org>
18610
18611         * modules/gettext (Files): Add m4/glibc2.m4.
18612
18613 2005-02-24  Bruno Haible  <bruno@clisp.org>
18614
18615         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
18616         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
18617         * m4/progtest.m4:
18618         Update from GNU gettext 0.14.2.
18619         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
18620
18621 2005-02-24  Bruno Haible  <bruno@clisp.org>
18622
18623         * lib/localcharset.c: Update from GNU gettext 0.14.2.
18624         * lib/config.charset: Update from GNU gettext 0.14.2.
18625
18626 2005-02-24  Bruno Haible  <bruno@clisp.org>
18627
18628         * lib/gettext.h: Update from GNU gettext 0.14.2.
18629
18630 2005-02-23  Simon Josefsson  <jas@extundo.com>
18631
18632         * m4/iconvme.m4: New file.
18633
18634 2005-02-23  Jim Meyering  <jim@meyering.net>
18635
18636         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
18637         change.
18638         Thanks to Bruno Haible for catching it.
18639
18640 2005-02-22  Simon Josefsson  <jas@extundo.com>
18641
18642         * modules/iconvme: New file.
18643
18644         * MODULES.html.sh: Add iconvme.
18645
18646 2005-02-22  Simon Josefsson  <jas@extundo.com>
18647
18648         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
18649
18650 2005-02-22  Simon Josefsson  <jas@extundo.com>
18651
18652         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
18653
18654 2005-02-22  Jim Meyering  <jim@meyering.net>
18655
18656         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
18657         s/ifndef/ifdef/.
18658
18659 2005-02-20  Neil Conway  <neilc@samurai.com>
18660
18661         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
18662         returned by OSX/Darwin if the specified buffer is not large
18663         enough for the hostname.
18664
18665 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18666
18667         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
18668         pass it to _help, otherwise the latter coredumps trying to
18669         dereference state.root_argp.
18670
18671 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18672
18673         * modules/chdir-long (Depends-on): Add memrchr.
18674         * modules/memrchr (Files): Add lib/memrchr.h.
18675         (Include): "memrchr.h".
18676
18677 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18678
18679         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
18680
18681 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
18682
18683         * lib/memrchr.h: New file.
18684         * lib/chdir-long.c: Include it.
18685         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
18686         Don't bother including stddef.h.
18687
18688 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
18689
18690         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
18691         inclusion.
18692         Include <sys/types.h>, for dev_t.
18693         (ME_DUMMY, ME_REMOTE): Move from here....
18694         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
18695         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
18696         Dmitry V. Levin.
18697         Include mountlist.h first, to test the interface.
18698
18699 2005-01-29  Bruno Haible  <bruno@clisp.org>
18700
18701         * lib/progname.c (program_name): Initialize.
18702         Needed when linking statically on MacOS X.
18703
18704 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
18705
18706         Sync from coreutils.
18707         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
18708         (Depends-on): Add c-strtod.
18709         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
18710
18711 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
18712
18713         Sync from coreutils.
18714         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
18715
18716         Remove files that are specific to coreutils.
18717         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
18718
18719 2005-01-28  Bruno Haible  <bruno@clisp.org>
18720
18721         * modules/javacomp: New file.
18722         * MODULES.html.sh (Java): Add javacomp.
18723
18724 2005-01-28  Bruno Haible  <bruno@clisp.org>
18725
18726         * m4/javacomp.m4: New file, from GNU gettext.
18727
18728 2005-01-28  Bruno Haible  <bruno@clisp.org>
18729
18730         * lib/javacomp.sh.in: New file, from GNU gettext.
18731         * lib/javacomp.h: New file, from GNU gettext.
18732         * lib/javacomp.c: New file, from GNU gettext.
18733
18734 2005-01-26  Simon Josefsson  <jas@extundo.com>
18735
18736         * lib/gai_strerror.c: Use GPL in header.
18737
18738 2005-01-26  Bruno Haible  <bruno@clisp.org>
18739
18740         * modules/javaexec: New file.
18741         * MODULES.html.sh (Java): Add javaexec.
18742
18743 2005-01-26  Bruno Haible  <bruno@clisp.org>
18744
18745         * m4/javaexec.m4: New file, from GNU gettext.
18746
18747 2005-01-26  Bruno Haible  <bruno@clisp.org>
18748
18749         * lib/javaexec.sh.in: New file, from GNU gettext.
18750         * lib/javaexec.h: New file, from GNU gettext.
18751         * lib/javaexec.c: New file, from GNU gettext.
18752
18753 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18754
18755         * modules/lchown (Depends-on): Remove lchown.h
18756
18757 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18758
18759         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
18760         must be defined if the header file was not found, in order
18761         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
18762
18763 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
18764
18765         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
18766         initializers for struct pentry_state.
18767         (__argp_error): Check return value of __asprintf
18768         (__argp_failure): Translate error message
18769
18770         * lib/argp-parse.c: Removed braces around the expansion of N_()
18771
18772 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
18773
18774         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
18775         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
18776         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
18777         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
18778         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
18779         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
18780         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
18781         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
18782         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
18783         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
18784         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
18785         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
18786         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
18787         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
18788         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
18789         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
18790         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
18791         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
18792         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
18793         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
18794         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
18795         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
18796         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
18797         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
18798         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
18799         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
18800         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
18801         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
18802         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
18803         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
18804         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
18805         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
18806         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
18807         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
18808         xstrtol.m4, xstrtoumax.m4, yesno.m4:
18809         Use an all-permissive copyright notice, recommended by RMS.
18810
18811 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
18812
18813         * modules/chdir-long (Depends-on): Remove mempcpy.
18814
18815 2005-01-21  Jim Meyering  <jim@meyering.net>
18816
18817         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
18818         same value as for Solaris 9.
18819
18820         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
18821         component length.  This included changing the parameter to be
18822         of type `char *' rather than `char const *'.
18823         * lib/chdir-long.h (chdir_long): Update prototype.
18824
18825         * lib/openat.c (fdopendir, fstatat): New functions.
18826         * lib/openat.h: Include headers required for use of DIR and struct
18827         stat.
18828         [AT_SYMLINK_NOFOLLOW]: Define.
18829         (fdopendir, fstatat): Add prototypes.
18830
18831 2005-01-21  Bruno Haible  <bruno@clisp.org>
18832
18833         * modules/classpath: New file.
18834         * MODULES.html.sh (Java): Add classpath.
18835
18836 2005-01-21  Bruno Haible  <bruno@clisp.org>
18837
18838         * lib/classpath.h: New file, from GNU gettext.
18839         * lib/classpath.c: New file, from GNU gettext.
18840
18841 2005-01-20  Simon Josefsson  <jas@extundo.com>
18842
18843         * modules/version-etc-fsf: New file.
18844
18845 2005-01-20  Simon Josefsson  <jas@extundo.com>
18846
18847         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
18848         * lib/version-etc.c: Remove version_etc_copyright.
18849         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
18850         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
18851
18852 2005-01-20  Simon Josefsson  <jas@extundo.com>
18853
18854         * lib/base64.h (isbase64): Add.
18855
18856         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
18857         using a unsigned prototype, don't inline.
18858         (base64_decode): Use it.
18859
18860 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
18861
18862         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
18863         it.
18864
18865 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
18866
18867         * lib/save-cwd.c (save_cwd): Remove code to support the case
18868         where fchdir is missing or flaky.
18869
18870 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
18871
18872         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
18873
18874 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
18875
18876         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
18877         AC_LIBSOURCES now does this.
18878         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
18879         with new ullong_max module.
18880
18881 2005-01-19  Bruno Haible  <bruno@clisp.org>
18882
18883         * modules/sh-quote: New file.
18884         * MODULES.html.sh (Executing programs): Add sh-quote.
18885
18886 2005-01-19  Bruno Haible  <bruno@clisp.org>
18887
18888         * lib/sh-quote.h: New file, from GNU gettext.
18889         * lib/sh-quote.c: New file, from GNU gettext.
18890
18891 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
18892
18893         Merge from coreutils.
18894         * m4/ullong_max.m4: New file.
18895         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
18896         (gl_MACROS): Assume localeconv exists.
18897
18898 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
18899
18900         Merge changes from coreutils, as described below in several
18901         changelogs dated today.
18902
18903         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
18904         (O_DIRECTORY): Remove; not needed here, since "." must be
18905         a directory.  All uses removed.
18906         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
18907         universal on Suns, and we also need to test for IRIX.
18908         Revamp code to use 'if' rather than '#if'.
18909         Avoid unnecessary comparison of cwd->desc to 0.
18910
18911         * lib/utimens.c (futimens): Robustify the previous patch, by checking
18912         for known valid error numbers rather than observed invalid ones.
18913
18914 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
18915
18916         * modules/ullong_max: New file.
18917
18918         * modules/chdir-long, modules/openat: New files.
18919         * modules/save-cwd (Depends-on): Depend on chdir-long.
18920         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
18921
18922 2005-01-18  Jim Meyering  <jim@meyering.net>
18923
18924         Merge from coreutils.
18925         * m4/chdir-long.m4, m4/openat.m4: New files.
18926         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
18927         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
18928         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
18929         is sane and DOES follow symlinks.  Besides, testing 20 different
18930         systems found no broken chown implementations.
18931         Prompted by a change in rsync's copy of this macro.
18932         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
18933
18934         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
18935
18936         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
18937         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
18938         NULL-means-set-to-current-time semantics.
18939         Remove temporary file immediately, rather than waiting
18940         for configure's at-exit trap code to do it.
18941
18942 2005-01-18  Jim Meyering  <jim@meyering.net>
18943
18944         * lib/version-etc.c (version_etc_copyright): Update copyright date.
18945
18946         * lib/utimens.c (futimens): Account for the fact that futimes
18947         can also fail with errno == ENOSYS or errno == ENOENT.
18948         Patch from Dmitry V. Levin.
18949
18950         Change the name of the robust chdir function from chdir to chdir_long.
18951         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
18952         (restore_cwd): Use chdir_long, not chdir.
18953         * lib/chdir-long.c: Renamed from chdir.c.
18954         * lib/chdir-long.h: Renamed from chdir.h.
18955         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
18956         Hurd.
18957
18958 2005-01-18  Bruno Haible  <bruno@clisp.org>
18959
18960         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
18961         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
18962         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
18963         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
18964         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
18965         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
18966         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
18967         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
18968         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
18969         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
18970         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
18971         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
18972         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
18973         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
18974         Use an all-permissive copyright notice, recommended by RMS.
18975
18976 2005-01-18  Bob Proulx  <bob@proulx.com>
18977
18978         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
18979         simplify offsetof() macro construct to avoid compile failure with
18980         native HP-UX 11.0 ANSI C compiler.
18981
18982 2005-01-17  Bruno Haible  <bruno@clisp.org>
18983
18984         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
18985         redundant because stpncpy.m4 takes care of it.
18986
18987 2005-01-17  Bruno Haible  <bruno@clisp.org>
18988
18989         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
18990
18991 2005-01-17  Bruno Haible  <bruno@clisp.org>
18992
18993         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
18994         used.
18995
18996 2005-01-17  Bruno Haible  <bruno@clisp.org>
18997
18998         * lib/fwriteerror.h (fwriteerror): Change specification to include
18999         fclose.
19000         * lib/fwriteerror.c: Include <stdbool.h>.
19001         (fwriteerror): At the end, close the file stream. Record whether
19002         stdout was already closed.
19003
19004 2005-01-17  Bruno Haible  <bruno@clisp.org>
19005
19006         * lib/execute.c (environ): Declare if needed.
19007         * lib/pipe.c (environ): Likewise.
19008         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
19009
19010 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19011
19012         * modules/argp: Depend on vsnprintf
19013
19014 2005-01-10  Jim Meyering  <jim@meyering.net>
19015
19016         * modules/closeout (Depends-on): Add atexit.
19017
19018 2005-01-06  Bruno Haible  <bruno@clisp.org>
19019
19020         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
19021
19022 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
19023
19024         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
19025         definitions to be after all include files, to avoid collisions.
19026         Problem reported by Bob Proulx.
19027
19028 2005-01-04  Jim Meyering  <jim@meyering.net>
19029
19030         Changes imported from coreutils.
19031         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
19032         as the mkstemp template, use a temporary directory and an
19033         8.3-friendly template to avoid trouble on systems like DJGPP.
19034         Reported by Juan M. Guerrero via Stepan Kasal.
19035         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
19036         close. Remove the temporary directory right away, rather than waiting
19037         for configure's at-exit trap code to do it.
19038         Suggestion from Stepan Kasal.
19039
19040 2005-01-01  Simon Josefsson  <jas@extundo.com>
19041
19042         * gnulib-tool: Print #include directives when --import'ing.
19043
19044 2004-12-28  Simon Josefsson  <jas@extundo.com>
19045
19046         * tests/test-base64.c: Include required header files.  Remove
19047         unused variables.
19048
19049 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19050
19051         * modules/error (Depends-on): Remove gettext.
19052
19053 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
19054
19055         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
19056         not needed.  This removes a dependency on the gettext module.
19057         [defined _LIBC]: Do not include <libintl.h>; not needed.
19058
19059 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19060
19061         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
19062         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
19063
19064 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
19065
19066         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
19067         HAVE_DECL_STRTOLD.
19068
19069 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19070
19071         * modules/getdate (Depends-on): Remove alloca-opt.
19072
19073 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19074
19075         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
19076
19077 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
19078
19079         * lib/argp-parse.c: Include <stddef.h>.
19080         (alignof, alignto): New macros.
19081         (parser_init): Don't assume that void * is aligned sufficiently
19082         for struct option.
19083
19084         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
19085         need to extend the stack.
19086         (YYINITDEPTH): New macro, so that the initial stack isn't overly
19087         large.
19088
19089 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19090
19091         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
19092
19093 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19094
19095         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
19096         (2004-10-24) change.  Apparently this was a false alarm.
19097
19098         * modules/getdate: Depend on alloca-opt, not alloca.
19099
19100 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
19101
19102         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
19103         Remove now-obsolete comment about AIX.
19104         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
19105         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
19106         (YYMAXDEPTH): New macro.
19107
19108 2004-12-18  Simon Josefsson  <jas@extundo.com>
19109
19110         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
19111
19112 2004-12-18  Bruno Haible  <bruno@clisp.org>
19113
19114         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
19115
19116 2004-12-18  Bruno Haible  <bruno@clisp.org>
19117
19118         * lib/fatal-signal.c (fatal_signals): Make non-const.
19119         (init_fatal_signals): New function.
19120         (uninstall_handlers, install_handlers): Ignore signals that were set to
19121         SIG_IGN.
19122         (at_fatal_signal): Call init_fatal_signals.
19123         (init_fatal_signal_set): Likewise. Ignore signals that were set to
19124         SIG_IGN.
19125         Reported by Paul Eggert.
19126
19127 2004-12-18  Bruno Haible  <bruno@clisp.org>
19128
19129         * doc/alloca.texi: New file.
19130         * doc/alloca-opt.texi: New file.
19131
19132 2004-12-17  Jim Meyering  <jim@meyering.net>
19133
19134         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
19135         Otherwise, install-sh could exit with improper exit status when
19136         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
19137
19138 2004-12-16  Simon Josefsson  <jas@extundo.com>
19139
19140         * tests/test-base64.c: Add license.
19141
19142 2004-12-15  Stepan Kasal  <address@hidden>
19143
19144         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
19145
19146 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
19147
19148         * modules/getcwd (Files): Add m4/d-ino.m4.
19149         Suggested by Mark D. Baushke.
19150
19151 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19152
19153         * lib/getdate.y (textint): New member "negative".
19154         (time_zone_hhmm): New function.
19155         Expect 14 shift-reduce conflicts, not 13.
19156         (o_colon_minutes): New rule.
19157         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
19158         (yylex): Set the "negative" member of signed numbers.
19159
19160 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
19161
19162         * doc/getdate.texi (Time of day items, Time zone items):
19163         Describe new formats +00:00, UTC+00:00.
19164
19165 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
19166
19167         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
19168         spurious "-l"s.  Problem reported by Stepan Kasal.
19169
19170 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
19171
19172         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
19173         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
19174
19175 2004-12-04  Simon Josefsson  <jas@extundo.com>
19176
19177         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
19178         Vandoorselaere <yoann@prelude-ids.org>.
19179
19180 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19181
19182         Changes imported from coreutils.
19183         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
19184         exist.
19185         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
19186
19187 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19188
19189         Changes imported from coreutils.
19190         * lib/hard-locale.c: Assume <locale.h> exists.
19191         Include "strdup.h".
19192         (GLIBC_VERSION): New macro.
19193         (hard_locale): Assume setlocale exists.
19194         Rewrite to avoid #ifdef.
19195         Use strdup rather than malloc + strcpy.
19196         * lib/human.c: Assume <locale.h> exists.
19197         (human_readable): Assume localeconv exists.
19198
19199 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
19200
19201         * modules/hard-locale (Depends-on): Add strdup.
19202
19203 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
19204
19205         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
19206         convert T2, not T.  (Imported from libc.)
19207
19208 2004-11-30  Simon Josefsson  <jas@extundo.com>
19209
19210         * modules/restrict (License): Change to LGPL.
19211
19212 2004-11-30  Simon Josefsson  <jas@extundo.com>
19213
19214         * m4/restrict.m4: Add copyright and copying conditions.
19215
19216 2004-11-30  Simon Josefsson  <jas@extundo.com>
19217
19218         * m4/base64.m4: New file.
19219
19220 2004-11-30  Simon Josefsson  <jas@extundo.com>
19221
19222         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
19223         base64.
19224
19225         * tests/test-base64.c: New file.
19226
19227         * modules/base64: New file.
19228
19229 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19230
19231         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
19232         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
19233
19234         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
19235
19236 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
19237
19238         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
19239         (__getcwd.c): Don't restore errno; glibc doesn't.
19240         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
19241         first, falling back to our code only if its results look suspicious.
19242         Ensure that the resulting buffer is only as large as necessary.
19243
19244         * lib/readutmp.c: Include readutmp.h first.
19245         Include <errno.h>, since readutmp.h no longer does that.
19246         * lib/readutmp.h: Don't include <errno.h>,
19247         <sys/param.h>, <time.h>; not needed to establish interface.
19248         (errno): Remove decl.
19249         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
19250         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
19251         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
19252
19253 2004-11-28  Simon Josefsson  <jas@extundo.com>
19254
19255         * lib/base64.h, base64.c: New file.
19256
19257 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
19258
19259         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
19260
19261 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
19262
19263         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
19264         (Depends-on): Remove pathmax, same.  Add mempcpy.
19265         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
19266         (Makefile.am): Append getcwd.h to lib_SOURCES.
19267         (Include): Add getcwd.h.
19268         (Maintainer): Change from Jim Meyering to "all, glibc",
19269         since getdate now uses intended-for-glibc code.
19270         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
19271         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
19272
19273 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19274
19275         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
19276         HP's ANSI C compiler.
19277         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
19278         Declaring int functions causes warnings on some modern systems and
19279         shouldn't be needed to compile on ancient ones.
19280         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
19281         defined.
19282
19283         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
19284         with the following changes.
19285         (__set_errno): Parenthesize properly.
19286         Include <stdbool.h>.
19287         (MIN, MAX, MATCHING_INO): New macros.
19288         (__getcwd): Define with prototype, not K&R form.
19289         Use heuristics to allocate default buffer on stack if possible.
19290         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
19291         behavior, and to avoid the PATH_MAX limit when computing
19292         ../../../../...
19293         Use MATCHING_INO to compare inode number to file.
19294         Check for arithmetic overflow in size calculations.
19295         Fix bug in reallocation of dot array that caused getcwd to fail
19296         on directories nested deeper than 75.
19297         Be more careful about saving errno on error.
19298         Do not use realloc; use only free+malloc, as this is a bit
19299         more flexible and avoids a needless copy operation.
19300         Do not inspect st_dev and st_ino for symbolic links; POSIX
19301         doesn't specify the latter.
19302         Check for closedir errors.
19303         Avoid needless casts.
19304         Use "#ifdef weak_alias" around weak_alias, to be like other
19305         glibc code.
19306         The following changes to getcwd.c have effect only when used in
19307         gnulib; they have no effect inside glibc proper.
19308         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
19309         as alloca isn't used.
19310         (alloca, __alloca): Likewise.
19311         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
19312         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
19313         unconditionally, as gnulib assumes C89 or better.
19314         Do not include <sys/param.h>.
19315         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
19316         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
19317         better.
19318         (NULL) [!defined NULL]: Remove; we assume C89 or better.
19319         Include <dirent.h> in a way that is compatible with modern Autoconf.
19320         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
19321         New macros, if not already defined.
19322         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
19323         Use "_LIBC", not "defined _LIBC", for consistency.
19324         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
19325         a mempcpy module.
19326         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
19327         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
19328         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
19329         credit only to Jim Meyering and adjust the copyright dates.
19330         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
19331         <stdlib.h>, <unistd.h>, "pathmax.h".
19332         Instead, include "xgetcwd.h" (first) and "getcwd.h".
19333         (INITIAL_BUFFER_SIZE): Remove.
19334         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
19335
19336 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
19337
19338         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
19339         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
19340         Use the _ONCE methods, for efficiency.
19341         Check for fcntl.h.  In test program, include <errno.h>
19342         and <fcntl.h> if available.  Remove old K&R cruft from
19343         test program.  Check for common errors in GNU/Linux,
19344         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
19345         don't do AC_LIBOBJ, as that's getcwd.m4's job.
19346         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
19347         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
19348         name accordingly.
19349         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
19350         accommodate new getcwd.c.
19351         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
19352         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
19353         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
19354         that's all we need now.
19355
19356 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19357
19358         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
19359         argp-parse.c depends on getopt internals, that means we should
19360         always use our getopt, to be on the safe side.
19361         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
19362         order not to spoil the result of an eventual previous invocation
19363         of gl_GETOPT_SUBSTITUTE.
19364
19365 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
19366
19367         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
19368         redefinition warnings. To avoid them, include the defines
19369         in `#if !defined __need_getopt ... #endif'. The only place
19370         where __getopt_argv_const is used is in definitions
19371         of getopt_long and getopt_long_only below, which are as well
19372         protected by `#ifndef __need_getopt'.
19373         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
19374         __need_getopt after including <stdio.h> and <unistd.h> These
19375         headers might have defined it.
19376
19377 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
19378
19379         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
19380
19381 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
19382
19383         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
19384         (futimens): New function, which uses futimes if available.
19385         (futimens, utimens): Support timespec==NULL, with same semantics
19386         as utime and utimens.
19387         * lib/utimens.h (futimens): New decl.
19388
19389 2004-11-23  Jim Meyering  <jim@meyering.net>
19390
19391         * lib/getopt_.h: Remove trailing blanks.
19392
19393 2004-11-23  Jim Meyering  <jim@meyering.net>
19394
19395         * lib/__fpending.c: Add comment.
19396
19397 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
19398
19399         * modules/canonicalize (Depends-on): Add xreadlink.
19400         Problem reported by James Youngman.
19401
19402 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
19403
19404         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
19405         New macros.
19406         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
19407         optopt): Use them instead of invoking ## directly; otherwise, the
19408         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
19409
19410 2004-11-19  Bruno Haible  <bruno@clisp.org>
19411
19412         * lib/strtok_r.c: Move comments from here...
19413         * lib/strtok_r.h: ... to here.
19414
19415 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19416
19417         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
19418         implementations that mishandle size_t overflow.
19419
19420 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
19421
19422         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
19423         might fail.  Problem reported by Yoann Vandoorselaere.
19424         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
19425         implementations that mishandle size_t overflow.
19426
19427 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19428
19429         * modules/canon-host (Depends-on): Add strdup.
19430
19431 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19432
19433         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
19434
19435 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19436
19437         * lib/canon-host.c: Include "strdup.h".
19438         (canon_host): Use getaddrinfo if available, so that IPv6 works.
19439         Use strdup instead of malloc/strcpy to duplicate strings.
19440
19441         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
19442         (human_space_before_unit): New constant.
19443         * lib/human.c (human_readable): Support it.
19444
19445         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
19446         (xgetcwd): Set errno correctly when failing.
19447         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
19448         the failure is actually due to a PATH_MAX problem.
19449
19450         Further getopt changes to make it more likely that glibc will
19451         buy the changes back.
19452         * lib/getopt.c (POSIXLY_CORRECT): New constant.
19453         (getopt): Use it, so to preserve glibc semantic
19454         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
19455         when compiling for libc.
19456         * lib/getopt_.h (__getopt_argv_const): Bring it back.
19457         (getopt_long, getopt_long_only): Use it.
19458
19459         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
19460         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
19461         (getopt): Argv is now char * const *, as per standard.
19462         (_getopt_internal_r, _getopt_internal): Argv is now char **,
19463         not char *__getopt_argv_const *.
19464         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
19465         _getopt_long_only_r): Likewise.
19466         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
19467         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
19468         _getopt_long_r, _getopt_long_only_r): Likewise.
19469         * lib/getopt_.h (__getopt_argv_const): Remove.
19470         (getopt): Argv is now char * const *, as per standard.
19471
19472         * lib/getdate.y (tORDINAL): New token.
19473         (day, relunit): Allow it for relative times.
19474         (relative_time_table): Use tORDINAL for ordinals.
19475
19476 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
19477
19478         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
19479         Document that "second" isn't allowed as an ordinal number.
19480
19481 2004-11-16  Jim Meyering  <jim@meyering.net>
19482
19483         * modules/closeout (Depends-on): Add fpending.
19484
19485 2004-11-15  Jim Meyering  <jim@meyering.net>
19486
19487         * lib/closeout.c: Include "__fpending.h" once again.
19488         Include <stdbool.h>.
19489         (close_stdout): Don't fail just because stdout was closed initially,
19490         since some programs don't write to stdout in the normal course of
19491         operation (other than --version and --help), and we don't want this
19492         function to make e.g. `touch file >&-' fail.
19493         But do fail if it was closed and someone has tried to write to it.
19494         E.g., `printf foo >&-' must fail.
19495
19496 2004-11-13  Jim Meyering  <jim@meyering.net>
19497
19498         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
19499
19500 2004-11-12  Simon Josefsson  <jas@extundo.com>
19501
19502         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
19503         small doc fix is still pending.
19504
19505 2004-11-11  Simon Josefsson  <jas@extundo.com>
19506
19507         * modules/strtok_r: New file.
19508
19509         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19510         strtok_r.
19511
19512 2004-11-11  Simon Josefsson  <jas@extundo.com>
19513
19514         * m4/strtok_r.m4: New file.
19515
19516         * m4/getopt.m4: Replace opterr.
19517
19518 2004-11-11  Simon Josefsson  <jas@extundo.com>
19519
19520         * lib/strtok_r.h, strtok_r.c: New file.
19521
19522 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
19523
19524         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
19525         of replacing opterr, getopt, etc.  This should handle the
19526         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
19527
19528 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
19529
19530         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
19531         we can stop lying to compilers about the constness of argv when we
19532         are compiled outside glibc.
19533         (getopt, getopt_long, getopt_long_only): Use it.
19534         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
19535         _getopt_internal, getopt): Likewise.
19536         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
19537         _getopt_long_only_r): Likewise.
19538         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
19539         _getopt_long_r, _getopt_long_only_r): Likewise.
19540
19541         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
19542         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
19543         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
19544         the other external symbols.
19545         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
19546         declaration, since the above renaming now works around collisions.
19547
19548 2004-11-11  Jim Meyering  <jim@meyering.net>
19549
19550         * lib/linebreak.c: Remove trailing blanks.
19551         * lib/alloca_.h: Likewise.
19552         * lib/acosl.c: Likewise.
19553         * lib/euidaccess.c: Likewise.
19554         * lib/allocsa.h: Likewise.
19555
19556 2004-11-10  Simon Josefsson  <jas@extundo.com>
19557
19558         * m4/getaddrinfo.m4: New file.
19559
19560 2004-11-10  Simon Josefsson  <jas@extundo.com>
19561
19562         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
19563
19564 2004-11-10  Simon Josefsson  <jas@extundo.com>
19565
19566         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
19567         getaddrinfo.
19568
19569         * modules/getaddrinfo: New file.
19570
19571 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
19572
19573         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
19574
19575 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
19576
19577         * lib/mktime.c (SHR): New macro, which is a portable
19578         substitute for >> that should work even on Crays.
19579         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
19580         Problem reported by Mark D. Baushke in
19581         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
19582         * lib/getdate.y (SHR): Likewise.
19583         (tm_diff): Use it.
19584         * lib/strftime.c (SHR): Likewise.
19585         (tm_diff): Use it.
19586         * lib/quotearg.c (struct quoting_options): Use unsigned int for
19587         quote_these_too, so that right shifts are well defined.  All uses
19588         changed.
19589
19590 2004-11-10  Jim Meyering  <jim@meyering.net>
19591
19592         Ensure that no close failure goes unreported.
19593         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
19594         return early when it seems there's nothing to flush.
19595         Don't include __fpending.h.
19596
19597 2004-11-10  Jim Meyering  <jim@meyering.net>
19598
19599         * modules/closeout (Depends-on): Remove fpending.
19600
19601 2004-11-10  Jim Meyering  <jim@meyering.net>
19602
19603         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
19604
19605 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19606
19607         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
19608         gl_FUNC_STRFTIME.
19609         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
19610         and AC_REQUIRE when possible, to avoid duplicate checks.
19611         Check for <wchar.h>.
19612
19613 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
19614
19615         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
19616
19617 2004-11-09  Bruno Haible  <bruno@clisp.org>
19618
19619         * m4/sockpfaf.m4: New file.
19620
19621 2004-11-05  Bruno Haible  <bruno@clisp.org>
19622
19623         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
19624         Reported by Mark D. Baushke <mdb@cvshome.org>.
19625
19626 2004-11-04  Bruno Haible  <bruno@clisp.org>
19627
19628         2004-09-11  Bruno Haible  <bruno@clisp.org>
19629                 * allocsa.valgrind: New file.
19630         2004-02-06  Bruno Haible  <bruno@clisp.org>
19631                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
19632                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
19633                 Reported by Christopher Seip <chris.seip@hp.com>.
19634
19635 2004-11-04  Bruno Haible  <bruno@clisp.org>
19636
19637         * modules/allocsa (Files): Add lib/allocsa.valgrind.
19638         (Makefile.am): Distribute it.
19639
19640 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
19641
19642         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
19643         with errno == ERANGE if the buffer is too small.
19644         Problem reported by Mark D. Baushke.
19645
19646 2004-11-03  Albert Chin  <china@thewrittenword.com>
19647             Paul Eggert  <eggert@cs.ucla.edu>
19648
19649         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
19650         equivalent, substitute $ac_type for equivalent type rather than
19651         blindly using uint32_t *always* which won't work if uint32_t is not
19652         available.  Define _UINT32_T to work around typedef of uint32_t if
19653         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
19654         2.5.1.
19655
19656 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19657
19658         * m4/jm-macros.m4: Sync from coreutils.
19659         (gl_MACROS): Check for mbrlen, for pathchk.
19660         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
19661
19662 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19663
19664         * lib/xreadlink.c (MAXSIZE): New macro.
19665         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
19666         size does not exceed MAXSIZE.  Avoid cast.
19667         As suggested by Mark D. Baushke in
19668         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
19669         if readlink fails with buffer size just under MAXSIZE, try again
19670         with MAXSIZE.
19671
19672 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
19673
19674         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
19675
19676 2004-11-02  Derek R. Price  <derek@ximbiot.com>
19677         and  Paul Eggert  <eggert@cs.ucla.edu>
19678
19679         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
19680         (get_date): Overparenthesize to avoid GCC warning.
19681
19682 2004-11-02  Bruno Haible  <bruno@clisp.org>
19683
19684         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
19685         returns void.
19686
19687 2004-11-02  Bruno Haible  <bruno@clisp.org>
19688
19689         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
19690         function returns void.
19691
19692 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
19693
19694         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
19695         fflush_unlocked, flockfile, funlockfile, funlockfile,
19696         fputs_unlocked, putc_unlocked.
19697
19698 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
19699
19700         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
19701         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
19702         already declared.
19703
19704 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19705
19706         * modules/getdate (Files): Add doc/getdate.texi.
19707         (Depends-on): Add setenv, xalloc.
19708
19709 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19710
19711         * lib/getdate.y: Add support for TZ="foo" within a date string.
19712         Fix some bugs near time_t boundaries.  Reject dates with
19713         out-of-range components, e.g., "Sept 31".
19714         Include <stdlib.h>, "setenv.h", "xalloc.h".
19715         (ISDIGIT_LOCALE): Remove; unused.
19716         Note that the TZ and time functions used here are not reentrant.
19717         (mktime_ok, get_tz): New functions.
19718         (TZBUFSIZE): New constant.
19719         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
19720         This requires that we sometimes generate our own TZ="XXX..." setting.
19721
19722 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
19723
19724         * doc/getdate.texi: New file, from coreutils with modifications for
19725         the new TZ parsing.
19726
19727 2004-10-27  Derek R. Price  <derek@ximbiot.com>
19728
19729         * lib/mktime.c (not_equal_tm): Remove redundant check.
19730
19731 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
19732
19733         * modules/regex (lib_SOURCES): Add regex.c.
19734         Reported by James Youngman in
19735         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
19736
19737 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
19738
19739         * lib/getdate.y: Use Bison 1.875 features, and some minor
19740         code cleanups.  This change does not affect semantics.
19741         Don't include <stdlib.h>; no longer needed.
19742         Don't include unlocked-io.h; only the "#if TEST" code uses
19743         stdio, and performance isn't crucial there.
19744         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
19745         Bison 1.875 features as described below.
19746         All uses of "PC." replaced by "pc->".
19747         (YYSTYPE): Add a forward declaration.
19748         (yylex, yyerror): Use full prototypes in forward decls.
19749         Use "%pure-parser" rather than obsolescent "%pure_parser".
19750         Use %parse-param and %lex-param instead of obsolescent
19751         YYPARSE_PARAM and YYLEX_PARAM.
19752         (meridian_table, month_and_day_table, time_units_table,
19753         relative_time_table, time_zone_table, military_table,
19754         lookup_zone, lookup_word, get_date):
19755         Use NULL instead of 0 where appropriate.
19756         (to_hour): Avoid abort (), to avoid a dependency on
19757         stdlib.h.
19758         (yyerror, yylex): Now accepts parser_control * arg.
19759         (main) [TEST]: Use '\0' rather than 0 for char.
19760
19761 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
19762
19763         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
19764
19765 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
19766
19767         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
19768         It's now the caller's responsibility to handle the case where
19769         !HAVE_GETPAGESIZE && !defined getpagesize.
19770
19771         * lib/mktime.c (leapyear): Arg is long int, not int.
19772
19773 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
19774
19775         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
19776
19777 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
19778
19779         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
19780         missing.  Problem reported by James Youngman.
19781
19782 2004-10-16  Simon Josefsson  <jas@extundo.com>
19783
19784         * gnulib-tool: Fix comments.  Fix parse problem.
19785         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
19786
19787 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
19788
19789         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
19790         implementation of getopt_long.  Problem reported by Alexander Taler in:
19791         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
19792
19793 2004-10-15  Bruno Haible  <bruno@clisp.org>
19794
19795         * gnulib-tool: Untabify. Initialize supplied_libname.
19796         (func_usage): More homogenous output.
19797         (func_modules_transitive_closure, func_modules_to_filelist,
19798         func_emit_lib_Makefile_am): New functions.
19799         (func_import): New function, extracted from big case statement. Use
19800         func_get_license, func_modules_transitive_closure,
19801         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
19802         opt_lgpl. Don't use test -a, as it's not portable.
19803         (func_create_testdir): Use func_modules_transitive_closure,
19804         func_modules_to_filelist, func_emit_lib_Makefile_am.
19805
19806 2004-10-15  Bruno Haible  <bruno@clisp.org>
19807
19808         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
19809
19810 2004-10-15  Bruno Haible  <bruno@clisp.org>
19811
19812         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
19813         the portions belonging to each module.
19814         Suggested by Derek Robert Price <derek@ximbiot.com>.
19815
19816 2004-10-12  Simon Josefsson  <jas@extundo.com>
19817
19818         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
19819         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
19820         to real functions.
19821
19822 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19823
19824         * modules/vsnprintf: New file.
19825
19826 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19827
19828         * m4/vsnprintf.m4: New file.
19829
19830 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19831
19832         * lib/vsnprintf.h: New file.
19833         * lib/vsnprintf.c: New file.
19834
19835 2004-10-11  Bruno Haible  <bruno@clisp.org>
19836
19837         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
19838         vsnprintf.
19839
19840 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
19841
19842         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
19843
19844 2004-10-07  Bruno Haible  <bruno@clisp.org>
19845
19846         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
19847         fits into the provided buffer.
19848
19849 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
19850
19851         * lib/diacrit.c, diacrit.h: Add GPL notice.
19852
19853         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
19854         notice.
19855         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
19856         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
19857         This avoids a potential constant-folding bug.
19858
19859 2004-10-05  Bruno Haible  <bruno@clisp.org>
19860
19861         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
19862         for the declaration of strsep.
19863
19864 2004-10-05  Bruno Haible  <bruno@clisp.org>
19865
19866         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
19867
19868 2004-10-04  Simon Josefsson  <jas@extundo.com>
19869
19870         * modules/memmem: New file.
19871         * tests/test-memmem.c: New file.
19872         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
19873
19874 2004-10-04  Simon Josefsson  <jas@extundo.com>
19875
19876         * m4/memmem.m4: New file.
19877
19878 2004-10-04  Simon Josefsson  <jas@extundo.com>
19879
19880         * lib/memmem.h: New file.
19881         * lib/memmem.c: New file, taken from glibc.
19882
19883 2004-10-04  Simon Josefsson  <jas@extundo.com>
19884
19885         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
19886         '#ifdef USE_UNLOCKED_IO'.
19887
19888 2004-10-04  Simon Josefsson  <jas@extundo.com>
19889
19890         * config/srclist.txt: Add memmem from glibc.
19891
19892 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
19893
19894         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
19895
19896         * modules/argmatch, modules/argp, modules/closeout, modules/error,
19897         modules/exclude, modules/getdate, modules/getline,
19898         modules/getndelim2, modules/getpass, modules/getpass-gnu,
19899         modules/getusershell, modules/linebuffer, modules/md5,
19900         modules/mountlist, modules/posixtm, modules/readtokens,
19901         modules/readutmp, modules/regex, modules/sha1,
19902         modules/version-etc, modules/yesno:
19903         Remove dependency on unlocked-io.
19904
19905 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
19906
19907         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
19908
19909         * m4/unlocked-io.m4: Add copyright notice.
19910         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
19911
19912 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
19913
19914         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
19915         * lib/xmalloc.c (xmemdup): Likewise.
19916         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
19917         XFREE): Remove these long-obsolescent macros.
19918         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
19919         * lib/xstrdup.c: Remove.
19920
19921         * lib/regex.c (re_comp): Cast gettext return value to char *,
19922         Problem reported by Martin Neitzel via Mark D. Baushke.
19923
19924 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
19925
19926         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
19927         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
19928         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
19929         regex.c, sha1.c, version-etc.c, yesno.c:
19930         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
19931         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
19932         the includer's responsibility.
19933
19934         Sync from coreutils.
19935
19936         * lib/modechange.c (mode_compile): Don't decrement a pointer that
19937         points to the start of a string, as the C Standard says the
19938         resulting behavior is undefined.
19939
19940         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
19941         simple -> simple_backups, numbered_existing ->
19942         numbered_existing_backups, numbered -> numbered_backups
19943         to avoid shadowing problems.  All uses changed.
19944         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
19945         * lib/backupfile.c (check_extension, numbered_backup):
19946         Rename locals to avoid shadowing 'basename'.
19947         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
19948         once.
19949
19950         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
19951         * lib/.cvsignore: Add getopt.h.
19952
19953 2004-10-04  Bruno Haible  <bruno@clisp.org>
19954
19955         * modules/README: New file.
19956         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
19957         not a module.
19958
19959 2004-10-02  Jim Meyering  <jim@meyering.net>
19960
19961         * lib/dirfd.h, getpagesize.h: Add copyright notice.
19962
19963 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19964
19965         * modules/strsep: New file.
19966
19967 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19968
19969         * m4/strsep.m4: New file.
19970
19971 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
19972
19973         * lib/strsep.h: New file.
19974         * lib/strsep.c: New file.
19975
19976 2004-10-01  Simon Josefsson  <jas@extundo.com>
19977
19978         * lib/snprintf.c (snprintf): Handle size==0.
19979
19980 2004-10-01  Simon Josefsson  <jas@extundo.com>
19981             Bruno Haible  <bruno@clisp.org>
19982
19983         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
19984         (snprintf): Declare 'args'.
19985
19986 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
19987
19988         * lib/snprintf.c: Remove comments as to why each header is needed.
19989
19990 2004-10-01  Bruno Haible  <bruno@clisp.org>
19991
19992         * MODULES.html.sh: Add strsep.
19993
19994 2004-09-30  Simon Josefsson  <jas@extundo.com>
19995
19996         * modules/snprintf: New file.
19997
19998 2004-09-30  Simon Josefsson  <jas@extundo.com>
19999
20000         * m4/snprintf.m4: New file.
20001
20002 2004-09-30  Simon Josefsson  <jas@extundo.com>
20003
20004         * lib/snprintf.h, lib/snprintf.c: New files.
20005
20006 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
20007
20008         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
20009         (hol_entry_help): Never translate an empty string.
20010         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
20011         * lib/argp.h (OPTION_NO_TRANS): New option.
20012
20013 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20014
20015         * modules/argp (Maintainer): Replace Simon Josefsson
20016         by Sergey Poznyakoff.
20017
20018 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20019
20020         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
20021         changes merged back into glibc.
20022
20023 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
20024
20025         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
20026
20027 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
20028
20029         * lib/xvasprintf.c: Include xalloc.h.
20030         (xvasprintf): Use xalloc_die, not xmalloc_die.
20031
20032 2004-09-29  Bruno Haible  <bruno@clisp.org>
20033
20034         * modules/alloca-opt: New file, derived from modules/alloca.
20035         * modules/allocsa: Depend on alloca-opt instead of alloca.
20036         * modules/setenv: Likewise.
20037         * modules/vasnprintf: Likewise.
20038         * MODULES.html.sh: Add alloca-opt.
20039
20040 2004-09-28  Simon Josefsson  <jas@extundo.com>
20041
20042         * gnulib-tool: New parameter --lgpl, to asseert that modules are
20043         LGPL, and to replace license template from GPL to LGPL.
20044
20045 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20046
20047         * modules/dummy: Change license to LGPL.
20048
20049 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
20050
20051         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
20052
20053 2004-09-24  Simon Josefsson  <jas@extundo.com>
20054
20055         * modules/minmax (License): Change from GPL to LGPL.
20056
20057 2004-09-23  Simon Josefsson  <jas@extundo.com>
20058
20059         * gnulib-tool (--import): Typo.
20060
20061 2004-09-23  Simon Josefsson  <jas@extundo.com>
20062
20063         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
20064
20065 2004-09-22  Bruno Haible  <bruno@clisp.org>
20066
20067         * modules/*: Add 'License' field.
20068         * gnulib-tool: Accept --extract-license option.
20069         (func_get_license): New function.
20070
20071 2004-09-21  Bruno Haible  <bruno@clisp.org>
20072
20073         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
20074         Reported by Simon Josefsson.
20075
20076 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20077
20078         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
20079         gl_AC_TYPE_LONG_LONG.
20080
20081 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
20082
20083         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
20084
20085 2004-09-18  Simon Josefsson  <jas@extundo.com>
20086         and  Paul Eggert  <eggert@cs.ucla.edu>
20087
20088         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
20089         calls with autoreconf.  Define GL_LIB.
20090
20091 2004-09-14  Karl Berry  <karl@gnu.org>
20092
20093         * config/srclist.txt: unsync setenv.c, sigh.
20094
20095 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20096
20097         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
20098         Problem reported by Bruno Haible in:
20099         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
20100
20101 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
20102
20103         * config/srclist.txt: Comment out argp-pvh.c.
20104
20105 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
20106
20107         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
20108         in case some system header has #define'd it.  Problem reported by
20109         Soeren D. Schulze in
20110         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
20111
20112 2004-09-09  Karl Berry  <karl@gnu.org>
20113
20114         * regex.[ch]: delete from the root.  These were supposed to be
20115                 synced with emacs cvs, but this has not happened for about
20116                 a year, and anyway nothing else uses emacs regex.[ch].
20117                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
20118                 lib/regex[.ch] is untouched.
20119
20120 2004-09-09  Bruno Haible  <bruno@clisp.org>
20121
20122         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
20123
20124 2004-09-09  Bruno Haible  <bruno@clisp.org>
20125
20126         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
20127         modifications.
20128         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
20129
20130 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20131
20132         * modules/xvasprintf: New file.
20133         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
20134
20135 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
20136
20137         * lib/xvasprintf.h: New file.
20138         * lib/xvasprintf.c: New file.
20139         * lib/xasprintf.c: New file.
20140
20141 2004-09-08  Bruno Haible  <bruno@clisp.org>
20142
20143         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
20144
20145 2004-09-08  Bruno Haible  <bruno@clisp.org>
20146
20147         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
20148         length is > INT_MAX.
20149         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
20150         more.
20151
20152 2004-09-08  Bruno Haible  <bruno@clisp.org>
20153
20154         * lib/stdint_.h: New file, taken from GNU clisp.
20155
20156 2004-09-08  Bruno Haible  <bruno@clisp.org>
20157             Oskar Liljeblad  <oskar@osk.mine.nu>
20158
20159         * modules/stdint: New file.
20160         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
20161
20162 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20163
20164         Import from coreutils.
20165         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
20166         strings on unbounded length.  alloca's performance benefits aren't
20167         that important here.
20168         (V_STRDUP): Remove.
20169         (parse_with_separator): New function, with most of the internals
20170         of the old parse_user_spec.  Allow user to omit both user and group,
20171         for compatibility with FreeBSD.
20172         Clone only the user name, not the entire spec.
20173         Do not set *uid, *gid unless entirely successful.
20174         Avoid memory leak in some failing cases.
20175         Fix regression for USER.GROUP reported by Dmitry V. Levin in
20176         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
20177         (parse_user_spec): Rewrite to use parse_with_separator.
20178
20179 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20180
20181         * modules/userspec: Don't depend on alloca.
20182
20183 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20184
20185         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
20186
20187 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
20188
20189         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
20190         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
20191         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
20192
20193 2004-08-16  Simon Josefsson  <jas@extundo.com>
20194
20195         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
20196         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
20197         Add --dry-run for --import.
20198         Let user provided command line parameters override configure.ac
20199         settings.
20200
20201 2004-08-12  Simon Josefsson  <jas@extundo.com>
20202
20203         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
20204         as discussed with Paul Eggert in threads rooted at
20205         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
20206         and
20207         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
20208         Before, the test was empty, and relied on ELIDE_CODE in source
20209         code.)
20210         (gl_PREREQ_GETOPT): New macro.
20211         (gl_GETOPT): Use them.
20212
20213 2004-08-12  Simon Josefsson  <jas@extundo.com>
20214
20215         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
20216         * lib/getopt_.h: Renamed from getopt.h.
20217
20218 2004-08-12  Simon Josefsson  <jas@extundo.com>
20219
20220         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
20221         Change default library name from libfoo to libgnu.
20222         Now, if you have a configure.ac that says:
20223                 gl_SOURCE_BASE(gl)
20224                 gl_M4_BASE(gl/m4)
20225                 gl_MODULES(error getopt etcetera)
20226                 gl_INIT
20227         you can import all you need by running:
20228                 ../gnulib/gnulib-tool --import
20229
20230         * modules/getopt (Files): Rename getopt.h to getopt_.h.
20231         (Makefile.am): Rewrite, use logic from argz.
20232         (Include): Use <getopt.h> instead of "getopt.h".
20233
20234 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20235
20236         * modules/argp (Files): Add m4/unlocked-io.m4.
20237         (Depends-on): Add extensions.
20238
20239 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20240
20241         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
20242         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
20243         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
20244         Check for program_invocation_name, program_invocation_short_name,
20245         flockfile, funlockfile, features.h, _getopt_long_only_r.
20246
20247 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20248
20249         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
20250         its complicated substitute.
20251         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
20252         and program_invocation_name.
20253         (__argp_basename) [!_LIBC]: Remove; the only use was
20254         replaced by its body.
20255         (__argp_short_program_name): Change condition from
20256         !defined __argp_short_program_name to
20257         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
20258         to match argp-namefrob.h.
20259         (__argp_failure): Don't assume strerror_r returns char *.
20260         * lib/argp-parse.c (N_): Define unconditionally.
20261         (argp_default_options): Fill out initializers with 0 to avoid
20262         gcc warnings.
20263
20264 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
20265
20266         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
20267         getopt1.c.
20268
20269 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20270
20271         Merge from coreutils.
20272
20273         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
20274
20275         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
20276         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
20277
20278 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20279
20280         Merge from coreutils.
20281
20282         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
20283         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
20284         for Reliant Unix 5.43.
20285
20286         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
20287         (union fooround): Use uintmax_t, not long int.
20288         The rest is a merge from libc:
20289         [defined _LIBC]: Include <shlib-compat.h>.
20290         (_obstack) [defined _LIBC]: Remove after 2.3.4.
20291
20292         * lib/settime.c (settime): Recode to avoid warning with
20293         Sun Forte C 6U2.
20294
20295         * lib/strverscmp.c: Convert to UTF-8.
20296
20297 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20298
20299         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
20300         m4/uintmax_t.m4.
20301
20302 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20303
20304         * modules/xalloc-die: New file.
20305         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
20306
20307         * modules/md5 (Files): Add m4/uint32_t.m4.
20308         * modules/sha1: Renamed from modules/sha.
20309         (Files):
20310         Rename lib/sha.h to lib/sha1.h.
20311         Rename lib/sha.c to lib/sha1.c.
20312         Rename m4/sha.m4 to m4/sha1.m4.
20313         (lib_SOURCES): Likewise.
20314         (configure.ac): Rename gl_SHA to gl_SHA1.
20315         (Include): sha.h -> sha1.h.
20316
20317 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20318
20319         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
20320         * m4/sha1.m4: Renamed from sha.m4.
20321         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
20322
20323 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20324
20325         * lib/obstack.h (obstack_empty_p):
20326         Don't assume that chunk->contents is suitably aligned.
20327         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
20328         Likewise. Problem reported by Benno in
20329         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
20330
20331         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
20332         readable.  This could be improved further but it'd take some work.
20333
20334 2004-08-08  Simon Josefsson  <jas@extundo.com>
20335
20336         * modules/xgethostname (Depends-on): Remove exit and error (not
20337         used).
20338
20339         * modules/getpass-gnu: Add getpass.h.
20340         (Depends-on): Add stdbool.
20341         * modules/getpass: Add getpass.h.
20342
20343 2004-08-08  Simon Josefsson  <jas@extundo.com>
20344
20345         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
20346         Check getpass declaration.
20347
20348 2004-08-08  Simon Josefsson  <jas@extundo.com>
20349
20350         * lib/xgethostname.c: Don't include error.h (not used).
20351
20352         * lib/getpass.h: Add.
20353         * lib/getpass.c: Include getpass.h first.
20354
20355 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
20356
20357         * lib/xalloc-die.c: New file.
20358         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
20359         All uses removed.
20360         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
20361         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
20362         xalloc-die.c.
20363         (_, N_, xalloc_die): Move to xalloc-die.c.
20364         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
20365         so that we needn't mess with xalloc_msg_memory_exhausted.
20366
20367         * lib/sha1.h: Renamed from sha.h.
20368         (SHA1_H): Renamed from _SHA_H.
20369         (sha1_ctx): Renamed from sha_ctx.
20370         (sha1_init_ctx): Renamed from sha_init_ctx.
20371         (sha1_process_block): Renamed from sha_process_block.
20372         (sha1_process_bytes): Renamed from sha_process_bytes.
20373         (sha1_finish_ctx): Renamed from sha_finish_ctx.
20374         (sha1_read_ctx): Renamed from sha_read_ctx.
20375         (sha1_stream): Renamed from sha_stream.
20376         (sha1_buffer): Renamed from sha_buffer.
20377         * lib/sha1.c: Likewise; renamed from sha.c.
20378         Do not include <sys/types.h>.
20379         Include <stddef.h> rather than <stdlib.h>.
20380
20381 2004-08-08  Bruno Haible  <bruno@clisp.org>
20382
20383         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
20384         FILESYSTEM_PREFIX_LEN.
20385         * lib/progreloc.c: Likewise.
20386         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
20387
20388 2004-08-06  Simon Josefsson  <jas@extundo.com>
20389
20390         * modules/progname (Depends-on): Don't depend on stdbool.
20391
20392 2004-08-06  Simon Josefsson  <jas@extundo.com>
20393
20394         * modules/getsubopt: New file.
20395         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
20396         getsubopt.
20397
20398 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20399
20400         More merge from coreutils.
20401
20402         * m4/utimens.m4, m4/utimecmp.m4: New files.
20403         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
20404         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
20405         prereq.m4, sha.m4: Import changes from coreutils.
20406
20407 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20408
20409         More merge from coreutils.
20410         * modules/raise, modules/readtokens0, modules/utimens:
20411         * modules/utimecmp, module/xnanosleep: New files.
20412         * modules/strftime: Add lib/strftime.h.
20413         Change include from <time.h> to "strftime.h".
20414         * modules/yesno: Add lib/yesno.h.
20415         * modules/backupfile: Remove lib/addext.c.
20416         * modules/euidaccess: Add stat-macros.h.
20417         * modules/canonicalize, modules/euidaccess,
20418         modules/filemode, modules/lchown, modules/makepath,
20419         modules/rmdir, modules/stat: Likewise.
20420
20421 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
20422
20423         Merge from tar.
20424         * lib/argp-help.c (make_hol, hol_append): Don't assume that
20425         SIZE_MAX is a valid preprocessor constant.
20426         (__argp_basename): Change from "#ifndef _LIBC"
20427         to "#ifndef __argp_short_program_name", so that
20428         we don't compile these functions for tar.
20429
20430         More merges from coreutils.
20431         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
20432         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
20433         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
20434         * lib/addext.c: Remove; no longer needed.
20435         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
20436         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
20437         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
20438         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
20439         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
20440         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
20441         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
20442         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
20443         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
20444         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
20445         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
20446         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
20447         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
20448         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
20449         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
20450         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
20451         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
20452         Import changes from coreutils.
20453
20454 2004-08-05  Simon Josefsson  <jas@extundo.com>
20455
20456         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
20457
20458 2004-08-05  Simon Josefsson  <jas@extundo.com>
20459
20460         * m4/getsubopt.m4: New file.
20461
20462 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20463
20464         Merge from coreutils.
20465
20466         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
20467         * m4/getcwd-path-max.m4: New files.
20468
20469         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
20470         FILESYSTEM_PREFIX_LEN ->
20471         FILE_SYSTEM_PREFIX_LEN.
20472         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
20473         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
20474         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
20475         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
20476
20477         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
20478         prerequisite modules now handle the DOS stuff.
20479         Don't check for unistd.h.
20480
20481 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20482
20483         Merge from coreutils.
20484
20485         * lib/.gdb-history: Remove; this doesn't belong here.
20486
20487         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
20488         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
20489         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
20490         * lib/getcwd.c: New files.
20491
20492         * lib/dirname.h: Include <stdbool.h>.
20493         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
20494         for consistency with POSIX terminology.  All uses changed.
20495         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
20496         (strip_trailing_slashes): Use bool for booleans.
20497         * lib/stripslash.c (strip_trailing_slashes): Likewise.
20498
20499         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
20500         sometimes returns a positive errno value even when it succeeds.
20501         (print_errno_message) [!LIBC]: Fall back on strerror if
20502         __strerror_r fails.
20503
20504         * lib/path-concat.c (mempcpy): Don't define if a system header defines
20505         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
20506         (longest_relative_suffix): New function.
20507         (path_concat): Use it.  Assume first argument is not NULL.
20508         Port to DOS.  Omit redundant separators.
20509         Report an error instead of returning NULL.
20510         Use mempcpy instead of memcpy.
20511         (xpath_concat): Remove: not declared or used.
20512
20513         * lib/same.h: Include <stdbool.h>
20514         (same_name): Return bool, not int.
20515         * lib/same.c (same_name): Likewise.
20516         (errno): Don't declare; we assume C89 or better now.
20517
20518         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
20519         if not already defined.
20520
20521         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
20522         * lib/dup-safer.c (errno): Likewise.
20523
20524 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
20525
20526         Merge from coreutils.
20527         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
20528         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
20529         * modules/path-concat: Don't depend on strdup.
20530
20531 2004-08-03  Simon Josefsson  <jas@extundo.com>
20532
20533         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
20534         * lib/progname.h: Don't include stdbool.h.
20535
20536 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20537
20538         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
20539         * MODULES.html.sh (func_all_modules): Remove fatal.
20540
20541 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20542
20543         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
20544
20545 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
20546
20547         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
20548         working.
20549
20550 2004-08-02  Simon Josefsson  <jas@extundo.com>
20551
20552         * lib/getsubopt.h: New file, with comments from Bruno Haible.
20553         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
20554         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
20555
20556 2004-08-01  Simon Josefsson  <jas@extundo.com>
20557
20558         * lib/xgetdomainname.c: Include stdlib.h, for free().
20559
20560 2004-07-19  Bruno Haible  <bruno@clisp.org>
20561
20562         * MODULES.html.sh (func_all_modules): Add dummy.
20563
20564 2004-07-16  Simon Josefsson  <jas@extundo.com>
20565
20566         * modules/dummy: New file.
20567
20568 2004-07-16  Simon Josefsson  <jas@extundo.com>
20569
20570         * lib/dummy.c: New file.
20571
20572 2004-07-16  Bruno Haible  <bruno@clisp.org>
20573
20574         * lib/backupfile.h: Add extern "C" for C++.
20575         * lib/closeout.h: Likewise.
20576         * lib/copy-file.h: Likewise.
20577         * lib/findprog.h: Likewise.
20578         * lib/full-write.h: Likewise.
20579         * lib/pathname.h: Likewise.
20580         * lib/progname.h: Likewise.
20581         * lib/stpcpy.h: Likewise.
20582         * lib/stpncpy.h: Likewise.
20583         * lib/strcase.h: Likewise.
20584         * lib/strstr.h: Likewise.
20585         * lib/xalloc.h: Likewise.
20586
20587         * lib/mbswidth.h: Add extern "C" for C++.
20588         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
20589
20590 2004-07-13  Robert Millan  <robertmh@gnu.org>
20591
20592         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
20593
20594 2004-07-09  Simon Josefsson  <jas@extundo.com>
20595
20596         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
20597         failed without this.)
20598
20599 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20600
20601         * modules/chown (Files): Add lib/fchown-stub.c, since
20602         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
20603
20604 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20605
20606         * lib/fchown-stub.c: New file.
20607
20608 2004-06-24  Jim Meyering  <jim@meyering.net>
20609
20610         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
20611
20612 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20613
20614         * modules/argz: Omit "#include".
20615
20616         * MODULES.html.sh (func_all_modules): Add calloc, to match
20617         2004-06-01 addition of calloc module.
20618
20619 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20620
20621         * m4/argz.m4: New file, which is autoupdated from libtool.
20622
20623 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20624
20625         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
20626         libtool.
20627
20628 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
20629
20630         * config/srclist-update: Don't insist on "USA." before the
20631         close-comment, as libtool omits the period and puts the */ on a
20632         separate line.
20633         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
20634         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
20635
20636 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
20637
20638         * modules/argz: New file.
20639         * MODULES.html.sh (func_all_modules): Add argz.
20640
20641 2004-06-12  Jim Meyering  <jim@meyering.net>
20642         and  Paul Eggert  <eggert@cs.ucla.edu>
20643
20644         * modules/hash (Files): Add lib/xalloc.h.
20645         * modules/pipe (Depends-on): Add wait-process.
20646         * modules/stat (Depends-on): Add xalloc.
20647         * modules/userspec (Files): Add lib/userspec.h.
20648         * modules/xstrto
20649
20650         Upgrade from gettext-0.13.
20651         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
20652         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
20653         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
20654
20655 2004-06-10  Jim Meyering  <jim@meyering.net>
20656
20657         * lib/calloc.c: New file.
20658
20659 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
20660
20661         * lib/getdate.y (yylex): Allow space between sign and number.
20662         Problem reported by Dan Jacobson.
20663
20664 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
20665
20666         Merge from coreutils CVS.
20667
20668         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
20669         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
20670         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
20671         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
20672         xstrtol.m4: Fix copyright date and/or serial number.
20673
20674         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
20675         See if we need an fchown replacement.
20676         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
20677         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
20678         and use the replacement function if we detect either defect.
20679
20680         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
20681         gl_UTIMECMP.
20682
20683 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
20684         and  Jim Meyering  <jim@meyering.net>
20685
20686         Merge from coreutils CVS.
20687
20688         * lib/stat-macros.h: New file, with contents from file-type.h
20689         and coreutils' system.h.
20690         * lib/file-type.c: Include "stat-macros.h".
20691         * lib/file-type.h (file_type): Move all macro definitions to new file,
20692         stat-macros.h.
20693
20694         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
20695         Wrap old code with this conditional.
20696         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
20697         function that does not dereference symlinks.
20698         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
20699
20700         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
20701         dependency problems.
20702         (xreadlink): Accept new arg SIZE, for efficiency.
20703         All decls and uses changed.
20704         * lib/xreadlink.h: Include <stddef.h>, for size_t.
20705
20706         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
20707         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
20708
20709         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
20710         sysexits.h.
20711
20712 2004-06-01  Jim Meyering  <jim@meyering.net>
20713
20714         * m4/calloc.m4: New file.
20715
20716 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
20717
20718         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
20719         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
20720         Also, fix a typo in a diagnostic.
20721
20722 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
20723
20724         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
20725         or AC_FUNC_REALLOC.
20726
20727 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
20728
20729         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
20730         macros to be defined.
20731         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
20732         the allocator returns NULL because the requested size is zero.
20733
20734 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
20735
20736         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
20737         var.  Add comment explaining why libc still defines it.  This
20738         merges the following patch from glibc:
20739         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
20740
20741 2004-05-20  Andreas Schwab  <schwab@suse.de>
20742
20743         * m4/free.m4: Replace free if it not known to work, not the other
20744         way round.
20745
20746 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
20747
20748         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
20749         present in glibc since revision 1.1 of this file.
20750         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
20751         obstack_alignment_mask, obstack_alloc, obstack_base,
20752         obstack_blank, obstack_blank_fast, obstack_chunk_size,
20753         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
20754         obstack_grow0, obstack_init, obstack_int_grow,
20755         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
20756         obstack_next_free, obstack_object_size, obstack_ptr_grow,
20757         obstack_ptr_grow_fast, obstack_room): Remove declarations of
20758         nonexistent functions.
20759
20760 2004-05-18  Karl Berry  <karl@gnu.org>
20761
20762         * config/srclist.txt: break link for vasnprintf.c.
20763
20764 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
20765
20766         Port obstack to the AS/400, where pointers are 16 bytes wide and
20767         you cannot cast an integer to a valid pointer.  This patch is
20768         currently waiting to be integrated into glibc; see
20769         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
20770
20771         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
20772         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
20773         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
20774         (struct obstack): temp member is now a union of a pointer and
20775         an integer, instead of an integer.  All integer uses changed.
20776         This does not affect the physical layout of struct obstack,
20777         except on hosts (like the AS/400) where the size or alignment of
20778         void * is greater than that of ptrdiff_t.
20779         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
20780         __STDC__)]: Store temporary in pointer member of union, not
20781         integer member.
20782         * lib/obstack.c: Include <stddef.h>, for offsetof.
20783         (struct fooalign): Remove; it doesn't need a name.
20784         (union fooround): Change double to long double, and add void *.
20785         (DEFAULT_ALIGNMENT): Use offsetof to compute.
20786         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
20787         not a macro.  Hence the values are always int; so remove all
20788         casts-to-int in uses.
20789
20790 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
20791
20792         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
20793         we can get this patch merged into glibc.
20794
20795 2004-05-17  Derek R. Price  <derek@ximbiot.com>
20796             Paul Eggert  <eggert@cs.ucla.edu>
20797
20798         * m4/argp: Depend on alloca.
20799
20800 2004-05-17  Derek R. Price  <derek@ximbiot.com>
20801             Paul Eggert  <eggert@cs.ucla.edu>
20802
20803         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
20804         freecoding.
20805
20806 2004-05-17  Bruno Haible  <bruno@clisp.org>
20807
20808         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
20809         precision that consists of a '.' followed by an empty digit string.
20810         Patch by Tor Lillqvist <tml@iki.fi>.
20811
20812 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
20813
20814         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
20815         for backward compatibility with older code.  We need our own
20816         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
20817         it under some other name, and our alloca.h will define it.
20818
20819 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
20820             Derek Price  <derek@ximbiot.com>
20821
20822         * lib/alloca.c: Include <alloca.h>, to get our interface.
20823         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
20824         include <alloca.h> first.  Use C89 prototype for alloca; this
20825         requires including <stddef.h> for size_t.  Use extern "C" if C++.
20826         Use #elif for simplicity, since we can assume C89 now.
20827         Don't try to source the system alloca.h since it will not be found
20828         and to prevent recursively including its replacement.
20829         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
20830         * lib/regex.c: Likewise.
20831
20832 2004-05-16  Derek Price  <derek@ximbiot.com>
20833             Paul Eggert  <eggert@cs.ucla.edu>
20834
20835         getline cleanup.  This changes the getndelim2 API: both order of
20836         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
20837         no delimiter).
20838
20839         * lib/getline.c: Don't include stddef.h or stdio.h, since our
20840         interface does that.
20841         (getline): Always use getdelim, so that we don't have two
20842         copies of this code.
20843         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
20844         if available.
20845         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
20846         (GETNDELIM2_MAXIMUM): New macro.
20847         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
20848         instead of the old practice of delim2==0.  All callers changed.
20849         Return -1 on overflow, instead of returning junk.
20850         Do not set *linesize unless allocation succeeds.
20851         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
20852         that we include sys/types.h.
20853         * lib/getnline.h: Likewise.
20854         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
20855         (getndelim2): Reorder arguments.
20856         * lib/getnline.c (getnline, getndelim):
20857         Don't discard the NMAX argument.
20858         (getnline): Invoke getndelim, to avoid code duplication.
20859         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
20860         of (size_t) -1 by callers of the getnline family.
20861
20862 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
20863
20864         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
20865         Check for gettimeofday.
20866         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
20867         Check for settimeofday, stime.
20868
20869 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
20870
20871         * lib/nanosleep.c (suspended): Change its type from int to
20872         sig_atomic_t volatile.
20873         (first_call): Make it private to rpl_nanosleep, and have it
20874         be zero initially as that's a bit faster.
20875         (my_usleep): Round up fractional times instead of truncating them,
20876         as this is the usual meaning for 'sleep'.
20877
20878         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
20879         doesn't work.
20880         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
20881         (ENOSYS): Define if not defined.
20882         (settime): Fall back on stime if it exists and settimeofday fails.
20883         But don't bother with fallbacks if a method fails with errno == EPERM.
20884
20885 2004-05-11  Jim Meyering  <jim@meyering.net>
20886
20887         Prior to this change, the save_cwd caller required read access to the
20888         current directory on most systems (ones with the fchdir function).
20889
20890         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
20891         fails, try write-only, and finally, resort to using xgetcwd.
20892
20893 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
20894
20895         * lib/obstack.c, obstack.h: Import changes from libc.
20896
20897 2004-04-28  Bruno Haible  <bruno@clisp.org>
20898
20899         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
20900         also implicitly appends .exe to executables.
20901         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
20902         accepts Windows pathnames.
20903         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
20904         Treat Cygwin like Windows, since it now accepts Windows pathnames.
20905         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
20906         Treat Cygwin like Windows, since it now accepts Windows pathnames.
20907         Reported by Derek Robert Price <derek@ximbiot.com>.
20908
20909 2004-04-21  Karl Berry  <karl@gnu.org>
20910
20911         * config/srclist.txt (localcharset.c): break sync.
20912
20913 2004-04-20  Paul Eggert  <eggert@twinsun.com>
20914
20915         * m4/host-os.m4: Add a copyright notice.
20916
20917 2004-04-20  Jim Meyering  <jim@meyering.net>
20918
20919         Change UTILS_ to gl_ in AC_DEFINE'd names.
20920         Change utils_- and jm_-prefixed variables, too.
20921         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
20922         UTILS_FUNC_MKDIR_TRAILING_SLASH.
20923         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
20924
20925         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
20926         Don't emit trailing blanks.
20927         Also rename jm_-prefixed variables to have gl_ prefix.
20928
20929         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
20930         Also rename jm_-prefixed variables to have gl_ prefix.
20931
20932         * m4/jm-macros.m4: Reflect the renamings.
20933         * m4/prereq.m4: Likewise.
20934
20935 2004-04-20  Jim Meyering  <jim@meyering.net>
20936
20937         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
20938         memory.
20939
20940 2004-04-20  Jim Meyering  <jim@meyering.net>
20941             Bruno Haible  <bruno@clisp.org>
20942
20943         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
20944         memory when realloc fails.
20945
20946 2004-04-19  Jim Meyering  <jim@meyering.net>
20947
20948         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
20949         now that readutmp.c may call `free (0)'.
20950
20951 2004-04-19  Bruno Haible  <bruno@clisp.org>
20952
20953         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
20954         * m4/inttypes_h.m4: Likewise.
20955         * m4/stdint_h.m4: Likewise.
20956         * m4/intmax_t.m4: Likewise.
20957         * m4/uintmax_t.m4: Likewise.
20958
20959 2004-04-18  Jim Meyering  <jim@meyering.net>
20960
20961         * m4/prereq.m4: Don't forbid jm_ prefix.
20962
20963         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
20964         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
20965         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
20966         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
20967         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
20968         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
20969         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
20970         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
20971         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
20972         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
20973         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
20974         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
20975         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
20976         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
20977         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
20978         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
20979         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
20980         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
20981         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
20982
20983 2004-04-18  Jim Meyering  <jim@meyering.net>
20984
20985         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
20986         failure, don't leak memory and do call END_UTMP_ENT.
20987
20988 2004-04-16  Jim Meyering  <jim@meyering.net>
20989
20990         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
20991         coreutils' stat program.
20992         (gl_PREREQ): Don't require jm_PREREQ_STAT.
20993
20994 2004-04-11  Paul Eggert  <eggert@twinsun.com>
20995
20996         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
20997         C89.
20998         (CHAR_BIT): Remove, since we assume C89.
20999         Include <stdint.h> if available, as per current Autoconf CVS advice.
21000
21001 2004-03-31  Jim Meyering  <jim@meyering.net>
21002
21003         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
21004         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
21005         * m4/xalloc.m4: Likewise.
21006
21007 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21008
21009         Merge from coreutils.
21010
21011         * m4/inttostr.m4: New file.
21012         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
21013         Require AM_STDBOOL_H and gl_TIMESPEC instead.
21014         Require gl_CLOCK_TIME.
21015         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
21016
21017 2004-03-30  Paul Eggert  <eggert@twinsun.com>
21018
21019         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
21020         not bool, to be more consistent with Unix conventions.
21021         Suggested by Bruno Haible.
21022
21023         Merge from coreutils.
21024
21025         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
21026         * lib/umaxtostr.c: New files.
21027
21028         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
21029         the usual <time.h> dance.
21030         (get_date): Change signature to support fractional time stamps.
21031         All callers changed.
21032         * lib/getdate.y: Include "getdate.h" first, as we can now
21033         assume C89 and don't need to worry about 'const'.
21034         Similarly, include "unlocked-io.h" near start, not in middle.
21035         Include <limits.h>.
21036         (textint.value): Use long int rather than int.
21037         (textint.digits): Use size_t rather than int.
21038         (BILLION, LOG10_BILLION): New constants.
21039         (parser_control): New member rel_ns.  Members day_ordinal,
21040         time_zone, month, day, hour, minutes, rel_year, rel_month,
21041         rel_day, rel_hour, rel_minutes, rel_seconds
21042         are now long int, not int.  Member seconds is now struct timespec,
21043         not int.  New member timespec_seen.  Members dates_seen, days_seen,
21044         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
21045         not int.
21046         (%union.intval): Now long int, not int.
21047         New member timespec.
21048         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
21049         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
21050         (spec): Now is a timespec or an item list.
21051         (timespec, items): New nonterminals.
21052         (time, rel, relunit, number, get_date):
21053         Add support for fractional seconds.
21054         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
21055         (gmtime, localtime, mktime): Remove decls; not needed with C89.
21056         (to_hour): First arg is now long int, not int.
21057         (to_year): Returns long int, not int.
21058         Don't treat year -70 like 70.
21059         (tm_diff): Returns long int, not int.
21060         (lookup_word): Use bool instead of int when appropriate.
21061         (yylex): Use size_t for count, not int.
21062         Detect overflow when parsing large integer constants.
21063         Add support for fractions.
21064         (get_date): Make pointers 'const' if possible.
21065         Use more-portable code to detect integer overflow.
21066         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
21067         Don't use ctime; it's not reliable if the year has >4 digits.
21068
21069         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
21070         This is for compatibility with BSD.
21071
21072         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
21073         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
21074         From coreutils' system.h.
21075
21076         * lib/userspec.c: Don't include "posixver.h".
21077         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
21078         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
21079         compatible extension.  Simplify code by removing a boolean int
21080         that was always nonzero if a string was nonnull.
21081
21082 2004-03-30  Jim Meyering  <jim@meyering.net>
21083
21084         Merge from coreutils.
21085
21086         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
21087         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
21088         on some systems one must include <grp.h> before it.
21089         Reported by Christian Krackowizer.
21090
21091 2004-03-30  Jim Meyering  <jim@meyering.net>
21092
21093         Merge from coreutils.
21094
21095         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
21096
21097         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
21098         an empty input stream.
21099
21100         * lib/readtokens.c: Include <stdbool.h>.
21101         (readtoken): Use `size_t' rather than int/long.
21102         All callers adjusted.
21103         Use `bool' rather than `int' where appropriate.
21104         Use memset rather than an explicit loop.
21105         Use x2nrealloc rather than xrealloc.
21106         Allow the use of `\0' as a delimiter.
21107         (readtokens): Likewise.
21108         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
21109
21110 2004-03-30  Jim Meyering  <jim@meyering.net>
21111
21112         * m4/realloc.m4: Remove file, since now it does no more than
21113         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
21114         the `configure.ac' section of module/realloc.
21115         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
21116
21117 2004-03-30  Bruno Haible  <bruno@clisp.org>
21118
21119         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
21120         nonnull.
21121
21122 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21123
21124         Merge changes to getloadavg.c from coreutils and Emacs.
21125
21126         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
21127         Define to an expression, not to the empty string.
21128         Include cloexec.h and xalloc.h.
21129         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
21130         Use set_cloexec_flag rather than rolling our own.
21131         * lib/cloexec.c, lib/cloexec.h: New files.
21132
21133 2004-03-29  Paul Eggert  <eggert@twinsun.com>
21134
21135         * m4/cloexec.m4: New file.
21136
21137 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21138
21139         * lib/getopt.h: Sync with libc CVS.
21140
21141 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21142             Bruno Haible  <bruno@clisp.org>
21143
21144         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
21145         mbswidth.
21146
21147 2004-03-18  Paul Eggert  <eggert@twinsun.com>
21148             Bruno Haible  <bruno@clisp.org>
21149
21150         * lib/mbswidth.h: Include <wchar.h> only if
21151         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
21152         <wchar.h>.
21153         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
21154
21155 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21156
21157         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
21158         Sync with libc CVS.
21159         * lib/getopt_int.h: New file, also synced from libc.
21160
21161 2004-03-09  Paul Eggert  <eggert@twinsun.com>
21162
21163         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
21164         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
21165         Bring back getopt.c, getopt.h, getopt1.c.
21166
21167 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21168
21169         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
21170         All uses changed.  Check for sa_sigaction member; this fixes
21171         a bug first reported by Jason Andrade in
21172         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21173
21174 2004-03-07  Paul Eggert  <eggert@twinsun.com>
21175
21176         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
21177         '#if' expressions.  Unlike the code it replaces, it does not
21178         depend on (defined _SC_PAGESIZE).  However, it does depend on
21179         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
21180         first reported by Jason Andrade in
21181         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
21182
21183 2004-02-25  Simon Josefsson  <jas@extundo.com>
21184
21185         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
21186
21187 2004-02-25  Simon Josefsson  <jas@extundo.com>
21188
21189         * lib/strdup.h: New file.
21190         * lib/strdup.c: Include it.
21191         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
21192         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
21193
21194 2004-02-23  Karl Berry  <karl@gnu.org>
21195
21196         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
21197         (from fencepost.gnu.org:/gd/gnuorg).
21198
21199 2004-02-23  Karl Berry  <karl@gnu.org>
21200
21201         * config/srclistvars.sh (GNUORG) [karl]: redefine.
21202         * config/srclist.txt: add maintain/standards documents.
21203
21204 2004-02-18  Bruno Haible  <bruno@clisp.org>
21205
21206         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
21207         Reported by Derek Robert Price <derek@ximbiot.com>.
21208
21209 2004-02-16  Karl Berry  <karl@gnu.org>
21210
21211         * config/mkinstalldirs, install-sh: update from automake.
21212
21213 2004-02-06  Karl Berry  <karl@gnu.org>
21214
21215         * m4/po.m4: update from gettext 0.14.1.
21216
21217 2004-02-06  Karl Berry  <karl@gnu.org>
21218
21219         * lib/config.charset: update from gettext 0.14.1.
21220
21221 2004-02-05  Paul Eggert  <eggert@twinsun.com>
21222
21223         Add comments and code, prompted by suggestions from Bruno Haible
21224         for sh-quote.
21225         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
21226         describing the enum quoting_style values.
21227         * lib/quotearg.c (quotearg_alloc): New function.
21228         (quotearg_buffer_restyled): Treat lone { and } as special.
21229         Treat = as special.  Work around bug with older shells
21230         that "see" a '\' that is really the 2nd byte of a multibyte char.
21231         Quote empty string with shell_quoting_style.
21232
21233 2004-02-03  Bruno Haible  <bruno@clisp.org>
21234
21235         * m4/pipe.m4: New file, from GNU gettext.
21236
21237 2004-02-03  Bruno Haible  <bruno@clisp.org>
21238
21239         * lib/pipe.h: New file, from GNU gettext.
21240         * lib/pipe.c: New file, from GNU gettext.
21241
21242 2004-01-27  Bruno Haible  <bruno@clisp.org>
21243
21244         * m4/execute.m4: New file, from GNU gettext.
21245
21246 2004-01-27  Bruno Haible  <bruno@clisp.org>
21247
21248         * lib/execute.h: New file, from GNU gettext.
21249         * lib/execute.c: New file, from GNU gettext.
21250         * lib/w32spawn.h: New file, from GNU gettext.
21251
21252 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21253
21254         Merge from diffutils.
21255
21256         * lib/file-type.c (file_type): Add typed memory objects.
21257         * lib/file-type.h (S_TYPEISTMO): New macro.
21258
21259         * lib/c-stack.h (c_stack_action): Remove argv argument.
21260         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
21261         (die): Don't calculate message unless segv_action returns.
21262         (get_stack_location, min_address_from_argv, max_address_from_argv,
21263         volatile stack_base, volatile_stack_size): Remove.
21264         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
21265         that every segmentation violation is a stack overflow.  (Ouch!)
21266         See Debian bug 136249 (still outstanding) for more info about why
21267         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
21268
21269 2004-01-24  Paul Eggert  <eggert@twinsun.com>
21270
21271         Exit-status fix from coreutils.
21272
21273         Use exit_failure consistently in place of EXIT_FAILURE,
21274         so that program exit statuses are consistent on failure.
21275
21276         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
21277         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
21278         * lib/argmatch.h: Comment fix to match the above.
21279         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
21280         Now a macro referring to exit_failure, instead of a separate
21281         variable.  Include "exitfail.h" to get it.
21282         * lib/xstrtol.h: Include "exitfail.h".
21283         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
21284
21285         * lib/long-options.c (parse_long_options): Use prototype
21286         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
21287         for clarity.
21288
21289 2004-01-21  Jim Meyering  <jim@meyering.net>
21290
21291         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
21292         so as not to conflict with a different-sized __mktime_internal
21293         function in GNU libc.
21294         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
21295         Problem building statically-linked `ls' reported by Michael Brunnbauer.
21296
21297 2004-01-20  Karl Berry  <karl@gnu.org>
21298
21299         * config/config.guess: update from config.
21300
21301         * config/srclistvars.sh: GNUWWWLICENSES for karl.
21302
21303 2004-01-20  Bruno Haible  <bruno@clisp.org>
21304
21305         Safer stack allocation.
21306         * lib/setenv.c: Include allocsa.h.
21307         (alloca): Remove fallback definition.
21308         (freea): Remove macro.
21309         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
21310         instead of freea.
21311
21312 2004-01-20  Bruno Haible  <bruno@clisp.org>
21313
21314         * m4/eealloc.m4: New file, from GNU gettext.
21315
21316 2004-01-20  Bruno Haible  <bruno@clisp.org>
21317
21318         * m4/allocsa.m4: New file, from GNU gettext.
21319
21320 2004-01-20  Bruno Haible  <bruno@clisp.org>
21321
21322         * lib/xallocsa.h: New file, from GNU gettext.
21323         * lib/xallocsa.c: New file, from GNU gettext.
21324
21325 2004-01-20  Bruno Haible  <bruno@clisp.org>
21326
21327         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
21328
21329 2004-01-20  Bruno Haible  <bruno@clisp.org>
21330
21331         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
21332         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
21333         specially.
21334
21335 2004-01-20  Bruno Haible  <bruno@clisp.org>
21336
21337         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
21338         patch.
21339
21340 2004-01-20  Bruno Haible  <bruno@clisp.org>
21341
21342         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
21343
21344 2004-01-20  Bruno Haible  <bruno@clisp.org>
21345
21346         * lib/eealloc.h: New file.
21347
21348 2004-01-20  Bruno Haible  <bruno@clisp.org>
21349
21350         * lib/binary-io.h: Avoid warnings on Cygwin.
21351
21352 2004-01-20  Bruno Haible  <bruno@clisp.org>
21353
21354         * lib/allocsa.h: New file, from GNU gettext.
21355         * lib/allocsa.c: New file, from GNU gettext.
21356
21357 2004-01-18  Karl Berry  <karl@gnu.org>
21358
21359         * doc/gpl.texi, doc/lgpl.texi: new files.
21360
21361 2004-01-18  Karl Berry  <karl@gnu.org>
21362
21363         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
21364         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
21365
21366 2004-01-15  Paul Eggert  <eggert@twinsun.com>
21367
21368         Merge from coreutils.
21369
21370         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
21371         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
21372         (gl_DEFAULT_POSIX2_VERSION): Move
21373         the documentation from 'configure' into 'config.hin',
21374         so that 'configure --help' isn't burdened by it and
21375         we don't have to worry about its formatting there.
21376         Reword the documentation so that it's more succinct
21377         and can be run together into a single paragraph.
21378         * m4/same.m4 (gl_SAME): Check for pathconf.
21379
21380 2004-01-15  Paul Eggert  <eggert@twinsun.com>
21381
21382         Merge from coreutils.
21383
21384         * lib/posixver.c: Include posixver.h.
21385
21386         * lib/same.c: Include <stdbool.h>, <limits.h>.
21387         (_POSIX_NAME_MAX): Define if not defined.
21388         (MIN): New macro.
21389         (same_name): If file names are silently truncated, report
21390         that the file names are the same if they are the same after
21391         the silent truncation.
21392
21393         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
21394         conversion function.
21395         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
21396         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
21397         longer needed.
21398
21399 2004-01-15  Jim Meyering  <jim@meyering.net>
21400
21401         Merge from coreutils.
21402
21403         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
21404         if no library is required.
21405         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
21406         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
21407         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
21408         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
21409         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
21410         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
21411         value, $ac_cv_search_crypt, if it's "none required".
21412         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
21413         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
21414         not gl_FUNC_GETLOADAVG.
21415         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
21416         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
21417
21418 2004-01-15  Jim Meyering  <jim@meyering.net>
21419
21420         Merge from coreutils.
21421
21422         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
21423         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
21424         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
21425
21426         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
21427         optional configure-time default.
21428
21429         * lib/version-etc.c (version_etc_copyright): Update copyright date.
21430
21431         * lib/xreadlink.c (xreadlink): Correct outdated comment.
21432
21433 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
21434
21435         Merge from coreutils.
21436
21437         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
21438         value, $ac_cv_search_nanosleep, if it's "none required".
21439
21440 2004-01-14  Paul Eggert  <eggert@twinsun.com>
21441
21442         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
21443         with like-named macro in fnmatch.c.
21444         (EXT): Use an internal constant instead.
21445
21446         Merge fnmatch patches from glibc.
21447         * lib/fnmatch.c (mbsinit): Remove define.
21448         Add libc_hidden_ver (__fnmatch, fnmatch).
21449         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
21450         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
21451
21452 2004-01-14  Karl Berry  <karl@gnu.org>
21453
21454         * config/install-sh: update from automake.
21455
21456 2004-01-13  Karl Berry  <karl@gnu.org>
21457
21458         * config/install-sh: update from automake.
21459
21460 2004-01-09  Karl Berry  <karl@gnu.org>
21461
21462         * config/install-sh: update from automake.
21463
21464 2004-01-05  Karl Berry  <karl@gnu.org>
21465
21466         * config/config.{sub,guess}: update from config.
21467
21468 2003-12-31  Karl Berry  <karl@gnu.org>
21469
21470         * config/depcomp: update from automake.
21471
21472 2003-12-14  Karl Berry  <karl@gnu.org>
21473
21474         * lib/config.charset: update from gettext-runtime.
21475
21476 2003-12-03  Paul Eggert  <eggert@twinsun.com>
21477
21478         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
21479         Bug reported by Alfred M. Szmidt.
21480
21481 2003-12-03  Bruno Haible  <bruno@clisp.org>
21482
21483         * m4/gettext.m4: Upgrade from gettext-0.13.
21484         * m4/po.m4: Upgrade from gettext-0.13.
21485         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
21486         * m4/intmax.m4: New file, from gettext-0.13.
21487         * m4/printf-posix.m4: New file, from gettext-0.13.
21488
21489 2003-11-29  Karl Berry  <karl@gnu.org>
21490
21491         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
21492
21493 2003-11-25  Paul Eggert  <eggert@twinsun.com>
21494             Bruno Haible  <bruno@clisp.org>
21495
21496         * lib/printf-parse.h: Don't include sys/types.h.
21497         (ARG_NONE): New macro.
21498         (char_directive): Change type of *arg_index fields to size_t.
21499         * lib/printf-parse.c: Don't include sys/types.h.
21500         (SSIZE_MAX): Remove macro.
21501         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
21502         Remove unnecessary overflow check.
21503         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
21504         fields.
21505
21506 2003-11-25  Bruno Haible  <bruno@clisp.org>
21507
21508         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
21509
21510 2003-11-25  Bruno Haible  <bruno@clisp.org>
21511
21512         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
21513         gt_TYPE_SSIZE_T.
21514
21515 2003-11-24  Paul Eggert  <eggert@twinsun.com>
21516
21517         * modules/alloca: Remove dependency on xalloc.
21518
21519 2003-11-24  Paul Eggert  <eggert@twinsun.com>
21520
21521         * lib/alloca.c: Remove dependency on xalloc module.
21522         (xalloc_die): Remove.
21523         (memory_full) [!defined emacs]: New macro.
21524         [!defined emacs]: Don't include xalloc.h.
21525         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
21526         address arithmetic overflows.  Change datatypes a bit to avoid
21527         unnecessary casts.
21528
21529 2003-11-22  Jim Meyering  <jim@meyering.net>
21530
21531         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
21532         s/size/size_t/.
21533
21534 2003-11-21  Karl Berry  <karl@gnu.org>
21535
21536         * config/config.{sub,guess}: update from config.
21537
21538 2003-11-18  Karl Berry  <karl@gnu.org>
21539
21540         * config/config.{sub,guess}: update from config.
21541
21542         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
21543
21544 2003-11-17  Paul Eggert  <eggert@twinsun.com>
21545
21546         * README: Mention that S+T cannot overflow if S is the size of
21547         an existing object and T is sufficiently small.
21548
21549 2003-11-17  Jim Meyering  <jim@meyering.net>
21550
21551         On systems without utime and without a utimes function capable of
21552         dealing with a NULL struct utimbuf* argument, this utime replacement
21553         could -- in unusual circumstances -- leak a file descriptor.
21554         * lib/utime.c: Include <unistd.h> and <errno.h>.
21555         (utime_null): Be sure to close `fd' and to preserve errno.
21556         Reported by Geoff Collyer via Arnold Robbins.
21557
21558 2003-11-17  Bruno Haible  <bruno@clisp.org>
21559
21560         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
21561         (Depends-on): Add xsize.
21562
21563 2003-11-17  Bruno Haible  <bruno@clisp.org>
21564
21565         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
21566
21567 2003-11-17  Bruno Haible  <bruno@clisp.org>
21568
21569         * lib/vasnprintf.c (alloca): Remove fallback definition.
21570         (freea): Remove definition.
21571         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
21572         Reported by Paul Eggert.
21573
21574 2003-11-16  Paul Eggert  <eggert@twinsun.com>
21575             Bruno Haible  <bruno@clisp.org>
21576
21577         Protect against address arithmetic overflow.
21578         * lib/printf-args.h: Include stddef.h.
21579         (arguments): Change type of field 'count' to size_t.
21580         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
21581         'unsigned int' where appropriate.
21582         * lib/printf-parse.h: Include sys/types.h.
21583         (char_directive): Change type of *arg_index fields to ssize_t.
21584         (char_directives): Change type of fields 'count', max_*_length to
21585         size_t.
21586         * lib/printf-parse.c: Include sys/types.h and xsize.h.
21587         (SSIZE_MAX): Define fallback value.
21588         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
21589         instead of 'int' where appropriate. Check a_allocated, d_allocated
21590         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
21591         * lib/vasnprintf.c: Include xsize.h.
21592         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
21593         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
21594         overflow. Avoid wraparound when converting a width or precision from
21595         decimal to binary.
21596
21597 2003-11-16  Bruno Haible  <bruno@clisp.org>
21598
21599         Update from GNU gettext.
21600         * lib/printf-parse.c: Generalize to it can be compiled for wide
21601         strings.
21602         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
21603         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
21604         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
21605         SNPRINTF): New macros.
21606         Don't include <alloca.h> if the file is used inside libintl.
21607         (local_wcslen): New function, for Solaris 2.5.1.
21608         (VASNPRINTF): Use it instead of wcslen.
21609
21610 2003-11-16  Bruno Haible  <bruno@clisp.org>
21611
21612         * lib/xsize.h (xmax): New function.
21613         (xsum, xsum3, xsum4): Declare as "pure" functions.
21614
21615 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21616
21617         * modules/xalloc (Files): Undo latest change, since xalloc.h
21618         no longer needs SIZE_MAX or PTRDIFF_MAX.
21619
21620 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21621
21622         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
21623         gl_PTRDIFF_MAX.
21624
21625 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21626
21627         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
21628         "return", to pacify some unknown compiler.  Problem reported
21629         by Joerg Schilling.
21630
21631 2003-11-12  Paul Eggert  <eggert@twinsun.com>
21632
21633         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
21634         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
21635         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
21636         heuristic is just as accurate as far as we know, and it removes a
21637         dependency on size_max.m4 and ptrdiff_max.m4.
21638
21639 2003-11-11  Bruno Haible  <bruno@clisp.org>
21640
21641         * modules/xsize (Files): Add m4/size_max.m4.
21642         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
21643
21644 2003-11-11  Bruno Haible  <bruno@clisp.org>
21645
21646         * m4/size_max.m4: New file.
21647         * m4/ptrdiff_max.m4: New file.
21648         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
21649         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
21650         (gl_XALLOC): Invoke it.
21651
21652 2003-11-11  Bruno Haible  <bruno@clisp.org>
21653
21654         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
21655         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
21656         defined.
21657
21658 2003-11-10  Paul Eggert  <eggert@twinsun.com>
21659
21660         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
21661         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
21662         rejected some allocations of exactly SIZE_MAX - 2 bytes.
21663         From Bruno Haible.
21664         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
21665         not (size_t) -1, since it's defined here.
21666
21667 2003-11-09  Karl Berry  <karl@gnu.org>
21668
21669         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
21670
21671 2003-11-06  Paul Eggert  <eggert@twinsun.com>
21672
21673         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
21674         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
21675         Reject sizes of exactly SIZE_MAX bytes.
21676         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
21677         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
21678
21679 2003-11-05  Bruno Haible  <bruno@clisp.org>
21680
21681         * lib/xsize.h: Include limits.h, to avoid a possible collision with
21682         SIZE_MAX defined in <limits.h> on Solaris.
21683
21684 2003-11-04  Jim Meyering  <jim@meyering.net>
21685
21686         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
21687         variable names, rather than @VAR@.
21688         * modules/poll: Likewise.
21689
21690 2003-11-04  Bruno Haible  <bruno@clisp.org>
21691
21692         * modules/xsize: New file.
21693         * modules/linebreak: Depend on xsize.
21694         * MODULES.html.sh (func_all_modules): Add xsize.
21695
21696 2003-11-04  Bruno Haible  <bruno@clisp.org>
21697
21698         * m4/xsize.m4: New file.
21699
21700 2003-11-04  Bruno Haible  <bruno@clisp.org>
21701
21702         * lib/xsize.h: New file.
21703         * lib/linebreak.c: Include xsize.h.
21704         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
21705         argument for overflow.
21706         Suggested by Paul Eggert.
21707
21708 2003-11-03  Karl Berry  <karl@gnu.org>
21709
21710         * config/config.{guess,sub}: update from config.
21711
21712 2003-11-03  Jim Meyering  <jim@meyering.net>
21713
21714         * modules/userspec (lib_SOURCES): Add userspec.h.
21715         (Include): Add "userspec.h".
21716         Improve description.
21717
21718 2003-11-03  Jim Meyering  <jim@meyering.net>
21719
21720         * lib/userspec.c: Include "userspec.h".
21721         * lib/userspec.h: New file.
21722
21723 2003-11-03  Bruno Haible  <bruno@clisp.org>
21724
21725         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
21726
21727 2003-11-03  Bruno Haible  <bruno@clisp.org>
21728
21729         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
21730         available, to avoid (extremely rare) race condition.
21731         Suggested by Paul Eggert.
21732
21733 2003-11-02  Karl Berry  <karl@gnu.org>
21734
21735         * config/srclist.txt (vasprintf.c): sync broken, sigh.
21736
21737 2003-10-31  Paul Eggert  <eggert@twinsun.com>
21738
21739         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
21740         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
21741         (read_filesystem_list): Set and use me_type_malloced.
21742         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
21743         whatever the type happens to be), for brevity and consistency.
21744         Check for size calculation overflow on Alphas running OSF/1.
21745
21746 2003-10-31  Jim Meyering  <jim@meyering.net>
21747
21748         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
21749
21750         * lib/linebuffer.c: Include <string.h> for declaration of memset.
21751
21752 2003-10-30  Paul Eggert  <eggert@twinsun.com>
21753             Bruno Haible  <bruno@clisp.org>
21754
21755         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
21756         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
21757
21758 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
21759
21760         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
21761         netbsd*-gnu*.  Suggested by Robert Millan.
21762
21763 2003-10-29  Paul Eggert  <eggert@twinsun.com>
21764
21765         * modules/group-member: Depend on stdbool.
21766
21767 2003-10-29  Paul Eggert  <eggert@twinsun.com>
21768
21769         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
21770
21771 2003-10-29  Paul Eggert  <eggert@twinsun.com>
21772
21773         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
21774         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
21775         after the 'gnu' in these cases.  This fixes some bugs in the
21776         previous change, and is based on suggestions by Robert Millan.
21777
21778 2003-10-29  Paul Eggert  <eggert@twinsun.com>
21779
21780         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
21781         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
21782         no longer needed.
21783         * lib/quotearg.c (quotearg_n_options): Use it.
21784         * lib/group-member.c: Include <stdbool.h>.
21785         (free_group_info): Arg is now const *; don't free arg.
21786         (get_group_info): Now returns bool and accepts struct group_info *,
21787         rather than returning a malloc'ed struct group_info *.
21788         All uses changed.  Check for overflow in internal size calculation.
21789
21790         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
21791         rather than xmalloc/xrealloc.
21792         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
21793         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
21794         conformance bug: the old code used a pointer after freeing the
21795         storage that it addressed.
21796         * lib/hash.c (hash_initialize): Simplify the code by using
21797         xalloc_oversized rather than doing it by hand.
21798         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
21799         the buffer preserved.  Use free and xmalloc instead.
21800         * lib/quotearg.c (quotearg_n_options): Likewise.
21801         Use a simpler test for size overflow.  Don't use xalloc_oversized
21802         because unsigned int might be wider than size_t (!); this suggests
21803         that we should switch from unsigned int to size_t for slot numbers.
21804
21805 2003-10-28  Paul Eggert  <eggert@twinsun.com>
21806
21807         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
21808         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
21809         NetBSD kernels.  Requested by Richard Stallman.
21810
21811 2003-10-27  Paul Eggert  <eggert@twinsun.com>
21812
21813         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
21814         to allocate the returned structure.  Do not allocate a subarray,
21815         as x2nrealloc will do that.
21816         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
21817         instead of xnrealloc.
21818         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
21819
21820 2003-10-27  Bruno Haible  <bruno@clisp.org>
21821
21822         * lib/stdbool_.h: Better support for BeOS.
21823
21824 2003-10-26  Paul Eggert  <eggert@twinsun.com>
21825
21826         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
21827         now uses inline.
21828
21829 2003-10-26  Paul Eggert  <eggert@twinsun.com>
21830
21831         * lib/xalloc.h (xalloc_oversized): New static inline function, for
21832         callers that want to do their own size-overflow checking.  Include
21833         <stdbool.h>, since xalloc_oversized returns bool.
21834         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
21835         to use xalloc_oversized.
21836
21837         Add two functions x2realloc, x2nrealloc, for programs that grow
21838         arrays dynamically by doubling their sizes.
21839         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
21840         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
21841         New functions.
21842
21843         Port to C99 semantics for 'inline' of external functions.
21844         Bug reported by Bruno Haible.
21845         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
21846         with the old contents of xnmalloc.
21847         (xnmalloc, xmalloc): Use it.
21848         (xnrealloc_inline): New static inline function,
21849         with the old contents of xnrealloc.
21850         (xnrealloc, xrealloc): Use it.
21851
21852         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
21853         that.
21854
21855 2003-10-26  Karl Berry  <karl@gnu.org>
21856
21857         * config/srclist.txt (COPYING.DOC): no longer available from
21858         /gd/gnuorg; don't know where the ultimate source is.
21859
21860 2003-10-25  Paul Eggert  <eggert@twinsun.com>
21861
21862         Fix several address-calculation bugs in the hash modules,
21863         plus some minor code cleanup.
21864
21865         * lib/hash.h: Include <stdbool.h>, for bool.
21866         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
21867         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
21868         hash_get_n_entries, hash_get_max_bucket_length,
21869         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
21870         hash_rehash): Use size_t rather than unsigned.
21871         * lib/hash.c (struct hash_table, hash_get_n_buckets,
21872         hash_get_n_buckets_used, hash_get_n_entries,
21873         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
21874         hash_get_entries, hash_do_for_each, hash_string, is_prime,
21875         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
21876         Likewise.
21877         (SIZE_MAX): Define if not defined.
21878         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
21879         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
21880         hash_print):
21881         Use const * when possible.
21882         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
21883         (check_tuning): Fix bug: if tuning parameters were very close to
21884         0 or 1, rounding errors could have caused subscript violations.
21885         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
21886         (hash_initialize): Add 'fail:' label
21887         to free table and return NULL, and use it to simplify code.
21888         Use calloc rather than clearing the storage ourself.
21889         (hash_initialize, hash_rehash): Check for arithmetic overflow in
21890         buffer size calculations.
21891         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
21892         Include <stddef.h>, for size_t.
21893         * lib/hash-pjw.c (hash_pjw): Likewise.
21894         Switch to method described by Bruno Haible.
21895         Include <limits.h>, for CHAR_BIT.
21896         (SIZE_BITS): New macro.
21897
21898 2003-10-23  Paul Eggert  <eggert@twinsun.com>
21899
21900         * m4/getline.m4 (AM_FUNC_GETLINE):
21901         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
21902         hosts.  Problem reported by Derek Robert Price in
21903         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
21904         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
21905         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
21906
21907 2003-10-21  Paul Eggert  <eggert@twinsun.com>
21908
21909         * lib/getndelim2.c (getndelim2): When size calculation overflows,
21910         ceiling the allocation at NMAX bytes rather than silently
21911         discarding input bytes before NMAX is reached.  This makes
21912         a difference only if NMAX exceeds SIZE_MAX / 2.
21913
21914         * lib/obstack.c: Merge from glibc.
21915         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
21916         Add libc_hidden_def (_obstack_newchunk).
21917         (_obstack_free) [! defined _LIBC]: Remove.
21918         [defined _LIBC]: Make a strong alias from obstack_free, rather than
21919         a clone of the function body.
21920         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
21921         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
21922
21923         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
21924         glibc.
21925         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
21926         arg to memcpy.
21927
21928         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
21929         (obstack_ptr_grow_fast, obstack_int_grow_fast):
21930         Don't use lvalue casts, as GCC plans to remove support for them
21931         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
21932         was also present in the non-GCC version, indicating that this
21933         code had always been buggy and had never been widely used.
21934         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
21935         Use the fast variant of each macro, rather than copying the
21936         definiens of the fast variant; that way, we'll be more likely to
21937         catch future bugs in the fast variants.
21938
21939 2003-10-20  Bruno Haible  <bruno@clisp.org>
21940
21941         * modules/wait-process: New file.
21942         * MODULES.html.sh (func_all_modules): Add wait-process.
21943
21944 2003-10-20  Bruno Haible  <bruno@clisp.org>
21945
21946         * m4/wait-process.m4: New file.
21947
21948 2003-10-20  Bruno Haible  <bruno@clisp.org>
21949
21950         * lib/wait-process.h: New file, from GNU gettext.
21951         * lib/wait-process.c: New file, from GNU gettext.
21952
21953 2003-10-19  Jim Meyering  <jim@meyering.net>
21954
21955         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
21956         HPUX 10.20.
21957
21958 2003-10-18  Karl Berry  <karl@gnu.org>
21959
21960         * config/config.guess: update from config.
21961
21962 2003-10-16  Paul Eggert  <eggert@twinsun.com>
21963
21964         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
21965         (getgroups): First arg is int, not size_t.
21966         Don't let 'free' mangle errno.
21967
21968 2003-10-16  Paul Eggert  <eggert@twinsun.com>
21969
21970         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
21971
21972 2003-10-16  Karl Berry  <karl@gnu.org>
21973
21974         * config/config.{guess,sub}: update from config.
21975
21976 2003-10-16  Jim Meyering  <jim@meyering.net>
21977
21978         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
21979         memcpy.
21980
21981 2003-10-15  Paul Eggert  <eggert@twinsun.com>
21982
21983         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
21984         (SIZE_MAX): Remove.
21985         (new_exclude, add_exclude_file): Initial size no longer needs to
21986         be a power of 2.
21987         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
21988         our own address arithmetic overflow checking.
21989
21990         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
21991         (fnmatch): Do not alloca more than 2000 wide characters;
21992         instead, use malloc for large buffers.
21993         Check for address arithmetic overflow, and return -1
21994         with errno set to ENOMEM in that case.
21995         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
21996         (NEW_PATTERN): Do not alloca more than 8000 bytes;
21997         instead, return -1.  Check for address arithmetic overflow.
21998
21999 2003-10-14  Paul Eggert  <eggert@twinsun.com>
22000
22001         Handle invalid suffixes and overflow independently, so that
22002         callers can treat them independently as needed.  Fix some bugs in
22003         suffix handling, e.g., "100k@" was not diagnosed as an invalid
22004         suffix for a human-readable blocksize.  The major caller-visible
22005         change is the addition of a new
22006         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
22007         that both overflow and suffix chars were found.
22008
22009         * lib/human.c (humblock): Don't check separately for invalid suffix
22010         char; that is xstrtoumax's job (now that its bug is fixed).
22011         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
22012         INTMAX_MAX]: New macros.
22013         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
22014         TYPE_MAXIMUM): New macros.
22015         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
22016         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
22017         if overflow occurs, as it's what __strtol does and it's more useful
22018         in practice.
22019         (__xstrtol): If __strtol reports some error other than ERANGE,
22020         reflect it to the caller as LONGINT_INVALID.  If it reports
22021         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
22022         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
22023         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
22024         value.
22025         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
22026         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
22027         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
22028         [defined UINTMAX_MAX]: New macros.
22029
22030 2003-10-14  Bruno Haible  <bruno@clisp.org>
22031
22032         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
22033
22034 2003-10-14  Bruno Haible  <bruno@clisp.org>
22035
22036         * m4/sig_atomic_t: New file, from GNU gettext.
22037         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
22038
22039 2003-10-14  Bruno Haible  <bruno@clisp.org>
22040
22041         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
22042         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
22043         Also use volatile where needed.
22044
22045 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22046
22047         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
22048         Change maintainer from Bruno Haible to 'all'.
22049
22050 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22051
22052         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
22053
22054 2003-10-12  Paul Eggert  <eggert@twinsun.com>
22055
22056         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
22057         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
22058         and define in terms of the other primitives.
22059         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
22060         (SIZE_MAX): Define if not already defined.
22061         (array_size_overflow): New function.
22062         (xalloc_die): Abort instead of exiting if 'error' returns.
22063         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
22064         (xmalloc, xrealloc): Use them.
22065         (xcalloc): Check for address arithmetic overflow.
22066         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
22067         a bit faster than strcpy.
22068
22069 2003-10-10  Simon Josefsson  <jas@extundo.com>
22070
22071         * modules/argp (Depends-on): Add restrict and strcase.
22072
22073 2003-10-10  Simon Josefsson  <jas@extundo.com>
22074
22075         * m4/argp.m4: Add AC_C_INLINE.
22076
22077 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22078
22079         Merge getpass from libc, plus a few fixes.
22080
22081         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
22082         Include <stdbool.h>.
22083         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
22084         __fsetlocking to empty.
22085         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
22086         do include <bits/libc-lock.h>.
22087         Do not include <fcntl.h>; not needed.
22088         [_LIBC]: Include <wchar.h>.
22089         (NOTCANCEL_MODE): New macro.
22090         (flockfile, funlockfile) [_LIBC]: New macros.
22091         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
22092         [!_LIBC]: New macros.
22093         (call_fclose): New function.
22094         (getpass): Use it.  Save tty stream separately; this simplifies the
22095         code and makes it more reliable if stdin happens to equal stdout.
22096         Invoke __fsetlocking on tty.
22097         Handle thread cancellation if needed.
22098         Namespace cleanup (use __tcgetattr, __getline).
22099         Use bool for Booleans.
22100         [USE_IN_LIBIO]: Handle wide streams.
22101         [!_LIBC]: Unconditionally do the fseek, since we don't know what
22102         stream might go where.
22103
22104         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
22105         doesn't have to include <stdio.h> before us.
22106         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
22107         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
22108         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
22109         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
22110         if not declared, so that we can use getpass.c code from libc without
22111         rewriting it.
22112         (flockfile, ftrylockfile, funlockfile): New macros.
22113
22114 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22115
22116         * modules/getpass: Depend on stdbool.
22117
22118 2003-10-08  Paul Eggert  <eggert@twinsun.com>
22119
22120         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
22121
22122 2003-10-07  Karl Berry  <karl@gnu.org>
22123
22124         * config/config.{guess,sub}: update from config.
22125
22126 2003-10-06  Jim Meyering  <jim@meyering.net>
22127             Bruno Haible  <bruno@clisp.org>
22128
22129         This lets translators provide better translations for the
22130         "Written by ..." part of --version output.
22131         * lib/version-etc.h: Include stdarg.h.
22132         (version_etc_copyright): Declare as readonly.
22133         (version_etc): Make this function variadic with a NULL-terminated list
22134         of author name strings.
22135         (version_etc_va): New declaration.
22136         * lib/version-etc.c: Include stdarg.h, stdlib.h.
22137         (version_etc_copyright): Declare as readonly.
22138         (version_etc_va): New function. Provide a different translatable string
22139         for each possible number of authors < 10. Abbreviate when there are 10
22140         authors or more.
22141         (version_etc): Make this function variadic. Call version_etc_va.
22142         Suggestion from Gary V. Vaughan.
22143
22144         * lib/long-options.h (parse_long_options): Change prototype: the
22145         authors string is moved to the end and becomes variadic.
22146         * lib/long-options.c: Include stdarg.h.
22147         (parse_long_options): Make this function variadic, too.
22148         Call version_etc_va, not version_etc.
22149
22150 2003-10-06  Bruno Haible  <bruno@clisp.org>
22151
22152         * modules/version-etc-2: Remove file.
22153         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
22154
22155 2003-10-06  Bruno Haible  <bruno@clisp.org>
22156
22157         * modules/fatal-signal: New file.
22158         * MODULES.html.sh (func_all_modules): Add fatal-signal.
22159
22160 2003-10-06  Bruno Haible  <bruno@clisp.org>
22161
22162         * m4/fatal-signal.m4: New file.
22163         * m4/signalblocking.m4: New file, from GNU gettext.
22164
22165 2003-10-06  Bruno Haible  <bruno@clisp.org>
22166
22167         * lib/version-etc-2.h: Remove file.
22168         * lib/version-etc-2.c: Remove file.
22169
22170 2003-10-06  Bruno Haible  <bruno@clisp.org>
22171
22172         * lib/fatal-signal.h: New file, from GNU gettext.
22173         * lib/fatal-signal.c: New file, from GNU gettext.
22174
22175 2003-10-05  Paul Eggert  <eggert@twinsun.com>
22176
22177         * README: Rework advice for preventing empty .o files.
22178         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
22179         not <sys/types.h>.
22180
22181 2003-10-04  Karl Berry  <karl@gnu.org>
22182
22183         * lib/argp*: update from libc.
22184
22185 2003-10-04  Karl Berry  <karl@gnu.org>
22186
22187         * config/config.{guess,sub}: update from config.
22188
22189 2003-10-02  Bruno Haible  <bruno@clisp.org>
22190
22191         * modules/lchown (Include): Add lchown.h.
22192         * modules/time_r (Include): Use "..." syntax.
22193         * modules/xgetdomainname (Include): Add xgetdomainname.h.
22194
22195 2003-10-01  Simon Josefsson  <jas@extundo.com>
22196
22197         * MODULES.html.sh (func_all_modules): Move gethostname from section
22198         'based on' to section 'lacking' POSIX:2001.
22199
22200 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
22201
22202         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
22203         to output mode on the same stream.
22204
22205 2003-09-29  Paul Eggert  <eggert@twinsun.com>
22206
22207         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
22208         Fix arg typo in previous patch.
22209
22210 2003-09-28  Jim Meyering  <jim@meyering.net>
22211
22212         * lib/error.c: Correct cpp indentation.
22213
22214 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22215
22216         * modules/free: New file.
22217
22218 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22219
22220         * m4/free.m4: New file.
22221
22222 2003-09-27  Paul Eggert  <eggert@twinsun.com>
22223
22224         * lib/minmax.h (MIN, MAX)
22225         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
22226         Omit the special code that used __typeof__, since we worry that
22227         it could be more trouble than it's worth.  See:
22228         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
22229         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
22230
22231         * lib/free.c: New file.
22232
22233 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
22234
22235         Trivial fixes to Makefile.am parts of module listings.
22236         * modules/strstr: Append strstr.h to lib_SOURCES.
22237         * modules/strcase: Likewise, for strcase.h.
22238
22239 2003-09-27  Karl Berry  <karl@gnu.org>
22240
22241         * config/mkinstalldirs: update from automake.
22242
22243 2003-09-26  Paul Eggert  <eggert@twinsun.com>
22244
22245         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
22246         (error_tail): Do not loop, reallocating temporary buffer, since
22247         the output cannot contain more wide characters than the input
22248         contains bytes, the size must be big enough already.  This avoids
22249         one potential size overflow calculation.  Check for size overflow
22250         when calculating temporary buffer size.  Free temporary buffer
22251         when done, if it was allocated with malloc; this plugs a memory
22252         leak.  Remove casts from void * to pointers, that are no longer
22253         needed now that we're assuming C89 or better.
22254
22255         Merge error changes from glibc.
22256
22257         * lib/error.c, error.h: Update copyright notice header to match glibc.
22258         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
22259         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
22260         Disable cancellation while printing error.
22261         * lib/error.h: Prepend __ to parameter names.
22262
22263 2003-09-26  Jim Meyering  <jim@meyering.net>
22264
22265         * lib/error.c (error_tail): Move some declarations
22266         into inner scope where the local variables are used.
22267
22268 2003-09-26  Bruno Haible  <bruno@clisp.org>
22269
22270         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
22271         stpncpy().
22272         Don't define stpncpy through config.h; it's now done through stpncpy.h.
22273
22274 2003-09-26  Bruno Haible  <bruno@clisp.org>
22275
22276         * lib/stpncpy.h (gnu_stpncpy): New declaration.
22277         (stpncpy): Define as alias for gnu_stpncpy.
22278         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
22279
22280 2003-09-25  Simon Josefsson  <jas@extundo.com>
22281
22282         * lib/xgetdomainname.h: New file.
22283         * lib/xgetdomainname.c: New file.
22284
22285 2003-09-25  Simon Josefsson  <jas@extundo.com>
22286             Bruno Haible  <bruno@clisp.org>
22287
22288         * modules/getdomainname: New file.
22289         * modules/xgetdomainname: New file.
22290         * MODULES.html.sh (func_all_modules): Add getdomainname,
22291         xgetdomainname.
22292
22293 2003-09-25  Simon Josefsson  <jas@extundo.com>
22294             Bruno Haible  <bruno@clisp.org>
22295
22296         * m4/getdomainname.m4: New file.
22297
22298 2003-09-25  Simon Josefsson  <jas@extundo.com>
22299             Bruno Haible  <bruno@clisp.org>
22300
22301         * lib/getdomainname.h: New file.
22302         * lib/getdomainname.c: New file.
22303
22304 2003-09-25  Karl Berry  <karl@gnu.org>
22305
22306         * lib/argp-fmtstream.c, argp-help.c: update from libc.
22307
22308 2003-09-25  Karl Berry  <karl@gnu.org>
22309
22310         * config/install-sh: update from automake.
22311
22312 2003-09-25  Bruno Haible  <bruno@clisp.org>
22313
22314         * modules/version-etc-2: New file, from modules/version-etc with
22315         modifications.
22316         * MODULES.html.sh (func_all_modules): Add version-etc-2.
22317
22318 2003-09-25  Bruno Haible  <bruno@clisp.org>
22319
22320         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
22321         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
22322
22323 2003-09-24  Simon Josefsson  <jas@extundo.com>
22324
22325         * modules/xgethostname: Add xgethostname.h.
22326
22327 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22328
22329         * lib/linebuffer.c (freebuffer): Don't free the argument, just
22330         the buffer associated with the argument.  Bug reported by
22331         Simon Josefsson.
22332
22333 2003-09-24  Paul Eggert  <eggert@twinsun.com>
22334
22335         * README: Document assumptions that 'int' is at least 32 bits
22336         wide, that integer arithmetic is 2's complement without overflow,
22337         that there are no holes in integer values, that adding sizes of
22338         two nonoverlapping objects can't overflow, and that all-bits-zero
22339         yields scalar zero.  Fix spelling and capitalization typos.
22340
22341 2003-09-19  Karl Berry  <karl@gnu.org>
22342
22343         * lib/argp.h: update from libc.
22344
22345 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22346
22347         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
22348         to avoid spurious warnings like "AC_RUN_IFELSE was called before
22349         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
22350
22351 2003-09-17  Paul Eggert  <eggert@twinsun.com>
22352
22353         * gnulib-tool: Use "test -h", not "test -L", for portability
22354         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
22355         (tags_regexp): Remove, since \| doesn't conform to POSIX.
22356         (sed_extract_prog): Issue s commands one-by-one, rather than
22357         using \| in one s command.
22358
22359 2003-09-16  Paul Eggert  <eggert@twinsun.com>
22360
22361         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
22362         input error, instead of returning NULL the next time we are called
22363         (and therefore losing track of errno).
22364
22365 2003-09-16  Bruno Haible  <bruno@clisp.org>
22366
22367         * gnulib-tool (func_create_testdir): Warn about duplicated
22368         dependencies.
22369
22370 2003-09-15  Paul Eggert  <eggert@twinsun.com>
22371
22372         * modules/argmatch, modules/fatal, modules/obstack,
22373         modules/xalloc, modules/xgethostname: Sort dependencies by
22374         importance, not alphabetically.
22375
22376 2003-09-15  Paul Eggert  <eggert@twinsun.com>
22377
22378         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
22379         fails, so that the caller gets the proper errno.
22380
22381         * lib/readutmp.c (read_utmp): Likewise.
22382         Check for fstat error.  Close stream and free storage
22383         when failing.
22384
22385 2003-09-14  Karl Berry  <karl@gnu.org>
22386
22387         * config/srclist.txt (strdup.c): disable for c89 changes.
22388
22389 2003-09-14  Jim Meyering  <jim@meyering.net>
22390
22391         * lib/getloadavg.c: Correct cpp indentation.
22392         * lib/strdup.c: Likewise.
22393         * lib/vasnprintf.c: Likewise.
22394
22395 2003-09-14  Bruno Haible  <bruno@clisp.org>
22396
22397         * modules/fwriteerror: New file.
22398         * MODULES.html.sh (func_all_modules): Add fwriteerror.
22399
22400 2003-09-14  Bruno Haible  <bruno@clisp.org>
22401
22402         * lib/fwriteerror.h: New file.
22403         * lib/fwriteerror.c: New file.
22404
22405 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22406
22407         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
22408         modules/xgethostname, modules/xalloc: Depend on exit.
22409
22410 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22411
22412         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
22413
22414         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
22415         and AC_MINIX, too, so that their extensions are available.
22416
22417         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
22418         This macro has been superseded by gl_BACKUPFILE.
22419
22420         More patches to assume C89 or better.
22421
22422         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
22423
22424         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
22425         unconditionally.
22426         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
22427         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
22428         Include <string.h>, <stdlib.h> unconditionally.
22429         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
22430         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
22431         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
22432         headers or for string.h.
22433         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
22434         or strtoul.
22435
22436         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
22437         headers.
22438         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
22439         * m4/userspec.m4 (gl_USERSPEC): Likewise.
22440         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
22441         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
22442         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
22443         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
22444         memcpy, memset.
22445         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
22446         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
22447         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
22448         strtol.
22449         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
22450         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
22451         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
22452         strtoul.
22453
22454 2003-09-12  Paul Eggert  <eggert@twinsun.com>
22455
22456         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
22457         * lib/obstack.c [!defined _LIBC]: Likewise.
22458         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
22459         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
22460         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
22461
22462         More changes to assume C89 or better.
22463
22464         * lib/error.c (error_tail): Assume vprintf.
22465
22466         * lib/argmatch.c (getenv): Remove decl.
22467         * lib/progreloc.c (get_full_program_name): Define via prototype.
22468         * lib/setenv.c (clearenv): Likewise.
22469         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
22470         needed.
22471         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
22472         (malloc, memcpy): Remove decls.
22473         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
22474         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
22475         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
22476         (memcpy): Remove macro.
22477         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
22478         (__P): Remove.  All uses removed.
22479         (PTR): Remove.  All uses changed to void *.
22480         (CHAR_BIT, NULL): Remove.
22481         (spaces, zeros, memset_space, memset_zero)
22482         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
22483         Remove.
22484         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
22485         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
22486         Define with prototype.
22487         Remove now-unnecessary prototype decl.
22488         (extra_args_spec): Assume ANSI C.  All uses changed.
22489         (extra_args_spec_iso): Remove.
22490         (my_strftime, emacs_strftimeu): Define via prototype.
22491         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
22492         unconditionally.
22493         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
22494         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
22495         (strtoul, strtol): Remove decls.
22496         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
22497         LONG_MAX): Remove.
22498         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
22499         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
22500         (LOCALE_PARAM_PROTO): New macro.
22501         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
22502         (INTERNAL (strtol), strtol): Define with a prototype.
22503         (PARAMS): Remove.  All uses removed.
22504         * lib/tempname.c: Include <string.h> unconditionally.
22505         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
22506         * lib/xgethostname.c (main): Define with a prototype.
22507         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
22508         Include <stdlib.h> unconditionally.
22509         (calloc, malloc, realloc, free): Remove decls.
22510         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
22511         Include <stdlib.h> unconditionally.  Sort include file names.
22512         (strtod): Remove.
22513         (xstrtod): Define with a prototype.
22514         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
22515         (strtol, strtoul): Remove decls.
22516
22517 2003-09-11  Paul Eggert  <eggert@twinsun.com>
22518
22519         More patches to assume C89 or better.
22520         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
22521         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
22522         string.h, memchr, STDC_HEADERS.
22523
22524 2003-09-11  Paul Eggert  <eggert@twinsun.com>
22525
22526         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
22527         Include <stdlib.h>, <string.h> unconditionally.
22528         Remove now-unnecessary cast to char *.
22529         * lib/strnlen.c: Include <string.h> unconditionally.
22530         * lib/yesno.c (yesno): Define with a prototype.
22531
22532 2003-09-11  Bruno Haible  <bruno@clisp.org>
22533
22534         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
22535
22536 2003-09-10  Jim Meyering  <jim@meyering.net>
22537
22538         * lib/error.c: Correct indentation of cpp directives.
22539
22540 2003-09-10  Bruno Haible  <bruno@clisp.org>
22541
22542         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
22543         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
22544         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
22545         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
22546         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
22547         <stdlib.h> and <string.h> checks.
22548         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
22549         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
22550
22551 2003-09-10  Bruno Haible  <bruno@clisp.org>
22552
22553         * lib/strcspn.c: Include <string.h> unconditionally.
22554         * lib/strpbrk.c: Include <string.h> unconditionally.
22555         * lib/strstr.c: Include <string.h> unconditionally.
22556         * lib/unicodeio.c: Include <string.h> unconditionally.
22557         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
22558         * lib/unsetenv.c: Likewise.
22559         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
22560         * lib/yesno.c: Include <stdlib.h> unconditionally.
22561         (rpmatch): Add prototype.
22562
22563 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22564
22565         More patches to assume C89 or better.
22566         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
22567         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
22568         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
22569         or for string.h.
22570         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
22571         stdlib.h.
22572         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
22573         C headers.
22574         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
22575         string.h.
22576         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
22577         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
22578         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
22579         or for string.h.
22580         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
22581         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
22582         C headers.
22583         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
22584         memcpy.
22585         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
22586         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
22587         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
22588         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
22589         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
22590         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
22591         string.h, free.
22592         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
22593         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
22594         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
22595         C headers, or for string.h.
22596         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
22597         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
22598         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
22599         headers, memory.h, stdlib.h, string.h, strings.h.
22600         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
22601         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
22602         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
22603         strchr.
22604         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
22605         headers, memory.h, string.h.
22606         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
22607         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
22608         free.
22609         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
22610         headers.
22611         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
22612         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
22613         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
22614         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
22615         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
22616
22617 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22618
22619         More K&R removal.
22620
22621         * lib/acosl.c (main): Use a prototype.
22622         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
22623         tanl.c: Likewise.
22624
22625         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
22626
22627         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
22628         (getopt, etopt_long, getopt_long_only, _getopt_internal)
22629         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
22630         with a prototype.
22631         * lib/getopt.c (const): Remove macro.
22632         Include <string.h> unconditionally.
22633         (my_index): Remove; all uses changed to strchr.
22634         (strlen): Remove decl.
22635         (exchange): Remove forward decl; no longer needed.
22636         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
22637         Define with prototype.
22638         * lib/getopt1.c (const): Remove macro.
22639         (getopt_long, getopt_long_only, main): Define with prototype.
22640
22641         * lib/getugroups.c: Include <string.h> unconditionally.
22642
22643         * lib/getusershell.c: Include <stdlib.h> unconditionally.
22644         (getusershell, setusershell, endusershell, readname, main):
22645         Define with prototypes.
22646
22647         * lib/group-member.c: Include group-member.h first.
22648         Include <stdlib.h> unconditionally.
22649
22650         * lib/hard-locale.c: Include hard-locale.h first.
22651         Include <stdlib.h>, <string.h> unconditionally.
22652
22653         * lib/hash.c (free, malloc): Remove decls.
22654         Include <stdlib.h> unconditionally.
22655
22656         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
22657         (getenv): Do not declare.
22658
22659         * lib/idcache.c: Include <string.h> unconditionally.
22660
22661         * lib/long-options.c: Include long-options.h first, to test interface.
22662         Include <stdlib.h> unconditionally.
22663
22664         * lib/makepath.c: Include makepath.h first, to test interface.
22665         Include <stdlib.h> and <string.h> unconditionally.
22666
22667         * lib/linebuffer.c: Include <stdlib.h>.
22668         (free): Remove decl.
22669
22670         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
22671         stddef.h. rpl_malloc returns void *, not char *.
22672         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
22673         prototype.
22674
22675         * lib/md5.h: Include <limits.h> unconditionally.
22676         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
22677         (__P): Remove; all uses removed.
22678         * lib/md5.c: Include "md5.h" first.
22679         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
22680         md5_buffer, md5_process_bytes, md5_process_block):
22681         Define with prototypes.
22682         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
22683         * lib/sha.c: Include "sha.h" first.
22684         Include <stdlib.h>, <string.h> unconditionally.
22685
22686         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
22687         * lib/memcmp.c (__ptr_t): Likewise.
22688         * lib/memrchr.c (__ptr_t): Likewise.
22689         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
22690         Include <string.h> unconditionally.
22691         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
22692         * lib/memchr.c: Include <stdlib.h> unconditionally.
22693         * lib/memchr.c (LONG_MAX): Remove.
22694         * lib/memrchr.c (LONG_MAX): Likewise.
22695         * lib/memchr.c (__memchr): Define via a prototype.
22696         * lib/memrchr.c (__memrchr): Likewise.
22697         * lib/memcmp.c (__P): Remove, and remove all uses.
22698         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
22699         Remove forward decls; no longer needed.
22700         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
22701         Use types required by C89 in prototype.
22702
22703         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
22704         * lib/savedir.c: Likewise.
22705         * lib/mkdir.c (free): Remove decl.
22706         * lib/rmdir.c (rmdir): Define with a prototype.
22707         * lib/savedir.c: Include savedir.h first, to test interface.
22708
22709         * lib/mktime.c (STDC_HEADERS): Remove.
22710         Include <stdlib.h>, <string.h> unconditionally.
22711
22712         * lib/modechange.c: Include <stdlib.h> unconditionally.
22713         (malloc): Remove decl.
22714
22715         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
22716         (free): Remove decl.
22717
22718         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
22719         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
22720         (This type really should be intptr_t, but that's a C99ism.)
22721         (_obstack_memcpy): Remove: all uses changed to memcpy.
22722         Include <string.h> unconditionally.
22723         (struct obstack): Assume __STDC__ for types of members
22724         chunkfun, freefun, extra_arg.
22725         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
22726         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
22727         obstack_begin, obstack_specify_allocation,
22728         obstack_specify_allocation_with_arg, obstack_chunkfun,
22729         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
22730         Remove unprototyped decls and the macros that use them.
22731         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
22732         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
22733         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
22734         (defined __STDC__ && __STDC__)]:
22735         Remove nonprototyped code.
22736         Include <stdlib.h> unconditionally.
22737         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
22738         _obstack_allocated_p, _obstack_free, obstack_free,
22739         _obstack_memory_used, print_and_abort):
22740         Define using prototypes.
22741         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
22742         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
22743         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
22744         obstack_next_free, obstack_object_size, obstack_room) [0]:
22745         Remove unused, unprototyped code.
22746
22747         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
22748
22749         * lib/physmem.c (physmem_total, physmem_available, main): Define
22750         with prototypes.
22751
22752         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
22753         (main): Define with a prototype.
22754
22755         * lib/posixver.c (getenv): Remove decl.
22756
22757         * lib/putenv.c (malloc): Returns void *, not char *.
22758         Include <string.h> unconditionally.
22759         (strchr, memcpy, NULL): Do not define.
22760
22761         * lib/readtokens.c: Include readtokens.h first, to test interface.
22762         Include <stdlib.h>, <string.h> unconditionally.
22763         (init_tokenbuffer): Define with a prototype.
22764
22765         * lib/regex.c (PARAMS): Remove.  All uses removed.
22766         All uses of _RE_ARGS removed, too.
22767         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
22768         unconditionally.
22769         (bzero): Assume memset exists.
22770         (memcmp, memcpy, NULL): Remove.
22771         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
22772         char, or assignments to local vars of type signed char.
22773         (init_syntax_once, PREFIX(extract_number_and_incr),
22774         PREFIX(print_partial_compiled_pattern),
22775         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
22776         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
22777         PREFIX(regex_grow_registers), PREFIX(regex_compile),
22778         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
22779         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
22780         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
22781         wcs_compile_range, byte_compile_range, truncate_wchar,
22782         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
22783         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
22784         count_mbs_length, wcs_re_match_2_internal,
22785         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
22786         PREFIX(alt_match_null_string_p),
22787         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
22788         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
22789         regfree, PREFIX(extract_number)): Define with prototype.  Remove
22790         now-unnecessary declaration, if any.
22791         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
22792         regcomp, regexec):
22793         Remove now-unnecessary casts among pointer types.
22794         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
22795
22796         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
22797         (free): Remove decl.
22798
22799         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
22800
22801         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
22802         (free): Remove decl.
22803
22804         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
22805         * lib/xgetcwd.c: Likewise.
22806
22807         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
22808         (free): Remove decl.
22809
22810         * lib/strchrnul.c (strchrnul): Define with a prototype.
22811         Fix bug: c_in was not converted to char before searching.
22812
22813         The following changes are not K&R related:
22814
22815         * lib/group-member.h: Include <sys/types.h>, so that this file is
22816         self-contained.
22817         * lib/makepath.h: Likewise.
22818
22819         * lib/getusershell.c (readname, default_index, line_size, readname):
22820         Use size_t, not int, for sizes.
22821         (readname): If the size overflows, report an error instead of
22822         looping forever.
22823
22824 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22825
22826         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
22827         libc.
22828
22829 2003-09-09  Paul Eggert  <eggert@twinsun.com>
22830
22831         * README: New section: portability guidelines.
22832
22833 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
22834
22835         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
22836         C89 spec.
22837
22838 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
22839
22840         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
22841
22842 2003-09-08  Paul Eggert  <eggert@twinsun.com>
22843
22844         Assume C89 or better; remove K&R cruft.
22845         A few of these changes were first proposed by Derek Robert Price
22846         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
22847
22848         * lib/addext.c: Include <string.h> unconditionally.
22849         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
22850         Don't declare getenv or malloc.
22851
22852         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
22853         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
22854         (NULL): Remove.
22855         (find_stack_direction, alloca): Use prototypes.
22856
22857         * lib/atexit.c (atexit): Define using a prototype.
22858
22859         * lib/basename.c, dirname.c, stripslash.c:
22860         Include <string.h> unconditionally.
22861
22862         * lib/bcopy.c: Include <stddef.h>.
22863         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
22864
22865         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
22866
22867         * lib/error.h (error, error_at_line, error_print_progname)
22868         [! (defined (__STDC__) && __STDC__)]: Remove decls.
22869         * lib/error.c: Include error.h first, to check interface.
22870         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
22871         (VA_START): Remove; all uses changeed to va_start.
22872         (exit, strerror): Remove decls.
22873         (error_print_progname): Prototype uncondionally.
22874         Don't include <errno.h>; no longer needed.
22875         (private_strerror): Remove.
22876         (error_tail): Always define.
22877         (error, error_at_line): Assume C89 or better; always use prototypes.
22878         * lib/fatal.c: Include "fatal.h" first, to test interface.
22879         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
22880         (VA_START): Remove; all uses changed to va_start.
22881         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
22882         this case.
22883         (exit): Remove decl.
22884         (fatal): Prototype unconditionally.  Assume va_start works.
22885         Abort at end, to pacify gcc.
22886
22887         * lib/euidaccess.c (main): Define with a prototype.
22888
22889         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
22890
22891         * lib/exitfail.c: Include <stdlib.h> unconditionally.
22892
22893         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
22894         prototypes.
22895         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
22896         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
22897         (getenv): Remove decl.
22898         (fnmatch): Define using a prototype.
22899         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
22900         (FCT): Define using a prototype.
22901
22902         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
22903
22904         * lib/gethostname.c: Include <stddef.h>.
22905         (gethostname): Define with prototype.  Length is size_t, not int.
22906
22907 2003-09-08  Paul Eggert  <eggert@twinsun.com>
22908
22909         Assume C89 or better; remove K&R cruft.
22910         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
22911         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
22912         string.h, getenv, malloc.
22913         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
22914         headers.
22915         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
22916         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
22917         do not check for strerror.
22918         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
22919         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
22920         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
22921         do not check for doprnt or vprintf.
22922         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
22923         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
22924
22925 2003-09-08  Paul Eggert  <eggert@twinsun.com>
22926
22927         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
22928         getversion.c should have been removed then, but was accidentally
22929         preserved.
22930
22931         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
22932         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
22933
22934 2003-09-08  Karl Berry  <karl@gnu.org>
22935
22936         * config/config.sub, config.guess, srclistvars.sh: update from savannah
22937                 config, forget about prep.
22938
22939         * config/depcomp, missing: update from automake.
22940
22941 2003-09-07  Paul Eggert  <eggert@twinsun.com>
22942
22943         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
22944         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
22945
22946 2003-09-07  Paul Eggert  <eggert@twinsun.com>
22947
22948         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
22949         copy_tm_result.  Bug reported by Simon Josefsson in
22950         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
22951
22952 2003-09-06  Paul Eggert  <eggert@twinsun.com>
22953
22954         * m4/time_r.m4: New file.
22955         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
22956         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
22957         is. Check for timegm declaration.
22958         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
22959         Do not check for gmtime_r.
22960         Replace mktime if __mktime_internal does not exist and if mktime
22961         hasn't been replaced already.
22962
22963 2003-09-06  Paul Eggert  <eggert@twinsun.com>
22964
22965         * lib/time_r.c, lib/time_r.h: New files.
22966
22967         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
22968         __localtime_r.
22969         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
22970         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
22971
22972         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
22973         __gmtime_r.
22974         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
22975         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
22976         Include <time_r.h>.
22977
22978         * lib/timegm.c: Switch to glibc implementation, with the following
22979         changes:
22980         [defined HAVE_CONFIG_H]: Include <config.h>.
22981         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
22982         (__mktime_internal) [!defined _LIBC]: New decl.
22983         (__gmtime_r) [!defined _LIBC]: New macro and function.
22984         (timegm): Use a prototype, since gnulib assumes C89.
22985         Do not bother declaring tmp to be const, as it's not really usefu.
22986         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
22987         (timegm): Declare only if HAVE_DECL_TIMEGM.
22988
22989 2003-09-06  Paul Eggert  <eggert@twinsun.com>
22990
22991         * MODULES.html.sh (func_all_modules): Add time_r.
22992         * modules/time_r: New file.
22993         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
22994         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
22995
22996 2003-09-03  Paul Eggert  <eggert@twinsun.com>
22997
22998         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
22999         Bug reported by Lute Kamstra in
23000         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
23001
23002         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
23003         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
23004         course with correspondingly smaller numbers for tomorrow and
23005         yesterday.  From Tadayoshi Funaba.  Originally installed into
23006         sh-utils on 1999-08-07, but the patch got lost (I guess during the
23007         coreutils merge?).
23008
23009 2003-08-31  Simon Josefsson  <jas@extundo.com>
23010
23011         * modules/timegm: New file.
23012         * MODULES.html.sh (func_all_modules): Add timegm.
23013
23014 2003-08-31  Simon Josefsson  <jas@extundo.com>
23015
23016         * m4/timegm.m4: New file.
23017
23018 2003-08-31  Simon Josefsson  <jas@extundo.com>
23019
23020         * lib/timegm.h: New file.
23021         * lib/timegm.c: New file.  Based on
23022         wget-1.8.2/src/http.c:mktime_from_utc.
23023
23024 2003-08-31  Karl Berry  <karl@gnu.org>
23025
23026         * lib/argp.h: update from libc.
23027
23028 2003-08-28  Bruno Haible  <bruno@clisp.org>
23029
23030         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
23031         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
23032         followed by '#define fnmatch fnmatch_posix' gives an error.
23033
23034 2003-08-28  Bruno Haible  <bruno@clisp.org>
23035
23036         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
23037         warning on QNX, which defines O_BINARY to 000000.
23038
23039 2003-08-27  Jim Meyering  <jim@meyering.net>
23040
23041         * m4/mkstemp.m4: Require that the system mkstemp be able to create
23042         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
23043         would fail after 32.  Reported by Danny Levinson.  Details here:
23044         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
23045
23046 2003-08-24  Bruno Haible  <bruno@clisp.org>
23047
23048         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
23049         MSVC7 <stdio.h> is included later.
23050
23051 2003-08-22  Simon Josefsson  <jas@extundo.com>
23052
23053         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
23054
23055 2003-08-20  Karl Berry  <karl@gnu.org>
23056
23057         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
23058
23059 2003-08-20  Bruno Haible  <bruno@clisp.org>
23060
23061         * modules/progname: New file.
23062         * MODULES.html.sh (func_all_modules): Add progname.
23063
23064 2003-08-20  Bruno Haible  <bruno@clisp.org>
23065
23066         * lib/progname.h: New file, from GNU gettext.
23067         * lib/progname.c: New file, from GNU gettext.
23068         * lib/progreloc.c: New file, from GNU gettext.
23069
23070 2003-08-19  Jim Meyering  <jim@meyering.net>
23071
23072         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
23073         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
23074
23075 2003-08-19  Bruno Haible  <bruno@clisp.org>
23076
23077         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
23078         more.
23079
23080 2003-08-19  Bruno Haible  <bruno@clisp.org>
23081
23082         * lib/xstrdup.c: Assume <string.h> exists.
23083
23084 2003-08-18  Paul Eggert  <eggert@twinsun.com>
23085
23086         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
23087         in makefile rules.
23088
23089 2003-08-18  Jim Meyering  <jim@meyering.net>
23090
23091         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
23092         * m4/lib-ld.m4: Likewise.
23093
23094 2003-08-18  Jim Meyering  <jim@meyering.net>
23095
23096         * lib/setenv.h: Indent nested cpp directive.
23097         * lib/vasnprintf.c: Remove trailing blanks.
23098
23099 2003-08-17  Simon Josefsson  <jas@extundo.com>
23100
23101         * modules/xstrndup: New file.
23102         * MODULES.html.sh (func_all_modules): Add xstrndup.
23103
23104 2003-08-17  Simon Josefsson  <jas@extundo.com>
23105
23106         * modules/argp: Fix autoconf macro name. Add more dependencies.
23107
23108 2003-08-17  Simon Josefsson  <jas@extundo.com>
23109
23110         * m4/xstrndup.m4: New file.
23111
23112 2003-08-17  Simon Josefsson  <jas@extundo.com>
23113
23114         * m4/argp.m4: New file.
23115
23116 2003-08-17  Simon Josefsson  <jas@extundo.com>
23117             Bruno Haible  <bruno@clisp.org>
23118
23119         * lib/xstrndup.h: New file.
23120         * lib/xstrndup.c: New file.
23121
23122 2003-08-17  Bruno Haible  <bruno@clisp.org>
23123
23124         * modules/strndup (Files, Include): Add lib/strndup.h.
23125
23126 2003-08-17  Bruno Haible  <bruno@clisp.org>
23127
23128         * modules/euidaccess (Files): Add lib/euidaccess.h.
23129
23130 2003-08-17  Bruno Haible  <bruno@clisp.org>
23131
23132         * lib/strndup.h: New file.
23133
23134 2003-08-17  Bruno Haible  <bruno@clisp.org>
23135
23136         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
23137         like AC_GNU_SOURCE.
23138         * modules/extensions (configure.ac): Comment out the invocation of
23139         gl_USE_SYSTEM_EXTENSIONS.
23140
23141 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23142
23143         Merges from coreutils, etc.
23144         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
23145         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
23146         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
23147         fixing a typo.
23148         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
23149         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
23150
23151 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23152
23153         Document merge from coreutils.
23154         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
23155         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
23156         * modules/utime: Add m4/utimes-null.m4.
23157
23158 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23159
23160         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
23161         space, undoing this 2003-08-12 change:
23162         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23163
23164 2003-08-16  Paul Eggert  <eggert@twinsun.com>
23165
23166         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
23167         strtoul.c from libc, undoing this 2003-08-12 change:
23168         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
23169
23170 2003-08-16  Jim Meyering  <jim@meyering.net>
23171
23172         Merges from coreutils.
23173         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
23174         prefix.  Adjust cache variables similarly.  Create 500 rather than
23175         just 300 files, to exercise bug on Darwin6.5, too.
23176         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
23177         $missing_dir.
23178         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
23179         AM_SYS_POSIX_TERMIOS.
23180         Reported by mkc@mathdogs.com.
23181         Also change use of $am_cv_sys_posix_termios
23182         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
23183         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
23184         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
23185         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
23186         in /proc/mounts until it finds one with matching device number.  This
23187         is unnecessary when the FILE argument *is* a mount point.  No stat call
23188         is necessary in that case.  So, disable the statvfs-testing code on
23189         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
23190         as RedHat bug# 84846.
23191         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23192         to 1MB, so as not to render systems with no stack size limit (e.g.,
23193         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23194         Include <unistd.h>.  On some systems,
23195         it is required for the definition of _SC_PAGESIZE.
23196
23197 2003-08-16  Jim Meyering  <jim@meyering.net>
23198
23199         Merge from coreutils.
23200         * lib/xstrtoimax.c: #else #if -> #elif.
23201         * lib/xstrtoumax.c: Likewise.
23202
23203 2003-08-16  Jim Meyering  <jim@meyering.net>
23204
23205         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
23206         * m4/utimes.m4: Removed.
23207         * m4/utimes-null.m4: Renamed from utimes.m4.
23208
23209         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
23210         to 1MB, so as not to render systems with no stack size limit (e.g.,
23211         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
23212         Include <unistd.h>.  On some systems,
23213         it is required for the definition of _SC_PAGESIZE.
23214
23215 2003-08-16  Jim Meyering  <jim@meyering.net>
23216         and Paul Eggert  <eggert@cs.ucla.edu>
23217
23218         Merges from coreutils, etc.
23219
23220         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
23221         using the latest version from cvs.  This avoids problems with #line
23222         directives using a vendor (Sun) compiler.
23223         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
23224         Don't set GETGROUPS_LIB here; now it's
23225         done via getgroups.m4's wrapper function.
23226         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
23227         rather than just in sh-util/configure.in, so that the
23228         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
23229         same.
23230         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
23231         AC_FUNC_GETLOADAVG where to find getloadavg.c.
23232         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
23233         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
23234         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
23235         Remove code that is now done by the newly-required macros.
23236         Append $(EXEEXT) to DF_PROG.
23237         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
23238         Do not invoke or require the following here,
23239         since prereq.m4 or some gnulib .m4 now does this for us:
23240         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
23241         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
23242         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
23243         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
23244         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
23245         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
23246         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
23247         AC_FUNC_OBSTACK.
23248         Do not replace the following functions, as this is now the job
23249         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
23250         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
23251         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
23252         atexit getpass, strdup, getpagesize.
23253         Replace 'raise'.
23254         Do not check for the following functions, as this is now the job
23255         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
23256         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
23257         setregid.
23258         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
23259         Check for sys/sysctl.h.
23260         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
23261         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
23262         of checking for ssize_t ourselves.
23263
23264         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
23265         Require every macro that gnulib/modules/* suggests for us.
23266         (jm_PREREQ_ADDEXT): New macro.
23267         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
23268         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
23269
23270         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
23271         (gl_PHYSMEM): Use it.
23272         Also check for `table' function.
23273         Check for new headers and functions.
23274         Add check for sys/sysmp.h.
23275         With suggestions from Kaveh Ghazi.
23276         Ignore headers that are present but cannot be compiled.  This
23277         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
23278         C 5.4.
23279
23280 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23281
23282         Document merge from coreutils.
23283         * modules/userspec: Depend on posixver.
23284         * modules/strftime: Depend on tzset.
23285
23286 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23287
23288         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
23289         rather than tab, after '#' in shell-script copyright notices.
23290         Suggested by Bruno Haible.
23291
23292 2003-08-15  Paul Eggert  <eggert@twinsun.com>
23293
23294         * config/srclist-update: Use three spaces, rather than tab, after '#'
23295         in shell-script copyright notices.  Suggested by Bruno Haible.
23296         Remove unnecessary parenthesization in regular expression.
23297
23298 2003-08-15  Jim Meyering  <jim@meyering.net>
23299
23300         Merge from coreutils.
23301         * lib/xgethostname.c: Include <stdlib.h>.
23302         (xghostname): Don't exit for anything other than memory-related
23303         failure; just return NULL.
23304         * lib/userspec.c: Include "posixver.h".
23305         (parse_user_spec): Accept `.' as a separator only
23306         in pre-POSIX-200112 mode.
23307         * lib/strtoimax.c: Use #elif rather than #else #if.
23308         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
23309         Remove function, now that we can rely on a working tzset function.
23310         [!_LIBC]: Ensure that the required autoconf test has been run.
23311         [!defined _NL_CURRENT && HAVE_STRFTIME]:
23312         Use underlying_strftime for %r.
23313         * lib/sha.c: Merge in some clean-up and optimization changes from
23314         glibc.
23315         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
23316         Ensure that it is a multiple of 64.
23317         Rearrange loop exit tests so as to avoid performing an
23318         additional fread after encountering an error or EOF.
23319         * lib/realloc.c: Update copyright date.
23320
23321 2003-08-15  Jim Meyering  <jim@meyering.net>
23322         and Paul Eggert  <eggert@twinsun.com>
23323
23324         Merge from coreutils.
23325         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
23326         member but strut utmpx does not.  Needed for AIX 4.3.3.
23327         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
23328
23329 2003-08-15  Jim Meyering  <jim@meyering.net>
23330         and Paul Eggert  <eggert@cs.ucla.edu>
23331
23332         Merges from coreutils, etc.
23333         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
23334         Require gl_FUNC_TZSET_CLOBBER.
23335         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
23336         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
23337         members.
23338
23339 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23340
23341         Help the merge from coreutils.
23342         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
23343         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
23344         * m4/tzset.m4: Use it too.
23345
23346 2003-08-14  Paul Eggert  <eggert@twinsun.com>
23347
23348         * modules/tzset: New file.
23349
23350 2003-08-14  Jim Meyering  <jim@meyering.net>
23351
23352         Merges from coreutils.
23353         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
23354         variable names, rather than @FNMATCH_H@.
23355         * modules/alloca: Likewise for $(ALLOCA_H).
23356
23357         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
23358         the three copies of the literal target, `fnmatch.h'.
23359         * modules/alloca (alloca.h): Likewise.
23360
23361 2003-08-14  Jim Meyering  <jim@meyering.net>
23362
23363         Merge from coreutils.
23364         * m4/tzset.m4: New file.
23365         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
23366         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
23367         otherwise, AIX 5.1 systems would end up using the latter.
23368         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
23369         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
23370         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
23371         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
23372
23373 2003-08-14  Jim Meyering  <jim@meyering.net>
23374
23375         Merge from coreutils.
23376         * lib/obstack.h: Whitespace changes.
23377         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
23378         and xcalloc return values.
23379         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
23380         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
23381         hang on OSF/1 5.1 for DIR on both local and remote file systems.
23382         Reported by (and fix confirmed by) Nelson H. F. Beebe.
23383         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
23384         error from mntctl.
23385         Use mntctl's return value to drive the entry-processing loop, since
23386         we can't rely on the value of the vmt_length member in the last
23387         entry.  On some systems doing so could result in exhausting
23388         virtual memory.  Based in part on a patch from Mike Jetzer.
23389
23390 2003-08-14  Jim Meyering  <jim@meyering.net>
23391         and Paul Eggert  <eggert@twinsun.com>
23392
23393         Merges from coreutils, plus other fixes.
23394         * lib/physmem.c: Merge in portability changes from gcc/libiberty
23395         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
23396         for credits and details.  Thanks to Kaveh Ghazi for helping
23397         to keep these files in sync.
23398         (ARRAY_SIZE): Define it.
23399         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
23400         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
23401         (memcasecmp): Don't assume size_t fits in unsigned int.
23402         Remove casts and duplicate code.
23403         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
23404         (memcpy): Remove definition.
23405         Merge in some clean-up and optimization changes from glibc.
23406         [BLOCKSIZE]: Move definition to top of file.
23407         Ensure that it is a multiple of 64.
23408         Rearrange loop exit tests so as to avoid performing an
23409         additional fread after encountering an error or EOF.
23410         * lib/md5.h (md5_uintptr): Define.
23411         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
23412         return to the initial working directory.  Preserve errno
23413         for caller.
23414         * lib/idcache.c: Include "xalloc.h".
23415         (xmalloc, xrealloc): Remove decls.
23416         (getuser): Remove casts no longer required in C89.
23417         * lib/human.c: Include stdio.h, for sprintf.
23418         * lib/group-member.c: Include "xalloc.h".
23419         (xmalloc, xrealloc): Remove decls.
23420         (get_group_info): Remove casts no longer required in C89.
23421         * lib/getusershell.c (readname): Remove casts no longer required in
23422         C89.
23423         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
23424         * lib/getline.c: Whitespace fix, from coreutils.
23425
23426 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23427
23428         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
23429         Check for isascii.
23430
23431         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
23432         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
23433         Undo previous (whitespace-only) change.
23434
23435 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23436
23437         * lib/exclude.c: Include <ctype.h>
23438         (IN_CTYPE_DOMAIN): New macro.
23439         (is_space): New fn.
23440         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
23441         and empty lines.
23442
23443         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
23444         Undo previous (whitespace-only) change.
23445
23446 2003-08-13  Paul Eggert  <eggert@twinsun.com>
23447
23448         * config/srclist-update: Change update back to the old behavior,
23449         leaving whitespace alone.  Use one 'sed' command rather than a
23450         pipeline.
23451         (fixlicense): Now a variable, not a function.
23452         (remove_trailing_blanks): Remove.
23453         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
23454         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
23455         Undo previous (whitespace-only) change.
23456
23457 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23458
23459         Merge from coreutils.
23460         * modules/euidaccess: Add lib_SOURCES, include for new
23461         file euidaccess.h
23462
23463 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23464
23465         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
23466         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
23467         Normalize leading white space and remove trailing white space.
23468
23469         Merge from coreutils
23470         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
23471
23472         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
23473         0.12.1.  These files are now being upgraded automatically by
23474         ../config/srclist-update.
23475
23476 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23477
23478         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
23479         Normalize leading white space and remove trailing white space.
23480         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
23481         notice, as per ../config/srclist-update.
23482
23483         Merge from coreutils.
23484         * lib/euidaccess.h: New file.
23485         * lib/euidaccess.c: Include it.
23486         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
23487         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
23488         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
23489
23490 2003-08-12  Paul Eggert  <eggert@twinsun.com>
23491
23492         * config/srclist-update: Add copyright notice.
23493         (remove_id_lines, remove_trailing_blanks): New constants.
23494         (fixfile): Use them to normalize spacing a bit in copied files.
23495         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
23496         Normalize leading white space and remove trailing white space.
23497
23498         * config/texinfo.tex: Sync with texinfo.
23499
23500         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
23501         strtoul.c from libc, to merge coreutils whitespace changes.
23502
23503         * config/srclist.txt: Get the following m4 files from gettext:
23504         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
23505         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
23506         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
23507         wint_t.m4.
23508
23509 2003-08-12  Karl Berry  <karl@gnu.org>
23510
23511         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
23512         been made.
23513
23514 2003-08-11  Paul Eggert  <eggert@twinsun.com>
23515
23516         * modules/gnu-source, m4/gnu-source.m4:
23517         Remove; we're assuming Autoconf 2.54 or later now.
23518         Suggested by Bruno Haible.
23519         * MODULES.html.sh (func_all_modules): Remove gnu-source.
23520
23521 2003-08-11  Bruno Haible  <bruno@clisp.org>
23522
23523         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
23524
23525 2003-08-11  Bruno Haible  <bruno@clisp.org>
23526
23527         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
23528         (vasnprintf): Use it instead of wcslen.
23529
23530 2003-08-11  Bruno Haible  <bruno@clisp.org>
23531
23532         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
23533         value to ensure that _Bool promotes to int. Use #define for _Bool when
23534         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
23535
23536 2003-08-10  Karl Berry  <karl@gnu.org>
23537
23538         * lib/regex.h: update from libc (whitespace fix).
23539
23540 2003-08-09  Paul Eggert  <eggert@twinsun.com>
23541
23542         Merge some files from coreutils.  These changes were
23543         originally made by Jim Meyering.
23544         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
23545         many older Unixes require this.
23546         * lib/alloca.c (alloca): Remove cast to argument of free;
23547         no longer needed in C89.
23548         * lib/alloca_.h, regex.h: Fix white space to match
23549         what GNU indent does.
23550
23551 2003-08-09  Paul Eggert  <eggert@twinsun.com>
23552
23553         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
23554         apparently Emacs's Unicode mode got confused before my 2003-08-05
23555         checkin.
23556
23557 2003-08-08  Paul Eggert  <eggert@twinsun.com>
23558
23559         * m4/extensions.m4: New file.
23560         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
23561         Require gl_USE_SYSTEM_EXTENSIONS.
23562         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
23563         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
23564
23565 2003-08-08  Paul Eggert  <eggert@twinsun.com>
23566
23567         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
23568         * modules/extensions, modules/gnu-source: New files.
23569         * modules/timespec, modules/unlocked-io: Depend on extensions.
23570
23571 2003-08-07  Paul Eggert  <eggert@twinsun.com>
23572
23573         * modules/restrict: New file.
23574         * MODULES.html.sh (func_all_modules): Add restrict.
23575         * modules/regex: Depend on restrict.
23576
23577 2003-08-07  Paul Eggert  <eggert@twinsun.com>
23578
23579         * m4/restrict.m4: New file.
23580         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
23581
23582 2003-08-07  Bruno Haible  <bruno@clisp.org>
23583
23584         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
23585         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
23586
23587 2003-08-07  Bruno Haible  <bruno@clisp.org>
23588
23589         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
23590         makes the module 'getndelim2' compatible with the module 'getline'.
23591
23592 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23593
23594         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
23595         byte with "\201" to avoid glitches when editing that source file
23596         with multi-gnome-terminal.
23597
23598 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23599
23600         * lib/bumpalloc.h: Remove.
23601
23602 2003-08-05  Paul Eggert  <eggert@twinsun.com>
23603
23604         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
23605         * modules/bumpalloc: Remove.
23606
23607 2003-08-04  Paul Eggert  <eggert@twinsun.com>
23608
23609         * lib/getloadavg.c: Change copyright notice and spacing to conform to
23610         GNU coding style.
23611
23612         Merge from coreutils.
23613         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
23614         1. From glibc.
23615         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
23616         from Karl Berry, implemented by Jim Meyering.
23617         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
23618         from Dmitry V. Levin.
23619         Remove anachronistic cast of xrealloc.
23620         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
23621         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
23622         type. Otherwise, it wouldn't compile with at least /bin/cc on
23623         ymp-cray-unicos9.0.2.X.
23624         Combine two mostly-identical uses of alloca into one.
23625         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
23626
23627 2003-08-04  Dave Love  <d.love@dl.ac.uk>
23628
23629         [From Emacs.]
23630
23631         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
23632         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
23633         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
23634         obsolete NLIST_NAME_UNION.
23635         [__GNU__]: Undef BSD and FSCALE.
23636         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
23637
23638 2003-08-03  Paul Eggert  <eggert@twinsun.com>
23639
23640         * lib/stdbool_.h (_Bool): Make it signed char, instead of
23641         an enum type, so that it's guaranteed to promote to int.  See:
23642         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
23643
23644 2003-08-03  Karl Berry  <karl@gnu.org>
23645
23646         * config/depcomp: update from automake.
23647
23648 2003-07-31  Paul Eggert  <eggert@twinsun.com>
23649
23650         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
23651         (strerror): Don't assume that a printable int fits in 14 bytes.
23652
23653 2003-07-31  Bruno Haible  <bruno@clisp.org>
23654
23655         * modules/getpass-gnu: New file.
23656         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
23657
23658 2003-07-31  Bruno Haible  <bruno@clisp.org>
23659
23660         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
23661
23662 2003-07-24  Karl Berry  <karl@gnu.org>
23663
23664         * config/missing: update from automake.
23665
23666 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
23667             Bruno Haible  <bruno@clisp.org>
23668
23669         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
23670         * lib/getline.c (getline, getdelim): Likewise.
23671         Remove _GNU_SOURCE define; now it's defined in config.h through
23672         m4/getline.m4.
23673
23674 2003-07-23  Karl Berry  <karl@gnu.org>
23675
23676         * config/config.sub: update from prep.
23677
23678 2003-07-22  Paul Eggert  <eggert@twinsun.com>
23679
23680         * modules/xalloc (Depends-on): Add exitfail.
23681         * modules/xmemcoll: Likewise.
23682
23683 2003-07-22  Paul Eggert  <eggert@twinsun.com>
23684
23685         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
23686         over-parenthesization in macros.
23687
23688         Sync with coreutils.
23689
23690         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
23691         required by C99.
23692
23693         Use `exit_failure' for xalloc and xmemcoll instead of their own
23694         private exit-failure variables.
23695         * lib/xalloc.h (xalloc_exit_failure): Remove.
23696         * lib/xmalloc.c: Likewise.  Include exitfail.h.
23697         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
23698         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
23699         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
23700         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
23701
23702 2003-07-20  Jim Meyering  <jim@meyering.net>
23703
23704         * modules/closeout (Depends-on): Add exitfail.
23705         Suggestion from Bruno Haible.
23706
23707 2003-07-19  Karl Berry  <karl@gnu.org>
23708
23709         * config/config.sub: update from prep.
23710
23711 2003-07-18  Paul Eggert  <eggert@twinsun.com>
23712
23713         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
23714         Remove.
23715         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
23716         to test that it can stand by itself.  Include "exitfail.h".
23717         Clients should set exit_failure instead.
23718         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
23719
23720 2003-07-18  Bruno Haible  <bruno@clisp.org>
23721
23722         * modules/getndelim2: New file.
23723         * modules/getline: Share files with module getndelim2.
23724         * modules/getnline: Depend on getndelim2 instead of sharing files with
23725         it. Add getnline.c to lib_SOURCES.
23726         * MODULES.html.sh (func_all_modules): Add getndelim2.
23727
23728 2003-07-18  Bruno Haible  <bruno@clisp.org>
23729
23730         * m4/getndelim2.m4: New file.
23731         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
23732         invoke gl_PREREQ_GETNDELIM2.
23733         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
23734         gl_PREREQ_GETNDELIM2.
23735         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
23736         gl_GETNDELIM2.
23737
23738 2003-07-18  Bruno Haible  <bruno@clisp.org>
23739
23740         * lib/getndelim2.h: New file.
23741         * lib/getndelim2.c: Make into a module of its own. Include config.h,
23742         getndelim2.h.
23743         (getndelim2): Make non-static. Change return type to ssize_t.
23744         * lib/getline.h: Change argument names.
23745         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
23746         * lib/getnline.c: Include getndelim2.h.
23747
23748 2003-07-18  Andreas Schwab  <schwab@suse.de>
23749
23750         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
23751
23752 2003-07-17  Karl Berry  <karl@gnu.org>
23753
23754         * config/config.sub: update from prep.
23755
23756 2003-07-17  Bruno Haible  <bruno@clisp.org>
23757
23758         * modules/getnline: New file.
23759         * modules/getline: Add lib/getndelim2.c to source file list.
23760         * MODULES.html.sh (func_all_modules): Add getnline.
23761
23762 2003-07-17  Bruno Haible  <bruno@clisp.org>
23763
23764         * m4/getnline.m4: New file.
23765
23766 2003-07-17  Bruno Haible  <bruno@clisp.org>
23767
23768         * m4/Makefile.am.in: Remove file.
23769         * m4/Makefile.am: Remove file.
23770         * m4/Makefile.in: Remove file.
23771
23772 2003-07-17  Bruno Haible  <bruno@clisp.org>
23773
23774         * lib/getnline.h: New file.
23775         * lib/getnline.c: New file.
23776         * lib/getndelim2.c: New file, extracted from getline.c.
23777         (getndelim2): Renamed from getdelim2, with added nmax argument.
23778         * lib/getline.c: Include getndelim2.c.
23779         (getdelim2): Moved out to getndelim2.c.
23780         (getline, getdelim): Update.
23781
23782 2003-07-17  Bruno Haible  <bruno@clisp.org>
23783
23784         * lib/Makefile.am: Remove file.
23785         * lib/Makefile.in: Remove file.
23786
23787 2003-07-17  Bruno Haible  <bruno@clisp.org>
23788
23789         * configure.in: Remove file.
23790         * Makefile.in: Remove file.
23791
23792 2003-07-17  Bruno Haible  <bruno@clisp.org>
23793
23794         * MODULES.html.sh: Put the </BODY> right before </HTML>.
23795
23796 2003-07-16  Karl Berry  <karl@gnu.org>
23797
23798         * config/srclist-update: was running fixlicense twice, which caused
23799                 texinfo.tex to be nullified for some reason.  Simplify,
23800                 $gplsrc is no longer needed as far as I can see?
23801
23802 2003-07-16  Jim Meyering  <jim@meyering.net>
23803
23804         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
23805
23806 2003-07-15  Paul Eggert  <eggert@twinsun.com>
23807
23808         * config/srclist.txt: Get the following files from gettext-runtime/intl
23809         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
23810         ref-del.sin.  From Bruno Haible.
23811         * config/srclist-update (fixfile): Change grep pattern again, since the
23812         previous fix didn't work (there was another trailing $).  Use
23813         '[$]' to escape the $s.
23814
23815 2003-07-15  Karl Berry  <karl@gnu.org>
23816
23817         * lib/vasnprintf.c: update from gettext.
23818
23819 2003-07-15  Karl Berry  <karl@gnu.org>
23820
23821         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
23822         gets expanded when surrounded by '$'.
23823
23824 2003-07-15  Jim Meyering  <jim@meyering.net>
23825
23826         * modules/save-cwd: Don't depend on error.  From Derek Price.
23827
23828 2003-07-15  Jim Meyering  <jim@meyering.net>
23829
23830         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
23831
23832 2003-07-14  Simon Josefsson  <jas@extundo.com>
23833
23834         * modules/mempcpy: New file.
23835         * MODULES.html.sh (func_all_modules): Add mempcpy.
23836
23837 2003-07-14  Simon Josefsson  <jas@extundo.com>
23838
23839         * m4/mempcpy.m4: New file.
23840
23841 2003-07-14  Simon Josefsson  <jas@extundo.com>
23842
23843         * lib/mempcpy.h: New file.
23844         * lib/mempcpy.c: New file.
23845
23846 2003-07-14  Paul Eggert  <eggert@twinsun.com>
23847
23848         * modules/getdate, modules/posixtm: Depend on mktime.
23849
23850 2003-07-14  Paul Eggert  <eggert@twinsun.com>
23851
23852         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
23853         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
23854         unicodeio.c, unicodeio.h, unlocked-io.h:
23855         Switch from LGPL to GPL.
23856
23857 2003-07-14  Paul Eggert  <eggert@twinsun.com>
23858
23859         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
23860         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
23861         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
23862         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
23863         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
23864         updated automatically by ../config/srclist-update.  This changes
23865         their license from LPGL to GPL.
23866
23867 2003-07-14  Paul Eggert  <eggert@twinsun.com>
23868
23869         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
23870         assumed to refer to the root of the most recent stable gettext version.
23871         * config/srclistvars.sh: Add defaults for eggert.
23872         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
23873         Match "This program" as well as "The program".  This is needed
23874         for gettext.
23875
23876 2003-07-14  Jim Meyering  <jim@meyering.net>
23877
23878         Don't emit diagnostics.  Let callers do that.
23879         * lib/save-cwd.c: Don't include "error.h".
23880         (save_cwd): Don't call error.  Ensure that errno is valid
23881         when returning nonzero.
23882
23883         * lib/save-cwd.h (restore_cwd): Update prototype.
23884         * lib/save-cwd.c (restore_cwd): Remove two parameters.
23885         Simplify.  Don't call error upon failure.  Let callers do that.
23886         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
23887         when auditing is enabled.  But don't bother updating the #if.
23888
23889 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
23890
23891         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
23892         it breaks C++ compilation.
23893         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
23894
23895 2003-07-10  Simon Josefsson  <jas@extundo.com>
23896
23897         * modules/strchrnul (Makefile.am): Add strchrnul.h.
23898
23899 2003-07-10  Jim Meyering  <jim@meyering.net>
23900
23901         * m4/clock_time.m4: Remove trailing blank.
23902         * m4/intmax_t.m4: Likewise.
23903
23904 2003-07-10  Jim Meyering  <jim@meyering.net>
23905
23906         * lib/vasnprintf.c: Remove trailing blanks.
23907         Make cpp indentation consistent.
23908
23909 2003-07-09  Paul Eggert  <eggert@twinsun.com>
23910
23911         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
23912         posixver.c, strftime.c, strnlen.c, strverscmp.c:
23913         Switch from LGPL to GPL.
23914
23915 2003-07-09  Paul Eggert  <eggert@twinsun.com>
23916
23917         * config/srclist.txt: Sort sublists.  Add
23918         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
23919         that differ from gnulib for one reason or another; we'd like this list
23920         to be smaller but for now let's document what we have.
23921
23922 2003-07-08  Paul Eggert  <eggert@twinsun.com>
23923
23924         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
23925         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
23926         and sweeter "eval x=$x".
23927         * config/srclist.txt: Get lib/argp* from glibc.
23928
23929 2003-07-07  Paul Eggert  <eggert@twinsun.com>
23930
23931         * lib/mktime.c: Fix some boundary cases and remove need for floating
23932         point.
23933
23934         Issue a compile-time diagnostic if time_t is floating point, or if
23935         two's complement arithmetic is not in effect, or if arithmetic
23936         right shift does not propagate the sign.  These assumptions were
23937         all in the original code but they weren't checked.
23938
23939         (TIME_T_MIDPOINT, verify): New macros.
23940         (__isleap): Remove; it has integer overflow problems.
23941         (leapyear): New function, without those problems.
23942         (ydhms_tm_diff): Remove; splitting into two parts.
23943         (ydhms_diff): New function, containing the arithmetic part of
23944         the old ydhms_tm_diff function.  Issue a compile-time
23945         diagnostic if we are not using C99 integer division.
23946         Avoid casts when possible.
23947         (guess_time_tm): New function, containing the checking part of
23948         the old ydhms_tm_diff function.  Return the new value, rather than
23949         the difference between it and the old.  Accept a new argument T
23950         so that *T specifies the old value.  Check for overflow in the result.
23951
23952         (__mktime_internal): Use a time_t offset, not a long int offset.
23953         This undoes the 2003-06-04 change, which is no longer needed now
23954         that we have better overflow checking.
23955         (localtime_offset): Likewise.
23956
23957         (__mktime_internal): Avoid harmful overflow on hosts where time_t
23958         and long are 64-bit but int is only 32-bit.
23959         (ydhms_diff): Use long int to store year1 and yday1.
23960         Issue a compile-time diagnostic if long int is not wide enough.
23961
23962         (__mktime_internal): Use long int to store adjusted year and yday.
23963         Use plain C rather than preprocessor commands, if that doesn't
23964         affect efficiency.
23965         Check for overflow (and try to repair) after each probe
23966         rather than checking only at the very end.  This avoids some bugs
23967         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
23968         does not equal GMT offset at maximum time).
23969         Use integer to check for overflow rather than floating point; this
23970         is more portable to non-IEEE hosts, and is a tad faster.
23971         When we detect that we are oscillating between two values,
23972         don't check whether tm_isdst has the requested value, since
23973         we already know the answer.  When tm_isdst has the wrong value,
23974         use a different heuristic to find the right one, based on the
23975         extreme values actually observed in practice in tz2003a,
23976         rather than the (overly optimistic) "previous 3 calendar quarters".
23977
23978         (not_equal_tm, print_tm, check_result): Use "const T" rather than
23979         "T const" to accommodate glibc style.
23980         (check_result): Use less-confusing report format.  "long" -> "long int.
23981         (main): Likewise.
23982         Don't loop if the iteration overflows time_t.
23983         Allow a negative step in the iteration.
23984
23985 2003-07-06  Karl Berry  <karl@gnu.org>
23986
23987         * config/depcomp: update from automake.
23988         * config/config.sub: update from prep.
23989
23990 2003-07-03  Karl Berry  <karl@gnu.org>
23991
23992         * config/config.guess: update from prep.
23993
23994 2003-07-01  Paul Eggert  <eggert@twinsun.com>
23995
23996         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
23997         xreadlink.c now includes it unconditionally.
23998
23999 2003-07-01  Paul Eggert  <eggert@twinsun.com>
24000
24001         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
24002         having it depend on HAVE_SYS_TYPES_H.
24003
24004 2003-07-01  Bruno Haible  <bruno@clisp.org>
24005
24006         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
24007         <sys/types.h> should be sufficient.
24008         Reported by Paul Eggert.
24009
24010 2003-06-26  Karl Berry  <karl@gnu.org>
24011
24012         * config/depcomp: update from automake.
24013
24014 2003-06-26  Bruno Haible  <bruno@clisp.org>
24015
24016         * modules/human: Depend on module stdbool.
24017
24018 2003-06-25  Bruno Haible  <bruno@clisp.org>
24019
24020         * modules/readlink: New file.
24021         * modules/xreadlink: Depend on it.
24022         * MODULES.html.sh (func_all_modules): Add readlink.
24023
24024 2003-06-25  Bruno Haible  <bruno@clisp.org>
24025
24026         * m4/readlink.m4: New file.
24027
24028 2003-06-25  Bruno Haible  <bruno@clisp.org>
24029
24030         * lib/readlink.c: New file.
24031
24032 2003-06-22  Karl Berry  <karl@gnu.org>
24033
24034         * config/srclist.txt: update mkinstalldirs from automake.
24035         * config/mkinstalldirs: update.
24036
24037 2003-06-22  Bruno Haible  <bruno@clisp.org>
24038
24039         Portability to mingw32.
24040         * m4/ssize_t.m4: New file, from GNU gettext.
24041         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
24042         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
24043
24044 2003-06-22  Bruno Haible  <bruno@clisp.org>
24045
24046         * modules/safe-read: Add m4/ssize_t.m4.
24047         * modules/xreadlink: Add m4/ssize_t.m4.
24048
24049 2003-06-20  Bruno Haible  <bruno@clisp.org>
24050
24051         Assume C89, so PARAMS isn't needed.
24052         * lib/unicodeio.h (PARAMS): Remove.
24053         * lib/unicodeio.c: Don't use PARAMS.
24054
24055 2003-06-18  Karl Berry  <karl@gnu.org>
24056
24057         * config/config.{guess,sub}: update from prep.
24058
24059 2003-06-18  Jim Meyering  <jim@meyering.net>
24060
24061         Merge changes from coreutils.
24062         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
24063         Remove explicit declarations of xmalloc and realloc.
24064         Include xalloc.h.
24065         (read_utmp): Remove anachronistic cast of xmalloc.
24066
24067 2003-06-17  Paul Eggert  <eggert@twinsun.com>
24068
24069         Assume C89, so PARAMS isn't needed.
24070         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
24071         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
24072         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
24073         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
24074         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
24075         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
24076         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
24077         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
24078         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
24079         lib/xstrtod.h, lib/xstrtol.h: Likewise.
24080         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
24081         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
24082         no longer needed. Anyway, config.h should always be included before any
24083         other file.
24084
24085 2003-06-11  Simon Josefsson  <jas@extundo.com>
24086
24087         * modules/sysexits: New file.
24088         * MODULES.html.sh (func_all_modules): Add sysexits.
24089
24090 2003-06-11  Simon Josefsson  <jas@extundo.com>
24091
24092         * lib/sysexit_.h: New file.
24093
24094 2003-06-11  Derek Price  <derek@ximbiot.com>
24095
24096         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
24097         necessary.
24098
24099 2003-06-11  Bruno Haible  <bruno@clisp.org>
24100
24101         * m4/sysexits.m4: New file.
24102
24103 2003-06-10  Simon Josefsson  <jas@extundo.com>
24104
24105         * lib/argp.h: New file, from glibc.
24106         * lib/argp-ba.c: New file, from glibc.
24107         * lib/argp-eexst.c: New file, from glibc.
24108         * lib/argp-fmtstream.c: New file, from glibc.
24109         * lib/argp-fmtstream.h: New file, from glibc.
24110         * lib/argp-fs-xinl.c: New file, from glibc.
24111         * lib/argp-help.c: New file, from glibc.
24112         * lib/argp-namefrob.h: New file, from glibc.
24113         * lib/argp-parse.c: New file, from glibc.
24114         * lib/argp-pv.c: New file, from glibc.
24115         * lib/argp-pvh.c: New file, from glibc.
24116         * lib/argp-xinl.c: New file, from glibc.
24117
24118 2003-06-10  Simon Josefsson  <jas@extundo.com>
24119
24120         * modules/strchrnul: New file.
24121
24122 2003-06-10  Simon Josefsson  <jas@extundo.com>
24123
24124         * modules/argp: New file.
24125
24126 2003-06-10  Simon Josefsson  <jas@extundo.com>
24127
24128         * m4/strchrnul.m4: New file.
24129
24130 2003-06-10  Simon Josefsson  <jas@extundo.com>
24131
24132         * lib/strchrnul.h: New file.
24133         * lib/strchrnul.c: New file.
24134
24135 2003-06-10  Bruno Haible  <bruno@clisp.org>
24136
24137         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
24138
24139 2003-06-07  Karl Berry  <karl@gnu.org>
24140
24141         * config/config.{guess,sub}: update from prep.
24142
24143 2003-06-07  Jim Meyering  <jim@meyering.net>
24144
24145         * modules/strtod: Use $(...) notation, not @...@ for
24146         AC_REPLACE'd variables.
24147         * modules/localcharset: Likewise.
24148
24149 2003-06-07  Jim Meyering  <jim@meyering.net>
24150
24151         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
24152         in place of my name in the copyright comment.
24153         Remove definition and uses of __P.
24154
24155         From coreutils.
24156         * lib/stat.c: Don't declare xmalloc explicitly.
24157         Instead, include "xalloc.h".
24158         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
24159         xrealloc, and xcalloc return values.
24160         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
24161         Improve comment.
24162         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
24163
24164 2003-06-07  Bruno Haible  <bruno@clisp.org>
24165
24166         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
24167         avoid AC_CONFIG_LINKS.
24168         * modules/fnmatch (Makefile.am): Use explicit creation rule for
24169         fnmatch.h, to avoid AC_CONFIG_LINKS.
24170         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
24171
24172 2003-06-07  Bruno Haible  <bruno@clisp.org>
24173
24174         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
24175         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
24176         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24177         directory.
24178         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
24179         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
24180         directory.
24181
24182 2003-06-06  Jim Meyering  <jim@meyering.net>
24183
24184         Merge from coreutils.
24185         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
24186         Consolidate declarations and initializations of *_base* locals.
24187
24188         Merge from coreutils.
24189         This avoids a core dump on systems without GNU putenv,
24190         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
24191         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
24192         (unsetenv): New static function, from GNU libc.
24193         (rpl_putenv): Use it.
24194
24195         * lib/modechange.c: Remove trailing blanks.
24196
24197         Merge from coreutils.
24198         * lib/fsusage.c: Remove declaration of statfs.
24199         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
24200
24201         * lib/posixtm.c: Include <stdbool.h> unconditionally.
24202
24203 2003-06-06  Jim Meyering  <jim@meyering.net>
24204
24205         * lib/stdbool_.h: Renamed from stdbool.h.in.
24206
24207 2003-06-06  Jim Meyering  <jim@meyering.net>
24208             Bruno Haible  <bruno@clisp.org>
24209
24210         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
24211         Adjust Makefile.am snippet not to redirect directly to target.
24212         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
24213
24214 2003-06-05  Paul Eggert  <eggert@twinsun.com>
24215
24216         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
24217         mismatch, look in future quarters as well as past.  This fixes a
24218         bug when processing fall-backwards gaps immediately after a long
24219         period of daylight-saving time.
24220
24221         * lib/mktime.c: Assume freestanding C89 or better.
24222         (HAVE_LIMITS_H): Remove.  Assume it's 1.
24223         (__P): Remove; not used.
24224         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
24225         (mktime, not_equal_tm, print_tm, check_result,
24226         main): Use prototypes.  Use const * where appropriate.
24227         (main): Fix typo in testing code that uncovered by above changes.
24228         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
24229
24230 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24231
24232         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
24233         locale.h, localeconv.  This merges changes from coreutils.
24234
24235         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
24236         It can be removed after the next Autoconf is released.
24237         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
24238         needed.
24239
24240 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24241
24242         * lib/mktime.c: Fix Debian bug 177940
24243         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
24244         (localtime_offset): Now long int, not time_t, because we want it
24245         to be guaranteed to be signed.  All uses changed.
24246         (__mktime_internal): If overflow would occur when adding offset,
24247         don't add it.
24248
24249         Merge 'human' changes from coreutils.  Rewrite to support
24250         locale-specific notations like thousands separators.
24251         * lib/human.c: Simplify authorship notice.
24252         Include human.h immediately after config.h.
24253         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
24254         <limits.h>: Do not include, since human.h does.
24255         (SIZE_MAX, UINTMAX_MAX): New macros.
24256         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
24257         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
24258         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
24259         (power_letter): Renamed from suffixes.
24260         (generate_suffix_backwards): Remove.
24261         (adjust_value): Now takes int style (because of human.h changes)
24262         and long double value (for greater precision on some platforms).
24263         (group_number): New function.
24264         (human_readable): Use it.  Use integer options, not enum.
24265         Put the options before the sizes in the arg list.
24266         Support all the new options.
24267         The old human_readable function has been removed;
24268         use inttostr.h instead.
24269         (human_readable, default_block_size, humblock):
24270         Use uintmax_t, not int, for block sizes.
24271         (human_readable_inexact, block_size_types): Remove.
24272         (block_size_opts): New constant.
24273         (human_options): Renamed from human_block_size, with new signature
24274         that allows block sizes up to UINTMAX_MAX.  All callers changed.
24275         * lib/human.h: Add copyright and authorship notice.
24276         Include <limits.h> and <stdbool.h> unconditionally.
24277         (PARAMS): Remove.  All uses removed.
24278         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
24279         (enum human_inexact_style): Remove tag; now a nameless enum.
24280         (human_floor, human_ceiling, human_round_to_even): Now have
24281         values 2, 0, 1 rather than -1, 1, 0.
24282         (human_group_digits, human_suppress_point_zero, human_autoscale,
24283         human_base_1024, human_SI, human_B): New constants.
24284         (human_readable_inexact, human_block_size): Remove.
24285         (human_readable): Size args are now uintmax_t, not int.
24286         (human_options): New decl.
24287
24288         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
24289         unnecessary now that we assume C89 or better.  This change
24290         imported from coreutils.
24291
24292         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
24293         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
24294         in the 2003-05-30 sync from glibc.
24295
24296         .h files should stand alone, but we shouldn't include <sys/types.h>
24297         if we can get away with just <stddef.h>.
24298
24299         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
24300         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
24301         rather than <sys/types.h>, as we merely need size_t.
24302         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
24303         to get size_t.
24304         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
24305         Include <stdio.h>, to get FILE.
24306         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
24307         memcasecmp.h has included <stddef.h> and all we need is size_t.
24308         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
24309         our interface, instead of including <sys/types.h>
24310
24311 2003-06-04  Paul Eggert  <eggert@twinsun.com>
24312
24313         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
24314         now, as glibc mktime is buggy on non-glibc systems.
24315
24316 2003-06-03  Karl Berry  <karl@gnu.org>
24317
24318         * config/config.sub: update from prep.
24319
24320 2003-06-02  Paul Eggert  <eggert@twinsun.com>
24321
24322         [from coreutils]
24323         Fix some minor time-related bugs with POSIX time arguments.
24324         Some valid time stamps were being rejected (notably -1, and
24325         time stamps before 1900 on 64-bit hosts).  And some invalid
24326         time stamps were being accepted, e.g. September 31.
24327
24328         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
24329         that we can return (time_t) -1 successfully.
24330         * lib/posixtm.c: Likewise.
24331         [HAVE_STDBOOL_H]: Include <stdbool.h>.
24332         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
24333         (t): Remove static var.
24334         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
24335         of static var.  All uses changed.
24336         (year): Do not reject years before 1900; they can occur with
24337         64-bit time_t.
24338         (posix_time_parse): Do not check for out-of-range components;
24339         that is now the caller's responsibility, since our checks were
24340         only approximations.
24341         (posixtime): Use mktime to check for out-of-range components,
24342         since it knows them exactly.
24343         If mktime returns (time_t) -1, check whether an error actually occurred
24344         by invoking localtime on -1.
24345         (main) [TEST_POSIXTIME]: Check for input data errors, and report
24346         posixtime failures better.
24347         Improve the test data (in comments only).
24348
24349 2003-06-02  Karl Berry  <karl@gnu.org>
24350
24351         * config/mkinstalldirs (version): new variable.
24352         (--version): new option.
24353         (usage): improve message.
24354
24355 2003-05-30  Karl Berry  <karl@gnu.org>
24356
24357         * lib/mktime.c: update from libc.
24358
24359 2003-05-30  Bruno Haible  <bruno@clisp.org>
24360
24361         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
24362         * config/config.rpath: Upgrade to gettext-0.12.1.
24363
24364 2003-05-30  Bruno Haible  <bruno@clisp.org>
24365
24366         * m4/gettext.m4: Upgrade to gettext-0.12.1.
24367         * m4/nls.m4: New file, from gettext-0.12.1.
24368         * m4/po.m4: New file, from gettext-0.12.1.
24369         * m4/progtest.m4: Upgrade to gettext-0.12.1.
24370
24371 2003-05-30  Bruno Haible  <bruno@clisp.org>
24372
24373         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
24374         * lib/localcharset.h: Likewise.
24375         * lib/localcharset.c: Likewise.
24376
24377 2003-05-29  Karl Berry  <karl@gnu.org>
24378
24379         * config/config.rpath: update from gettext.
24380
24381 2003-05-28  Paul Eggert  <eggert@twinsun.com>
24382
24383         Assume the headers required for C89 freestanding compilers.
24384         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
24385         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
24386         * m4/human.m4 (gl_HUMAN): Likewise.
24387         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
24388         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
24389         * m4/userspec.m4 (gl_USERSPEC): Likewise.
24390         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
24391         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
24392         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
24393
24394 2003-05-28  Paul Eggert  <eggert@twinsun.com>
24395
24396         Assume the headers required for C89 freestanding compilers.
24397         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
24398         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
24399         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
24400         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
24401         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
24402         define, since <limits.h> is guaranteed to do that.
24403         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
24404         * lib/exclude.c: Include <stdbool.h> unconditionally.
24405         * lib/tempname.c: Include <stddef.h> unconditionally.
24406         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
24407         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
24408         <stddef.h> does that.
24409         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
24410         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
24411         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
24412         needed.
24413         * lib/xstrtol.c: Likewise.
24414         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
24415         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
24416
24417         * lib/addext.c (addext): Use assignment rather than cast, to avoid
24418         warnings on some platforms.
24419
24420         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
24421         arbitrarily.
24422
24423 2003-05-26  Jim Meyering  <jim@meyering.net>
24424
24425         Merge in a change from coreutils:
24426         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
24427         that is guaranteed to be `no'.  Use `no_such_member' to indicate
24428         that condition, rather than `-1' which is slightly misleading.
24429         Change the name of the cache variable to have the gl_ prefix.
24430         Prompted by a patch from Richard Dawe for DJGPP.
24431
24432 2003-05-24  Karl Berry  <karl@gnu.org>
24433
24434         * config/config.guess: update from prep.
24435
24436 2003-05-22  Karl Berry  <karl@gnu.org>
24437
24438         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
24439
24440 2003-05-20  Karl Berry  <karl@gnu.org>
24441
24442         * config/config.guess: update from prep.
24443
24444 2003-05-18  Karl Berry  <karl@gnu.org>
24445
24446         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
24447         might actually be set by the user.
24448
24449         * config/depcomp, install-sh, mdate-sh: update from automake.
24450
24451 2003-05-17  Bruno Haible  <bruno@clisp.org>
24452
24453         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
24454         invalid expansion for AC_EGREP_CPP.
24455         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
24456         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
24457         Suggested by Akim Demaille <akim@epita.fr> in
24458         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
24459
24460 2003-05-12  Jim Meyering  <jim@meyering.net>
24461
24462         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
24463         the space-padded-by-default conversion specifiers, %e, %k, %l.
24464
24465 2003-05-12  Bruno Haible  <bruno@clisp.org>
24466
24467         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
24468         the string is longer than 4 KB.
24469
24470 2003-05-11  Karl Berry  <karl@gnu.org>
24471
24472         * config/config.{guess,sub}: update from prep.
24473
24474 2003-05-09  Bruno Haible  <bruno@clisp.org>
24475
24476         * modules/error: Add m4/strerror_r.m4 to file list.
24477
24478 2003-05-03  Bruno Haible  <bruno@clisp.org>
24479
24480         Upgrade to Unicode-4.0.
24481         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
24482         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
24483         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
24484         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
24485         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
24486         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
24487         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
24488         Change width of U+E0100..U+E01EF from 1 to 0.
24489
24490 2003-04-25  Jim Meyering  <jim@meyering.net>
24491
24492         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
24493         of type size_t, not int.
24494
24495 2003-04-25  Bruno Haible  <bruno@clisp.org>
24496
24497         * lib/copy-file.c: Include <stddef.h>, for size_t.
24498
24499 2003-04-21  Paul Eggert  <eggert@twinsun.com>
24500
24501         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
24502         code which expansion is under static control.  Patch imported from
24503         Akim Demaille's patch to Bison; see
24504         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
24505
24506 2003-04-14  Bruno Haible  <bruno@clisp.org>
24507
24508         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
24509
24510 2003-04-11  Jim Meyering  <jim@meyering.net>
24511
24512         Merge changes from Coreutils.
24513
24514         2003-03-22  Jim Meyering  <jim@meyering.net>
24515
24516         * lib/strftime.c (widen): Cast alloca return value to proper type.
24517
24518         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
24519
24520         From GNU libc.
24521         * lib/strftime.c (my_strftime): Handle very large width
24522         specifications for numeric values correctly.  Improve checks for
24523         overflow.
24524
24525         2003-01-19  Jim Meyering  <jim@meyering.net>
24526
24527         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
24528         definitions.
24529         (nl_get_alt_digit) [! defined my_strftime]: Define.
24530         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
24531         _nl_get_alt_digit and _nl_get_walt_digit.
24532
24533         * lib/strftime.c (my_strftime): Merge in locale-related changes from
24534         libc. These changes have no effect outside of _LIBC.
24535
24536 2003-04-10  Bruno Haible  <bruno@clisp.org>
24537
24538         * modules/findprog: New file.
24539         * MODULES.html.sh (func_all_modules): Add it.
24540
24541 2003-04-10  Bruno Haible  <bruno@clisp.org>
24542
24543         * m4/findprog.m4: New file.
24544         * m4/eaccess.m4: New file.
24545
24546 2003-04-10  Bruno Haible  <bruno@clisp.org>
24547
24548         * lib/findprog.h: New file, from GNU gettext.
24549         * lib/findprog.c: New file, from GNU gettext.
24550
24551 2003-04-05  Jim Meyering  <jim@meyering.net>
24552
24553         Merge changes from Coreutils.
24554
24555         * lib/exclude.h (PARAMS): Remove definition and uses.
24556         * lib/exclude.c: Remove uses of `PARAMS'.
24557
24558         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
24559         Add test-cases for DOS filenames. Declare program_name.
24560         (main): Set up program_name.  Patch by Rich Dawe.
24561
24562         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
24563         error from mntctl.
24564         Use mntctl's return value to drive the entry-processing loop, since
24565         we can't rely on the value of the vmt_length member in the last
24566         entry.  On some systems doing so could result in exhausting
24567         virtual memory.  Based in part on a patch from Mike Jetzer.
24568
24569 2003-04-04  Bruno Haible  <bruno@clisp.org>
24570
24571         * modules/linebreak: New file.
24572         * MODULES.html.sh (func_all_modules): Add it.
24573
24574 2003-04-04  Bruno Haible  <bruno@clisp.org>
24575
24576         * m4/linebreak.m4: New file.
24577
24578 2003-04-04  Bruno Haible  <bruno@clisp.org>
24579
24580         * lib/linebreak.h: New file, from GNU gettext.
24581         * lib/linebreak.c: New file, from GNU gettext with slight
24582         modifications.
24583         * lib/lbrkprop.h: New file, from GNU gettext.
24584
24585 2003-04-03  Bruno Haible  <bruno@clisp.org>
24586
24587         * modules/utf8-ucs4: New file.
24588         * modules/utf16-ucs4: New file.
24589         * modules/ucs4-utf8: New file.
24590         * modules/ucs4-utf16: New file.
24591         * MODULES.html.sh (func_all_modules): Add them.
24592
24593 2003-04-03  Bruno Haible  <bruno@clisp.org>
24594
24595         * m4/utf-ucs4.m4: New file.
24596         * m4/ucs4-utf.m4: New file.
24597
24598 2003-04-03  Bruno Haible  <bruno@clisp.org>
24599
24600         * lib/utf8-ucs4.h: New file, from GNU gettext.
24601         * lib/utf16-ucs4.h: New file, from GNU gettext.
24602         * lib/ucs4-utf8.h: New file, from GNU gettext.
24603         * lib/ucs4-utf16.h: New file, from GNU gettext.
24604
24605 2003-04-02  Bruno Haible  <bruno@clisp.org>
24606
24607         * modules/binary-io: New file.
24608         * MODULES.html.sh (func_all_modules): Add it.
24609
24610 2003-04-02  Bruno Haible  <bruno@clisp.org>
24611
24612         * lib/binary-io.h: New file, from GNU gettext.
24613
24614 2003-04-01  Bruno Haible  <bruno@clisp.org>
24615
24616         * modules/pathname: New file.
24617         * MODULES.html.sh (func_all_modules): Add it.
24618
24619 2003-04-01  Bruno Haible  <bruno@clisp.org>
24620
24621         * lib/pathname.h: New file, from GNU gettext.
24622         * lib/concatpath.c: New file, from GNU gettext.
24623
24624 2003-03-30  Bruno Haible  <bruno@clisp.org>
24625
24626         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
24627
24628 2003-03-30  Bruno Haible  <bruno@clisp.org>
24629
24630         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
24631         function chown() doesn't exist.
24632
24633 2003-03-28  Bruno Haible  <bruno@clisp.org>
24634
24635         * modules/copy-file: New file.
24636         * MODULES.html.sh (func_all_modules): Add it.
24637
24638 2003-03-28  Bruno Haible  <bruno@clisp.org>
24639
24640         * m4/copy-file.m4: New file.
24641
24642 2003-03-28  Bruno Haible  <bruno@clisp.org>
24643
24644         * lib/copy-file.h: New file, from GNU gettext.
24645         * lib/copy-file.c: New file, from GNU gettext.
24646
24647 2003-03-18  Jim Meyering  <jim@meyering.net>
24648
24649         * lib/quote.c (quote_n): Fix typo in comment.
24650
24651 2003-03-18  Bruno Haible  <bruno@clisp.org>
24652
24653         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
24654         checking.
24655         * m4/onceonly_2_57.m4: Likewise.
24656
24657 2003-03-17  Bruno Haible  <bruno@clisp.org>
24658
24659         * m4/onceonly.m4: Require autoconf 2.54 or newer.
24660         (m4_quote): Remove macro.
24661         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
24662
24663 2003-03-14  Jim Meyering  <jim@meyering.net>
24664
24665         Merge changes from Coreutils.
24666         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
24667         to be const, in order to avoid warnings.
24668         (obstack_room): Likewise.
24669         (obstack_empty_p): Likewise.
24670
24671 2003-03-14  Bruno Haible  <bruno@clisp.org>
24672
24673         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
24674         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
24675
24676 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24677
24678         Merge changes from Bison.
24679         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
24680         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
24681         when compiling Bison 1.875's `bitset bset = obstack_alloc
24682         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
24683         * lib/hash.c: Include <stdbool.h> unconditionally.
24684
24685 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24686
24687         * m4/onceonly.m4 (m4_quote): New macro.
24688         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
24689         Quote AC_FOREACH variable-expansions properly.
24690
24691 2003-03-13  Paul Eggert  <eggert@twinsun.com>
24692
24693         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
24694
24695 2003-03-09  Paul Eggert  <eggert@twinsun.com>
24696
24697         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
24698         Reported by Bruce Becker; see:
24699         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
24700
24701 2003-03-03  Paul Eggert  <eggert@twinsun.com>
24702             Bruno Haible  <bruno@clisp.org>
24703
24704         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
24705         Reported by John Hughes, see
24706         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
24707
24708 2003-02-20  Bruno Haible  <bruno@clisp.org>
24709
24710         * MODULES.html.sh (func_all_modules): Add poll.
24711
24712 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24713
24714         * modules/poll: New file.
24715
24716 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24717
24718         * lib/poll_.h: New file.
24719         * lib/poll.c: New file.
24720
24721 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
24722
24723         * m4/poll.m4: New file.
24724
24725 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
24726
24727         * modules/mathl: New file.
24728
24729 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
24730
24731         * lib/mathl.h: New file.
24732         * lib/acosl.c: New file.
24733         * lib/asinl.c: New file.
24734         * lib/atanl.c: New file.
24735         * lib/ceill.c: New file.
24736         * lib/cosl.c: New file.
24737         * lib/expl.c: New file.
24738         * lib/floorl.c: New file.
24739         * lib/frexpl.c: New file.
24740         * lib/ldexpl.c: New file.
24741         * lib/logl.c: New file.
24742         * lib/sincosl.c: New file.
24743         * lib/sinl.c: New file.
24744         * lib/sqrtl.c: New file.
24745         * lib/tanl.c: New file.
24746         * lib/trigl.c: New file.
24747         * lib/trigl.h: New file.
24748
24749 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
24750
24751         * m4/mathl.m4: New file.
24752
24753 2003-02-18  Bruno Haible  <bruno@clisp.org>
24754
24755         * MODULES.html.sh (func_all_modules): Add mathl.
24756
24757 2003-02-17  Bruno Haible  <bruno@clisp.org>
24758
24759         * modules/mkdtemp: New module.
24760         * MODULES.html.sh (func_all_modules): Add it.
24761
24762 2003-02-17  Bruno Haible  <bruno@clisp.org>
24763
24764         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
24765
24766 2003-02-17  Bruno Haible  <bruno@clisp.org>
24767
24768         * lib/mkdtemp.h: New file, from GNU gettext.
24769         * lib/mkdtemp.c: New file, from GNU gettext.
24770
24771 2003-02-02  Jim Meyering  <jim@meyering.net>
24772
24773         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
24774         e.g. glibc-2.2.93.
24775
24776 2003-01-31  Bruno Haible  <bruno@clisp.org>
24777
24778         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
24779         'rpl_rename'.
24780         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
24781         'rpl_strnlen'.
24782         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
24783         'rpl_strtod'.
24784         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
24785         'rpl_utime'.
24786
24787 2003-01-31  Bruno Haible  <bruno@clisp.org>
24788
24789         * lib/rename.c: #undef rename before defining rpl_rename.
24790         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
24791
24792 2003-01-30  Bruno Haible  <bruno@clisp.org>
24793
24794         * modules/vasnprintf, modules/vasprintf: New modules.
24795         * MODULES.html.sh (func_all_modules): Add them.
24796
24797 2003-01-30  Bruno Haible  <bruno@clisp.org>
24798
24799         * m4/signed.m4: New file, from GNU gettext.
24800         * m4/longdouble.m4: New file, from GNU gettext.
24801         * m4/wchar_t.m4: New file, from GNU gettext.
24802         * m4/wint_t.m4: New file, from GNU gettext.
24803         * m4/vasnprintf.m4: New file.
24804         * m4/vasprintf.m4: New file.
24805
24806 2003-01-30  Bruno Haible  <bruno@clisp.org>
24807
24808         * lib/printf-args.h: New file, from GNU gettext.
24809         * lib/printf-args.c: New file, from GNU gettext.
24810         * lib/printf-parse.h: New file, from GNU gettext.
24811         * lib/printf-parse.c: New file, from GNU gettext.
24812         * lib/vasnprintf.h: New file, from GNU gettext.
24813         * lib/vasnprintf.c: New file, from GNU gettext.
24814         * lib/asnprintf.c: New file, from GNU gettext.
24815         * lib/vasprintf.h: New file, from GNU gettext with modifications.
24816         * lib/vasprintf.c: New file, from GNU gettext.
24817         * lib/asprintf.c: New file, from GNU gettext.
24818
24819 2003-01-29  Bruno Haible  <bruno@clisp.org>
24820
24821         * modules/stpncpy: New module.
24822         * MODULES.html.sh (func_all_modules): Add it.
24823
24824 2003-01-29  Bruno Haible  <bruno@clisp.org>
24825
24826         * m4/stpncpy.m4: New file.
24827
24828 2003-01-29  Bruno Haible  <bruno@clisp.org>
24829
24830         * lib/stpncpy.h: New file, from GNU gettext with modifications.
24831         * lib/stpncpy.c: New file, from GNU gettext with modifications.
24832
24833 2003-01-28  Bruno Haible  <bruno@clisp.org>
24834
24835         * modules/c-ctype: New module.
24836         * MODULES.html.sh (func_all_modules): Add it.
24837
24838 2003-01-28  Bruno Haible  <bruno@clisp.org>
24839
24840         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
24841         Paul Eggert.
24842         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
24843         Paul Eggert.
24844
24845 2003-01-27  Bruno Haible  <bruno@clisp.org>
24846
24847         * modules/xsetenv: New module.
24848         * MODULES.html.sh (func_all_modules): Add it.
24849
24850 2003-01-27  Bruno Haible  <bruno@clisp.org>
24851
24852         * lib/xsetenv.h: New file, from GNU gettext.
24853         * lib/xsetenv.c: New file, from GNU gettext.
24854
24855 2003-01-23  Jim Meyering  <jim@meyering.net>
24856
24857         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
24858         from working on systems without dirfd (at least Irix and OSF1/Tru64).
24859
24860 2003-01-23  Bruno Haible  <bruno@clisp.org>
24861
24862         * modules/minmax: New module.
24863         * MODULES.html.sh (func_all_modules): Add it.
24864
24865 2003-01-23  Bruno Haible  <bruno@clisp.org>
24866
24867         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
24868         Eggert.
24869
24870 2003-01-22  Bruno Haible  <bruno@clisp.org>
24871
24872         * modules/exit: New module.
24873         * MODULES.html.sh (func_all_modules): Add it.
24874
24875 2003-01-22  Bruno Haible  <bruno@clisp.org>
24876
24877         * lib/exit.h: New file, from GNU gettext.
24878
24879 2003-01-19  Bruno Haible  <bruno@clisp.org>
24880
24881         * gnulib-tool: Recognize option --extract-maintainer.
24882         (func_get_maintainer): New function.
24883         * modules/*: Add Maintainer entry.
24884
24885 2003-01-16  Jim Meyering  <jim@meyering.net>
24886
24887         * m4/regex.m4: The `regex' struct is both input and output.
24888         Initialize it before each use.  Patch by Tim Waugh.
24889
24890 2003-01-16  Bruno Haible  <bruno@clisp.org>
24891
24892         * MODULES.html.sh: Add a table of contents. Add the module name as
24893         leftmost column. Add hyperlinks.
24894
24895 2003-01-15  Bruno Haible  <bruno@clisp.org>
24896
24897         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
24898
24899 2003-01-15  Bruno Haible  <bruno@clisp.org>
24900
24901         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
24902         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
24903         suffix.
24904
24905 2003-01-15  Bruno Haible  <bruno@clisp.org>
24906
24907         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
24908
24909 2003-01-15  Bruno Haible  <bruno@clisp.org>
24910
24911         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
24912         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
24913
24914 2003-01-14  Jim Meyering  <jim@meyering.net>
24915
24916         * lib/same.c (same_name): Tweak a comment.
24917
24918 2003-01-14  Bruno Haible  <bruno@clisp.org>
24919
24920         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
24921         when a string comparison is sufficient.
24922
24923 2003-01-14  Bruno Haible  <bruno@clisp.org>
24924
24925         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
24926         'unsigned int'.
24927
24928 2003-01-14  Bruno Haible  <bruno@clisp.org>
24929
24930         * lib/hash-pjw.c: Add comment about low quality of this function.
24931
24932 2003-01-13  Bruno Haible  <bruno@clisp.org>
24933
24934         * modules/stpcpy: Distribute lib/stpcpy.h.
24935         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
24936
24937 2003-01-13  Bruno Haible  <bruno@clisp.org>
24938
24939         * modules/*: Add a description.
24940         * modules/strpbrk: Fix Makefile.am snippet.
24941         * modules/strtoimax: Fix dependencies.
24942         * modules/strtoumax: Likewise.
24943
24944 2003-01-13  Bruno Haible  <bruno@clisp.org>
24945
24946         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
24947         * modules/alloca (Makefile.am): All object files depend on alloca.h.
24948         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
24949
24950 2003-01-13  Bruno Haible  <bruno@clisp.org>
24951
24952         * gnulib-tool (func_create_testdir): Store config/* files in the main
24953         directory.
24954         * config.rpath: Move to ...
24955         * config/config.rpath: ... here.
24956         * modules/gettext: Contains config/config.rpath, not config.rpath.
24957         * modules/iconv: Likewise.
24958
24959 2003-01-12  Paul Eggert  <eggert@twinsun.com>
24960
24961         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
24962         to avoid collisions with libcurses and libreadline.
24963
24964         * m4/getstr.m4: Remove.
24965         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
24966
24967 2003-01-12  Paul Eggert  <eggert@twinsun.com>
24968
24969         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
24970         to avoid collisions with libcurses and libreadline.
24971
24972         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
24973         * lib/getstr.h, getstr.c: Remove.
24974         * lib/getline.c: Include "getline.h", to check interface.
24975         Move body of old getstr.c here: this defines MIN_CHUNK and
24976         declares getdelim2, which is renamed from getstr.
24977         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
24978
24979         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
24980         All uses changed.
24981         * lib/linebuffer.h: Likewise.
24982         (readline): Remove backward-compatibility macro.
24983
24984 2003-01-12  Paul Eggert  <eggert@twinsun.com>
24985
24986         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
24987         to avoid collisions with libcurses and libreadline.
24988         * getstr: Remove.
24989         * MODULES.html.sh: Remove getstr.
24990         * modules/getline: Depend on unlocked-io, not getstr.
24991
24992 2003-01-12  Jim Meyering  <jim@meyering.net>
24993
24994         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
24995
24996 2003-01-10  Bruno Haible  <bruno@clisp.org>
24997
24998         * modules/alloca: Change Makefile.am requirements. Simplify Include
24999         requirements. Add lib/alloca_.h to file list.
25000
25001 2003-01-10  Bruno Haible  <bruno@clisp.org>
25002
25003         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
25004
25005 2003-01-10  Bruno Haible  <bruno@clisp.org>
25006
25007         * lib/alloca_.h: New file.
25008         * lib/getdate.y: Unconditionally include alloca.h.
25009         * lib/makepath.c: Likewise.
25010         * lib/setenv.c: Likewise.
25011         * lib/userspec.c: Likewise.
25012
25013 2003-01-09  Karl Berry  <karl@gnu.org>
25014
25015         * MODULES.html.sh: include `dirname $0` in PATH, to find
25016         gnulib-tool.
25017
25018 2003-01-09  Bruno Haible  <bruno@clisp.org>
25019
25020         * modules/stdbool: Change configure.ac, Makefile.am requirements.
25021         Simplify Include requirements. Add lib/stdbool.h.in to file list.
25022
25023 2003-01-09  Bruno Haible  <bruno@clisp.org>
25024
25025         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
25026
25027 2003-01-09  Bruno Haible  <bruno@clisp.org>
25028
25029         * lib/stdbool.h.in: New file.
25030
25031 2003-01-09  Bruno Haible  <bruno@clisp.org>
25032
25033         * gnulib-tool (func_all_modules): Ignore files ending in ~.
25034         * MODULES.html.sh: Likewise.
25035
25036 2003-01-08  Jim Meyering  <jim@meyering.net>
25037
25038         * lib/full-write.c: Undefine and define-away `const' after inclusion
25039         of errno.h, not before.  Suggestion from Bruno Haible.
25040
25041 2003-01-08  Bruno Haible  <bruno@clisp.org>
25042
25043         * modules/full-read: Depend on full-write.
25044
25045 2003-01-08  Bruno Haible  <bruno@clisp.org>
25046
25047         * lib/safe-read.c: Include specification header first, to ensure its
25048         selfcontainedness.
25049         * lib/full-write.c: Likewise.
25050
25051 2003-01-07  Jim Meyering  <jim@meyering.net>
25052
25053         * lib/full-write.c: Rework so that it may serve to define full_read,
25054         too.
25055         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
25056
25057 2003-01-07  Bruno Haible  <bruno@clisp.org>
25058
25059         * lib/strtoimax.c: Include <stdint.h> as an alternative to
25060         <inttypes.h>.
25061         * lib/xstrtol.h: Likewise.
25062         * lib/xstrtoimax.c: Likewise.
25063         * lib/xstrtoumax.c: Likewise.
25064         * lib/human.h: Likewise.
25065
25066         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
25067         on systems that have <inttypes.h> but not <stdint.h>.
25068
25069 2003-01-07  Bruno Haible  <bruno@clisp.org>
25070
25071         * MODULES.html.sh: Add copyright notice.
25072         (missed_files): Omit CVS directory entries.
25073         (func_module): Make it work with sed-3.02.
25074         * MODULES.txt: Remove file.
25075
25076 2003-01-06  Jim Meyering  <jim@meyering.net>
25077
25078         * lib/version-etc.c: Update year in translatable copyright string.
25079
25080 2003-01-03  Karl Berry  <karl@gnu.org>
25081
25082         * config/config.{guess,sub}: update from prep.
25083
25084 2003-01-02  Karl Berry  <karl@gnu.org>
25085
25086         * doc/COPYING.DOC: belatedly updated to 1.2.
25087
25088 2003-01-01  Karl Berry  <karl@gnu.org>
25089
25090         * gnulib-tool (func_verify_module): report module name $module in
25091         error message, not $1.
25092         * gnulib-tool (create-testdir): don't complain if destdir couldn't
25093         be created, only if it doesn't exist.
25094         * gnulib-tool (last_checkin_date): don't expand the $Date here.
25095
25096 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25097
25098         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
25099
25100 2002-12-31  Paul Eggert  <eggert@twinsun.com>
25101
25102         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
25103         memcmp if strcoll doesn't work.
25104
25105 2002-12-31  Bruno Haible  <bruno@clisp.org>
25106
25107         * lib/utime.c (utime_null): No need to call ftruncate if the file was
25108         nonempty.
25109
25110 2002-12-31  Bruno Haible  <bruno@clisp.org>
25111
25112         * lib/memcoll.c (STRCOLL): New macro.
25113         (memcoll): Use it.
25114
25115 2002-12-31  Bruno Haible  <bruno@clisp.org>
25116
25117         * lib/localcharset.h: New file.
25118         * lib/localcharset.c: Include it.
25119         * lib/unicodeio.c: Likewise.
25120
25121 2002-12-31  Bruno Haible  <bruno@clisp.org>
25122
25123         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
25124         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
25125
25126 2002-12-31  Bruno Haible  <bruno@clisp.org>
25127
25128         * lib/getline.h: Include <stddef.h>, for size_t.
25129
25130         * lib/unicodeio.h: Include <stddef.h>, for size_t.
25131         * lib/unicodeio.c: Don't include <stddef.h>.
25132
25133 2002-12-31  Bruno Haible  <bruno@clisp.org>
25134
25135         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
25136         HAVE_TM_ZONE.
25137
25138 2002-12-24  Karl Berry  <karl@gnu.org>
25139
25140         * config/config.guess: update from prep.
25141
25142 2002-12-24  Bruno Haible  <bruno@clisp.org>
25143
25144         General infrasructure.
25145         * m4/README: Rewritten.
25146         * m4/onceonly.m4: New file.
25147         * m4/onceonly_2_57.m4: New file.
25148
25149         Module atexit.
25150         * m4/atexit.m4: New file.
25151
25152         Module strtod.
25153         * m4/strtod.m4: New file.
25154
25155         Module strtol.
25156         * m4/strtol.m4: New file.
25157
25158         Module strtoul.
25159         * m4/strtoul.m4: New file.
25160
25161         Module memchr.
25162         * m4/memchr.m4: New file.
25163
25164         Module memcmp.
25165         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
25166         (jm_FUNC_MEMCMP): Invoke it.
25167
25168         Module memcpy.
25169         * m4/memcpy.m4: New file.
25170
25171         Module memmove.
25172         * m4/memmove.m4: New file.
25173
25174         Module memset.
25175         * m4/memset.m4: New file.
25176
25177         Module strcspn.
25178         * m4/strcspn.m4: New file.
25179
25180         Module strpbrk.
25181         * m4/strpbrk.m4: New file.
25182
25183         Module strstr.
25184         * m4/strstr.m4: New file.
25185
25186         Module strerror.
25187         * m4/strerror.m4: New file.
25188
25189         Module mktime.
25190         * m4/mktime.m4: Renamed from jm-mktime.m4.
25191         (gl_PREREQ_MKTIME): New macro.
25192         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
25193
25194         Module malloc.
25195         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
25196         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
25197         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
25198
25199         Module realloc.
25200         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
25201         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
25202         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
25203
25204         Module strftime.
25205         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
25206         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
25207         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
25208         gl_TM_GMTOFF.
25209         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
25210
25211         Module xalloc.
25212         * m4/xalloc.m4: New file.
25213
25214         Module alloca.
25215         * m4/alloca.m4: New file.
25216
25217         Module putenv.
25218         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
25219         (jm_FUNC_PUTENV): Invoke it.
25220
25221         Module setenv.
25222         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
25223         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
25224         when invoked twice.
25225         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
25226         gt_FUNC_SETENV.
25227
25228         Module memrchr.
25229         * m4/memrchr.m4: New file.
25230
25231         Module stpcpy.
25232         * m4/stpcpy.m4: New file.
25233
25234         Module strcase.
25235         * m4/strcase.m4: New file.
25236
25237         Module strdup.
25238         * m4/strdup.m4: New file.
25239
25240         Module strnlen.
25241         * m4/strnlen.m4: New file.
25242
25243         Module strndup.
25244         * m4/strndup.m4: New file.
25245
25246         Module xstrtod.
25247         * m4/xstrtod.m4: New file.
25248
25249         Module xstrtol.
25250         * m4/xstrtol.m4: New file.
25251
25252         Module getdate.
25253         * m4/getdate.m4: New file.
25254
25255         Module unlocked-io.
25256         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
25257         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
25258         * m4/jm-glibc-io.m4n: Remove file.
25259
25260         Module long-options.
25261         * m4/long-options.m4: New file.
25262
25263         Module md5.
25264         * m4/md5.m4: New file.
25265
25266         Module sha.
25267         * m4/sha.m4: New file.
25268
25269         Module getstr.
25270         * m4/getstr.m4: New file.
25271
25272         Module getline.
25273         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
25274         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
25275         <sys/types.h>, for size_t. Use the function name gnu_getline, not
25276         simply getline. Infoke gl_PREREQ_GETLINE.
25277
25278         Module obstack.
25279         * m4/obstack.m4: New file.
25280
25281         Module hash.
25282         * m4/hash.m4: New file.
25283
25284         Module readtokens.
25285         * m4/readtokens.m4: New file.
25286
25287         Module strverscmp.
25288         * m4/strverscmp.m4: New file.
25289
25290         Module stdbool.
25291         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
25292         OSF/1.
25293
25294         Module strtoll.
25295         * m4/strtoll.m4: New file.
25296
25297         Module strtoull.
25298         * m4/strtoull.m4: New file.
25299
25300         Module strtoimax.
25301         * m4/strtoimax.m4: New file.
25302
25303         Module strtoumax.
25304         * m4/strtoumax.m4: New file.
25305
25306         Module xstrtoimax.
25307         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
25308         jm_AC_PREREQ_XSTRTOIMAX.
25309         Moved the strtol prerequisites to strtol.m4.
25310         Moved the strtoll prerequisites to strtoll.m4.
25311         Moved the strtoimax prerequisites to strtoimax.m4.
25312
25313         Module xstrtoumax.
25314         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
25315         jm_AC_PREREQ_XSTRTOUMAX.
25316         Moved the strtoul prerequisites to strtoul.m4.
25317         Moved the strtoull prerequisites to strtoull.m4.
25318         Moved the strtoumax prerequisites to strtoumax.m4.
25319
25320         Module chown.
25321         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
25322         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
25323
25324         Module dup2.
25325         * m4/dup2.m4: New file.
25326
25327         Module ftruncate.
25328         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
25329         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
25330
25331         Module getgroups.
25332         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
25333         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
25334
25335         Module gettimeofday.
25336         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
25337         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
25338         gl_PREREQ_GETTIMEOFDAY.
25339
25340         Module mkdir.
25341         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
25342         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
25343
25344         Module mkstemp.
25345         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
25346         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
25347         jm_AC_TYPE_UINTMAX_T.
25348         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
25349
25350         Module stat.
25351         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
25352         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
25353
25354         Module lstat.
25355         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
25356         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
25357
25358         Module timespec.
25359         * m4/timespec.m4 (gl_TIMESPEC): New macro.
25360         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
25361         * m4/st_mtim.m4: Indentation.
25362
25363         Module nanosleep.
25364         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
25365         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
25366         gl_PREREQ_NANOSLEEP.
25367
25368         Module regex.
25369         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
25370         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
25371         (gl_REGEX): New macro.
25372
25373         Module rename.
25374         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
25375         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
25376
25377         Module rmdir.
25378         * m4/rmdir.m4: New file.
25379
25380         Module utime.
25381         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
25382         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
25383         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
25384
25385         Module dirname.
25386         * m4/dirname.m4: New file.
25387
25388         Module getopt.
25389         * m4/getopt.m4: New file.
25390
25391         Module unistd-safer.
25392         * m4/unistd-safer.m4: New file.
25393
25394         Module fnmatch.
25395         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
25396         declaration.
25397         (gl_PREREQ_FNMATCH_EXTRA): New macro.
25398         (gl_FUNC_FNMATCH_POSIX): New macro.
25399         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
25400         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
25401         simply fnmatch.
25402
25403         Module exclude.
25404         * m4/exclude.m4: New file.
25405
25406         Module human.
25407         * m4/human.m4: New file.
25408
25409         Module acl.
25410         * m4/acl.m4: Nop.
25411
25412         Module backupfile.
25413         * m4/backupfile.m4: New file.
25414         * m4/d-ino.m4: Indentation.
25415
25416         Module fsusage.
25417         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
25418         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
25419         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
25420
25421         Module dirfd.
25422         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
25423         requirements.
25424
25425         Module euidaccess.
25426         * m4/euidaccess.m4: New file.
25427
25428         Module file-type.
25429         * m4/file-type.m4: New file.
25430
25431         Module fileblocks.
25432         * m4/fileblocks.m4: New file.
25433
25434         Module filemode.
25435         * m4/filemode.m4: New file.
25436
25437         Module isdir.
25438         * m4/isdir.m4: New file.
25439
25440         Module lchown.
25441         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
25442         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
25443
25444         Module makepath.
25445         * m4/makepath.m4: New file.
25446
25447         Module modechange.
25448         * m4/modechange.m4: New file.
25449
25450         Module mountlist.
25451         * m4/mountlist.m4: New file.
25452         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
25453         Indentation.
25454
25455         Module path-concat.
25456         * m4/path-concat.m4: New file.
25457
25458         Module pathmax.
25459         * m4/pathmax.m4: New file.
25460
25461         Module same.
25462         * m4/same.m4: New file.
25463
25464         Module save-cwd.
25465         * m4/save-cwd.m4: New file.
25466
25467         Module savedir.
25468         * m4/savedir.m4: New file.
25469
25470         Module xgetcwd.
25471         * m4/xgetcwd.m4: New file.
25472         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
25473
25474         Module xreadlink.
25475         * m4/xreadlink.m4: New file.
25476
25477         Module safe-read.
25478         * m4/safe-read.m4: New file.
25479
25480         Module safe-write.
25481         * m4/safe-write.m4: New file.
25482
25483         Module closeout.
25484         * m4/closeout.m4: New file.
25485
25486         Module stdio-safer.
25487         * m4/stdio-safer.m4: New file.
25488
25489         Module getpass.
25490         * m4/getpass.m4: New file.
25491
25492         Module getugroups.
25493         * m4/getugroups.m4: New file.
25494
25495         Module group-member.
25496         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
25497         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
25498
25499         Module idcache.
25500         * m4/idcache.m4: New file.
25501
25502         Module userspec.
25503         * m4/userspec.m4: New file.
25504
25505         Module gettime.
25506         * m4/clock_time.m4: New file.
25507         * m4/gettime.m4: New file.
25508
25509         Module settime.
25510         * m4/settime.m4: New file.
25511
25512         Module posixtm.
25513         * m4/posixtm.m4: New file.
25514
25515         Module gethostname.
25516         * m4/gethostname.m4: New file.
25517
25518         Module canon-host.
25519         * m4/canon-host.m4: New file.
25520
25521         Module gettext.
25522         * m4/codeset.m4: New file, from gettext-0.11.5.
25523         * m4/gettext.m4: New file, from gettext-0.11.5.
25524         * m4/glibc21.m4: New file, from gettext-0.11.5.
25525         * m4/iconv.m4: New file, from gettext-0.11.5.
25526         * m4/intdiv0.m4: New file, from gettext-0.11.5.
25527         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
25528         * m4/inttypes.m4: New file, from gettext-0.11.5.
25529         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
25530         * m4/isc-posix.m4: New file, from gettext-0.11.5.
25531         * m4/lcmessage.m4: New file, from gettext-0.11.5.
25532         * m4/lib-ld.m4: New file, from gettext-0.11.5.
25533         * m4/lib-link.m4: New file, from gettext-0.11.5.
25534         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
25535         * m4/progtest.m4: New file, from gettext-0.11.5.
25536         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
25537         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
25538         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
25539
25540         Module localcharset.
25541         * m4/localcharset.m4: New file.
25542
25543         Module hard-locale.
25544         * m4/hard-locale.m4: New file.
25545
25546         Module mbswidth.
25547         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
25548         onceonly macros.
25549         * m4/mbrtowc.m4: Add comment.
25550
25551         Module memcasecmp.
25552         * m4/memcasecmp.m4: New file.
25553
25554         Module memcoll.
25555         * m4/memcoll.m4: New file.
25556
25557         Module unicodeio.
25558         * m4/unicodeio.m4: New file.
25559
25560         Module rpmatch.
25561         * m4/rpmatch.m4: New file.
25562
25563         Module yesno.
25564         * m4/yesno.m4: New file.
25565
25566         Module exitfail.
25567         * m4/exitfail.m4: New file.
25568
25569         Module c-stack.
25570         * m4/c-stack.m4 (gl_C_STACK): New macro.
25571         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
25572
25573         Module error.
25574         * m4/error.m4 (gl_ERROR): New macro.
25575         (jm_PREREQ_ERROR): Use onceonly macros.
25576
25577         Module fatal.
25578         * m4/fatal.m4: New file.
25579
25580         Module getloadavg.
25581         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
25582         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
25583
25584         Module getpagesize.
25585         * m4/getpagesize.m4: New file.
25586
25587         Module getusershell.
25588         * m4/getusershell.m4: New file.
25589
25590         Module physmem.
25591         * m4/physmem.m4: New file.
25592
25593         Module posixver.
25594         * m4/posixver.m4: New file.
25595
25596         Module quotearg.
25597         * m4/quotearg.m4: New file.
25598
25599         Module quote.
25600         * m4/quote.m4: New file.
25601
25602         Module readutmp.
25603         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
25604
25605         Module sig2str.
25606         * m4/sig2str.m4: New file.
25607
25608         Other.
25609         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
25610         ulonglong.m4.
25611         * m4/intmax_t.m4: New file.
25612         * m4/d-type.m4: Indentation.
25613         * m4/jm-macros.m4: Update.
25614         * m4/prereq.m4 (jm_PREREQ): Update.
25615         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
25616         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
25617         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
25618         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
25619         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
25620         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
25621         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
25622         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
25623         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
25624         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
25625         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
25626         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
25627         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
25628         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
25629         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
25630         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
25631         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
25632         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
25633         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
25634
25635 2002-12-24  Bruno Haible  <bruno@clisp.org>
25636
25637         * MODULES.txt: Update according to m4/ changes.
25638
25639         Module gettext.
25640         * config.rpath: New file, from gettext-0.11.5.
25641
25642         * modules/*: New module descriptions.
25643         * gnulib-tool: New file.
25644         * MODULES.html.sh: New file.
25645
25646 2002-12-21  Karl Berry  <karl@gnu.org>
25647
25648         * doc/fdl.texi: update to version 1.2.
25649
25650 2002-12-19  Karl Berry  <karl@gnu.org>
25651
25652         * config/config.guess: update from prep.
25653
25654 2002-12-18  Bruno Haible  <bruno@clisp.org>
25655
25656         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
25657         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
25658
25659 2002-12-17  Bruno Haible  <bruno@clisp.org>
25660
25661         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
25662         stdlib.h, string.h.
25663
25664 2002-12-17  Bruno Haible  <bruno@clisp.org>
25665
25666         * lib/canon-host.c (strdup): Remove unused declaration.
25667
25668         * lib/fsusage.c: Include full_read.h.
25669         (get_fs_usage): Use full_read instead of safe_read.
25670
25671         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
25672
25673 2002-12-12  Karl Berry  <karl@gnu.org>
25674
25675         * config/config.guess: update from prep.
25676
25677 2002-12-11  Bruno Haible  <bruno@clisp.org>
25678
25679         * m4/setenv.m4: New file, from gettext-0.11.5.
25680
25681 2002-12-11  Bruno Haible  <bruno@clisp.org>
25682
25683         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
25684         not unsetenv().
25685         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
25686         modifications:
25687
25688         2002-12-11  Bruno Haible  <bruno@clisp.org>
25689
25690                 * setenv.c (alloca): Fall back to malloc.
25691                 (freea): New macro.
25692                 (setenv): Use freea() to free memory allocated with alloca().
25693
25694         2002-11-13  Bruno Haible  <bruno@clisp.org>
25695
25696                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
25697                 function declarations.
25698                 * unsetenv.c (unsetenv): Likewise.
25699
25700         2002-03-04  Bruno Haible  <bruno@clisp.org>
25701
25702                 Portability to AIX 4.3.3.
25703                 * unsetenv.c: New file, extracted from setenv.c.
25704                 * setenv.c: Move the unsetenv() function to unsetenv.c.
25705
25706         2001-12-20  Bruno Haible  <bruno@clisp.org>
25707
25708                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
25709                 use malloc instead. For SunOS 4.
25710
25711         2001-12-11  Bruno Haible  <bruno@clisp.org>
25712
25713                 * setenv.c: Declare alloca.
25714                 (compar_fn_t): New typedef.
25715                 (KNOWN_VALUE, STORE_VALUE): Use it.
25716
25717         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
25718         setenv.h.
25719
25720 2002-12-10  Paul Eggert  <eggert@twinsun.com>
25721
25722         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
25723         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
25724         Choose values that are less likely to collide with system fnmatch
25725         options.
25726         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
25727         defined (e.g., a pure POSIX system).
25728         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
25729         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
25730
25731 2002-12-06  Paul Eggert  <eggert@twinsun.com>
25732
25733         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
25734         a pain in practice to deal with generated m4 files.  This change
25735         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
25736
25737         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
25738         and jm-glibc-io.m4, as they are no longer a special case.
25739         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
25740         kludge and the auto-generation stuff.  Check only whether the
25741         functions are declared, not whether they exist, since older hosts
25742         that don't declare the functions can't use the optimization anyway.
25743
25744 2002-12-06  Jim Meyering  <jim@meyering.net>
25745
25746         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
25747
25748         Merge in changes from libc's misc/error.c, in preparation
25749         for the merge of gnulib's changes back into libc.
25750
25751         * lib/error.c (_): Define only if not already defined.
25752         Move definition to follow all #include directives.
25753         Include unlocked-io.h only if !_LIBC.
25754         [_LIBC]: Include <libio/libioP.h>.
25755         [USE_IN_LIBIO]: Include <libio/iolibio.h>
25756         (fflush): Tweak definition to use INTUSE.
25757         (putc): Define.
25758
25759 2002-12-05  Paul Eggert  <eggert@twinsun.com>
25760
25761         * lib/alloca.c [defined emacs]: Include "lisp.h".
25762         (xalloc_die) [defined emacs]: New macro.
25763         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
25764         [! defined emacs]: Include <xalloc.h>.
25765         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
25766         (pointer): Typedef to POINTER_TYPE *.
25767         (malloc): Remove decl; we now always use xmalloc.
25768         (alloca): Use old-style definition, since Emacs needs this.
25769         Check for arithmetic overflow when computing combined size.
25770
25771 2002-12-04  Paul Eggert  <eggert@twinsun.com>
25772
25773         Do not generate unlocked-io.h automatically, since it's easier to
25774         maintain it by hand.
25775
25776         * lib/unlocked-io.h: New file, from GNU diffutils,
25777         but with proper copyright notice and attribution.
25778         * lib/gen-uio: Remove.
25779         * lib/Makefile.am: Add copyright notice.
25780         (libfetish_a_SOURCES): Add unlocked-io.h.
25781         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
25782         (DISTCLEANFILES, io_functions): Remove macros.
25783         (EXTRA_DIST): Remove gen_uio.
25784         (unlocked-io.h): Remove rule.
25785
25786 2002-12-04  Jim Meyering  <jim@meyering.net>
25787
25788         Reflect the fact that stat.c and lstat.c are no longer generated.
25789         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
25790         (DISTCLEANFILES): Likewise.
25791         (EXTRA_DIST): Likewise.
25792         (all_local): Don't depend on stat.c or lstat.c.
25793         (stat.c, lstat.c): Remove rules.
25794         (EXTRA_DIST): Remove xstat.in.
25795
25796         * lib/xstat.in: Remove file.  Contents moved into stat.c.
25797         * lib/stat.c: New file.  Contents mostly from xstat.in.
25798         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
25799         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
25800
25801         * lib/safe-read.c: Rework so that it may serve to define safe_write,
25802         too.
25803         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
25804
25805 2002-12-03  Jim Meyering  <jim@meyering.net>
25806
25807         * lib/safe-read.c, safe-write.c: Change variable names and comments,
25808         but not semantics, to minimize the differences between these two files.
25809         (safe_read): Change comment to mention SAFE_READ_ERROR.
25810
25811         * lib/safe-read.c (IS_EINTR): Define.
25812         (safe_read): Use IS_EINTR in place of in-function cpp directives.
25813
25814 2002-12-02  Jim Meyering  <jim@meyering.net>
25815
25816         * lib/safe-read.c (EINTR): Define.
25817         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
25818         (INT_MAX): Provide fallback.
25819         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
25820
25821         * lib/safe-read.h (SAFE_READ_ERROR): Define.
25822
25823 2002-12-02  Bruno Haible  <bruno@clisp.org>
25824
25825         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
25826         Define, taken from safe-read.c.
25827         (INT_MAX): Provide fallback.
25828         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
25829         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
25830
25831         * lib/safe-read.c (EINTR): Remove definition.
25832         (safe_read): Don't use EINTR if it is absent.
25833
25834 2002-12-01  Jim Meyering  <jim@meyering.net>
25835
25836         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
25837         zero.
25838         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
25839
25840 2002-11-27  Paul Eggert  <eggert@twinsun.com>
25841
25842         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
25843         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
25844         with `if (! (value < limit)) abort ();', for readability.
25845
25846 2002-11-26  Karl Berry  <karl@gnu.org>
25847
25848         * lib/strdup.c: copy from libc again, with jim's ok.
25849         * lib/.cppi-disable: re-add strdup.c
25850
25851 2002-11-25  Karl Berry  <karl@gnu.org>
25852
25853         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
25854         instead of "strtol.c".
25855
25856 2002-11-25  Karl Berry  <karl@gnu.org>
25857
25858         * config/install-sh: update from automake for variable quoting, $0 in
25859         error msgs, etc.
25860
25861         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
25862         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
25863         entry.
25864
25865 2002-11-25  Jim Meyering  <jim@meyering.net>
25866
25867         * lib/mktime.c: Sync from libc, now that it has the latest fix.
25868
25869 2002-11-24  Karl Berry  <karl@gnu.org>
25870
25871         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
25872         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
25873
25874 2002-11-24  Jim Meyering  <jim@meyering.net>
25875
25876         Update from coreutils:
25877
25878         * lib/mktime.c: Merge in changes from libc.
25879
25880         Avoid a link-time failure on some Linux systems.
25881         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
25882         (otherwise).
25883         (__mon_yday): Declare with the STATIC attribute.
25884         (__mktime_internal): Likewise.
25885         Based on a report from Greg Schafer.
25886
25887 2002-11-23  Jim Meyering  <jim@meyering.net>
25888
25889         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
25890         Use `unsigned', not `int', as type of index.
25891
25892         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
25893
25894         * lib/fsusage.c: Remove unneeded parentheses around operands of
25895         `defined'.
25896
25897 2002-11-22  Paul Eggert  <eggert@twinsun.com>
25898
25899         * lib/quotearg.h: Allow multiple inclusion by surrounding with
25900         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
25901         so that we can be included first.
25902         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
25903         * lib/quotearg.c: Include quotearg.h immediately after config.h.
25904         No need to include stddef.h or sys/types.h any more.
25905         Surround local include files with "", not "<>".
25906         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
25907         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
25908         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
25909         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
25910         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
25911         (ISPRINT): Remove; no longer needed now that we assume C89.
25912
25913         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
25914         Preserve errno.
25915
25916         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
25917         quotearg_char): Use SIZE_MAX rather than
25918         (size_t) -1 when we are talking about "infinity".
25919
25920         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
25921
25922 2002-11-22  Paul Eggert  <eggert@twinsun.com>
25923
25924         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
25925         hint that one should use `if (! x) abort ();' rather than `assert
25926         (x);', and anyway it's one less thing to worry about configuring.
25927         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
25928         hash_rehash, hash_insert): Use abort rather than assert.
25929
25930 2002-11-22  Bruno Haible  <bruno@clisp.org>
25931
25932         * lib/safe-read.h: Assume C89. Add comments.
25933         (safe_read): Change return type to size_t.
25934         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
25935         byte counts > SSIZE_MAX correctly.
25936         * lib/safe-write.h: New file.
25937         * lib/safe-write.c: New file.
25938         * lib/full-read.h: New file.
25939         * lib/full-read.c: New file.
25940         * lib/full-write.h: Assume C89. Add comments.
25941         * lib/full-write.c: Include safe-write.h.
25942         (full_write): Rewritten to use safe_write.
25943         Suggested by Jim Meyering and Paul Eggert.
25944
25945 2002-11-21  Jim Meyering  <jim@meyering.net>
25946
25947         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
25948
25949         Merge in changes from the coreutils.
25950
25951         2002-09-25  Paul Eggert  <eggert@twinsun.com>
25952         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
25953         <stdint.h>.
25954         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
25955         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
25956         int.  Work more efficiently if X is the same width as uintmax_t.
25957         Do not compare X to -1, to avoid bogus compiler warning.
25958         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
25959         Don't assume that f_frsize and f_bsize are the same type.
25960
25961         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
25962         warning on FreeBSD.
25963
25964         * lib/makepath.c (make_path): Restore umask *before* creating the final
25965         component.
25966         (make_path): Minor reformatting.
25967
25968         * lib/xmalloc.c: Adjust to work with new autoconf macros,
25969         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
25970         HAVE_MALLOC/HAVE_REALLOC.
25971
25972         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
25973         dummy ones.  At least on GNU/Linux systems, `auto' means something
25974         else.
25975         From Michael Stone.
25976
25977 2002-11-21  Bruno Haible  <bruno@clisp.org>
25978
25979         Remove case insensitive option matching.
25980         * lib/argmatch.h (argcasematch): Remove declaration.
25981         (ARGCASEMATCH): Remove macro.
25982         (__xargmatch_internal): Remove case_sensitive argument.
25983         (XARGMATCH): Update.
25984         (XARGCASEMATCH): Remove macro.
25985         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
25986         case_sensitive argument.
25987         (argcasematch): Remove function.
25988         (__xargmatch_internal): Remove case_sensitive argument.
25989         (main): Use XARGMATCH instead of XARGCASEMATCH.
25990
25991         * lib/xmalloc.c: Change compile-time error message. Add comment about
25992         required autoconf version.
25993
25994 2002-11-20  Paul Eggert  <eggert@twinsun.com>
25995
25996         Merge argmatch cleanups from Bison.  Assume C89.
25997
25998         * lib/argmatch.c: Include config.h here, not in argmatch.h.
25999         Include stdlib.h, for EXIT_FAILURE.
26000         Always include <string.h>, since we assume C89.
26001         (EXIT_FAILURE): Remove pre-C89 bug workaround.
26002         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
26003         Include <stddef.h> instead, since it's all we need for size_t.
26004         (PARAMS): Remove.  All uses removed.
26005         (ARRAY_CARDINALITY): Do not bother to #undef.
26006         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
26007         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26008         Remove unnecessary parentheses.
26009         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
26010         Insert necessary parentheses.
26011         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
26012         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
26013
26014 2002-11-19  Bruno Haible  <bruno@clisp.org>
26015
26016         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
26017         * lib/mbswidth.h: Include <stddef.h>, for size_t.
26018
26019         * lib/mbswidth.h (PARAMS): Remove macro.
26020         (mbswidth, mbsnwidth): Use ANSI C function declarations.
26021         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
26022
26023         * lib/gcd.h (PARAMS): Remove macro.
26024         (gcd): Use ANSI C function declarations.
26025         * lib/gcd.c (gcd): Likewise.
26026
26027 2002-11-15  Bruno Haible  <bruno@clisp.org>
26028
26029         * lib/strcspn.c: Include <stddef.h>.
26030         (strcspn): Use ANSI C function declaration. Change return type to
26031         size_t. Use NULL.
26032         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
26033         (strpbrk): Use NULL.
26034         * lib/strpbrk.h (PARAMS): Remove macro.
26035         (strpbrk): Use ANSI C function declaration.
26036         * lib/strstr.c: Don't include <sys/types.h>.
26037         * lib/strstr.h (PARAMS): Remove macro.
26038         (strstr): Use ANSI C function declarations.
26039
26040 2002-11-14  Karl Berry  <karl@gnu.org>
26041
26042         * config/mkinstalldirs: `do' on separate line, instead of
26043         `for var; do'.
26044
26045 2002-11-06  Bruno Haible  <bruno@clisp.org>
26046
26047         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
26048         * lib/gcd.c (gcd): Likewise.
26049
26050 2002-11-05  Bruno Haible  <bruno@clisp.org>
26051
26052         * lib/gcd.h: New file, from gettext-0.11.5.
26053         * lib/gcd.c: New file, from gettext-0.11.5.
26054
26055 2002-11-05  Bruno Haible  <bruno@clisp.org>
26056
26057         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26058         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26059         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26060         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
26061
26062         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
26063         <libintl.h>.
26064         * lib/makepath.c: Include gettext.h instead of <locale.h> and
26065         <libintl.h>.
26066
26067         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
26068         * lib/human.c: Include gettext.h instead of <libintl.h>.
26069         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
26070         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
26071         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
26072         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
26073         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
26074         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
26075         (textdomain): Remove definition.
26076         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
26077
26078         * lib/long-options.c: Remove include of <libintl.h> and definition of
26079         _.
26080         * lib/same.c: Remove include of <libintl.h> and definition of _.
26081
26082 2002-11-04  Owen Taylor  <otaylor@redhat.com>
26083
26084         * lib/config.charset: A few additions for Solaris.
26085
26086 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26087
26088         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
26089         * lib/localcharset.c (locale_charset): Declare as extern "C".
26090
26091 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
26092
26093         * lib/config.charset: msdos in uk_UA uses CP1125.
26094
26095 2002-11-04  Bruno Haible  <bruno@clisp.org>
26096
26097         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
26098         * lib/strcase.h: New file, from GNU gettext-0.11.5.
26099         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
26100         * lib/strstr.h: New file, from GNU gettext-0.11.5.
26101         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
26102
26103 2002-11-04  Bruno Haible  <bruno@clisp.org>
26104
26105         * lib/localcharset.c (locale_charset): Don't return an empty string.
26106
26107 2002-11-04  Bruno Haible  <bruno@clisp.org>
26108
26109         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
26110         aliases.
26111
26112 2002-11-04  Bruno Haible  <bruno@clisp.org>
26113
26114         * lib/config.charset: Update for newest glibc. Add canonical names
26115         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
26116
26117 2002-11-04  Bruno Haible  <bruno@clisp.org>
26118
26119         * lib/config.charset: Add support for NetBSD.
26120
26121 2002-11-04  Bruno Haible  <bruno@clisp.org>
26122
26123         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
26124
26125 2002-11-01  Bruno Haible  <bruno@clisp.org>
26126
26127         * configure.in: Add AC_CONFIG_AUX_DIR call.
26128         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
26129         test/Makefile.
26130         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
26131
26132 2002-09-28  Karl Berry  <karl@gnu.org>
26133
26134         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
26135         installed automake until the next release, since changes have been
26136         made.
26137
26138 2002-09-25  Karl Berry  <karl@gnu.org>
26139
26140         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
26141         * lib/getopt*: copy from libc/posix.
26142         * lib/gettext.h: copy from gettext.
26143         * lib/.cppi-disable: add strdup.c, gettext.h.
26144
26145 2002-09-25  Karl Berry  <karl@gnu.org>
26146
26147         * config/srclist.txt: enable gettext.h check.
26148         * config/config.{guess,sub}: update from prep.
26149         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
26150                 from automake 1.6.3.
26151         See srclist*.
26152
26153 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
26154
26155         * regex.c (PATFETCH): Remove the translating fetch.
26156         (PATFETCH_RAW): Rename to PATFETCH.
26157         (set_image_of_range): New fun.
26158         (SET_RANGE_TABLE_WORK_AREA): Use it.
26159         (regex_compile): Don't translate the pattern chars so eagerly.
26160         Only do it when inserting an `exactn' bytecode or when handling
26161         a char-range.
26162         (mutually_exclusive_p): Avoid empty statement.
26163
26164 2002-07-06  Jim Meyering  <meyering@lucent.com>
26165
26166         * m4/README: Don't mention Makefile.am.in.
26167         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
26168
26169 2002-07-01  Jim Meyering  <meyering@lucent.com>
26170
26171         * lib/c-stack.c: Include sys/time.h.
26172         From Volker Borchert.
26173
26174 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26175
26176         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
26177
26178 2002-06-26  Paul Eggert  <eggert@twinsun.com>
26179
26180         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
26181         New macro.  Use it uniformly instead of
26182         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
26183         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
26184         reported by Vin Shelton.
26185
26186 2002-06-22  Paul Eggert  <eggert@twinsun.com>
26187
26188         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
26189         Do not assume SA_SIGINFO behavior.
26190         Bug reported by Jim Meyering on NetBSD 1.5.2.
26191
26192 2002-06-22  Jim Meyering  <meyering@lucent.com>
26193
26194         * m4/c-stack.m4: New file, from diffutils-2.8.2.
26195         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
26196
26197         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
26198         now that configure.ac uses AC_GNU_SOURCE.
26199         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
26200         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
26201
26202         Update to latest tools.  Suggestions from Paul Eggert.
26203         * m4/stdbool.m4: New file, from diffutils-2.8.2.
26204         * m4/gnu-source.m4: Update from diffutils-2.8.2.
26205         * m4/fnmatch.m4: Likewise.
26206         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
26207         to AC_HEADER_STDBOOL
26208
26209 2002-06-22  Jim Meyering  <meyering@lucent.com>
26210
26211         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
26212         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
26213
26214 2002-06-22  Jim Meyering  <meyering@lucent.com>
26215
26216         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
26217
26218         * lib/exitfail.c, exitfail.h: Likewise.
26219         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
26220
26221         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
26222         of fnmatch.h.
26223         (EXTRA_DIST): Add fnmatch_loop.c.
26224         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
26225
26226         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
26227         * lib/fnmatch.c: Update from diffutils-2.8.2.
26228         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
26229         * lib/fnmatch.h: Remove file.
26230
26231 2002-06-21  Jim Meyering  <meyering@lucent.com>
26232
26233         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
26234         * m4/mbrtowc.m4: Likewise.
26235
26236         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
26237         * m4/mbswidth.m4: Reflect name change:
26238         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
26239         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
26240
26241         * m4/lib-link.m4: Update from gettext-0.11.2.
26242         * m4/gettext.m4: Likewise.
26243
26244         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
26245         From Alfred M. Szmidt.
26246
26247 2002-06-18  Paul Eggert  <eggert@twinsun.com>
26248
26249         * lib/file-type.h: Report an error if neither S_ISREG nor
26250         S_IFREG is defined, instead of using a test specific to glibc
26251         2.2.  This should be safe, since POSIX requires S_ISREG and
26252         Unix Version 7 had S_IFREG.  We don't need to check for
26253         <sys/types.h> since we don't use any symbols that it defines.
26254
26255 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
26256
26257         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
26258         $@-t, so that each temporary file name is unique and valid in the first
26259         8 characters, for operation under DOS.
26260
26261 2002-06-15  Paul Eggert  <eggert@twinsun.com>
26262
26263         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
26264
26265 2002-06-15  Jim Meyering  <meyering@lucent.com>
26266
26267         Work even with DJGPP 2.03, which lacks support for symlinks.
26268         From Richard Dawe.
26269         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
26270         is defined.
26271         * lib/lchown.c (S_ISLNK): Likewise.
26272
26273 2002-06-15  Jim Meyering  <meyering@lucent.com>
26274
26275         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
26276         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
26277         have been included before this file.
26278
26279 2002-06-14  Jim Meyering  <meyering@lucent.com>
26280
26281         * lib/file-type.h: Use the version from diffutils-2.8.2.
26282         * lib/file-type.c: Likewise.
26283
26284 2002-06-07  Jim Meyering  <meyering@lucent.com>
26285
26286         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
26287         They're needed at least for NetBSD 1.5.2.
26288         ($statxfs_includes): Include those same headers.
26289         ($statxfs_includes): Include sys/vfs.h if available.
26290         ($statxfs_includes): Likewise for sys/statvfs.h.
26291         Check for the following members in both structs statfs and statvfs:
26292         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
26293
26294 2002-06-01  Jim Meyering  <meyering@lucent.com>
26295
26296         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
26297         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
26298
26299 2002-05-28  Jim Meyering  <meyering@lucent.com>
26300
26301         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
26302         Reported by Volker Borchert.
26303
26304 2002-05-27  Jim Meyering  <meyering@lucent.com>
26305
26306         Fix a problem seen only on nonconforming systems whereby ls.c's
26307         use of localtime, and then of gettimeofday would cause trouble:
26308         the localtime call used to initialize rpl_gettimeofday's save
26309         mechanism would clobber ls's current local time information so
26310         that in any long listing the first file would always be listed
26311         with date 1970-01-01.  Analysis by Volker Borchert.
26312
26313         * lib/gettimeofday.c (localtime): Undefine.
26314         (rpl_localtime): New function.
26315
26316 2002-05-27  Jim Meyering  <meyering@lucent.com>
26317
26318         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
26319         localtime.
26320
26321         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
26322         use the replacement function; it wouldn't resolve at link time.
26323         Reported by Volker Borchert.
26324
26325 2002-05-22  Jim Meyering  <meyering@lucent.com>
26326
26327         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
26328         file-type.h.
26329         * lib/file-type.h: New file.
26330         * lib/file-type.c (file_type): New file/function.  Extracted from
26331         diffutils.
26332
26333 2002-04-30  Jim Meyering  <meyering@lucent.com>
26334
26335         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
26336
26337 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26338
26339         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
26340
26341 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26342
26343         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
26344         Do not check for alloca.h (no longer used) or stdbool.h (was never
26345         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
26346
26347 2002-04-29  Paul Eggert  <eggert@twinsun.com>
26348
26349         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
26350
26351 2002-04-29  Jim Meyering  <meyering@lucent.com>
26352
26353         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
26354         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
26355         Use AC_FUNC_STRNLEN here instead.
26356
26357         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
26358         With autoconf-2.53a, it's part of AC_PROG_CC.
26359
26360 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26361
26362         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
26363         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
26364
26365 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26366
26367         * lib/sig2str.h, lib/sig2str.c: New files.
26368         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
26369
26370 2002-04-28  Paul Eggert  <eggert@twinsun.com>
26371
26372         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
26373         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
26374         of 127, since 64 is the largest conceivable number for ancient
26375         nonstandard hosts.
26376         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
26377
26378 2002-04-28  Jim Meyering  <meyering@lucent.com>
26379
26380         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
26381
26382 2002-04-24  Jim Meyering  <meyering@lucent.com>
26383
26384         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
26385         (jm_PREREQ): Use it.
26386
26387         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
26388         mach/mach.h fcntl.h.
26389         Check for this function: setlocale.
26390
26391 2002-04-24  Jim Meyering  <meyering@lucent.com>
26392
26393         * lib/gettext.h: New file, from Gettext.
26394         * lib/Makefile.am (INCLUDES): Remove -I../intl.
26395         (libfetish_a_SOURCES): Add gettext.h.
26396
26397 2002-04-16  Jim Meyering  <meyering@lucent.com>
26398
26399         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
26400         ut_pid, ut_id, ut_exit.
26401
26402 2002-04-16  Jim Meyering  <meyering@lucent.com>
26403
26404         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
26405         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
26406         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
26407
26408 2002-04-12  Jim Meyering  <meyering@lucent.com>
26409
26410         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
26411         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
26412         existence of the getmntinfo function.  Needed for Darwin 5.3.
26413
26414         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
26415         This is necessary at least on Darwin 5.3.
26416
26417         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
26418         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
26419         strnlen.o in the library, and that makes some versions of ranlib
26420         object.
26421
26422 2002-04-12  Jim Meyering  <meyering@lucent.com>
26423
26424         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
26425
26426 2002-04-09  Jim Meyering  <meyering@lucent.com>
26427
26428         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
26429         to be more precise.  Rather than saying we're checking whether the
26430         function `works', say what we're testing.
26431         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
26432         Reported by Bruno Haible.
26433
26434 2002-03-10  Jim Meyering  <meyering@lucent.com>
26435
26436         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
26437         Suggestion from Santiago Vila.
26438
26439 2002-03-08  Jim Meyering  <meyering@lucent.com>
26440
26441         * lib/rename.c: Mention that this wrapper is needed also on
26442         mips-dec-ultrix4.4 systems.
26443
26444 2002-03-02  Jim Meyering  <meyering@lucent.com>
26445
26446         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
26447         not HAVE_CLOCK_SETTIME.
26448
26449 2002-02-27  Paul Eggert  <eggert@twinsun.com>
26450
26451         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
26452         Check for clock_settime.
26453
26454 2002-02-27  Paul Eggert  <eggert@twinsun.com>
26455
26456         * lib/nanosleep.h: Rename to....
26457         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
26458
26459         * lib/gettime.c: New file.
26460         * lib/settime.c: New file.
26461         * lib/stime.c: Remove.
26462
26463         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
26464         timespec.h.  Remove nanosleep.h.
26465
26466 2002-02-25  Paul Eggert  <eggert@twinsun.com>
26467
26468         * m4/acl.m4: New file.
26469         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
26470         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
26471
26472 2002-02-25  Paul Eggert  <eggert@twinsun.com>
26473
26474         * lib/acl.c, lib/acl.h: New files.
26475         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
26476
26477 2002-02-24  Jim Meyering  <meyering@lucent.com>
26478
26479         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
26480         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
26481         cause trouble.  Reported by Nelson Beebe.
26482
26483 2002-02-23  Paul Eggert  <eggert@twinsun.com>
26484
26485         * lib/path-concat.c (xpath_concat): Reorder code to pacify
26486         compilers that don't know that xalloc_die never returns.
26487
26488 2002-02-20  Jim Meyering  <meyering@lucent.com>
26489
26490         * lib/getdate.c: Regenerate using bison-1.33.
26491
26492 2002-02-17  Jim Meyering  <meyering@lucent.com>
26493
26494         * config/config.guess (main): Don't use `head -1'; it's no longer
26495         portable. Use `sed 1q' instead.
26496
26497 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
26498
26499         * m4/codeset.m4: Upgrade to gettext-0.11.
26500         * m4/gettext.m4: Upgrade to gettext-0.11.
26501         * m4/glibc21.m4: Upgrade to gettext-0.11.
26502         * m4/iconv.m4: Upgrade to gettext-0.11.
26503         * m4/isc-posix.m4: Upgrade to gettext-0.11.
26504         * m4/lcmessage.m4: Upgrade to gettext-0.11.
26505         * m4/lib-ld.m4: New file, from gettext-0.11.
26506         * m4/lib-link.m4: New file, from gettext-0.11.
26507         * m4/lib-prefix.m4: New file, from gettext-0.11.
26508         * m4/progtest.m4: Upgrade to gettext-0.11.
26509
26510 2002-02-15  Paul Eggert  <eggert@twinsun.com>
26511
26512         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
26513         (jm_PREREQ): Use it.
26514
26515 2002-02-15  Paul Eggert  <eggert@twinsun.com>
26516
26517         * lib/posixver.c, lib/posixver.h: New files.
26518         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
26519
26520 2002-02-02  Paul Eggert  <eggert@twinsun.com>
26521             Bruno Haible  <bruno@clisp.org>
26522
26523         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
26524         (fwrite_success_callback): New declaration.
26525         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
26526         print_unicode_char. Call failure callback instead of error.
26527         (fwrite_success_callback): New function.
26528         (exit_failure_callback): New function.
26529         (fallback_failure_callback): New function.
26530         (print_unicode_char): Call unicode_to_mb.
26531
26532 2002-01-26  Jim Meyering  <meyering@lucent.com>
26533
26534         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
26535         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
26536
26537 2002-01-26  Jim Meyering  <meyering@lucent.com>
26538
26539         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
26540
26541 2002-01-22  Paul Eggert  <eggert@twinsun.com>
26542
26543         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
26544
26545 2002-01-22  Jim Meyering  <meyering@lucent.com>
26546
26547         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
26548         Otherwise, some versions of automake would omit the rule that makes
26549         Makefile from Makefile.in.
26550
26551 2002-01-21  Paul Eggert  <eggert@twinsun.com>
26552
26553         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
26554         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
26555         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
26556         (memcoll): Set errno to zero if there is no error.
26557
26558         * lib/quotearg.c (quotearg_buffer_restyled):
26559         Fix bug with quoting buffers containing NUL when backslashing escapes.
26560         This bug was exposed by the other changes in this patch.
26561         (quotearg_n_options): New arg ARGSIZE.
26562         All callers changed.
26563         (quoting_options_from_style): New function.
26564         (quotearg_n_style): Use it.
26565         (quotearg_n_style_mem): New function.
26566
26567         * lib/quotearg.h (quotearg_n_style_mem): New function.
26568
26569 2002-01-19  Jim Meyering  <meyering@lucent.com>
26570
26571         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
26572         Remove useless quotes: DF_PROG="df".
26573         * m4/strnlen.m4: New file.
26574
26575 2002-01-16  Paul Eggert  <eggert@twinsun.com>
26576
26577         * lib/backupfile.c (ISDIGIT): Comment fix.
26578         * lib/getdate.y (ISDIGIT): Likewise.
26579         * lib/posixtm.c (ISDIGIT, year): Likewise.
26580         * lib/strverscmp.c (ISDIGIT): Likewise.
26581         * lib/userspec.c (ISDIGIT): Likewise.
26582
26583 2002-01-16  Jim Meyering  <meyering@lucent.com>
26584
26585         * lib/getdate.y: Add three semicolons, each just before a closing
26586         brace. Bison (as of version 1.31) no longer papers over that mistake.
26587
26588 2002-01-05  Jim Meyering  <meyering@lucent.com>
26589
26590         * lib/version-etc.c (version_etc_copyright): Update copyright year.
26591
26592 2001-12-19  Paul Eggert  <eggert@twinsun.com>
26593
26594         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
26595         not silently exit merely because the output buffer happens to
26596         have nothing pending.
26597
26598 2001-12-18  Paul Eggert  <eggert@twinsun.com>
26599
26600         See the big note in ../ChangeLog.
26601         * lib/human.c (suffixes): Prefer K to k for 1024.
26602         (generate_suffix_backwards): New function.
26603         (human_readable_inexact): Use it.
26604         * lib/xstrtol.c (__xstrtol): If there is no number but there
26605         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
26606         Accept 'K' as well as 'k'.
26607
26608 2001-12-15  Jim Meyering  <meyering@lucent.com>
26609
26610         * lib/regex.h (__restrict_arr): Update from libc.
26611
26612         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
26613         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
26614         (STREQ): Define.
26615
26616 2001-12-14  Jim Meyering  <meyering@lucent.com>
26617
26618         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
26619         Suggestion from Bruno Haible.
26620
26621 2001-12-10  Jim Meyering  <meyering@lucent.com>
26622
26623         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
26624         xrealloc, Instead, include "xalloc.h".
26625         (initbuffer): Don't cast xmalloc return value to char*.
26626         (readline): Reword comment.
26627         Don't cast xrealloc return value to char*
26628         Return NULL, not 0.
26629
26630 2001-12-09  Jim Meyering  <meyering@lucent.com>
26631
26632         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
26633         about `signed and unsigned type in conditional expression'.
26634         * lib/posixtm.c (posix_time_parse): Likewise.
26635
26636         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
26637
26638         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
26639         to avoid a pedantic warning.
26640
26641         * lib/getstr.c: Don't include assert.h.
26642         (getstr): Remove warning-evoking assertions.
26643         Return -1 if offset parameter is out of bounds.
26644         Change the type of a local from int to size_t.
26645
26646         * lib/strftime.c (my_strftime_localtime_r): Include this function
26647         definition in the `#if ! HAVE_TM_GMTOFF' block.
26648
26649         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
26650         Include xalloc.h instead.
26651
26652 2001-12-02  Jim Meyering  <meyering@lucent.com>
26653
26654         * lib/tempname.c: Don't declare getenv, thus reverting the change of
26655         2001-11-18.  It's no longer necessary, now that stdlib.h is always
26656         included.
26657
26658         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
26659         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
26660
26661 2001-11-30  Akim Demaille  <akim@epita.fr>
26662
26663         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
26664         before being defined.
26665
26666 2001-11-27  Paul Eggert  <eggert@twinsun.com>
26667
26668         * lib/quotearg.h (quotearg_n, quotearg_n_style):
26669         First arg is int, not unsigned.
26670         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
26671         (SIZE_MAX, UINT_MAX): New macros.
26672         (quotearg_n_options): Abort if N is negative.
26673         Avoid overflow check on hosts where size_t is 64 bits and int
26674         is 32 bits, as overflow is impossible there.
26675         Fix off-by-one typo that caused unnecessary reallocation.
26676
26677 2001-11-27  Jim Meyering  <meyering@lucent.com>
26678
26679         * lib/tempname.c: Merge with version from libc.
26680         * lib/regex.c: Likewise.
26681
26682         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
26683         systems for which STDC_HEADERS is 0, it was not included, resulting in
26684         a warning about an integer-to-pointer conversion problem with getenv.
26685         Reported by Volker Borchert.
26686
26687 2001-11-26  Jim Meyering  <meyering@lucent.com>
26688
26689         * lib/gtod.h: Remove file.
26690         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
26691         * lib/gettimeofday.c: Don't include gtod.h.
26692         (GTOD_init): Remove function.
26693         (rpl_gettimeofday): Do its job here instead, rather than aborting.
26694         Suggestion from Volker Borchert.
26695
26696 2001-11-23  Jim Meyering  <meyering@lucent.com>
26697
26698         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
26699         it.
26700         * lib/hash.c (struct hash_table): Define it here instead.
26701
26702 2001-11-22  Jim Meyering  <meyering@lucent.com>
26703
26704         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
26705
26706 2001-11-20  Jim Meyering  <meyering@lucent.com>
26707
26708         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
26709         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
26710
26711 2001-11-19  Jim Meyering  <meyering@lucent.com>
26712
26713         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
26714         directory.  Use "conftestXXXXXX" as the template.
26715         Suggestion from Paul Eggert.
26716
26717         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
26718         immediately, so the test doesn't mistakenly hit the max-open-files
26719         limit.
26720
26721 2001-11-18  Paul Eggert  <eggert@twinsun.com>
26722
26723         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
26724         (TEMPORARIES): New macro.
26725         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
26726         removes an artificial limitation (e.g. HP-UX 10.20, where
26727         TMP_MAX is 17576).
26728
26729 2001-11-18  Jim Meyering  <meyering@lucent.com>
26730
26731         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
26732
26733 2001-11-18  Jim Meyering  <meyering@lucent.com>
26734
26735         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
26736         on SunOS 4.
26737
26738         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
26739         files will be created before anything else.
26740
26741 2001-11-17  Paul Eggert  <eggert@twinsun.com>
26742
26743         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
26744         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
26745
26746 2001-11-17  Jim Meyering  <meyering@lucent.com>
26747
26748         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
26749         Prompted by a report from Bob Proulx.
26750
26751         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
26752         Instead, require UTILS_FUNC_MKSTEMP.
26753
26754 2001-11-17  Jim Meyering  <meyering@lucent.com>
26755
26756         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
26757         Now, that's done as part of AC_FUNC_STRTOD.
26758
26759 2001-11-17  Jim Meyering  <meyering@lucent.com>
26760
26761         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
26762         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
26763         rather than group writable.  Patch by Juan F. Codagnone.
26764
26765         * lib/readtokens.c: Remove explicit declarations of xmalloc and
26766         xrealloc, Instead, include "xalloc.h".
26767
26768         * lib/mountlist.c: Include unlocked-io.h after all system headers.
26769         Remove explicit declarations of xmalloc, xrealloc,
26770         and xstrdup.  Instead, include "xalloc.h".
26771
26772         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
26773         unlocked-io.h.
26774         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
26775         Likewise.
26776         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
26777
26778         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
26779         Reported by Padraig Brady.
26780
26781         * lib/mkstemp.c: #undef mkstemp.
26782         Include config.h.
26783         (rpl_mkstemp): Rename from mkstemp.
26784         Protoize.
26785
26786 2001-11-16  Jim Meyering  <meyering@lucent.com>
26787
26788         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
26789         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
26790         determine the amount of total physical memory, use pstat_getstatic.
26791         HPUX-11 doesn't define _SC_PHYS_PAGES.
26792         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
26793         If sysconf couldn't be used to determine the amount of available
26794         physical memory, use both pstat_getstatic and pstat_getdynamic.
26795         Based on a patch from Bob Proulx.
26796
26797 2001-11-10  Jim Meyering  <meyering@lucent.com>
26798
26799         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
26800         (jm_PREREQ): Use it.
26801
26802 2001-11-09  Jim Meyering  <meyering@lucent.com>
26803
26804         * m4/jm-macros.m4: Require autoconf-2.52f.
26805         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
26806         Use these AC_-prefixed names, not the AM_-prefixed ones.
26807
26808         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
26809
26810 2001-11-05  Jim Meyering  <meyering@lucent.com>
26811
26812         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
26813
26814 2001-11-04  Jim Meyering  <meyering@lucent.com>
26815
26816         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
26817         $DEFS.
26818
26819 2001-11-03  Jim Meyering  <meyering@lucent.com>
26820
26821         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
26822         of AC_DEFUN.
26823
26824         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
26825         know the name of the variable in the macro definition.
26826
26827 2001-11-03  Jim Meyering  <meyering@lucent.com>
26828
26829         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
26830         in argmatch_to_argument call.
26831
26832         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
26833         argument.
26834
26835         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
26836         e.g., a fault due to an attempt to free a NULL pointer.
26837
26838 2001-11-01  Jim Meyering  <meyering@lucent.com>
26839
26840         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
26841         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
26842
26843 2001-11-01  Jim Meyering  <meyering@lucent.com>
26844
26845         * lib/dirfd.c, lib/dirfd.h: New files.
26846         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
26847
26848         * lib/hash.c (hash_print) [TESTING]: Clean up.
26849
26850 2001-10-22  Paul Eggert  <eggert@twinsun.com>
26851
26852         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
26853         to avoid a warning if -Wall.
26854
26855 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
26856
26857         * README: New file
26858         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
26859         (per RMS's instructions, this is now the canonical source)
26860         * lgpl/, gpl/: New directories.
26861
26862 2001-10-21  Paul Eggert  <eggert@twinsun.com>
26863
26864         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
26865
26866 2001-10-21  Jim Meyering  <meyering@lucent.com>
26867
26868         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
26869         this code would end up calling gettext even in packages built
26870         with --disable-nls.
26871         * lib/getopt.c (_): Likewise.
26872         * lib/regex.c (_): Likewise.
26873
26874 2001-10-20  Paul Eggert  <eggert@twinsun.com>
26875
26876         * m4/error.m4 (jm_PREREQ_ERROR):
26877         Do not invoke AC_CHECK_FUNCS with strerror_r, as
26878         AC_FUNC_STRERROR_R does that.
26879         Check for strerror declaration.
26880
26881         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
26882         are supposed to have them these days.
26883         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
26884         Merge changes from latest Autoconf CVS.
26885         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
26886         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
26887         POSIX decided to standardize on the int flavor of strerror_r.
26888
26889 2001-10-20  Paul Eggert  <eggert@twinsun.com>
26890
26891         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
26892         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
26893         Use strerror_r that is only a macro, even if it is not a function.
26894         (strerror): Check for HAVE_DECL_STRERROR before declaring.
26895         (private_strerror): Use prototypes, not old-style function definition.
26896         (print_errno_message): New function.
26897         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
26898         char*-flavored one.
26899         (error_tail, error, error_at_line): Use it.
26900
26901 2001-10-11  Jim Meyering  <meyering@lucent.com>
26902
26903         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
26904         and quote_n (1, ... to avoid clobbering a buffer.
26905
26906 2001-10-05  Jim Meyering  <meyering@lucent.com>
26907
26908         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
26909         hash-pjw.h.
26910         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
26911         * lib/hash-pjw.h: New file.
26912
26913 2001-09-30  Jim Meyering  <meyering@lucent.com>
26914
26915         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
26916         `struct fsstat' has the `f_fstypename' member.
26917         Use that to define FS_TYPE, which is now used to make
26918         the getfsstat link test tighter.
26919
26920 2001-09-30  Jim Meyering  <meyering@lucent.com>
26921
26922         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
26923         Include <sys/ucred.h>, for Apple Darwin.
26924         Include sys/mount.h and sys/fs_types.h only if available.
26925         (FS_TYPE): Define.
26926         (read_filesystem_list): Use FS_TYPE.
26927
26928 2001-09-29  Paul Eggert  <eggert@twinsun.com>
26929
26930         * lib/exclude.c (excluded_filename): 0 -> false, since it's
26931         a boolean context.
26932
26933 2001-09-29  Jim Meyering  <meyering@lucent.com>
26934
26935         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
26936         [one-argument getmntent function]): Include stdio.h before mntent.h.
26937         SunOS 4.1.x needs it for the declaration of `FILE'.
26938         Patch by Volker Borchert.
26939
26940         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
26941         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
26942         sys/fs_types.h, and make the link-test for getfsstat guard #include
26943         directives with appropriate #if HAVE_*_H tests so that we can
26944         detect getfsstat on Apple Darwin1.3.7 systems.
26945         Reported by Nelson Beebe.
26946         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
26947
26948 2001-09-28  Paul Eggert  <eggert@twinsun.com>
26949
26950         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
26951         #defines strtoimax.  Also treat the other strto* functions
26952         like strtoimax.
26953
26954         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
26955         Check for strtoul and strtoumax,
26956         as those declarations are made even in the signed case.
26957         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
26958         Likewise, for strtol and strtoimax.
26959
26960 2001-09-28  Paul Eggert  <eggert@twinsun.com>
26961
26962         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
26963         #defines strtoimax.  Also treat the other strto* functions
26964         like strtoimax.
26965
26966         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
26967         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
26968         (strtoimax, strtoumax): Do not declare if already defined as a macro.
26969
26970 2001-09-26  Jim Meyering  <meyering@lucent.com>
26971
26972         Most macros in unlocked-io.h had the wrong number of arguments.
26973         * lib/gen-uio: New script.
26974         (USE_UNLOCKED_IO): Define to 1 if not already defined.
26975         * lib/unlocked-io.hin: Remove file.
26976         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
26977         rather than trying to embed it here.
26978         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
26979         Reported by Padraig Brady.
26980
26981 2001-09-25  Volker Borchert  <bt@teknon.de>
26982
26983         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
26984         `result'.
26985
26986 2001-09-24  Jim Meyering  <meyering@lucent.com>
26987
26988         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
26989
26990 2001-09-23  Jim Meyering  <meyering@lucent.com>
26991
26992         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
26993         instead of the mere test for existence of mntent.h.  The latter
26994         would get a false-positive on AIX 3.4 systems.
26995         In the outer getmntent if-block, don't die if neither of the getmntent
26996         tests succeeds.  Instead, just fall through and continue with the
26997         remaining tests.
26998
26999 2001-09-23  Jim Meyering  <meyering@lucent.com>
27000
27001         * lib/mountlist.c: Remove useless parentheses in #if directives.
27002         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
27003         the deprecated MOUNTED symbol is no longer defined in mntent.h.
27004
27005 2001-09-22  Jim Meyering  <meyering@lucent.com>
27006
27007         * m4/gettext.m4: New file.  From gettext.
27008         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
27009         * m4/progtest.m4: Likewise
27010         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
27011         * m4/glibc21.m4: Likewise.
27012
27013         * m4/libintl.m4: Remove.  No longer used.
27014
27015 2001-09-22  Jim Meyering  <meyering@lucent.com>
27016
27017         * lib/localcharset.c: Update from latest gettext.
27018         * lib/config.charset: Likewise.
27019
27020 2001-09-20  Jim Meyering  <meyering@lucent.com>
27021
27022         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
27023         strtoimax.
27024         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
27025         strtoumax.
27026
27027 2001-09-20  Jim Meyering  <meyering@lucent.com>
27028
27029         * lib/xstrtol.c (strtoimax): Guard declaration with
27030         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
27031         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
27032         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
27033         (strtoumax): Likewise, for completeness (it wasn't necessary).
27034
27035 2001-09-17  Paul Eggert  <eggert@twinsun.com>
27036
27037         * lib/strtoimax.c (HAVE_LONG_LONG):
27038         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
27039         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
27040         to work around bug in IBM C compiler.
27041
27042 2001-09-17  Jim Meyering  <meyering@lucent.com>
27043
27044         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
27045         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
27046         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
27047         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
27048         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
27049         whenever the right hand side need not be expanded by the shell.
27050
27051 2001-09-16  Paul Eggert  <eggert@twinsun.com>
27052
27053         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
27054         library.  It's not correct, as some older glibcs are buggy.
27055         fnmatch wasn't fixed until glibc 2.2.
27056
27057         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
27058         special shell magic here.
27059
27060 2001-09-16  Jim Meyering  <meyering@lucent.com>
27061
27062         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
27063         * m4/jm-macros.m4: Require it.
27064
27065 2001-09-16  Jim Meyering  <meyering@lucent.com>
27066
27067         * lib/mkdir.c: New file.
27068
27069 2001-09-15  Jim Meyering  <meyering@lucent.com>
27070
27071         * m4/jm-macros.m4: Check for help2man.
27072
27073 2001-09-11  Jim Meyering  <meyering@lucent.com>
27074
27075         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
27076         The body, by Paul Eggert, was moved here from configure.in.
27077         * m4/jm-macros.m4: Require UTILS_HOST_OS.
27078
27079 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27080
27081         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
27082         (jm_PREREQ): Use it.
27083
27084 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27085
27086         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
27087         Use ssize_t, not int, to store result of readlink.
27088         Check for ssize_t overflow as well as size_t overflow,
27089         as POSIX says the result of readlink is implementation-defined
27090         when ssize_t overflows.
27091         Remove unnecessary cast to char*.
27092         Use free+malloc instead of realloc, as the storage doesn't need
27093         to be preserved and it's clearer and can be more efficient that way.
27094         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
27095         * lib/xreadlink.h (xreadlink): Update prototype.
27096
27097 2001-09-04  Paul Eggert  <eggert@twinsun.com>
27098
27099         * lib/xgetcwd.c: Revert some of the previous change; intead,
27100         fix the HAVE_GETCWD_NULL code to behave more like the
27101         !HAVE_GETCWD_NULL code used to.
27102
27103         Include "xalloc.h".
27104         (xgetcwd): Do not return NULL when memory is exhausted; instead,
27105         invoke xalloc_die.
27106
27107 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27108
27109         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
27110         sys/param.h, as pathmax.h includes them.
27111
27112 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27113
27114         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
27115         (jm_PREREQ_XGETCWD): New macro.
27116
27117         * m4/getcwd.m4: New file.
27118
27119 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27120
27121         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
27122         like the HAVE_GETCWD_NULL code.
27123         Include pathmax.h if not HAVE_GETCWD.
27124         Do not include xalloc.h.
27125         (INITIAL_BUFFER_SIZE): New symbol.
27126         Do not use xmalloc / xrealloc, since the caller is responsible for
27127         handling errors.  Preserve errno around `free' during failure.
27128         Do not overrun buffer when using getwd.
27129
27130 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27131
27132         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
27133         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
27134         getcwd (NULL, 0).
27135
27136 2001-09-03  Paul Eggert  <eggert@twinsun.com>
27137
27138         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
27139         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
27140         spotted by Jim Meyering.
27141
27142 2001-09-03  Jim Meyering  <meyering@lucent.com>
27143
27144         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
27145         failure.
27146
27147 2001-09-02  Jim Meyering  <meyering@lucent.com>
27148
27149         * lib/error.c: Update from GNU libc.
27150
27151 2001-09-01  Jim Meyering  <meyering@lucent.com>
27152
27153         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
27154         Used by df.
27155
27156 2001-09-01  Jim Meyering  <meyering@lucent.com>
27157
27158         * lib/xreadlink.c: New file.
27159         * lib/xreadlink.h: New file.
27160         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
27161         xreadlink.h.
27162
27163         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
27164         doesn't conflict with sparc Solaris 7's definition in
27165         /usr/include/sys/int_types.h.
27166
27167         * lib/exclude.c: Use `""', not `<>' to #include non-system header
27168         files.
27169         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
27170         and strncasecmp as r-values.  Unixware didn't have declarations.
27171
27172 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27173
27174         * lib/xstrtol.h: Add copyright notice.
27175         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
27176         LONGINT_INVALID_SUFFIX_CHAR.
27177
27178 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27179
27180         * lib/xstrtol.c (strtoimax): New decl.
27181
27182 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27183
27184         * lib/xgetcwd.c: Don't include pathmax.h.
27185         Include stdlib.h and unistd.h if available.
27186         Include xalloc.h.
27187         (xmalloc, xstrdup, free): Remove decls.
27188         (xgetcwd): Don't assume sizes fit in unsigned.
27189         Check for overflow when computing sizes.
27190         Simplify reallocation code.
27191
27192 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27193
27194         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
27195         a directory's st_size can have an arbitrary value, so the old
27196         usage could waste an arbitrary amount of memory.  All uses
27197         changed.
27198         * lib/savedir.h: Update prototype.
27199
27200 2001-08-31  Paul Eggert  <eggert@twinsun.com>
27201
27202         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
27203
27204         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
27205         old strtoimax.c.
27206
27207         Also, make the following further changes to make this file's
27208         configuration more similar to that of strtol.c:
27209         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
27210         (strtoumax, uintmax_t, strtoull, strtol): Remove.
27211         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
27212         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
27213         changed to signed values.
27214
27215         And make the following changes as well:
27216         Fix copyright notice, as 1999 was missing.
27217         (verify): New macro.
27218         (strtoimax): Check sizes at compile-time, not run-time.
27219         Prefer strtol to strtoll if both work.
27220         (main): Remove; it was not that useful and was a pain to maintain.
27221
27222         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
27223
27224 2001-08-31  Jim Meyering  <meyering@lucent.com>
27225
27226         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
27227         Use an initial, malloc'd, buffer of length 128 rather than
27228         a statically allocated one of length 1024.
27229
27230 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27231
27232         Simplify code, partly by assuming autoconf 2.52 semantics.
27233
27234         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
27235
27236         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
27237         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
27238         All uses removed.
27239         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
27240         Move AC_REQUIRE to next-to-top level, to avoid confusion.
27241         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
27242         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
27243         jm_AC_HEADER_INTTYPES_H.
27244         * m4/jm-macros.m4 (jm_MACROS): Likewise.
27245
27246         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
27247
27248         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
27249         Quote first arg of AC_DEFUN.
27250         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
27251         since they are needed to parse the include file even if we need
27252         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
27253         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
27254         but with opposite signedness.
27255
27256 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27257
27258         Merge 'exclude' changes from tar 1.13.22.
27259         This fixes one or two unlikely storage allocation overflow bugs,
27260         but doesn't change user-visible behavior otherwise.
27261
27262 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27263
27264         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
27265         (jm_PREREQ_EXCLUDE): New macro.
27266
27267 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27268
27269         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
27270         tm to be declared.
27271
27272 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27273
27274         * lib/hash.c: Remove '2001' from copyright notice.
27275
27276 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27277
27278         * lib/full-write.h: New file.
27279         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
27280         * lib/full-write.c: Correct credits, as cccp.c no longer
27281         exists and anyway it was so heavily changed from the old cccp
27282         code as to be unrecognizable.  Include full-write.h.
27283         (full_write) Return size_t, with short writes meaning failure.
27284         All callers changed.  This fixes a bug with large buffers
27285         on 64-bit hosts.
27286         * lib/utime.c: Include full-write.h.
27287
27288 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27289
27290         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
27291         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
27292         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
27293         Include if available.
27294         (<xalloc.h>): Include
27295         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
27296         (verify): New macro.  Use it to verify that EXCLUDE macros do not
27297         collide with FNM macros.
27298         (struct patopts): New struct.
27299         (struct exclude): Use it, as exclude patterns now come with options.
27300         (new_exclude): Support above changes.
27301         (new_exclude, add_exclude_file):
27302         Initial size must now be a power of two to simplify overflow checking.
27303         (free_exclude, fnmatch_no_wildcards): New function.
27304         (excluded_filename): No longer requires options arg, as the options
27305         are determined by add_exclude.  Now returns bool, not int.
27306         (excluded_filename, add_exclude):
27307         Add support for the fancy new exclusion options.
27308         (add_exclude, add_exclude_file): Now takes int options arg.
27309         Check for arithmetic overflow when computing sizes.
27310         (add_exclude_file): xrealloc might modify errno, so don't
27311         realloc until after errno might be used.
27312
27313         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
27314         New macros.
27315         (free_exclude): New decl.
27316         (add_exclude, add_exclude_file): Now takes int options arg.
27317         (excluded_filename): No longer requires options arg, as the options
27318         are determined by add_exclude.  Now returns bool, not int.
27319
27320 2001-08-30  Paul Eggert  <eggert@twinsun.com>
27321
27322         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
27323
27324 2001-08-27  Jim Meyering  <meyering@lucent.com>
27325
27326         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
27327
27328         * lib/version-etc.c (N_): Remove definition.
27329         Revert most of last change.
27330         Instead, simply don't mark the `Copyright...' string for translation.
27331         Based on advice from Paul Eggert.
27332
27333         * lib/strtoxmax.c: Tweak comment.
27334
27335 2001-08-26  Jim Meyering  <meyering@lucent.com>
27336
27337         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
27338
27339         * m4/xstrtoimax.m4: New file.
27340         * m4/xstrtoumax.m4: Add comments explaining why we
27341         AC_REPLACE_FUNCS(strtol).
27342
27343 2001-08-26  Jim Meyering  <meyering@lucent.com>
27344
27345         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
27346         of copyright with `%s' so translators don't get an untranslated
27347         message in 2002.
27348         (COPYRIGHT_YEAR): Define.
27349         (version_etc): Use fprintf rather than fputs.
27350         Suggestion from Ulrich Drepper.
27351
27352         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
27353
27354         * lib/strtoll.c: New file, from GNU libc.
27355         * lib/xstrtoimax.c: New file.
27356
27357         * lib/xstrtol.h: Add xstrtoimax.
27358         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
27359         * lib/strtoimax.c: New file.  Likewise, but first define
27360         STRTOUXMAX_SIGNED.
27361
27362         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
27363         ...
27364         * lib/strtoxmax.c: ... then renamed to this.
27365
27366 2001-08-18  Paul Eggert  <eggert@twinsun.com>
27367
27368         * m4/inttypes.m4: Add AC_PREREQ(2.13).
27369         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
27370         (jm_AC_TYPE_INTMAX_T): New macro.
27371         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
27372
27373         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
27374
27375         * m4/longlong.m4: Renamed from ulonglong.m4.
27376         * m4/inttypes.m4: Renamed from inttypes_h.m4.
27377         * m4/uintmax_t.m4: Removed.
27378
27379 2001-08-13  Paul Eggert  <eggert@twinsun.com>
27380
27381         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
27382         Port to Solaris 8, where 'sed' requires a space after the 'r'
27383         command, and where sh dislikes "$/".  Clean up the spacing a bit.
27384         Redirect output to $tmp just once.
27385
27386 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
27387
27388         * lib/addext.c (<errno.h>): Include.
27389         (errno): Declare if not defined.
27390         (addext): Work correctly when pathconf returns -1 and leaves
27391         errno alone because there is no limit.  Also, work even if
27392         pathconf returns a value greater than SIZE_MAX.
27393
27394 2001-08-12  Jim Meyering  <meyering@lucent.com>
27395
27396         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
27397         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
27398         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
27399         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
27400         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
27401         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
27402         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
27403         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
27404         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
27405         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
27406         utime.m4, utimes.m4, xstrtoumax.m4:
27407         Quote the first argument in each use of AC_DEFUN.
27408
27409 2001-08-12  Jim Meyering  <meyering@lucent.com>
27410
27411         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
27412         Simply `return getcwd (NULL, 0);'.
27413         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
27414         Use 1300 as initial value for length, not PATH_MAX.
27415
27416         * lib/pathmax.h: Clean up cpp syntax.
27417
27418 2001-08-12  Jim Meyering  <meyering@lucent.com>
27419
27420         * lib/gettimeofday.c: New file.
27421         * lib/gtod.h: New file.
27422         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
27423
27424 2001-08-05  Jim Meyering  <meyering@lucent.com>
27425
27426         * m4/jm-macros.m4: Require autoconf-2.52.
27427
27428 2001-08-04  Jim Meyering  <meyering@lucent.com>
27429
27430         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
27431         stmt, to get in sync with glibc.
27432
27433 2001-08-03  Paul Eggert  <eggert@twinsun.com>
27434
27435         The following changes are from gettext 0.10.39 as maintained by
27436         Bruno Haible.
27437
27438         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
27439         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
27440         with inverted sense.  All uses changed.
27441
27442         * lib/mbswidth.c: Don't include <limits.h>.
27443         Include <stdlib.h> and <string.h> unconditionally.
27444         (iswcntrl, mbsinit, ISCNTRL): New macros.
27445         (mbsnwidth): Use K&R style function declarations.
27446         Don't bother checking for MB_LEN_MAX == 1, since the compiler
27447         can optimize it when MB_CUR_MAX == 1.
27448         The width of control characters is zero, not 1.
27449
27450 2001-08-03  Paul Eggert  <eggert@twinsun.com>
27451
27452         The following changes are from gettext 0.10.39 as maintained by
27453         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
27454
27455         * m4/codeset.m4: Upgrade to serial AM1.
27456         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
27457         all uses changed.  Quote first arg of AC_DEFUN.
27458         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
27459
27460         * m4/iconv.m4: Upgrade to serial AM2.
27461         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
27462         Add --with-libconv-prefix.
27463         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
27464         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
27465         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
27466         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
27467         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
27468
27469         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
27470         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
27471         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
27472         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
27473         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
27474         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
27475         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
27476         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
27477         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
27478
27479         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
27480         string.h any more.
27481
27482         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
27483         not the default value.
27484
27485         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
27486         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
27487         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
27488         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
27489         Also check for iswcntrl, used for wcwidth fallback.
27490         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
27491         to Autoconf 2.13.
27492
27493 2001-08-03  Jim Meyering  <meyering@lucent.com>
27494
27495         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
27496         as it was in the original.  Reported by Paul Eggert.
27497
27498 2001-07-16  Jim Meyering  <meyering@lucent.com>
27499
27500         * m4/gettimeofday.m4: New file.
27501         Prompted by a report from Bernhard Baehr.
27502
27503 2001-07-15  Jim Meyering  <meyering@lucent.com>
27504
27505         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
27506         stuff. Now it's in ../Makefile.cfg.
27507
27508 2001-07-15  Jim Meyering  <meyering@lucent.com>
27509
27510         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
27511         (BUILT_SOURCES): Add unlocked-io.h.
27512         (io_functions): Define.
27513         (unlocked-io.h): New rule.
27514         (DISTCLEANFILES): Add unlocked-io.h.
27515         (all-local): Depend on unlocked-io.h, to ensure it is created.
27516
27517         * lib/unlocked-io.hin: New file
27518
27519         * lib/regex.c: Update from glibc.
27520
27521 2001-07-05  Jim Meyering  <meyering@lucent.com>
27522
27523         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
27524         recommendation.
27525         (libfetish_a_SOURCES): Put all .h files here instead.
27526         Remove a thus-exposed (better checks in automake) duplicate and
27527         two unnecessary .h files.
27528
27529 2001-07-04  Jim Meyering  <meyering@lucent.com>
27530
27531         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
27532         that generates jm-glibc-io.m4 so that it doesn't trigger any make
27533         distcheck failure.
27534
27535 2001-07-02  Jim Meyering  <meyering@lucent.com>
27536
27537         The following changes were prompted by suggestions from Bruno Haible.
27538
27539         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
27540         is now generated.
27541         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
27542         definition of EXTRA_DIST.
27543         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
27544         ensure that the generated file is created/updated whenever the list
27545         of $(unlocked_functions) is changed.
27546         (jm-glibc-io.m4): New rule.
27547         (unlocked-io.h): New rule -- currently unused.
27548
27549 2001-06-24  Jim Meyering  <meyering@lucent.com>
27550
27551         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
27552         unmatched right bracket, rather than kludging it with an extra,
27553         falsely-matching quote in a comment.  Patch by Akim Demaille.
27554
27555 2001-06-11  Jim Meyering  <meyering@lucent.com>
27556
27557         * lib/regex.c: Update from GNU libc.
27558
27559 2001-05-27  Jim Meyering  <meyering@lucent.com>
27560
27561         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
27562         Check for ut_type in struct utmp.
27563
27564 2001-05-27  Jim Meyering  <meyering@lucent.com>
27565
27566         * lib/readutmp.h (UT_TYPE): Define.
27567
27568 2001-05-24  Jim Meyering  <meyering@lucent.com>
27569
27570         * lib/argmatch.c: Include "quote.h".
27571         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
27572         quote function.  Reported by Göran Uddeborg.
27573
27574 2001-05-22  Jim Meyering  <meyering@lucent.com>
27575
27576         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
27577         now that we use the package-supplied version unconditionally.
27578         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
27579
27580 2001-05-21  Jim Meyering  <meyering@lucent.com>
27581
27582         * m4/regex.m4: Change a couple backticks to single quotes to avoid
27583         shell syntax errors.
27584
27585 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
27586
27587         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
27588
27589 2001-05-20  Paul Eggert  <eggert@twinsun.com>
27590
27591         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
27592         Don't bother to check library strftime, since
27593         we'll be using our own my_strftime function anyway.
27594         Define my_strftime instead of strftime.
27595
27596 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
27597
27598         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
27599         which is not yet declared.
27600
27601 2001-05-15  Jim Meyering  <meyering@lucent.com>
27602
27603         * m4/regex.m4: Use proper quoting so brackets appear in the test
27604         program.
27605         Reported by, and with help from, Bruno Haible.
27606
27607 2001-05-13  Jim Meyering  <meyering@lucent.com>
27608
27609         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
27610         undefined.
27611
27612 2001-05-11  Paul Eggert  <eggert@twinsun.com>
27613
27614         dirname code cleanup.  base_name now behaves more compatibly
27615         with POSIX basename when given file names that have trailing
27616         slashes, and similarly for dir_name.  Add new primitives
27617         base_len and dir_len.  Put the directory-name-related decls
27618         into dirname.h.
27619
27620         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
27621         * lib/backupfile.c (base_name): Likewise.
27622         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
27623         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
27624         * lib/makepath.c (strip_trailing_slashes): Likewise.
27625         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
27626         ISSLASH): Likewise.
27627         * lib/rename.c (strip_trailing_slashes): Likewise.
27628         * lib/same.c (base_name): Likewise.
27629         * lib/stripslash.c (ISSLASH): Likewise.
27630
27631         * lib/addext.c: Include <dirname.h> after size_t is defined.
27632         * lib/backupfile.c: Likewise.
27633
27634         * lib/addext.c (addext): Use base_len to trim redundant
27635         trailing slashes instead of doing it ourselves.
27636         But do not trim the last slash if it is not redundant.
27637
27638         * lib/backupfile.c (find_backup_file_name,
27639         max_backup_version): Use base_len instead of rolling it ourselves.
27640         Handle the case of "" and (on DOS) "C:" correctly.
27641
27642         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
27643         needed. Include <string.h>, <dirname.h>.
27644         (base_name): Allow file names ending in slashes, other than names
27645         that are all slashes.  In this case, return the basename followed
27646         by the slashes.  This is more general, and can be used in places
27647         where the original base_name purposely had an assertion failure.
27648         (base_len): New function.
27649
27650         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
27651         Do not include <assert.h>; no longer needed.
27652         Include xalloc.h.
27653         (memrchr): Remove decl.
27654         (dir_name_r): Remove.
27655         (dir_len): Renamed from dirlen.  All callers changed.
27656         Rewrite in terms of base_name, for simplicity and consistency.
27657         (dir_name): Never return NULL.  All callers changed.
27658         Do not include <stdlib.h> in test program; no longer needed.
27659         return 0; is fine for test program.
27660
27661         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
27662         New macros.
27663         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
27664
27665         * lib/path-concat.c (path_concat): Use base_len to compute
27666         base length, not strlen; this means we cannot rely on memcpy
27667         to null-terminate.
27668
27669         * lib/same.c (STREQ): Remove.
27670         (same_name): Handle the case where the basename ends in trailing '/'.
27671
27672         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
27673         a slash was stripped.  Do not strip the last slash after a
27674         file system prefix.
27675
27676 2001-05-11  Paul Eggert  <eggert@twinsun.com>
27677
27678         * lib/Makefile.am (libfetish_a_SOURCES):
27679         Add strftime.c, since we now compile it on all hosts.
27680
27681         * lib/strftime.c (my_strftime):
27682         Define to nstrftime if emacs, but only if my_strftime is not defined.
27683         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
27684         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
27685         Add one more extra argument: a nanoseconds value.
27686         All uses changed.
27687         (ns): New macro.
27688         (my_strftime function): Add %N format.
27689         (emacs_strftimeu): Renamed from emacs_strftime,
27690         with extra ut argument.
27691
27692 2001-05-09  Paul Eggert  <eggert@twinsun.com>
27693
27694         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
27695
27696 2001-04-21  Jim Meyering  <meyering@lucent.com>
27697
27698         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
27699         doesn't interfere.
27700
27701 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
27702
27703         * m4/ftruncate.m4: Check for chsize.
27704         Link with ftruncate.o unconditionally if ftruncate is missing.
27705         This was required when cross-compiling to i586-mingw32msvc.
27706
27707 2001-04-08  Jim Meyering  <meyering@lucent.com>
27708
27709         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
27710         recomputed; that's necessary when the offset spans a DST transition.
27711         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
27712
27713 2001-04-02  Jim Meyering  <meyering@lucent.com>
27714
27715         * lib/regex.h, regex.c: Update from GNU libc.
27716
27717 2001-03-24  Jim Meyering  <meyering@lucent.com>
27718
27719         * m4/jm-macros.m4: Require autoconf-2.49d.
27720
27721 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
27722
27723         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
27724
27725 2001-03-19  Paul Eggert  <eggert@twinsun.com>
27726
27727         * lib/version-etc.c (version_etc_copyright): Update to 2001.
27728
27729 2001-03-17  Jim Meyering  <meyering@lucent.com>
27730
27731         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
27732         now that the version in autoconf is equivalent.
27733         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
27734
27735         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
27736         Suggestion from Akim Demaille.
27737
27738         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
27739         (jm_PREREQ_TEMPNAME): New function.
27740
27741 2001-03-16  Paul Eggert  <eggert@twinsun.com>
27742
27743         * lib/tempname.c (uint64_t): Define to uintmax_t if
27744         not defined, and if UINT64_MAX is not defined.
27745         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
27746         Reported by John David Anglin.
27747
27748 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
27749
27750         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
27751         resolve alias if codeset is empty.
27752         * lib/config.charset (BeOS): Use wildcard syntax.
27753
27754 2001-03-13  Jim Meyering  <meyering@lucent.com>
27755
27756         * lib/path-concat.c (path_concat)
27757         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
27758         concatenating e.g., `C:' and `foo'.
27759         From Bruno Haible.
27760
27761 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
27762
27763         * lib/localcharset.c (locale_charset): Don't use
27764         setlocale(LC_CTYPE,NULL). Don't return NULL.
27765         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
27766
27767 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
27768
27769         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
27770         support for DOS/DJGPP.
27771
27772 2001-03-01  Paul Eggert  <eggert@twinsun.com>
27773
27774         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
27775         lacks mkstemp.  Compile our own tempname.c if we compile our own
27776         mkstemp.c, as mkstemp relies on tempname.
27777
27778 2001-03-01  Jim Meyering  <meyering@lucent.com>
27779
27780         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
27781         AH_VERBATIM really does output its argument verbatim.
27782
27783 2001-02-28  Paul Eggert  <eggert@twinsun.com>
27784
27785         * lib/Makefile.am (libfetish_a_SOURCES):
27786         Add dup-safer.c, fopen-safer.c.
27787         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
27788
27789         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
27790         * lib/unistd-safer.h: New files.
27791
27792 2001-02-25  Paul Eggert  <eggert@twinsun.com>
27793
27794         The mkstemp replacement is taken from glibc 2.2.2, with some
27795         portability fixes for use outside glibc, as follows:
27796
27797         * lib/tempname.c (struct_stat64): New macro.
27798         (direxists, __gen_tempname): Use it.
27799         This avoids a portability problem with Solaris 8.
27800
27801         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
27802         (<stddef.h>, <stdint.h>, <string.h>):
27803         Include only if STDC_HEADERS || _LIBC.
27804         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
27805         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
27806         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
27807         (__set_errno): Define this macro if <errno.h> doesn't.
27808         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
27809         Define these macros if <stdio.h> doesn't.
27810         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
27811         Define these macros if <sys/stat.h>
27812         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
27813         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
27814         __xstat64): Define if not _LIBC.
27815         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
27816         (__gen_tempname): Invoke gettimeofday only if
27817         HAVE_GETTIMEOFDAY || _LIBC;
27818         otherwise, fall back on plain "time".
27819         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
27820
27821         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
27822
27823         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
27824
27825 2001-02-18  Paul Eggert  <eggert@twinsun.com>
27826
27827         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
27828
27829 2001-02-17  Paul Eggert  <eggert@twinsun.com>
27830
27831         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
27832         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
27833         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
27834         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
27835
27836 2001-02-17  Paul Eggert  <eggert@twinsun.com>
27837
27838         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
27839         Remove workaround macros for hosts that have mbrtowc but not
27840         mbstate_t, as we now insist on proper declarations for both
27841         before using mbrtowc.
27842
27843 2001-02-17  Jim Meyering  <meyering@lucent.com>
27844
27845         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
27846         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
27847         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
27848         UnixWare 7.1.1.
27849
27850         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
27851         rather than AC_CACHE_VAL.
27852
27853 2001-02-17  Jim Meyering  <meyering@lucent.com>
27854
27855         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
27856         around included file name.
27857
27858         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
27859
27860         * lib/strftime.c: Update from GNU libc (the only changes were to
27861         comments).
27862
27863 2001-02-17  Jim Meyering  <meyering@lucent.com>
27864
27865         * lib/regex.c: Update from libc.
27866
27867 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
27868
27869         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
27870         clash.
27871
27872 2001-02-16  Paul Eggert  <eggert@twinsun.com>
27873
27874         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
27875         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
27876         Reported by Mark Hounschell via Paul Eggert.
27877
27878 2001-02-07  Jim Meyering  <meyering@lucent.com>
27879
27880         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
27881
27882 2001-02-05  Jim Meyering  <meyering@lucent.com>
27883
27884         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
27885         it includes the patch required for `large file' support with at least
27886         HP-UX's 10.20 /bin/cc.
27887
27888 2001-02-03  Jim Meyering  <meyering@lucent.com>
27889
27890         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
27891         AS_IF, now that it works once again (mysteriously).
27892         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
27893
27894 2001-01-30  Jim Meyering  <meyering@lucent.com>
27895
27896         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
27897         * m4/chown.m4: Rename conftestchown to conftest.chown.
27898         * m4/rename.m4: s/conftestdir/conftest.d1/ and
27899         s/conftestdir2/conftest.d2/.
27900         * m4/utimes.m4: s/conftestdata/conftest.data/
27901         Inspired by Pavel Roskin's change in autoconf.
27902
27903 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
27904
27905         * lib/config.charset: Update for FreeBSD 4.2.
27906
27907 2001-01-27  Jim Meyering  <meyering@lucent.com>
27908
27909         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
27910         a use of AS_IF.
27911         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
27912
27913 2001-01-26  Jim Meyering  <meyering@lucent.com>
27914
27915         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
27916         quotearg.c includes it.
27917
27918 2001-01-26  Jim Meyering  <meyering@lucent.com>
27919
27920         * lib/quotearg.c: Include stddef.h.
27921         * lib/quote.c: Include stddef.h.
27922         Reported by Axel Kittenberger.
27923
27924         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
27925         line in double quotes so that it evokes a better diagnostic.
27926         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
27927         Reported by Axel Kittenberger.
27928
27929 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
27930
27931         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
27932         as if it was a `charset'.
27933
27934 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
27935
27936         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
27937         has const.
27938
27939 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
27940
27941         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
27942         to avoid a warning.  Add back 'const' to inptr.
27943
27944 2001-01-20  Jim Meyering  <meyering@lucent.com>
27945
27946         Be sure that headers are checked before used in code compiled
27947         for the type checks.
27948         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
27949         In place of that, invoke jm_CHECK_ALL_TYPES.
27950         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
27951         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
27952         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
27953         The check for ssize_t was mistakenly run before the test for unistd.h.
27954
27955         The configure-time check for stdbool.h was missing.
27956         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
27957         (jm_PREREQ_HASH): New function.
27958
27959 2001-01-17  Jim Meyering  <meyering@lucent.com>
27960
27961         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
27962         for autoconf-2.49c.
27963         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
27964
27965 2001-01-16  Jim Meyering  <meyering@lucent.com>
27966
27967         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
27968         From Bruno Haible.
27969
27970 2001-01-14  Jim Meyering  <meyering@lucent.com>
27971
27972         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
27973         foo and bar.  Create conftestdir/ in the script, not in the C code.
27974         Remove directories in the script, not in the C code.
27975         Remove conftestdir{,2} before trying to create the directory.
27976         Make the entire configure script fail if the mkdir fails.
27977
27978 2001-01-14  Jim Meyering  <meyering@lucent.com>
27979
27980         * lib/rename.c: New file.  From Volker Borchert.
27981         Include stdlib.h, string.h or strings.h, and xalloc.h.
27982         Use strip_trailing_slashes rather than open-coding it.
27983
27984 2001-01-03  Paul Eggert  <eggert@twinsun.com>
27985
27986         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
27987
27988 2001-01-03  Jim Meyering  <meyering@lucent.com>
27989
27990         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
27991         of local `inptr' to avoid warning with some system declarations of
27992         iconv.
27993
27994 2001-01-02  Volker Borchert  <bt@teknon.de>
27995
27996         * m4/rename.m4: New file.
27997         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
27998
27999 2001-01-01  Jim Meyering  <meyering@lucent.com>
28000
28001         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
28002         even on systems with utmpx.h.  It's necessary for the declaration of
28003         utmp's ut_user member.  Reported by Andreas Jaeger.
28004
28005         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
28006         available. They are required for the declarations of getgrgid and
28007         getpwuid resp.
28008         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
28009         Reported by Andreas Jaeger.
28010
28011 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
28012
28013         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
28014         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
28015         so `make install' also works in VPATH builds.
28016
28017 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
28018
28019         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
28020         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
28021         can be used in subdirectories.
28022
28023 2000-12-29  Paul Eggert  <eggert@twinsun.com>
28024
28025         * lib/modechange.c: Do not assume that mode_t uses the
28026         traditional octal encoding.  E.g. "chmod 1 FOO" should set
28027         the other-execute bit of FOO even if S_IXOTH != 1.
28028
28029         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
28030         WOTH, XOTH, ALLM): New macros.
28031         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
28032          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
28033         Use them.
28034         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
28035         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
28036         (mode_compile):
28037         No need to use uintmax_t; unsigned long is long enough.
28038         Don't bother to get suffix since we don't use it.
28039
28040 2000-12-26  Jim Meyering  <meyering@lucent.com>
28041
28042         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
28043         better with autoheader.
28044
28045 2000-12-24  Jim Meyering  <meyering@lucent.com>
28046
28047         * lib/hash.c (is_prime): Return explicit boolean values.
28048         (hash_get_first): Return NULL to appease Irix5.6's 89.
28049         Reported by Nelson Beebe.
28050
28051 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
28052
28053         * lib/localcharset.c (locale_charset): Add support for Win32.
28054
28055 2000-12-18  Paul Eggert  <eggert@twinsun.com>
28056
28057         * lib/physmem.h, lib/physmem.c: New files.
28058
28059         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
28060         (noinst_HEADERS): Add physmem.h.
28061
28062         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
28063         't' for compatibility with Solaris 8 sort.
28064
28065 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
28066
28067         * lib/config.charset: Add support for BeOS.
28068
28069 2000-12-17  Jim Meyering  <meyering@lucent.com>
28070
28071         * m4/dos.m4 (jm_AC_DOS): New file and macro.
28072         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
28073
28074 2000-12-16  Jim Meyering  <meyering@lucent.com>
28075
28076         This bug had a serious impact on chown: `chown N:M FILE' (for integer
28077         N and M) would have treated it like `chown N:N FILE'.
28078
28079         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
28080
28081 2000-12-16  Jim Meyering  <meyering@lucent.com>
28082
28083         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
28084         SHELLS_FILE to a file name that's useful on djgpp systems.
28085         Include stdlib.h.
28086         (ADDITIONAL_DEFAULT_SHELLS): Define.
28087         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
28088         Based mostly on a patch from Prashant TR.
28089
28090 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
28091
28092         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
28093         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
28094         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
28095
28096 2000-12-08  Andreas Schwab  <schwab@suse.de>
28097
28098         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
28099         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
28100
28101 2000-12-07  Jim Meyering  <meyering@lucent.com>
28102
28103         * lib/stripslash.c (ISSLASH): Define.
28104         (strip_trailing_slashes): Use ISSLASH rather than comparing against
28105         `/'.
28106         From Prashant TR.
28107
28108         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
28109         (dir_name_r): Declare this function as static.
28110         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
28111         manifest itself on a name containing a mix of slashes and
28112         backslashes.
28113         Make this function work with names starting with a DOS-style
28114         drive letter and colon prefix.
28115         (dir_name): Append `.' if necessary.
28116         Based mostly on patches from Prashant TR and Eli Zaretskii.
28117
28118         * lib/dirname.h (dir_name_r): Remove prototype.
28119
28120 2000-12-06  Paul Eggert  <eggert@twinsun.com>
28121
28122         * m4/off_t-format.m4: Remove this file.
28123         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
28124
28125 2000-12-06  Jim Meyering  <meyering@lucent.com>
28126
28127         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
28128         replacement strtoull, we may well need the replacement strtoul, too.
28129         Check for declarations of strtoul and strtoull.
28130         Check for strtol.  Mainly as a cue to cause automake to include
28131         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
28132         Check for limits.h -- strtol.c needs it.
28133
28134 2000-12-05  Jim Meyering  <meyering@lucent.com>
28135
28136         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
28137
28138 2000-12-04  Jim Meyering  <meyering@lucent.com>
28139
28140         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
28141         Also include memory.h, stdlib.h, unistd.h if appropriate.
28142         Reported by Andreas Jaeger (conflicting declaration of malloc).
28143
28144 2000-12-02  Jim Meyering  <meyering@lucent.com>
28145
28146         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
28147         * m4/jm-macros.m4 (jm_MACROS): require it.
28148
28149 2000-12-02  Jim Meyering  <meyering@lucent.com>
28150
28151         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
28152
28153 2000-12-01  Paul Eggert  <eggert@twinsun.com>
28154
28155         * lib/memrchr.c: Include <config.h> before any system include file.
28156
28157 2000-11-30  Jim Meyering  <meyering@lucent.com>
28158
28159         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
28160
28161 2000-11-30  Jim Meyering  <meyering@lucent.com>
28162
28163         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
28164
28165 2000-11-29  Paul Eggert  <eggert@twinsun.com>
28166
28167         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
28168
28169 2000-11-26  Jim Meyering  <meyering@lucent.com>
28170
28171         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
28172
28173 2000-11-22  Paul Eggert  <eggert@twinsun.com>
28174
28175         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
28176         size of (size_t) -1; it's not portable.
28177
28178 2000-11-17  Jim Meyering  <meyering@lucent.com>
28179
28180         * lib/strstr.c: Update from GNU libc.
28181
28182 2000-11-17  Akim Demaille  <akim@epita.fr>
28183
28184         * lib/obstack.h: Formatting changes.
28185         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
28186         prevent type checking.
28187         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
28188         cast the value to (void *): assigning a `foo *' to a `void *'
28189         variable is valid.
28190         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
28191
28192 2000-11-16  Jim Meyering  <meyering@lucent.com>
28193
28194         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
28195
28196 2000-11-11  Jim Meyering  <meyering@lucent.com>
28197
28198         * lib/error.c: Add a couple #includes, merging from GNU libc version.
28199
28200 2000-11-10  Jim Meyering  <meyering@lucent.com>
28201
28202         * lib/obstack.h: Update from GNU libc.
28203         * lib/obstack.c: Likewise.
28204
28205 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
28206
28207         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
28208
28209 2000-11-06  Paul Eggert  <eggert@twinsun.com>
28210
28211         * lib/getusershell.c (setusershell): Use rewind rather than
28212         fseek/fseeko, to avoid configuration hassles with fseeko.
28213         Don't bother opening SHELLS_FILE if shellstream is NULL;
28214         it's not necessary.
28215
28216 2000-11-05  Jim Meyering  <meyering@lucent.com>
28217
28218         * lib/makepath.h (make_dir): Declare.
28219         * lib/makepath.c (make_dir): Remove `static' attribute.
28220         Tweak a comment.
28221
28222 2000-11-04  Jim Meyering  <meyering@lucent.com>
28223
28224         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
28225
28226 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
28227
28228         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
28229         last one in a bucket, advance to the next bucket.
28230
28231 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
28232
28233         * lib/fnmatch.c: Do not comment out all the code if we are using
28234         the GNU C library, because in some cases we are replacing buggy
28235         code in the GNU C library itself.
28236
28237 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
28238
28239         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
28240         (regex_compile): Catch bogus \(\1\).
28241
28242 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28243
28244         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
28245         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
28246         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
28247
28248 2000-10-30  Paul Eggert  <eggert@twinsun.com>
28249
28250         * lib/error.h, getline.h, modechange.h:
28251         Remove "2000" from Copyright line, as the file hasn't been
28252         changed this year other than in the copyright notice.
28253
28254         * lib/xalloc.h: Add "2000" to Copyright line, as this file
28255         was changed this year.
28256
28257 2000-10-29  Jim Meyering  <meyering@lucent.com>
28258
28259         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
28260         renaming.
28261         * m4/ls-mntd-fs.m4: Likewise
28262
28263 2000-10-29  Jim Meyering  <meyering@lucent.com>
28264
28265         * lib/xstat.in: Fix grammar in comment.
28266
28267 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
28268
28269         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
28270         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
28271         doesn't define __restrict_arr.
28272
28273 2000-10-28  Jim Meyering  <meyering@lucent.com>
28274
28275         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
28276         (jm_PREREQ_MEMCHR): New function.
28277
28278 2000-10-28  Jim Meyering  <meyering@lucent.com>
28279
28280         * lib/memchr.c: Update from libc.
28281         Adjust for portability:
28282         [HAVE_STDLIB_H]: Include stdlib.h.
28283         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
28284         Undef __memchr, too.
28285         [!weak_alias]: Define __memchr to memchr.
28286
28287         * lib/regex.c: Update from libc.
28288         * lib/regex.h: Likewise.
28289         * lib/getopt1.c: Likewise.
28290         * lib/memcmp.c: Likewise.
28291
28292         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
28293         Avoid using fseek, when possible -- it's broken by design.
28294         Patch by Ulrich Drepper.
28295
28296 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
28297
28298         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
28299         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
28300         Giving in to popular pressure to shut up the compiler with casts.
28301
28302 2000-10-26  Jim Meyering  <meyering@lucent.com>
28303
28304         * lib/strftime.c: Update from libc.
28305
28306 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
28307
28308         * regex.c: More `unsigned char' -> `re_char' changes.
28309         Also change several `int' into `re_wchar_t'.
28310         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
28311         (PUSH_FAILURE_POINTER): Don't cast any more.
28312         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
28313         We want GCC to complain, since this piece of code makes
28314         re_match non-reentrant, which *should* be fixed.
28315         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
28316         (EXTEND_BUFFER): Use RETALLOC.
28317         (SET_LIST_BIT): Don't cast.
28318         (re_wchar_t): New type.
28319         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
28320         that those two functions will always properly return.
28321         (IMMEDIATE_QUIT_CHECK): Cast to void.
28322         (analyse_first): Use recursion rather than an explicit stack.
28323         (re_compile_fastmap): Can't fail anymore.
28324         (re_search_2): Don't check re_compile_fastmap for failure.
28325         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
28326         Now also sets the new value (passed in a new argument).
28327         (re_match_2_internal): Use it.
28328         Also, use a new var `reg' of type size_t when looping through regs
28329         rather than reuse the inappropriate `mcnt'.
28330
28331 2000-10-25  Jim Meyering  <meyering@lucent.com>
28332
28333         * lib/obstack.c: Update from libc.
28334
28335 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
28336
28337         * regex.c (regex_compile): Change the way of handling a range from
28338         a char less than 256 to a char not less than 256.
28339
28340 2000-10-24  Andrew Innes  <andrewi@gnu.org>
28341
28342         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
28343         NT-Emacs only.
28344         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
28345         so that re_search functions only quit when callers expect them to.
28346
28347 2000-10-23  Jim Meyering  <meyering@lucent.com>
28348
28349         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
28350         wrong.  That set_locale call must not have any side effects.
28351         From Paul Eggert.
28352
28353 2000-10-22  Jim Meyering  <meyering@lucent.com>
28354
28355         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
28356         [CYCLIC]: Remove now-unused definition.
28357
28358         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
28359         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
28360         Suggestion from Ulrich Drepper.
28361
28362 2000-10-21  Jim Meyering  <meyering@lucent.com>
28363
28364         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
28365         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
28366         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
28367
28368 2000-10-21  Jim Meyering  <meyering@lucent.com>
28369
28370         * lib/dirname.c (memrchr): Declare if necessary.
28371         (dir_name): Remove the restriction that there be no
28372         trailing slashes.  Now, this code skips past them, effectively
28373         ignoring them.
28374         [TEST_DIRNAME] (main): New unit tests.
28375
28376         * lib/memrchr.c: New file from GNU libc.
28377         Undef __memrchr, too.
28378         [!weak_alias]: Define __memrchr to memrchr.
28379         Guard weak_alias use with `#ifdef weak_alias'.
28380
28381 2000-10-21  Jim Meyering  <meyering@lucent.com>
28382
28383         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
28384         (dir_name): Use dir_name_r.
28385         * lib/dirname.h (dir_name_r): Declare it.
28386
28387 2000-10-17  Jim Meyering  <meyering@lucent.com>
28388
28389         * lib/quote.h (PARAMS): Define and use.
28390         Reported by Akim Demaille.
28391
28392         * lib/getopt.c: Update from libc.
28393
28394 2000-10-16  Jim Meyering  <meyering@lucent.com>
28395
28396         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
28397         setlocale.
28398         From Jan Fedak.
28399
28400 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
28401
28402         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
28403
28404 2000-09-25  Jim Meyering  <meyering@lucent.com>
28405
28406         * lib/md5.h (rol): Define (from GnuPG).
28407
28408         * lib/sha.c: Give credit (GnuPG) where due.
28409         (M): Use rol rather than open-coding it.
28410         Add a FIXME comment.
28411
28412 2000-09-21  Jim Meyering  <meyering@lucent.com>
28413
28414         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
28415         Reported by Michael Stone.
28416
28417 2000-09-20  Jim Meyering  <meyering@lucent.com>
28418
28419         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
28420         (noinst_HEADERS): Add sha.h.
28421         Based on code from Scott G. Miller and from GnuPG.
28422
28423 2000-09-18  Jim Meyering  <meyering@lucent.com>
28424
28425         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
28426         LIBS. Otherwise, everyone ends up linking with -lelf for some
28427         configurations.
28428         Reported by Mike Stone.
28429
28430 2000-09-15  Jim Meyering  <meyering@lucent.com>
28431
28432         * lib/regex.c: Update from libc.
28433
28434 2000-09-10  Jim Meyering  <meyering@lucent.com>
28435
28436         * lib/getopt.c (_getopt_internal): Update from glibc.
28437
28438 2000-09-09  Jim Meyering  <meyering@lucent.com>
28439
28440         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
28441         think it should be used as a general replacement for isascii.
28442         * lib/fnmatch.c: Likewise.
28443         * lib/mbswidth.c: Likewise
28444         * lib/regex.c: Likewise.
28445
28446         Don't use atoi.
28447         * lib/userspec.c: Include sys/param.h and limits.h.
28448         Include xstrtol.h.
28449         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
28450         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
28451         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
28452         UID, GID.  Check range.
28453
28454 2000-09-06  Jim Meyering  <meyering@lucent.com>
28455
28456         * lib/getopt.c (_getopt_internal): Update from glibc.
28457
28458 2000-08-30  Jim Meyering  <meyering@lucent.com>
28459
28460         * lib/strftime.c: Merge in changes from GNU libc.
28461
28462 2000-08-26  Jim Meyering  <meyering@lucent.com>
28463
28464         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
28465         * m4/fpending.m4: New file.
28466
28467 2000-08-26  Jim Meyering  <meyering@lucent.com>
28468
28469         * lib/closeout.c: Include "__fpending.h".
28470         (close_stdout_status): Return right away if there's nothing to flush.
28471
28472         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
28473         * lib/__fpending.c: New file.
28474         * lib/__fpending.h: New file.
28475
28476 2000-08-20  Jim Meyering  <meyering@lucent.com>
28477
28478         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
28479         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
28480         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
28481
28482 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
28483
28484         Improve fileutils installation on systems where running
28485         programs (like install) can't be unlinked.
28486         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
28487         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
28488
28489 2000-08-07  Paul Eggert  <eggert@twinsun.com>
28490
28491         Standardize on "memory exhausted" instead of "Memory exhausted"
28492         or "virtual memory exhausted".
28493         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
28494         "virtual memory exhausted".
28495         * lib/same.c (same_name): Invoke xalloc_die instead of printing
28496         our own message.
28497         * lib/userspec.c (parse_user_spec): Likewise.
28498         * lib/bumpalloc.h: comment fix
28499         * lib/same.c, userspec.c: Include xalloc.h.
28500
28501         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
28502         not char *const and pointing to a constant array.
28503         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
28504         (xrealloc): Comment fix.
28505
28506         * lib/userspec.c (parse_user_spec):
28507         Don't translate a message until just before returning,
28508         to avoid unnecessary translation.
28509
28510 2000-08-07  Jim Meyering  <meyering@lucent.com>
28511
28512         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
28513         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
28514         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
28515         getgroups.c, gethostname.c, getopt.h, group-member.c,
28516         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
28517         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
28518         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
28519         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
28520         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
28521         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
28522         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
28523         yesno.c: Back out Copyright date changes for each file with no change
28524         this year.  This eases coordination with other programs using the same
28525         source code modules.  From Paul Eggert.
28526
28527 2000-08-06  Paul Eggert  <eggert@twinsun.com>
28528
28529         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
28530         not char, for compatibility with glibc 2.1.3 strftime.c.
28531
28532 2000-08-03  Greg McGary  <greg@mcgary.org>
28533
28534         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
28535         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
28536         (EXTEND_BUFFER): Use them.
28537
28538 2000-08-01  Jim Meyering  <meyering@lucent.com>
28539
28540         * lib/dirname.c (ISSLASH): Define.
28541         (BACKSLASH_IS_PATH_SEPARATOR): Define.
28542         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
28543         both `\' and `/' may be use as path separators.
28544         Based on a patch from Prashant TR.
28545
28546 2000-07-31  Paul Eggert  <eggert@twinsun.com>
28547
28548         * lib/quotearg.c (quotearg_n_options): Don't make the initial
28549         slot vector a constant, since it might get modified.
28550
28551 2000-07-31  Jim Meyering  <meyering@lucent.com>
28552
28553         * lib/xmalloc.c: Use `virtual memory exhausted', not
28554         `Memory exhausted'.
28555         * lib/obstack.c (print_and_abort): Likewise.
28556
28557 2000-07-30  Paul Eggert  <eggert@twinsun.com>
28558
28559         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
28560         buffer, so that the caller can always quote one small
28561         component of a "memory exhausted" message in slot 0.
28562         From a suggestion by Jim Meyering.
28563
28564 2000-07-30  Jim Meyering  <meyering@lucent.com>
28565
28566         * lib/makepath.c (make_path): Quote the other instance, too.
28567
28568         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
28569         (STATIC_BUF_SIZE): Define.
28570         (quotearg_n_options): Use only statically allocated storage when
28571         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
28572         than STATIC_BUF_SIZE.
28573
28574 2000-07-29  Jim Meyering  <meyering@lucent.com>
28575
28576         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
28577         * lib/dirname.c (dir_name): Likewise.
28578
28579         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
28580         `/'.
28581
28582         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
28583         (dir_name): Assert that there are no trailing slashes.
28584
28585 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
28586
28587         * lib/mbswidth.h (mbswidth): Add a flags argument.
28588         (mbswidth): New declaration.
28589         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
28590         * lib/mbswidth.c (mbswidth): Add a flags argument.
28591         (mbsnwidth): New function.
28592
28593 2000-07-24  Jim Meyering  <meyering@lucent.com>
28594
28595         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
28596
28597 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28598
28599         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
28600
28601 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28602
28603         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
28604         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
28605         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
28606         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
28607         invoke multibyte primitives.
28608
28609 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28610
28611         * lib/quotearg.c:
28612         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
28613         so that mbstate_t is always defined.
28614
28615         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
28616         be 1 in at least one GCC installation, and this configuration
28617         error is likely to be common.  Ignoring MB_LEN_MAX hurts
28618         performance on hosts that have mbrtowc but have only unibyte
28619         locales, but I assume these hosts are rare.
28620
28621 2000-07-23  Paul Eggert  <eggert@twinsun.com>
28622
28623         * lib/mbswidth.c (_XOPEN_SOURCE):
28624         Don't define; this causes problems on Solaris 7.
28625         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
28626
28627 2000-07-23  Jim Meyering  <meyering@lucent.com>
28628
28629         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
28630         too: getgrgid, getpwuid, getuid.
28631
28632 2000-07-23  Jim Meyering  <meyering@lucent.com>
28633
28634         * lib/basename.c (base_name): Add an assertion.
28635
28636 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
28637
28638         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
28639         shadow its mbsinit function.
28640
28641 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
28642
28643         * lib/mbswidth.h: New file.
28644         * lib/mbswidth.c: New file.
28645         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
28646         (noinst_HEADERS): Add mbswidth.h.
28647
28648 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
28649
28650         * lib/config.charset: Add support for FreeBSD. Improve support for
28651         HP-UX and IRIX 6.
28652
28653 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
28654
28655         * m4/mbswidth.m4: New file.
28656         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
28657
28658 2000-07-15  Jim Meyering  <meyering@lucent.com>
28659
28660         * lib/makepath.c: Include quote.h.
28661         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
28662         corresponding argument in a `quote (...)' call.
28663         Give better diagnostics.
28664
28665         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
28666         (noinst_HEADERS): Add quote.h.
28667
28668         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
28669         from tar's src/misc.c.
28670         * lib/quote.h: New file.  Prototypes for same.
28671
28672 2000-07-14  Paul Eggert  <eggert@twinsun.com>
28673
28674         From a suggestion by Bruno Haible.
28675         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
28676         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
28677         to decide whether to define the BeOS workaround macro;
28678         this adjusts to the change to AC_MBSTATE_T.
28679
28680 2000-07-14  Jim Meyering  <meyering@lucent.com>
28681
28682         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
28683         jm_AC_TYPE_UINTMAX_T.
28684
28685 2000-07-13  Paul Eggert  <eggert@twinsun.com>
28686
28687         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
28688
28689         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
28690         quotearg_buffer_restyled): Add support for
28691         clocale_quoting_style.  Undo previous change to
28692         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
28693         and "{RIGHT QUOTATION MARK}" msgids.
28694
28695 2000-07-10  Paul Eggert  <eggert@twinsun.com>
28696
28697         From a suggestion by Bruno Haible.
28698         * m4/mbstate_t.m4 (AC_MBSTATE_T):
28699         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
28700         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
28701         and mbstate_t, to a single-part test that simply defines mbstate_t.
28702         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
28703         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
28704
28705 2000-07-10  Jim Meyering  <meyering@lucent.com>
28706
28707         * m4/strerror_r.m4: Mirror the correction made in autoconf.
28708
28709         * m4/gnu-source.m4: Output to confdefs.h directly.
28710         Suggestion from Akim Demaille.
28711
28712 2000-07-09  Paul Eggert  <eggert@twinsun.com>
28713
28714         The old behavior of quoting `like this' doesn't look good with
28715         newer, ISO-style fonts.  See:
28716         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
28717
28718         Instead, quote "like this" by default.  Let the translator
28719         tailor the locale-specific quoting behavior by providing
28720         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
28721
28722         * lib/quotearg.c (N_): New macro.
28723         (gettext_default): New function.
28724         (quotearg_buffer_restyled): Use
28725         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
28726         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
28727
28728 2000-07-09  Jim Meyering  <meyering@lucent.com>
28729
28730         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
28731         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
28732
28733         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
28734         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
28735
28736 2000-07-09  Jim Meyering  <meyering@lucent.com>
28737
28738         * lib/Most files: Update copyright dates to include 2000.
28739
28740 2000-07-08  Jim Meyering  <meyering@lucent.com>
28741
28742         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
28743         if not defined.
28744         (xgethostname): Remove now-unnecessary #ifdef.
28745         Move declaration of `err' into loop where it's used.
28746
28747 2000-07-05  Paul Eggert  <eggert@twinsun.com>
28748         and Bruno Haible  <haible@clisp.cons.org>
28749
28750         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
28751         only if the test for an object-type mbstate_t fails.  This
28752         prevents us from mistakenly reporting that mbstate_t is a
28753         system object type after we "#define mbstate_t int" to work
28754         around its lack.
28755
28756 2000-07-05  Paul Eggert  <eggert@twinsun.com>
28757         and Bruno Haible  <haible@clisp.cons.org>
28758
28759         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
28760
28761 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
28762
28763         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
28764         to strerror_r.
28765         Include <ctype.h> for use of isalpha.
28766
28767 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
28768
28769         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
28770         by allocating a larger buffer. Test the gethostname return value for
28771         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
28772         returns an error and ENAMETOOLONG isn't defined.
28773
28774 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
28775
28776         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
28777         dimension.
28778
28779 2000-07-04  Jim Meyering  <meyering@lucent.com>
28780
28781         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
28782         of the deprecated AC_CHECKING.
28783
28784 2000-07-04  Jim Meyering  <meyering@lucent.com>
28785
28786         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
28787         Reported by Bruno Haible.
28788
28789 2000-07-04  Jim Meyering  <meyering@lucent.com>
28790
28791         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
28792         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
28793         lacks mbrtowc.
28794
28795 2000-07-03  Paul Eggert  <eggert@twinsun.com>
28796
28797         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
28798         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
28799
28800 2000-07-03  Paul Eggert  <eggert@twinsun.com>
28801         and Bruno Haible  <haible@clisp.cons.org>
28802
28803         * lib/quotearg.c (mbrtowc):
28804         Assign to *pwc, and return 1 only if result is nonzero.
28805         (iswprint): Use ISPRINT when substituting our own mbrtowc.
28806
28807 2000-07-03  Jim Meyering  <meyering@lucent.com>
28808
28809         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
28810
28811 2000-07-03  Jim Meyering  <meyering@lucent.com>
28812
28813         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
28814         This is necessary to get a definition of e.g., UTMP_FILE on
28815         HP-UX 10.20.
28816         From Bob Proulx.
28817
28818 2000-07-02  Jim Meyering  <meyering@lucent.com>
28819
28820         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
28821
28822         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
28823         AC_LIBOBJ(function_name).
28824         * m4/chown.m4: Likewise.
28825         * m4/fnmatch.m4: Likewise.
28826         * m4/ftruncate.m4: Likewise.
28827         * m4/getgroups.m4: Likewise.
28828         * m4/getline.m4: Likewise.
28829         * m4/group-member.m4: Likewise.
28830         * m4/jm-macros.m4: Likewise.
28831         * m4/lstat.m4: Likewise.
28832         * m4/malloc.m4: Likewise.
28833         * m4/memcmp.m4: Likewise.
28834         * m4/nanosleep.m4: Likewise.
28835         * m4/putenv.m4: Likewise.
28836         * m4/realloc.m4: Likewise.
28837         * m4/regex.m4: Likewise.
28838         * m4/stat.m4: Likewise.
28839         * m4/strftime.m4: Likewise.
28840
28841 2000-07-02  Jim Meyering  <meyering@lucent.com>
28842
28843         * lib/quotearg.c (mbstate_t): Don't define here.
28844
28845 2000-07-02  Jim Meyering  <meyering@lucent.com>
28846
28847         * lib/nanosleep.c (SIGCONT): Define if not already defined.
28848
28849 2000-07-01  Jim Meyering  <meyering@lucent.com>
28850
28851         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
28852
28853 2000-07-01  Jim Meyering  <meyering@lucent.com>
28854
28855         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
28856         problem.
28857
28858 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
28859
28860         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
28861         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
28862
28863 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
28864
28865         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
28866         per change in ../m4/ls-mntd-fs.m4.
28867         (read_filesystem_list): Ignore symbolic links.
28868
28869 2000-06-29  Jim Meyering  <meyering@lucent.com>
28870
28871         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
28872         for declaration of strcmp.
28873
28874         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
28875
28876         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
28877         Avoid warning by casting result to `char *' to remove `const'.
28878
28879 2000-06-28  Jim Meyering  <meyering@lucent.com>
28880
28881         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
28882         included by quotearg.c, for which we perform this test.  From
28883         Bruno Haible.
28884
28885 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
28886
28887         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
28888         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
28889         <utmpx.h> exists, put readutmp.o into LIBOBJS.
28890
28891 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
28892
28893         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
28894
28895 2000-06-26  Paul Eggert  <eggert@twinsun.com>
28896
28897         savedir now sets errno on failure and invokes xmalloc to get memory.
28898         Fix a couple of other minor bugs while we're at it.
28899
28900         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
28901         (NAMLEN): Remove macro.
28902         (malloc, realloc): Remove decls.
28903         (stpcpy): Likewise.
28904         ("xalloc.h"): Include.
28905         (NAME_SIZE_DEFAULT): New macro.
28906         (savedir): Use xmalloc / xrealloc to allocate memory.
28907         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
28908         Skip "" directory entries.
28909         Use strlen to calculate directory entry length, since the old method
28910         is rarely used these days and isn't worth supporting.
28911         Don't use a pointer after freeing it.
28912         Check for integer overflow when calculating allocation size.
28913         Use memcpy to copy entries, instead of stpcpy.
28914         Set errno properly when returning NULL.
28915         Check for readdir error.
28916
28917 2000-06-26  Jim Meyering  <meyering@lucent.com>
28918
28919         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
28920
28921 2000-06-25  Jim Meyering  <meyering@lucent.com>
28922
28923         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
28924         Linux header bug when _XOPEN_SOURCE is defined to 500.
28925
28926 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
28927
28928         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
28929         deficiency.
28930
28931 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
28932
28933         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
28934         Include xalloc.h.
28935         Don't include <stdlib.h>.  Don't declare malloc, realloc.
28936
28937 2000-06-24  Jim Meyering  <meyering@lucent.com>
28938
28939         * m4/strerror_r.m4: Revive this file -- to try out an experimental
28940         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
28941         for which strerror does return char*, but which lacks a conveniently
28942         accessible declaration of the function.  If the compile-test says
28943         strerror_r doesn't work, then resort to a `run'-test that works on
28944         BeOS and segfaults on DEC Unix.
28945
28946 2000-06-24  Jim Meyering  <meyering@lucent.com>
28947
28948         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
28949
28950 2000-06-23  Paul Eggert  <eggert@twinsun.com>
28951
28952         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
28953         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
28954
28955 2000-06-23  Paul Eggert  <eggert@twinsun.com>
28956
28957         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
28958         (mbrtowc, mbstate_t): Define substitutes if
28959         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
28960         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
28961         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
28962
28963 2000-06-23  Jim Meyering  <meyering@lucent.com>
28964
28965         * m4/afs.m4: Add missing AC_MSG_RESULT.
28966         Reported by Bruno Haible.
28967
28968         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
28969         Suggestion from Bruno Haible.
28970
28971 2000-06-23  Jim Meyering  <meyering@lucent.com>
28972
28973         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
28974
28975 2000-06-21  Jim Meyering  <meyering@lucent.com>
28976
28977         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
28978
28979 2000-06-21  Jim Meyering  <meyering@lucent.com>
28980
28981         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
28982         (noinst_HEADERS): Add getstr.h.
28983
28984         * lib/getline.c (getstr): Move into a separate file.
28985         * lib/getstr.c (getstr): New file, extracted from getline.c, with
28986         the following changes: new parameter, delim2; both delim[12]
28987         parameters have type `int', not `char'.  The latter would lose
28988         with 8-bit delimiters.
28989         * lib/getstr.h: New file.
28990
28991 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
28992
28993         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
28994         than 1024, return a memory chunk of least possible size, instead
28995         of size PATH_MAX + 2. In the loop, increment the size proportionally.
28996         Use free/xmalloc instead of xrealloc to avoid copying for very long
28997         paths.
28998
28999 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29000
29001         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
29002         the empty string.
29003
29004 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
29005
29006         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
29007         address, not strdup.  Include <stdlib.h> and don't declare free().
29008
29009 2000-06-19  Jim Meyering  <meyering@lucent.com>
29010
29011         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
29012
29013 2000-06-18  Jim Meyering  <meyering@lucent.com>
29014
29015         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
29016
29017         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
29018         `checking whether...' message to be consistent with that of the
29019         lstat test.
29020
29021 2000-06-18  Jim Meyering  <meyering@lucent.com>
29022
29023         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
29024         Besides, these days every porting target provides a mkdir function.
29025
29026         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
29027         needed. (this snippet comes from src/system.h).
29028
29029 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
29030
29031         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
29032
29033 2000-06-15  Paul Eggert  <eggert@twinsun.com>
29034
29035         * lib/human.c (adjust_value): New function.
29036         (human_readable_inexact): Apply rounding style even when
29037         printing approximate values.
29038
29039 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29040
29041         * lib/human.c (human_readable_inexact): Allow an input block
29042         size that is not a multiple of the output block size, and vice versa.
29043         Reported by Piergiorgio Sartor.
29044
29045 2000-06-14  Paul Eggert  <eggert@twinsun.com>
29046
29047         * lib/getdate.y (get_date): Apply relative times after time
29048         zone indicator, not before.  Reported by Todd A. Jacobs.
29049
29050 2000-06-13  Jim Meyering  <meyering@lucent.com>
29051
29052         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
29053
29054         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
29055
29056 2000-06-12  Paul Eggert  <eggert@twinsun.com>
29057
29058         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
29059
29060 2000-06-12  Jim Meyering  <meyering@lucent.com>
29061
29062         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
29063         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
29064         optional argument.
29065         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
29066         the optional argument, `lib'.
29067
29068 2000-06-08  Jim Meyering  <meyering@lucent.com>
29069
29070         * m4/largefile.m4: Remove file (now that it's part of autoconf).
29071
29072 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29073
29074         Rewrite largefile configuration so that we don't need to run
29075         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
29076         AC_CANONICAL_HOST in configure.in -- jmm]
29077
29078         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
29079         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
29080         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
29081         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
29082         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
29083         All uses changed.
29084         Instead of inspecting the output of getconf, try to compile the
29085         test program without and with the macro definition.
29086         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
29087         for getconf.  Instead, check for the needed flags by compiling
29088         test programs.
29089
29090 2000-06-04  Paul Eggert  <eggert@twinsun.com>
29091
29092         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
29093
29094 2000-06-04  Jim Meyering  <meyering@lucent.com>
29095
29096         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
29097         SunOS 4.1.4 for which gid_t is an unsigned type.
29098
29099 2000-06-03  Jim Meyering  <meyering@lucent.com>
29100
29101         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
29102         now that autoconf requires that.
29103
29104         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
29105         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
29106         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
29107
29108 2000-06-03  Jim Meyering  <meyering@lucent.com>
29109
29110         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
29111
29112 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29113
29114         * m4/glibc21.m4: New file.
29115         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
29116
29117 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
29118
29119         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
29120         newer, don't install charset.alias.
29121         * lib/config.charset: Change the Linux/glibc rules so they become empty
29122         on glibc-2.1 or newer.
29123
29124 2000-06-02  Jim Meyering  <meyering@lucent.com>
29125
29126         * lib/mountlist.c: Back out last change.  Instead, do this...
29127         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
29128         me_dummy member using the same `ignore'-testing code.
29129         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
29130         fs_type strings.
29131         From Mark D. Roth.
29132
29133 2000-05-29  Jim Meyering  <meyering@lucent.com>
29134
29135         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
29136         mounts with the `ignore' attribute.  Based on a patch from
29137         Mark D. Roth.
29138
29139 2000-05-28  Jim Meyering  <meyering@lucent.com>
29140
29141         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
29142         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29143         * m4/stat.m4: Likewise.
29144         * m4/lstat.m4: Likewise.
29145         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
29146
29147         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
29148         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
29149
29150 2000-05-26  Jim Meyering  <meyering@lucent.com>
29151
29152         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
29153
29154 2000-05-24  Jim Meyering  <meyering@lucent.com>
29155
29156         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
29157         autoconf requires that.
29158         * m4/lib-check.m4: Likewise.
29159         * m4/jm-macros.m4: Likewise.
29160         * m4/strftime.m4: Likewise.
29161
29162         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
29163         AC_CHECK_DECLS, now that autoconf requires that.
29164
29165 2000-05-22  Jim Meyering  <meyering@lucent.com>
29166
29167         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29168         * m4/lstat.m4: Likewise.
29169
29170 2000-05-22  Jim Meyering  <meyering@lucent.com>
29171
29172         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
29173
29174 2000-05-20  Jim Meyering  <meyering@lucent.com>
29175
29176         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
29177         (jm_PREREQ): Use it.
29178
29179 2000-05-18  Jim Meyering  <meyering@lucent.com>
29180
29181         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
29182         back, too, since it may have been modified by allocate_entry.
29183         (hash_delete): Rewrite to use neither the assignment operator
29184         nor the comma operator in an if-expression.
29185
29186 2000-05-15  Paul Eggert  <eggert@twinsun.com>
29187
29188         * lib/closeout.c:
29189         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
29190         Remove; no longer needed.
29191         "quotearg.h": Add include.
29192         (file_name): Do not bother to explicitly initialize to NULL; it's less
29193         efficient on some hosts.
29194         (close_stdout_status): Remove test as to whether stdout was already
29195         closed; it breaks for the case "echo x | sort >&-".
29196         Quote file name colons.
29197         Do not assume that _("write error") lacks format strings.
29198
29199 2000-05-15  Jim Meyering  <meyering@lucent.com>
29200
29201         * lib/version-etc.c (version_etc_copyright): Update the copyright
29202         string used in all --version output.
29203
29204 2000-05-14  Jim Meyering  <meyering@lucent.com>
29205
29206         * lib/closeout.c (close_stdout_set_file_name): New function.
29207         (close_stdout_status): Use new file-scoped global.
29208         Return right away if fstat says the stdout file descriptor is invalid.
29209         * lib/closeout.h (close_stdout_set_file_name): Declare.
29210
29211 2000-05-10  Jim Meyering  <meyering@lucent.com>
29212
29213         * lib/closeout.c [default_exit_status]: New file-scoped variable.
29214         (close_stdout_set_status): New function.
29215         * lib/closeout.h (close_stdout_set_status): Declare.
29216
29217 2000-05-09  Jim Meyering  <meyering@lucent.com>
29218
29219         * m4/gettext.m4: Rename this...
29220         * m4/libintl.m4: ...to this.
29221
29222 2000-05-08  Jim Meyering  <meyering@lucent.com>
29223
29224         * lib/long-options.c: Don't include closeout.h.
29225         (parse_long_options): Don't call close_stdout for --version.
29226
29227 2000-05-06  Paul Eggert  <eggert@twinsun.com>
29228
29229         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
29230         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
29231         2.1.3 bug.  This avoids a clash when files like regex.c define
29232         _GNU_SOURCE.
29233
29234 2000-05-06  Jim Meyering  <meyering@lucent.com>
29235
29236         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
29237         (AC_REPLACE_FUNCS): Add strnlen.
29238
29239         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
29240         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
29241
29242         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
29243         AC_SEARCH_LIBS call for nanosleep.
29244         (LIB_NANOSLEEP): Set and AC_SUBST.
29245
29246 2000-05-06  Jim Meyering  <meyering@lucent.com>
29247
29248         * lib/strnlen.c: Undefine __strnlen and strnlen.
29249         [!weak_alias]: Define __strnlen to strnlen.
29250
29251         * lib/atexit.c: New file, from libiberty.
29252
29253 2000-05-06  Jim Meyering  <meyering@lucent.com>
29254
29255         * lib/closeout.c (close_stdout_status): Also check for errors on the
29256         stderr stream.
29257
29258 2000-05-05  Jim Meyering  <meyering@lucent.com>
29259
29260         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
29261         AC_SEARCH_LIBS call for clock_gettime.
29262         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
29263
29264         * m4/search-libs.m4: Update from autoconf.
29265
29266         su doesn't work on Solaris 2.6.
29267         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
29268         <shadow.h>.  Reported by Dragos Harabor.
29269
29270 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
29271
29272         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
29273         memcpy instead of xmalloc, xrealloc, path_concat.
29274         (locale_charset): Treat empty environment variables as absent.
29275         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
29276
29277 2000-05-04  Jim Meyering  <meyering@lucent.com>
29278
29279         * lib/getopt.c: Update from glibc.
29280         * lib/obstack.c: Likewise.
29281         * lib/obstack.h: Likewise.
29282         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
29283         file
29284
29285         * lib/regex.h: Likewise.
29286         * lib/strndup.c: Likewise.
29287         * lib/strnlen.c: New file, from glibc.
29288
29289 2000-05-03  Jim Meyering  <meyering@lucent.com>
29290
29291         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
29292
29293 2000-05-02  Paul Eggert  <eggert@twinsun.com>
29294
29295         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
29296         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
29297         compile-time test, rather than inspecting host and OS, to
29298         decide whether to define _LARGEFILE_SOURCE.
29299
29300 2000-05-01  Jim Meyering  <meyering@lucent.com>
29301
29302         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
29303
29304         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
29305         Based on a patch from Bruno Haible.
29306
29307 2000-05-01  Jim Meyering  <meyering@lucent.com>
29308
29309         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
29310
29311 2000-04-29  Jim Meyering  <meyering@lucent.com>
29312
29313         * lib/path-concat.c: Declare strdup only if it's not defined.
29314         * lib/canon-host.c: Likewise.
29315
29316 2000-04-28  Jim Meyering  <meyering@lucent.com>
29317
29318         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
29319         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
29320         is included first, then limits.h is included by locale.h by libintl.h.
29321         From John David Anglin.
29322
29323 2000-04-25  Jim Meyering  <meyering@lucent.com>
29324
29325         * lib/makepath.c (S_IRWXUGO): Define.
29326         (make_path): Always perform explicit chmod if MODE specifies any
29327         of the `special' permission bits.  Prompted by a bug report against
29328         install from Mate Wierdl and Joost van Baal.
29329
29330 2000-04-18  Jim Meyering  <meyering@lucent.com>
29331
29332         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
29333         (jm_PREREQ): Use it.
29334
29335 2000-04-18  Jim Meyering  <meyering@lucent.com>
29336
29337         * lib/README: New file.
29338
29339         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
29340         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
29341
29342 2000-04-17  Jim Meyering  <meyering@lucent.com>
29343
29344         Get it right :-)
29345         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
29346         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
29347         Suggestion from Akim Demaille.
29348
29349 2000-04-17  Jim Meyering  <meyering@lucent.com>
29350
29351         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
29352         the definition of it to rpl_strftime also defined-away the system's
29353         declaration.
29354
29355 2000-04-15  Jim Meyering  <meyering@lucent.com>
29356
29357         Use `C' to denote so-called `contiguous' files, the same way
29358         that tar does.
29359         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
29360         (ftypelet): Use S_ISCTG.
29361         From Michael Deutschmann.
29362
29363 2000-04-14  Jim Meyering  <meyering@lucent.com>
29364
29365         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
29366         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
29367         clobbered.
29368
29369 2000-04-14  Jim Meyering  <meyering@lucent.com>
29370
29371         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
29372
29373 2000-04-13  Jim Meyering  <meyering@lucent.com>
29374
29375         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
29376         AH_VERBATIM to insert required #ifndef into config.h.in.
29377         Suggestion from Akim Demaille.
29378
29379 2000-04-12  Jim Meyering  <meyering@lucent.com>
29380
29381         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
29382         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
29383         Christian Krackowizer.
29384
29385         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
29386         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
29387         (AC_SYS_LARGEFILE): Require.
29388         (AM_C_PROTOTYPES): Require.
29389
29390 2000-04-08  Jim Meyering  <meyering@lucent.com>
29391
29392         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
29393         names don't conflict.  Reported by Eli Zaretskii.
29394
29395 2000-04-07  Jim Meyering  <meyering@lucent.com>
29396
29397         * lib/putenv.c: Move inclusion of errno.h so it follows that of
29398         sys/types.h, to work around system header problems on AIX 3.2.5.
29399         From Bruno Haible.
29400
29401 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
29402
29403         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
29404         bug.  Deal with the different error behavior of Irix iconv.
29405
29406 2000-04-05  Paul Eggert  <eggert@twinsun.com>
29407
29408         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
29409         IRIX if the installer said otherwise.
29410
29411 2000-04-05  Jim Meyering  <meyering@lucent.com>
29412
29413         Portability tweaks required for ultrix4.3.
29414         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
29415         (jm_CHECK_DECLS): Add getutent to the list of functions.
29416         (_jm_DECL_HEADERS): Add utmpx.h.
29417         From John David Anglin.
29418
29419         * m4/strftime.m4: Back out the 2000-04-02 change.
29420         Instead of that change, simply undefine putenv in the test program.
29421
29422 2000-04-05  Jim Meyering  <meyering@lucent.com>
29423
29424         Portability tweaks required for ultrix4.3.
29425         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
29426         getutent.
29427         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
29428         * lib/canon-host.c: Declare strdup.
29429         * lib/path-concat.c: Likewise.
29430         From John David Anglin.
29431
29432 2000-04-04  Jim Meyering  <meyering@lucent.com>
29433
29434         Be more DOS 8.3-friendly.
29435         * lib/ref-add.sin: Renamed from ref-add.sed.in.
29436         * lib/ref-del.sin: Renamed from ref-del.sed.in.
29437         * lib/Makefile.am: Reflect renaming.
29438         Reported by Eli Zaretskii.
29439
29440         Use a temporary file name that won't clash with `charset.alias'
29441         in the DOS 8.3 name space.
29442         * lib/Makefile.am (charset_tmp): Define.
29443         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
29444         (uninstall-local): Likewise.
29445         Reported by Eli Zaretskii.
29446
29447 2000-04-03  Jim Meyering  <meyering@lucent.com>
29448
29449         * m4/gettext.m4: Fix typo in comment.
29450
29451         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
29452         textutils/configure.in).  Suggestion from Paul Eggert.
29453         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
29454
29455 2000-04-02  Paul Eggert  <eggert@twinsun.com>
29456
29457         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
29458         variable in the shell rather than using putenv, which isn't
29459         portable.  This avoids the configure-time inter-test dependency
29460         on the potentially-renamed putenv function.
29461
29462 2000-03-30  Paul Eggert  <eggert@twinsun.com>
29463
29464         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
29465         before checking struct stat.st_blksize, so that
29466         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
29467
29468 2000-03-29  Paul Eggert  <eggert@twinsun.com>
29469
29470         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
29471         since strftime.c uses HAVE_STRFTIME to decide whether to use
29472         the underlying strftime.
29473
29474 2000-03-29  Paul Eggert  <eggert@twinsun.com>
29475
29476         * lib/time/strftime.c (my_strftime): Make sure we call the system
29477         strftime, not ourselves, when invoking the underlying strftime.
29478
29479 2000-03-24  Jim Meyering  <meyering@lucent.com>
29480
29481         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
29482         (charset_alias): Define.
29483         (install-exec-local): Factor out common code.
29484         (uninstall-local): Split lines longer than 80.
29485         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
29486         (SUFFIXES): Define.
29487         (.sed.in.sed): New rule.  Don't redirect directly to $@.
29488         (CLEANFILES): Add ref-add.sed and ref-del.sed.
29489
29490 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
29491
29492         * lib/config.charset: Output a line containing "Packages using this
29493         file".
29494         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
29495         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
29496         ref-del.sed): New rules.
29497
29498 2000-03-17  Jim Meyering  <meyering@lucent.com>
29499
29500         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
29501         Otherwise, include <strings.h>
29502
29503 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
29504
29505         * lib/unicodeio.c (utf8_wctomb): New function.
29506         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
29507         format instead of in UCS-4 with platform dependent endianness.
29508
29509 2000-03-10  Jim Meyering  <meyering@lucent.com>
29510
29511         * m4/lib-check.m4: Look for getspnam in -lgen, too.
29512         From Marco Franzen.
29513
29514 2000-03-07  Paul Eggert  <eggert@twinsun.com>
29515
29516         * lib/savedir.c (savedir): Work even if directory size is
29517         negative; this can happen with some screwy NFS configurations.
29518
29519 2000-03-06  Jim Meyering  <meyering@lucent.com>
29520
29521         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
29522         if it's NULL (because we ran out of memory).  From Bruno Haible.
29523
29524 2000-03-05  Jim Meyering  <meyering@lucent.com>
29525
29526         * lib/localcharset.c ("path-concat.h"): Include.
29527         (get_charset_aliases): Use path_concat instead of ANSI string
29528         concatenation.
29529
29530         * lib/unicodeio.h (PARAMS): Define.
29531         Use it to guard prototype.
29532
29533 2000-03-04  Jim Meyering  <meyering@lucent.com>
29534
29535         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
29536         for lib/localcharset.c.
29537
29538 2000-03-04  Jim Meyering  <meyering@lucent.com>
29539
29540         * lib/Makefile.am (install-exec-local): Create $(libdir) before
29541         installing into it.
29542         (uninstall-local): Uncomment this rule so `make distcheck' works
29543         once again.
29544
29545         * lib/unicodeio.c (<errno.h>): Include it.
29546         (errno): Declare if not defined.
29547
29548         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
29549
29550         * lib/config.charset: New version, incorporating remarks from a linux
29551         i18n mailing list.  From Bruno Haible.
29552
29553 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
29554
29555         * m4/codeset.m4: New file.
29556         * m4/iconv.m4: New file.
29557         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
29558
29559 2000-03-03  Jim Meyering  <meyering@lucent.com>
29560
29561         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
29562
29563 2000-03-02  Jim Meyering  <meyering@lucent.com>
29564
29565         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
29566         the messages come out on separate lines.
29567
29568         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
29569         rather than jm_CHECK_DECLARATIONS.
29570         * m4/decl.m4: Remove now-unused file.
29571
29572         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
29573         geteuid.
29574
29575 2000-03-02  Jim Meyering  <meyering@lucent.com>
29576
29577         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
29578
29579 2000-03-01  Jim Meyering  <meyering@lucent.com>
29580
29581         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
29582         * lib/unicodeio.c: Likewise.
29583
29584 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
29585
29586         * lib/config.charset: New file.
29587         * lib/localcharset.c: New file.
29588         * lib/unicodeio.h, lib/unicodeio.c: New files.
29589         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
29590         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
29591         (noinst_HEADERS): Add unicodeio.h.
29592         (all-local, install-exec-local, charset.alias): New targets.
29593
29594 2000-02-28  Paul Eggert  <eggert@twinsun.com>
29595
29596         * lib/quotearg.c (ALERT_CHAR): New macro.
29597         (quotearg_buffer_restyled): Use it.
29598
29599 2000-02-27  Jim Meyering  <meyering@lucent.com>
29600
29601         * m4/check-decl.m4: Add getenv to the list.
29602
29603 2000-02-27  Jim Meyering  <meyering@lucent.com>
29604
29605         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
29606         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
29607
29608         * lib/backupfile.c: Guard inclusion of stdlib.h with
29609         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
29610         Declare malloc if needed.
29611
29612         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
29613         `#ifndef HAVE_DECL..'
29614         now that autoconf always defines the HAVE_DECL_ symbols.
29615         * lib/human.c: Likewise.
29616         * lib/same.c: Likewise.
29617         * lib/strtoumax.c: Likewise.
29618
29619         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
29620         declaration check was not run.
29621         * lib/hash.c: Likewise.
29622         * lib/human.c: Likewise.
29623         * lib/same.c: Likewise.
29624         * lib/strtoumax.c: Likewise.
29625
29626         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
29627         `.', then first look up the entire `.'-containing string as a login
29628         name.
29629
29630 2000-02-23  Jim Meyering  <meyering@lucent.com>
29631
29632         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
29633         in place of my hack.
29634
29635 2000-02-18  Paul Eggert  <eggert@twinsun.com>
29636
29637         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
29638         (textint): New typedef.
29639         (parser_control): Member year changed from int to textint.
29640         All uses changed.
29641         (YYSTYPE): Removed; replaced by %union with int and textint members.
29642         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
29643         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
29644         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
29645         (tSNUMBER, tUNUMBER): Now of type <textintval>.
29646         (date, number, to_year): Use width of number in digits, not its value,
29647         to determine whether it's a 2-digit year, or a 2-digit time.
29648         (yylex): Store number of digits of numeric tokens.
29649         Reported by John Kendall.
29650
29651         (parser_control): Changed from struct parser_control to typedef (for
29652         consistency).  All uses changed.
29653
29654         (tID): Removed; not used.
29655         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
29656
29657 2000-02-14  Paul Eggert  <eggert@twinsun.com>
29658
29659         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
29660         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
29661
29662 2000-02-12  Jim Meyering  <meyering@lucent.com>
29663
29664         * lib/userspec.c (ISDIGIT): Define it.
29665         (isdigit): Remove definition.
29666         (is_number): Use ISDIGIT, not isdigit.
29667         <libintl.h>: Include.
29668         (_ and N_): Define.
29669         (parse_user_spec): Mark translatable strings.
29670
29671 2000-02-10  Jim Meyering  <meyering@lucent.com>
29672
29673         With these changes, nanosleep.[ch] are finally enough like the other
29674         lib/* replacement files to compile on a few more losing systems.
29675
29676         * lib/nanosleep.h: Don't include config.h.
29677         Remove prototype from declaration of nanosleep.
29678         (PARAMS): Remove now-unneeded definition.
29679         * lib/nanosleep.c: #undef nanosleep.
29680         (rpl_nanosleep): Rename from nanosleep.
29681
29682 2000-02-10  Jim Meyering  <meyering@lucent.com>
29683
29684         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
29685         gnu_nanosleep to rpl_nanosleep.
29686
29687 2000-02-09  Jim Meyering  <meyering@lucent.com>
29688
29689         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
29690         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
29691
29692 2000-02-08  Akim Demaille  <akim@epita.fr>
29693
29694         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
29695         `[' and `]' and remove uses of `changequote'.
29696         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
29697         (AC_SYS_LARGEFILE): Likewise.
29698         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
29699         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
29700         of changequote.
29701         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
29702         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
29703         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
29704         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
29705
29706 2000-02-05  Jim Meyering  <meyering@lucent.com>
29707
29708         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
29709         Remove explicit use of AC_HEADER_TIME.  It is required by
29710         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
29711         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
29712         in autoconf whereby the expansion of the latter ended up preceding
29713         the expansion of its prerequisite, AC_HEADER_TIME.
29714         Reported by Volker Borchert.
29715
29716 2000-02-03  Jim Meyering  <meyering@lucent.com>
29717
29718         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
29719
29720 2000-02-03  Jim Meyering  <meyering@lucent.com>
29721
29722         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
29723         rather than with `#if HAVE_UTMPNAME'.
29724
29725 2000-02-02  Jim Meyering  <meyering@lucent.com>
29726
29727         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
29728         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
29729         Reported by Eli Zaretskii.
29730
29731 2000-02-01  Jim Meyering  <meyering@lucent.com>
29732
29733         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
29734
29735 2000-01-31  Jim Meyering  <meyering@lucent.com>
29736
29737         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
29738         functions.  Add the time.h and sys/time.h headers along with the
29739         AC_REQUIRE'ment of AC_HEADER_TIME.
29740
29741 2000-01-31  Jim Meyering  <meyering@lucent.com>
29742
29743         * lib/nanosleep.h (nanosleep): Guard declaration with
29744         `#if ! HAVE_DECL_NANOSLEEP'.
29745         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
29746         the declaration in that vendor's sys/timers.h.
29747         Reported by Christian Krackowizer.
29748
29749         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
29750         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
29751         (ISPRINT): Likewise.
29752         Reported by Tom Tromey.
29753
29754 2000-01-30  Jim Meyering  <meyering@lucent.com>
29755
29756         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
29757
29758         * m4/prereq.m4 (utmp_includes): Define.
29759         Check for ut_user and ut_name members in both struct utmpx
29760         and struct utmp.
29761
29762 2000-01-30  Jim Meyering  <meyering@lucent.com>
29763
29764         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
29765         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
29766         header files where only utmpx.ut_user is declared.
29767
29768         * lib/readutmp.h (UT_USER): Define.
29769
29770 2000-01-29  Jim Meyering  <meyering@lucent.com>
29771
29772         * m4/lib-check.m4: New file containing library-related checks from
29773         fileutils and sh-utils (textutils had none).
29774
29775 2000-01-28  Jim Meyering  <meyering@lucent.com>
29776
29777         * m4/perl.m4: Change format of warning message to look more like that
29778         from the missing script.  Suggestion from François Pinard.
29779
29780 2000-01-25  Jim Meyering  <meyering@lucent.com>
29781
29782         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
29783         well as time.h in the compile check.
29784         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
29785         Fix typo in cross-compiling case: s/yes/no/.
29786
29787 2000-01-23  Jim Meyering  <meyering@lucent.com>
29788
29789         * m4/jm-macros.m4: Move df-related tests here from
29790         fileutils/configure.in
29791
29792         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
29793         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
29794
29795         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
29796         s/space/ac_fsusage_space/.
29797         (jm_FILE_SYSTEM_USAGE): Take two parameters.
29798
29799         * m4/ftruncate.m4: New file (derived from part of
29800         fileutils/configure.in).
29801         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
29802         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
29803
29804         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
29805         AC_SUBST these here, rather than just in sh-util/configure.in, so
29806         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
29807         all the same.
29808         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
29809         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
29810         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
29811         (AC_SUBST(POW_LIBM)): Likewise.
29812         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
29813
29814 2000-01-23  Jim Meyering  <meyering@lucent.com>
29815
29816         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
29817         obstack.c.
29818
29819 2000-01-22  Jim Meyering  <meyering@lucent.com>
29820
29821         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
29822
29823         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
29824
29825         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
29826         configure.in
29827         (AC_CHECK_HEADERS): Likewise for sh-utils.
29828         (AC_CHECK_HEADERS): Likewise for textutils.
29829         Merge the three lists of headers.
29830
29831         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
29832         from fileutils' configure.in.
29833
29834         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
29835         code. Moved tests into their own function (_jm_DECL_HEADERS) in
29836         check-decl.m4.
29837
29838         * m4/check-decl.m4: Use #if rather than #ifdef.
29839         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
29840         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
29841         (_jm_DECL_HEADERS): Define new function.
29842         (jm_CHECK_DECLARATIONS): Require it.
29843
29844 2000-01-22  Jim Meyering  <meyering@lucent.com>
29845
29846         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
29847         [! HAVE_DECL_STRTOULL]: Declare strtoull.
29848         Required for some AIX systems.  Reported by Christian Krackowizer.
29849         [TESTING] (main): New function.
29850
29851         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
29852         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
29853         letters.
29854
29855         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
29856         iswprint.
29857
29858         * lib/strverscmp.c (ISDIGIT): Define.
29859         (strverscmp): Use ISDIGIT, not isdigit.
29860
29861 2000-01-19  Jim Meyering  <meyering@lucent.com>
29862
29863         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
29864         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
29865         defines `struct timespec' in <sys/time.h>
29866
29867         * m4/c-bs-a.m4: Remove uses of changequote altogether.
29868         Thanks to Akim for explaining.
29869
29870 2000-01-17  Paul Eggert  <eggert@twinsun.com>
29871
29872         * lib/nanosleep.c (nanosleep):
29873         Don't use SA_INTERRUPT to decide whether to call sigaction, as
29874         POSIX.1 doesn't require SA_INTERRUPT and some systems
29875         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
29876         it's been part of POSIX.1 since day 1 (in 1988).
29877
29878 2000-01-17  Jim Meyering  <meyering@lucent.com>
29879
29880         * lib/interlock: Remove unused file.  Reported by François Pinard.
29881
29882 2000-01-16  Paul Eggert  <eggert@twinsun.com>
29883
29884         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
29885         alert, backslash, formfeed, and vertical tab unnecessarily in
29886         shell quoting style.
29887
29888 2000-01-16  Jim Meyering  <meyering@lucent.com>
29889
29890         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
29891         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
29892         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
29893         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
29894
29895 2000-01-16  Jim Meyering  <meyering@lucent.com>
29896
29897         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
29898         because the latter didn't work.
29899
29900 2000-01-15  Jim Meyering  <meyering@lucent.com>
29901
29902         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
29903         (AC_REPLACE_FUNCS): Add memcpy and memset.
29904         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
29905         Add strpbrk.
29906         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
29907
29908 2000-01-12  Jim Meyering  <meyering@lucent.com>
29909
29910         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
29911         (jm_PREREQ): Use it.
29912         (jm_PREREQ_READUTMP): New macro.
29913         (jm_PREREQ): Use it.
29914
29915 2000-01-11  Paul Eggert  <eggert@twinsun.com>
29916
29917         Quote multibyte characters correctly.
29918         * m4/c-bs-a.m4: New file.
29919         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
29920         (jm_PREREQ): Use it.
29921
29922 2000-01-11  Paul Eggert  <eggert@twinsun.com>
29923
29924         * m4/uintmax_t.m4: Port to autoconf 2.13.
29925
29926 2000-01-08  Jim Meyering  <meyering@ascend.com>
29927
29928         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
29929         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
29930
29931 2000-01-04  Jim Meyering  <meyering@ascend.com>
29932
29933         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
29934         jm_STRUCT_DIRENT_D_TYPE.
29935         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
29936         jm_STRUCT_DIRENT_D_INO.
29937         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
29938         jm_STRUCT_UTIMBUF.
29939         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
29940         renamings.
29941         * m4/utime.m4: Likewise.
29942
29943         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
29944         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
29945
29946 2000-01-03  Paul Eggert  <eggert@twinsun.com>
29947
29948         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
29949         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
29950
29951 2000-01-02  Jim Meyering  <meyering@ascend.com>
29952
29953         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
29954         remember if this is necessary.
29955
29956 1999-12-26  Jim Meyering  <meyering@ascend.com>
29957
29958         * m4/jm-macros.m4: Use it here.
29959         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
29960
29961 1999-12-23  Jim Meyering  <meyering@ascend.com>
29962
29963         * m4/jm-macros.m4: Check for clock_gettime (moved from
29964         fileutils/configure.in)
29965         Check for gettimeofday.
29966
29967 1999-12-20  Jim Meyering  <meyering@ascend.com>
29968
29969         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
29970         autoconf-2.14a-1999-12-20.
29971
29972 1999-12-19  Jim Meyering  <meyering@ascend.com>
29973
29974         * m4/lstat-slash.m4: New file.
29975         * m4/jm-macros.m4: Use the new macro:
29976         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
29977
29978 1999-12-07  Jim Meyering  <meyering@ascend.com>
29979
29980         * m4/perl.m4: Require that File::Compare be available, too.
29981         Too many systems seem to lack it.
29982
29983         * m4/strftime.m4: Add checks for most of the cpp macros tested in
29984         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
29985
29986 1999-11-18  Paul Eggert  <eggert@twinsun.com>
29987
29988         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
29989         problem with the QNX 4.25 shell, which doesn't propagate exit
29990         status of failed commands inside shell assignments.
29991
29992 1999-11-17  Jim Meyering  <meyering@ascend.com>
29993
29994         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
29995
29996 1999-11-07  Jim Meyering  <meyering@ascend.com>
29997
29998         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
29999
30000 1999-11-06  Jim Meyering  <meyering@ascend.com>
30001
30002         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
30003         * m4/jm-macros.m4 (jm_MACROS): Use it here.
30004
30005 1999-11-05  Jim Meyering  <meyering@ascend.com>
30006
30007         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
30008         configure.in of textutils, fileutils, and sh-utils into this one
30009         (shared between those packages) file.
30010         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
30011         AC_STRUCT_ST_BLKSIZE.
30012
30013 1999-11-03  Jim Meyering  <meyering@ascend.com>
30014
30015         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
30016         of AC_CHECK_TYPE checks includes unistd.h.
30017         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
30018         Suggestion from Akim Demaille.
30019
30020 1999-10-30  Jim Meyering  <meyering@ascend.com>
30021
30022         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
30023         m4-quoted string.
30024         * m4/ls-mntd-fs.m4: Likewise.
30025         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
30026         * m4/jm-winsz1.m4: Likewise.
30027
30028         * m4/const.m4: Remove file, since the fix made it into the experimental
30029         version of autoconf.
30030         * m4/mktime.m4: Likewise.
30031
30032         * m4/check-type.m4: Remove file, now that the latest version of
30033         AC_CHECK_TYPE takes a third arg to specify additional #includes.
30034
30035         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
30036         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
30037         AC_CHECK_TYPE.
30038
30039 1999-10-04  Jim Meyering  <meyering@ascend.com>
30040
30041         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
30042
30043 1999-09-22  Paul Eggert  <eggert@twinsun.com>
30044
30045         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
30046         2.95.1 bug with HP-UX 10.20.
30047
30048 1999-09-17  Jim Meyering  <meyering@ascend.com>
30049
30050         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
30051         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
30052         due to missing strdup (against sh-utils-2.0).
30053
30054 1999-08-29  Jim Meyering  <meyering@ascend.com>
30055
30056         * m4/jm-macros.m4: Require jm_BISON.
30057         * m4/bison.m4: New file.
30058
30059 1999-08-17  Paul Eggert  <eggert@twinsun.com>
30060
30061         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
30062         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
30063
30064 1999-08-05  Jim Meyering  <meyering@ascend.com>
30065
30066         * m4/getline.m4: Rename test file from conftestdata to conftest.data
30067         to avoid conflicts with `conftest' on 8+3 filesystems.
30068         Suggestion from Eli Zaretskii.
30069
30070 1999-08-04  Jim Meyering  <meyering@ascend.com>
30071
30072         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
30073         fileutils and sh-utils (textutils's getline test was inadequate).
30074         (AM_FUNC_GETLINE): Run this test.
30075         (AC_CHECK_FUNCS): Check for getdelim.
30076         Reported by Bob Proulx.
30077
30078 1999-08-02  Jim Meyering  <meyering@ascend.com>
30079
30080         * m4/jm-macros.m4: Add a comment.
30081
30082 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30083
30084         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
30085         <inttypes.h> defines strtoumax as a macro (and not as a
30086         function).
30087
30088 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30089
30090         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
30091         that we can shift, multiply and divide unsigned long long
30092         values; Ultrix cc can't do it.
30093
30094 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30095
30096         * m4/mktime.m4: New file, which is a preview of what should appear
30097         in the next public autoconf release.
30098
30099 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30100
30101         * m4/lfs.m4: Remove this file.
30102         * m4/largefile.m4: New file.  It contains the old contents of
30103         lfs.m4, except that all names with prefix AC_LFS have been
30104         changed to use the prefix AC_SYS_LARGEFILE instead, to be
30105         compatible with future autoconf versions.  Also, some minor m4
30106         quoting problems have been fixed.
30107
30108 1999-08-01  Paul Eggert  <eggert@twinsun.com>
30109
30110         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
30111         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
30112         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
30113         and simplify the shell code.
30114
30115 1999-08-01  Jim Meyering  <meyering@ascend.com>
30116
30117         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
30118         m4.
30119
30120 1999-07-20  Jim Meyering  <meyering@ascend.com>
30121
30122         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
30123
30124 1999-07-15  Jim Meyering  <meyering@ascend.com>
30125
30126         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
30127
30128 1999-05-22  Jim Meyering  <meyering@ascend.com>
30129
30130         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
30131
30132 1999-05-20  Jim Meyering  <meyering@ascend.com>
30133
30134         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
30135         Add a colon after each `then' in case $4 is empty.
30136
30137 1999-05-16  Jim Meyering  <meyering@ascend.com>
30138
30139         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
30140
30141 1999-05-10  Jim Meyering  <meyering@ascend.com>
30142
30143         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
30144
30145         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
30146         AC_FUNC_MKTIME.
30147
30148 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
30149
30150         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
30151
30152 1999-05-04  Paul Eggert  <eggert@twinsun.com>
30153
30154         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
30155         not CPPFLAGS, so that linking works correctly in IRIX.
30156
30157 1999-04-30  Paul Eggert  <eggert@twinsun.com>
30158
30159         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
30160
30161 1999-04-20  Paul Eggert  <eggert@twinsun.com>
30162
30163         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
30164         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
30165         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
30166         jm_AC_TYPE_UNSIGNED_LONG_LONG.
30167         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
30168
30169         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
30170
30171 1999-04-20  Jim Meyering  <meyering@ascend.com>
30172
30173         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
30174         AC_REPLACE xstroull if necessary.  From Paul Eggert.
30175         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
30176
30177 1999-04-18  Jim Meyering  <meyering@ascend.com>
30178
30179         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
30180         * m4/jm-macros.m4: Use it.
30181
30182 1999-04-06  Jim Meyering  <meyering@ascend.com>
30183
30184         * m4/strftime.m4: Remove test for %f.
30185
30186 1999-03-29  Jim Meyering  <meyering@ascend.com>
30187
30188         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
30189         superset of the AC_TYPE_* checks in the textutils, fileutils,
30190         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
30191         AC_TYPE_PID_T.
30192
30193 1999-03-28  Jim Meyering  <meyering@ascend.com>
30194
30195         * m4/jm-macros.m4: Define GNU_PACKAGE here.
30196         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
30197         replaced e.g., in the *.sh files of the sh-utils.
30198
30199 1999-03-20  Jim Meyering  <meyering@ascend.com>
30200
30201         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
30202         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
30203         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
30204
30205 1999-03-19  Jim Meyering  <meyering@ascend.com>
30206
30207         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
30208
30209 1999-03-12  Jim Meyering  <meyering@ascend.com>
30210
30211         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
30212
30213 1999-03-07  Jim Meyering  <meyering@ascend.com>
30214
30215         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
30216         declared.
30217
30218 1999-02-17  Jim Meyering  <meyering@ascend.com>
30219
30220         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
30221         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
30222
30223 1999-02-07  Jim Meyering  <meyering@ascend.com>
30224
30225         * m4/group-member.m4: New file -- extracted from sh-utils'
30226         configure.in.
30227
30228         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
30229         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
30230
30231 1999-02-06  Jim Meyering  <meyering@ascend.com>
30232
30233         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
30234         * m4/fnmatch.m4: Likewise.
30235         * m4/getgroups.m4: Likewise.
30236         * m4/lstat.m4: Likewise.
30237         * m4/malloc.m4: Likewise.
30238         * m4/putenv.m4: Likewise.
30239         * m4/realloc.m4: Likewise.
30240         * m4/regex.m4: Likewise.
30241         * m4/stat.m4: Likewise.
30242         * m4/strftime.m4: Likewise.
30243         Suggestion from Alain Magloire.
30244
30245         * m4/chown.m4: Use `.$ac_objext', not `.o'.
30246         * m4/fnmatch.m4: Likewise.
30247         * m4/getgroups.m4: Likewise.
30248         * m4/getline.m4: Likewise.
30249         * m4/lstat.m4: Likewise.
30250         * m4/malloc.m4: Likewise.
30251         * m4/memcmp.m4: Likewise.
30252         * m4/putenv.m4: Likewise.
30253         * m4/realloc.m4: Likewise.
30254         * m4/regex.m4: Likewise.
30255         * m4/stat.m4: Likewise.
30256         * m4/strftime.m4: Likewise.
30257         Suggestion from Alain Magloire.
30258
30259         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
30260         an argument.
30261
30262         * m4/regex.m4: Add a run-time Test for proper operation of
30263         re_compile_pattern.
30264
30265 1999-01-31  Jim Meyering  <meyering@ascend.com>
30266
30267         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
30268
30269 1999-01-30  Jim Meyering  <meyering@ascend.com>
30270
30271         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
30272
30273         * m4/jm-mktime.m4: Make this a wrapper around the official
30274         AM_FUNC_MKTIME rather than my private copy, now that the official one
30275         is up to date.
30276         * m4/mktime.m4: Remove file.
30277
30278         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
30279         * m4/uptime.m4: Likewise.
30280         * m4/uintmax_t.m4: Likewise.
30281
30282 1999-01-28  Jim Meyering  <meyering@ascend.com>
30283
30284         * m4/jm-macros.m4: Use jm_AFS.
30285         * m4/afs.m4: New file (from fileutils' configure.in).
30286
30287         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
30288         * m4/chown.m4: Likewise.
30289         * m4/d-ino.m4: Likewise.
30290         * m4/d-type.m4: Likewise.
30291         * m4/fnmatch.m4: Likewise.
30292         * m4/getgroups.m4: Likewise.
30293         * m4/gettext.m4: Likewise.
30294         * m4/jm-mktime.m4: Likewise.
30295         * m4/jm-winsz2.m4: Likewise.
30296         * m4/lcmessage.m4: Likewise.
30297         * m4/ls-mntd-fs.m4: Likewise.
30298         * m4/malloc.m4: Likewise.
30299         * m4/memcmp.m4: Likewise.
30300         * m4/putenv.m4: Likewise.
30301         * m4/realloc.m4: Likewise.
30302         * m4/st_mtim.m4: Likewise.
30303         * m4/strftime.m4: Likewise.
30304
30305 1999-01-16  Jim Meyering  <meyering@ascend.com>
30306
30307         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
30308         (ARGMATCH_DIE_DECL): Define.
30309
30310 1999-01-12  Jim Meyering  <meyering@ascend.com>
30311
30312         * m4/Makefile.am.in: Rewrite to avoid using fmt.
30313         Reported by Lars Hecking.
30314
30315 1999-01-10  Jim Meyering  <meyering@ascend.com>
30316
30317         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
30318         gross kludge.
30319         * m4/inttypes_h.m4: Likewise.
30320         * m4/lstat.m4: Likewise.
30321         * m4/malloc.m4: Likewise.
30322         * m4/readdir.m4: Likewise.
30323         * m4/realloc.m4: Likewise.
30324         * m4/st_dm_mode.m4: Likewise.
30325         * m4/stat.m4: Likewise.
30326         * m4/utimbuf.m4: Likewise.
30327         * m4/utimes.m4: Likewise.
30328
30329         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
30330         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
30331         comments in config.h.in are meaningful.
30332
30333         * m4/jm-macros.m4: Require autoconf-2.13 here.
30334
30335         * m4/regex.m4: By default, don't use the included regex.c on systems
30336         with glibc 2.  Suggestion from Uli Drepper.
30337
30338 1999-01-02  Jim Meyering  <meyering@ascend.com>
30339
30340         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
30341
30342 1998-12-18  Jim Meyering  <meyering@ascend.com>
30343
30344         * m4/Makefile.am.in (Makefile.am): Simplify rule.
30345         Based on a suggestion from Lars Hecking.
30346
30347 1998-11-16  Paul Eggert  <eggert@twinsun.com>
30348
30349         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
30350
30351 1998-11-16  Jim Meyering  <meyering@ascend.com>
30352
30353         * m4/lfs.m4: Double-quote the `uname...` expression.
30354
30355 1998-11-14  Jim Meyering  <meyering@ascend.com>
30356
30357         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
30358         * m4/stat.m4: Likewise.
30359
30360 1998-11-03  Jim Meyering  <meyering@ascend.com>
30361
30362         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
30363         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
30364
30365 1998-10-18  Jim Meyering  <meyering@ascend.com>
30366
30367         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
30368
30369 1998-10-17  Jim Meyering  <meyering@ascend.com>
30370
30371         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
30372         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
30373         calls for those previously hard-coded headers.  Instead, take a new
30374         parameter.
30375         (jm_CHECK_DECLARATIONS): Reflect interface change.
30376         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
30377         (jm_CHECK_DECL_LOCALTIME_R): New macro.
30378
30379         * m4/mktime.m4: Test for spring-forward gap before long-running test.
30380
30381 1998-10-14  Jim Meyering  <meyering@ascend.com>
30382
30383         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
30384         instead of "TZ=America/Vancouver".  From Paul Eggert.
30385
30386 1998-10-11  Jim Meyering  <meyering@ascend.com>
30387
30388         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
30389         This adds a test for a recently added compatibility fix for mktime.c.
30390         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
30391
30392 1998-09-27  Jim Meyering  <meyering@ascend.com>
30393
30394         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
30395
30396         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
30397         ../configure.in, including a change from Gordon Matzigkeit to allow
30398         cross-compiling for the Hurd.
30399
30400         * m4/glibc.m4: New file/macro to test for the GNU C Library
30401         versions 1 and 2.  From Gordon Matzigkeit.
30402         Indent.
30403
30404 1998-09-21  Jim Meyering  <meyering@ascend.com>
30405
30406         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
30407
30408 1998-08-18  Paul Eggert  <eggert@twinsun.com>
30409
30410         Port nanosecond-resolution times to UnixWare 2.1.2 and
30411         pedantic Solaris 2.6.
30412
30413         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
30414         AC_STRUCT_ST_MTIM.
30415         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
30416         Generate name of ns member, instead of just 1 or undef.
30417         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
30418
30419 1998-08-15  Jim Meyering  <meyering@ascend.com>
30420
30421         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
30422         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
30423         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
30424         instead of jm_TYPE_SSIZE_T.
30425
30426 1998-08-12  Jim Meyering  <meyering@ascend.com>
30427
30428         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
30429
30430 1998-08-02  Jim Meyering  <meyering@ascend.com>
30431
30432         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
30433         in acconfig.h manually.
30434
30435 1998-07-31  Paul Eggert  <eggert@twinsun.com>
30436
30437         * m4/st_mtim.m4: New file.
30438
30439 1998-07-28  Jim Meyering  <meyering@ascend.com>
30440
30441         * m4/utimes.m4: Undef stat.
30442
30443 1998-07-25  Jim Meyering  <meyering@ascend.com>
30444
30445         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
30446         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
30447
30448 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
30449
30450         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
30451         uid and gid actually remain unchanged.
30452
30453 1998-07-07  Jim Meyering  <meyering@ascend.com>
30454
30455         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
30456
30457 1998-07-04  Jim Meyering  <meyering@ascend.com>
30458
30459         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
30460         to prove that this macro can be used in packages without regex.c.
30461
30462 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
30463
30464         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
30465         is to be used.
30466
30467 1998-07-03  Jim Meyering  <meyering@ascend.com>
30468
30469         * m4/gettext.m4: Add -lintl if it's found to be necessary.
30470
30471         * m4/gettext.m4: New file -- from gettext-0.10.35.
30472         * m4/lcmessage.m4: Likewise.
30473         * m4/progtest.m4: Likewise.
30474
30475         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
30476         * m4/jm-macros.m4: Require the new macro.
30477
30478 1998-06-29  Jim Meyering  <meyering@ascend.com>
30479
30480         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
30481         for the definition of NGROUPS (used in a system header included
30482         by sys/mount.h).
30483
30484 1998-06-28  Jim Meyering  <meyering@ascend.com>
30485
30486         * m4/ls-mntd-fs.m4: New file.
30487         * m4/fstypename.m4: New file.
30488
30489         * m4/jm-macros.m4: Require the new macro.
30490         * m4/jm-glibc-io.m4: New file.
30491
30492 1998-05-19  Jim Meyering  <meyering@ascend.com>
30493
30494         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
30495         * m4/lchown.m4: New file.
30496
30497         * m4/Makefile.am.in: New file.
30498         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
30499
30500 1998-05-14  Jim Meyering  <meyering@ascend.com>
30501
30502         * m4/Makefile.am (EXTRA_DIST): Add them.
30503         * m4/jm-macros.m4: New file.
30504         * m4/utimbuf.m4: New file.
30505
30506 1998-05-12  Jim Meyering  <meyering@ascend.com>
30507
30508         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
30509
30510 1998-05-11  Jim Meyering  <meyering@ascend.com>
30511
30512         * m4/isc-posix.m4: New file.
30513
30514 1998-05-10  Jim Meyering  <meyering@ascend.com>