New private include file lib/stdio-impl.h.
[gnulib.git] / ChangeLog
1 2008-04-26  Bruno Haible  <bruno@clisp.org>
2
3         * lib/stdio-impl.h: New file.
4         * lib/fbufmode.c: Include stdio-impl.h.
5         (fbufmode): Use fp_, remove redundant #defines.
6         * lib/fflush.c: Include stdio-impl.h.
7         (clear_ungetc_buffer): Remove redundant #defines.
8         * lib/fpurge.c: Include stdio-impl.h.
9         (fpurge): Remove redundant #defines.
10         * lib/freadable.c: Include stdio-impl.h.
11         (freadable): Remove redundant #defines.
12         * lib/freadahead.c: Include stdio-impl.h.
13         (freadahead): Remove redundant #defines.
14         * lib/freading.c: Include stdio-impl.h.
15         (freading): Remove redundant #defines.
16         * lib/freadptr.c: Include stdio-impl.h.
17         (freadptr): Remove redundant #defines.
18         * lib/freadseek.c: Include stdio-impl.h.
19         (freadptrinc): Remove redundant #defines.
20         * lib/fseeko.c: Include stdio-impl.h.
21         (rpl_fseeko): Remove redundant #defines.
22         * lib/fseterr.c: Include stdio-impl.h.
23         (fseterr): Remove redundant #defines.
24         * lib/fwritable.c: Include stdio-impl.h.
25         (fwritable: Remove redundant #defines.
26         * lib/fwriting.c: Include stdio-impl.h.
27         (fwriting): Remove redundant #defines.
28         * modules/fbufmode (Files): Add lib/stdio-impl.h.
29         * modules/fflush (Files): Likewise.
30         * modules/fpurge (Files): Likewise.
31         * modules/freadable (Files): Likewise.
32         * modules/freadahead (Files): Likewise.
33         * modules/freading (Files): Likewise.
34         * modules/freadptr (Files): Likewise.
35         * modules/freadseek (Files): Likewise.
36         * modules/fseeko (Files): Likewise.
37         * modules/fseterr (Files): Likewise.
38         * modules/fwritable (Files): Likewise.
39         * modules/fwriting (Files): Likewise.
40
41 2008-04-26  Bruno Haible  <bruno@clisp.org>
42
43         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
44         restore_seek_optimization, update_fpos_cache): New functions, extracted
45         from rpl_fflush.
46         (rpl_fflush): Use them.
47         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
48         (gl_REPLACE_FFLUSH): Use it.
49
50 2008-04-26  Bruno Haible  <bruno@clisp.org>
51
52         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
53         on Solaris.
54         * tests/test-xstrtoimax.sh: Likewise.
55         * tests/test-xstrtoumax.sh: Likewise.
56         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
57
58 2008-04-26  Bruno Haible  <bruno@clisp.org>
59
60         * modules/memchr-tests: New file.
61         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
62
63 2008-04-26  Eric Blake  <ebb9@byu.net>
64             Bruno Haible  <bruno@clisp.org>
65
66         * lib/memchr.c: Include intprops.h.
67         (__memchr): Optimize parallel detection of matching bytes. Rename local
68         variables. Add explanatory comments.
69
70 2008-04-26  Bruno Haible  <bruno@clisp.org>
71
72         Fix module 'memchr', broken since 2000-10-28.
73         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
74
75 2008-04-26  Bruno Haible  <bruno@clisp.org>
76
77         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
78         comments.
79
80 2008-04-25  Eric Blake  <ebb9@byu.net>
81
82         Use native fstatat on cygwin 1.7.0.
83         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
84         first.
85
86 2008-04-23  Eric Blake  <ebb9@byu.net>
87
88         Improve memchr2 performance.
89         * lib/memchr2.c (memchr2): Further optimize parallel detection of
90         NUL bytes.
91         * modules/memchr2 (Depends-on): Use intprops.h.
92
93 2008-04-23  Simon Josefsson  <simon@josefsson.org>
94
95         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
96         an inline function instead of a CPP macro.  Patch by Ben Pfaff
97         <blp@cs.stanford.edu>.
98
99 2008-04-23  Simon Josefsson  <simon@josefsson.org>
100
101         * lib/arpa_inet.in.h: New file.
102
103         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
104         (Makefile.am): Sed in substitute header file.
105
106         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
107         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
108
109         * modules/inet_ntop (configure.ac): Use
110         gl_ARPA_INET_MODULE_INDICATOR.
111
112         * modules/inet_pton (configure.ac): Use
113         gl_ARPA_INET_MODULE_INDICATOR.
114
115 2008-04-22  Jim Meyering  <meyering@redhat.com>
116
117         * modules/verify (License): Re-license as LGPLv2+.
118
119 2008-04-22  Simon Josefsson  <simon@josefsson.org>
120
121         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
122         parameter to void* as per POSIX standard (MinGW uses char*).
123
124 2008-04-21  Bruno Haible  <bruno@clisp.org>
125
126         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
127         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
128         Define to replacements if REPLACE_ISWCNTRL is 1.
129         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
130         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
131         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
132         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
133         what it fixes.
134         * doc/posix-functions/iswalpha.texi: Likewise.
135         * doc/posix-functions/iswblank.texi: Likewise.
136         * doc/posix-functions/iswcntrl.texi: Likewise.
137         * doc/posix-functions/iswdigit.texi: Likewise.
138         * doc/posix-functions/iswgraph.texi: Likewise.
139         * doc/posix-functions/iswlower.texi: Likewise.
140         * doc/posix-functions/iswprint.texi: Likewise.
141         * doc/posix-functions/iswpunct.texi: Likewise.
142         * doc/posix-functions/iswspace.texi: Likewise.
143         * doc/posix-functions/iswupper.texi: Likewise.
144         * doc/posix-functions/iswxdigit.texi: Likewise.
145         Reported by Alain Guibert.
146
147 2008-04-21  Bruno Haible  <bruno@clisp.org>
148
149         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
150         Patch by Alain Guibert.
151
152 2008-04-21  Bruno Haible  <bruno@clisp.org>
153
154         Fix test failures on mingw.
155         * tests/test-xstrtol.c (print_no_progname): New function.
156         (main): Install it in error_print_progname hook.
157         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
158         * tests/test-xstrtoimax.sh: Likewise.
159         * tests/test-xstrtoumax.sh: Likewise.
160
161 2008-04-21  Bruno Haible  <bruno@clisp.org>
162
163         Fix test failure on mingw.
164         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
165
166 2008-04-21  Bruno Haible  <bruno@clisp.org>
167
168         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
169         Actually assign a value.
170
171 2008-04-20  Bruno Haible  <bruno@clisp.org>
172
173         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
174         take 2.
175         * lib/canonicalize.c (canonicalize_file_name): Elide if the
176         'canonicalize-lgpl' module is also used.
177         * lib/canonicalize-lgpl.c: Undo last change.
178         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
179
180 2008-04-20  Bruno Haible  <bruno@clisp.org>
181
182         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
183         config.h. Provide _mkdir based fallback for mingw.
184         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
185         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
186         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
187         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
188         rather than defining mkdir in config.h.
189         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
190         (gl_SYS_STAT_H_DEFAULTS): New macro.
191         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
192         HAVE_IO_H any more.
193         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
194         HAVE_DECL_MKDIR and HAVE_IO_H.
195
196 2008-04-20  Bruno Haible  <bruno@clisp.org>
197
198         * lib/isapipe.c: Port to native Windows platforms.
199
200 2008-04-20  Bruno Haible  <bruno@clisp.org>
201
202         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
203
204 2008-04-21  Eric Blake  <ebb9@byu.net>
205
206         Work around preprocessors that don't handle UINTMAX_MAX.
207         * lib/memchr2.c (memchr2): Avoid embedded #if.
208         Reported by Alain Guibert, fix suggested by Bruno Haible.
209
210 2008-04-21  Simon Josefsson  <simon@josefsson.org>
211
212         * doc/posix-functions/strftime.texi (strftime): Explain better
213         Windows incompatibility.  Suggested by Micah Cowan
214         <micah@cowan.name>.
215
216 2008-04-20  Bruno Haible  <bruno@clisp.org>
217
218         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
219         unistr/u8-mblen.
220
221 2008-04-20  Bruno Haible  <bruno@clisp.org>
222
223         Fix test failure on platforms with non-GNU iconv.
224         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
225         (U_TO_U8): Use it, rather than u16_to_u8.
226         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
227         units at the end of the input string.
228         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
229
230 2008-04-20  Bruno Haible  <bruno@clisp.org>
231
232         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
233         when the resulting length is 0.
234         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
235
236 2008-04-20  Bruno Haible  <bruno@clisp.org>
237
238         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
239         works.
240         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
241
242 2008-04-20  Bruno Haible  <bruno@clisp.org>
243
244         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
245         * modules/tsearch-tests (configure.ac): Test for initstate function.
246
247 2008-04-20  Bruno Haible  <bruno@clisp.org>
248
249         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
250         for nlink_t if missing.
251         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
252
253 2008-04-19  Bruno Haible  <bruno@clisp.org>
254
255         Work around snprintf bug on Linux libc5.
256         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
257         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
258         gl_SNPRINTF_SIZE1.
259         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
260         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
261         that test failed.
262         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
263         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
264         * modules/snprintf (Files): Add m4/printf.m4.
265         * modules/vsnprintf (Files): Likewise.
266         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
267         * doc/posix-functions/vsnprintf.texi: Likewise.
268
269 2008-04-19  Bruno Haible  <bruno@clisp.org>
270
271         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
272         from 0.0058 to less than 10^-7.
273
274 2008-04-19  Bruno Haible  <bruno@clisp.org>
275
276         Fix rounding when a precision is given.
277         * lib/vasnprintf.c (is_borderline): New function.
278         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
279         9...9x.
280         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
281         %e, %g.
282         * tests/test-vasprintf-posix.c (test_function): Likewise.
283         * tests/test-snprintf-posix.h (test_function): Likewise.
284         * tests/test-sprintf-posix.h (test_function): Likewise.
285         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
286         * tests/test-printf-posix.h (test_function): Likewise.
287         * tests/test-printf-posix.output: Update.
288         Reported by John Darrington <john@darrington.wattle.id.au> via
289         Ben Pfaff <blp@cs.stanford.edu>.
290
291 2008-04-18  Simon Josefsson  <simon@josefsson.org>
292
293         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
294         Suggested by Bruno Haible <bruno@clisp.org>.
295
296 2008-04-17  Bruno Haible  <bruno@clisp.org>
297
298         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
299         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
300         implementation.
301         Patch by Bruce Merry <bmerry@gmail.com>.
302
303 2008-04-17  Simon Josefsson  <simon@josefsson.org>
304
305         * doc/posix-functions/strftime.texi (strftime): Mention that %e
306         doesn't work under Windows.
307
308 2008-04-16  Bruno Haible  <bruno@clisp.org>
309
310         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
311         New macros.
312         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
313         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
314         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
315         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
316         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
317         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
318         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
319         macros.
320         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
321         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
322         Northern Sotho, Uighur.
323
324 2008-04-16  Bruno Haible  <bruno@clisp.org>
325
326         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
327         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
328         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
329         Reported by Daniel Bergström <daniel@octocode.com>.
330
331 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
332             Bruno Haible  <bruno@clisp.org>
333
334         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
335         function.
336         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
337         New functions, mostly extracted from gl_locale_name_default.
338         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
339
340 2008-04-16  Eric Blake  <ebb9@byu.net>
341
342         Adjust strtod detection to catch glibc 2.7 bug.
343         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
344         Reported by John Gatewood Ham.
345
346 2008-04-16  Bruno Haible  <bruno@clisp.org>
347
348         Add tentative support for Linux libc5.
349         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
350         * lib/fpurge.c (fpurge): Likewise.
351         * lib/freadable.c (freadable): Likewise.
352         * lib/freadahead.c (freadahead): Likewise.
353         * lib/freading.c (freading): Likewise.
354         * lib/freadptr.c (freadptr): Likewise.
355         * lib/freadseek.c (freadptrinc): Likewise.
356         * lib/fseeko.c (rpl_fseeko): Likewise.
357         * lib/fseterr.c (fseterr): Likewise.
358         * lib/fwritable.c (fwritable): Likewise.
359         * lib/fwriting.c (fwriting): Likewise.
360         Reported by Alain Guibert <alguibert+bts@free.fr>.
361
362 2008-04-15  Bruno Haible  <bruno@clisp.org>
363
364         * modules/mathl (configure.ac): Define module indicator.
365
366 2008-04-15  Bruno Haible  <bruno@clisp.org>
367
368         * lib/logl.c (logl): Remove unused variables.
369
370 2008-04-15  Bruno Haible  <bruno@clisp.org>
371
372         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
373         fails.
374
375 2008-04-15  Bruno Haible  <bruno@clisp.org>
376
377         * lib/trim.c (trim2): Fix argument of isspace() macro.
378
379 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
380
381         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
382         to 0.
383         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
384
385 2008-04-14  Bruno Haible  <bruno@clisp.org>
386
387         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
388         AC_LANG_PROGRAM argument.
389         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
390         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
391         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
392         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
393         * m4/math_h.m4 (gl_MATH_H): Likewise.
394         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
395         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
396         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
397         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
398         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
399         * m4/regex.m4 (gl_REGEX): Likewise.
400         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
401         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
402         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
403         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
404         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
405         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
406         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
407         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
408
409 2008-04-14  Jim Meyering  <meyering@redhat.com>
410
411         test-strtod: fix typos: s/abs/fabs/
412         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
413
414 2008-04-13  Bruno Haible  <bruno@clisp.org>
415
416         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
417         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
418         module is also used and while not building the reloc-wrapper.
419
420 2008-04-13  Bruno Haible  <bruno@clisp.org>
421
422         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
423
424 2008-04-13  Bruno Haible  <bruno@clisp.org>
425
426         Fix AIX compilation failure introduced on 2008-04-02.
427         * tests/test-frexp.c (exp): Undefine before redefining.
428         * tests/test-frexpl.c (exp): Likewise.
429
430 2008-04-13  Bruno Haible  <bruno@clisp.org>
431
432         Work around a HP-UX stdio bug.
433         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
434         * tests/test-ftello.c (main): Likewise.
435         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
436         * doc/posix-functions/ftello.texi: Likewise.
437
438 2008-04-13  Bruno Haible  <bruno@clisp.org>
439
440         Make test-signbit pass on HP-UX/hppa.
441         * tests/test-signbit.c (minus_zerol): New variable.
442         (test_signbitl): Use it.
443
444 2008-04-13  Bruno Haible  <bruno@clisp.org>
445
446         Make truncl work on OSF/1 4.0.
447         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
448         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
449         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
450         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
451         HAVE_DECL_TRUNCL.
452         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
453         HAVE_DECL_TRUNCL.
454         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
455
456 2008-04-13  Bruno Haible  <bruno@clisp.org>
457
458         * lib/unictype.h: Remove trailing comma from enumeration definitions.
459
460 2008-04-13  Bruno Haible  <bruno@clisp.org>
461
462         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
463         expression, so as to avoid HP-UX 11 cc compiler bug.
464
465 2008-04-13  Bruno Haible  <bruno@clisp.org>
466
467         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
468
469 2008-04-13  Bruno Haible  <bruno@clisp.org>
470
471         * lib/git-merge-changelog.c: Remove empty declaration outside of
472         functions.
473
474 2008-04-13  Bruno Haible  <bruno@clisp.org>
475
476         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
477
478 2008-04-13  Bruno Haible  <bruno@clisp.org>
479
480         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
481         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
482         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
483         also if it exists but lacks definitions of the SHUT_* macros.
484         * modules/sys_socket (Description): Update.
485         Reported by Elbert Pol <e.pol@chello.nl>.
486
487 2008-04-13  Bruno Haible  <bruno@clisp.org>
488
489         * lib/localcharset.c (OS2): Don't redefine if already defined.
490         Reported by Elbert Pol <e.pol@chello.nl>.
491
492 2008-04-13  Bruno Haible  <bruno@clisp.org>
493
494         * lib/binary-io.h [__EMX__]: Include <io.h>.
495         Reported by Elbert Pol <e.pol@chello.nl>.
496
497 2008-04-12  Bruno Haible  <bruno@clisp.org>
498
499         * lib/fpucw.h: Enable the definitions also for x86_64.
500         Needed for NetBSD/x86_64.
501         Reported by Thomas Klausner <tk@giga.or.at>.
502
503 2008-04-12  Bruno Haible  <bruno@clisp.org>
504
505         * tests/test-strtod.c: Include isnand.h.
506         (main): Use isnand instead of isnan.
507         Reported by Jim Meyering.
508
509 2008-04-12  Bruno Haible  <bruno@clisp.org>
510
511         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
512         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
513
514 2008-04-12  Jim Meyering  <meyering@redhat.com>
515
516         * m4/math_h.m4 (gl_MATH_H): Fix typos.
517
518 2008-04-12  Bruno Haible  <bruno@clisp.org>
519
520         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
521         Reported by Elbert Pol <e.pol@chello.nl>.
522
523 2008-04-12  Eric Blake  <ebb9@byu.net>
524
525         Work around Solaris 10 math.h bug.
526         * m4/math_h.m4 (gl_MATH_H): Check for bug.
527         (gl_MATH_H_DEFAULTS): Set up default.
528         * modules/math (Makefile.am): Replace new indicators.
529         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
530         * tests/test-math.c (main): Test this.
531         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
532         * doc/posix-headers/math.texi (math.h): Mention bug.
533         Reported by Nelson H. F. Beebe and Jim Meyering.
534
535 2008-04-11  Bruno Haible  <bruno@clisp.org>
536
537         Adapt to future versions of Apple GCC.
538         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
539         Reported by Peter O'Gorman <peter@pogma.com>.
540
541 2008-04-11  Bruno Haible  <bruno@clisp.org>
542
543         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
544
545 2008-04-11  Bruno Haible  <bruno@clisp.org>
546
547         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
548
549         * modules/getaddrinfo-tests (Makefile.am): Define
550         test_getaddrinfo_LDADD.
551
552 2008-04-11  Bruno Haible  <bruno@clisp.org>
553
554         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
555         (init): Fix syntax error.
556         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
557         is declared.
558
559 2008-04-11  Bruno Haible  <bruno@clisp.org>
560
561         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
562         * modules/glob (Depends-on): Add stdbool.
563
564 2008-04-11  Bruno Haible  <bruno@clisp.org>
565
566         * lib/trim.c: Include <string.h>.
567
568 2008-04-11  Eric Blake  <ebb9@byu.net>
569
570         Avoid compile failure on OS/2.
571         * lib/regex_internal.h (internal_function): Disable optimization
572         on OS/2 (__EMX__), where it caused compiler error.
573         Reported by Elbert Pol.
574
575 2008-04-11  Bruno Haible  <bruno@clisp.org>
576
577         Flush the standard error stream before aborting. Needed on mingw.
578         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
579         * tests/test-array_list.c (ASSERT): Likewise.
580         * tests/test-array_oset.c (ASSERT): Likewise.
581         * tests/test-avltree_list.c (ASSERT): Likewise.
582         * tests/test-avltree_oset.c (ASSERT): Likewise.
583         * tests/test-avltreehash_list.c (ASSERT): Likewise.
584         * tests/test-binary-io.c (ASSERT): Likewise.
585         * tests/test-byteswap.c (ASSERT): Likewise.
586         * tests/test-c-ctype.c (ASSERT): Likewise.
587         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
588         * tests/test-c-strcasestr.c (ASSERT): Likewise.
589         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
590         * tests/test-c-strstr.c (ASSERT): Likewise.
591         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
592         * tests/test-canonicalize.c (ASSERT): Likewise.
593         * tests/test-carray_list.c (ASSERT): Likewise.
594         * tests/test-ceilf1.c (ASSERT): Likewise.
595         * tests/test-ceilf2.c (ASSERT): Likewise.
596         * tests/test-ceill.c (ASSERT): Likewise.
597         * tests/test-count-one-bits.c (ASSERT): Likewise.
598         * tests/test-fbufmode.c (ASSERT): Likewise.
599         * tests/test-fflush2.c (ASSERT): Likewise.
600         * tests/test-floorf1.c (ASSERT): Likewise.
601         * tests/test-floorf2.c (ASSERT): Likewise.
602         * tests/test-floorl.c (ASSERT): Likewise.
603         * tests/test-fopen.c (ASSERT): Likewise.
604         * tests/test-fpending.c (ASSERT): Likewise.
605         * tests/test-fprintf-posix.c (ASSERT): Likewise.
606         * tests/test-fpurge.c (ASSERT): Likewise.
607         * tests/test-freadable.c (ASSERT): Likewise.
608         * tests/test-freadahead.c (ASSERT): Likewise.
609         * tests/test-freading.c (ASSERT): Likewise.
610         * tests/test-freadptr.c (ASSERT): Likewise.
611         * tests/test-freadptr2.c (ASSERT): Likewise.
612         * tests/test-freadseek.c (ASSERT): Likewise.
613         * tests/test-freopen.c (ASSERT): Likewise.
614         * tests/test-frexp.c (ASSERT): Likewise.
615         * tests/test-frexpl.c (ASSERT): Likewise.
616         * tests/test-fseek.c (ASSERT): Likewise.
617         * tests/test-fseeko.c (ASSERT): Likewise.
618         * tests/test-fstrcmp.c (ASSERT): Likewise.
619         * tests/test-ftell.c (ASSERT): Likewise.
620         * tests/test-ftello.c (ASSERT): Likewise.
621         * tests/test-func.c (ASSERT): Likewise.
622         * tests/test-fwritable.c (ASSERT): Likewise.
623         * tests/test-fwriting.c (ASSERT): Likewise.
624         * tests/test-getdelim.c (ASSERT): Likewise.
625         * tests/test-getline.c (ASSERT): Likewise.
626         * tests/test-i-ring.c (ASSERT): Likewise.
627         * tests/test-iconv-utf.c (ASSERT): Likewise.
628         * tests/test-iconv.c (ASSERT): Likewise.
629         * tests/test-isfinite.c (ASSERT): Likewise.
630         * tests/test-isnand.c (ASSERT): Likewise.
631         * tests/test-isnanf.c (ASSERT): Likewise.
632         * tests/test-isnanl.h (ASSERT): Likewise.
633         * tests/test-ldexpl.c (ASSERT): Likewise.
634         * tests/test-linked_list.c (ASSERT): Likewise.
635         * tests/test-linkedhash_list.c (ASSERT): Likewise.
636         * tests/test-localename.c (ASSERT): Likewise.
637         * tests/test-lseek.c (ASSERT): Likewise.
638         * tests/test-mbscasecmp.c (ASSERT): Likewise.
639         * tests/test-mbscasestr1.c (ASSERT): Likewise.
640         * tests/test-mbscasestr2.c (ASSERT): Likewise.
641         * tests/test-mbscasestr3.c (ASSERT): Likewise.
642         * tests/test-mbscasestr4.c (ASSERT): Likewise.
643         * tests/test-mbschr.c (ASSERT): Likewise.
644         * tests/test-mbscspn.c (ASSERT): Likewise.
645         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
646         * tests/test-mbspbrk.c (ASSERT): Likewise.
647         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
648         * tests/test-mbsrchr.c (ASSERT): Likewise.
649         * tests/test-mbsspn.c (ASSERT): Likewise.
650         * tests/test-mbsstr1.c (ASSERT): Likewise.
651         * tests/test-mbsstr2.c (ASSERT): Likewise.
652         * tests/test-mbsstr3.c (ASSERT): Likewise.
653         * tests/test-memchr2.c (ASSERT): Likewise.
654         * tests/test-memmem.c (ASSERT): Likewise.
655         * tests/test-open.c (ASSERT): Likewise.
656         * tests/test-printf-frexp.c (ASSERT): Likewise.
657         * tests/test-printf-frexpl.c (ASSERT): Likewise.
658         * tests/test-printf-posix.c (ASSERT): Likewise.
659         * tests/test-quotearg.c (ASSERT): Likewise.
660         * tests/test-rbtree_list.c (ASSERT): Likewise.
661         * tests/test-rbtree_oset.c (ASSERT): Likewise.
662         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
663         * tests/test-round1.c (ASSERT): Likewise.
664         * tests/test-roundf1.c (ASSERT): Likewise.
665         * tests/test-roundl.c (ASSERT): Likewise.
666         * tests/test-signbit.c (ASSERT): Likewise.
667         * tests/test-sleep.c (ASSERT): Likewise.
668         * tests/test-snprintf-posix.c (ASSERT): Likewise.
669         * tests/test-snprintf.c (ASSERT): Likewise.
670         * tests/test-sprintf-posix.c (ASSERT): Likewise.
671         * tests/test-stat-time.c (ASSERT): Likewise.
672         * tests/test-strcasestr.c (ASSERT): Likewise.
673         * tests/test-strerror.c (ASSERT): Likewise.
674         * tests/test-striconv.c (ASSERT): Likewise.
675         * tests/test-striconveh.c (ASSERT): Likewise.
676         * tests/test-striconveha.c (ASSERT): Likewise.
677         * tests/test-strsignal.c (ASSERT): Likewise.
678         * tests/test-strstr.c (ASSERT): Likewise.
679         * tests/test-strtod.c (ASSERT): Likewise.
680         * tests/test-trunc1.c (ASSERT): Likewise.
681         * tests/test-trunc2.c (ASSERT): Likewise.
682         * tests/test-truncf1.c (ASSERT): Likewise.
683         * tests/test-truncf2.c (ASSERT): Likewise.
684         * tests/test-truncl.c (ASSERT): Likewise.
685         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
686         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
687         * tests/test-vasnprintf.c (ASSERT): Likewise.
688         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
689         * tests/test-vasprintf.c (ASSERT): Likewise.
690         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
691         * tests/test-vprintf-posix.c (ASSERT): Likewise.
692         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
693         * tests/test-vsnprintf.c (ASSERT): Likewise.
694         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
695         * tests/test-wcwidth.c (ASSERT): Likewise.
696         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
697         * tests/test-xprintf-posix.c (ASSERT): Likewise.
698         * tests/test-xvasprintf.c (ASSERT): Likewise.
699         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
700         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
701         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
702         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
703         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
704         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
705         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
706         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
707         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
708         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
709         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
710         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
711         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
712         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
713         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
714         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
715         * tests/unictype/test-block_list.c (ASSERT): Likewise.
716         * tests/unictype/test-block_of.c (ASSERT): Likewise.
717         * tests/unictype/test-block_test.c (ASSERT): Likewise.
718         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
719         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
720         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
721         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
722         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
723         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
724         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
725         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
726         * tests/unictype/test-combining.c (ASSERT): Likewise.
727         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
728         * tests/unictype/test-digit.c (ASSERT): Likewise.
729         * tests/unictype/test-mirror.c (ASSERT): Likewise.
730         * tests/unictype/test-numeric.c (ASSERT): Likewise.
731         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
732         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
733         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
734         * tests/unictype/test-scripts.c (ASSERT): Likewise.
735         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
736         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
737         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
738         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
739         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
740         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
741         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
742         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
743         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
744         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
745         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
746         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
747         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
748         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
749         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
750         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
751         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
752         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
753         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
754         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
755         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
756         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
757         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
758         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
759         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
760         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
761         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
762         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
763         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
764         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
765         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
766         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
767         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
768         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
769         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
770         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
771         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
772         Reported by Eric Blake.
773
774 2008-04-11  Bruno Haible  <bruno@clisp.org>
775
776         * lib/wchar.in.h: Tweak comment.
777
778 2008-04-11  Bruno Haible  <bruno@clisp.org>
779
780         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
781         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
782         gl_COMMON.
783         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
784
785 2008-04-11  Bruno Haible  <bruno@clisp.org>
786
787         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
788
789 2008-04-11  Simon Josefsson  <simon@josefsson.org>
790
791         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
792         of attempting to use non-existing /dev/*random.  Based on patch
793         from Adam Strzelecki <ono@java.pl> in
794         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
795
796 2008-04-08  Bruno Haible  <bruno@clisp.org>
797
798         Add tentative support for emx+gcc.
799         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
800         * lib/fpurge.c (fpurge): Likewise.
801         * lib/freadable.c (freadable): Likewise.
802         * lib/freadahead.c (freadahead): Likewise.
803         * lib/freading.c (freading): Likewise.
804         * lib/freadptr.c (freadptr): Likewise.
805         * lib/freadseek.c (freadptrinc): Likewise.
806         * lib/fseeko.c (rpl_fseeko): Likewise.
807         * lib/fseterr.c (fseterr): Likewise.
808         * lib/fwritable.c (fwritable): Likewise.
809         * lib/fwriting.c (fwriting): Likewise.
810         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
811
812 2008-04-09  Eric Blake  <ebb9@byu.net>
813
814         Avoid some autoconf warnings.
815         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
816         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
817         * m4/afs.m4 (gl_AFS): Likewise.
818         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
819         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
820         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
821         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
822         (gl_INTEGER_TYPE_SUFFIX): Likewise.
823         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
824         (AC_CHECK_DECLS_ONCE): Likewise.
825         Rename file...
826         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
827         gnulib-tool requires autoconf 2.59 or better.
828         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
829
830 2008-04-08  Eric Blake  <ebb9@byu.net>
831
832         Use 'git describe --match' if present (added in git 1.5.5).
833         * build-aux/git-version-gen: Limit result to tags that match 'v*'
834         if possible.
835
836 2008-04-08  Bruno Haible  <bruno@clisp.org>
837
838         Add tentative support for OpenServer.
839         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
840         _ptr, _cnt.
841         * lib/fpurge.c (fpurge): Likewise.
842         * lib/freadable.c (freadable): Likewise.
843         * lib/freadahead.c (freadahead): Likewise.
844         * lib/freading.c (freading): Likewise.
845         * lib/freadptr.c (freadptr): Likewise.
846         * lib/freadseek.c (freadptrinc): Likewise.
847         * lib/fseeko.c (rpl_fseeko): Likewise.
848         * lib/fseterr.c (fseterr): Likewise.
849         * lib/fwritable.c (fwritable): Likewise.
850         * lib/fwriting.c (fwriting): Likewise.
851         Reported by Roger Cornelius <rac@tenzing.org> and
852         Brian K. White <brian@aljex.com>.
853
854 2008-04-06  Jim Meyering  <meyering@redhat.com>
855
856         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
857
858 2008-04-06  Bruno Haible  <bruno@clisp.org>
859
860         Avoid possible error with non-ASCII bytes in UTF-8 locales.
861         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
862         * tests/test-printf-posix.sh: Likewise.
863         * tests/test-vfprintf-posix.sh: Likewise.
864         * tests/test-vprintf-posix.sh: Likewise.
865         * tests/test-xprintf-posix.sh: Likewise.
866
867 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
868
869         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
870         hide error from 'ls', needed on OS/2.
871         Report by Elbert Pol <elbert.pol@gmail.com>.
872
873 2008-04-04  Eric Blake  <ebb9@byu.net>
874
875         Make test-fseeko.c failures meaningful.
876         * tests/test-fseeko.c: Print line number on failure.
877         * tests/test-fseek.c: Likewise.
878         Reported by Nelson H. F. Beebe.
879
880         Improve strtod bug detection check.
881         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
882         required for Solaris 10.
883         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
884
885 2008-04-04  Bruno Haible  <bruno@clisp.org>
886
887         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
888         by m4/setenv.m4.
889
890 2008-04-03  Eric Blake  <ebb9@byu.net>
891
892         Ensure sane .version contents.
893         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
894         version string.
895         * build-aux/git-version-gen: Improve documentation.
896
897         Make GNU make output nicer.
898         * top/GNUmakefile [!_have-Makefile]: Add dependency on
899         MAKECMDGOALS to enforce message for all command line targets.  Set
900         srcdir for use in maint.mk.
901
902         Another maintainer tweak.
903         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
904         a target that regenerates version.
905
906 2008-04-03  Jim Meyering  <meyering@redhat.com>
907
908         vc-list-files: don't cause coreutils "make po-check" failure
909         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
910
911 2008-04-03  Eric Blake  <ebb9@byu.net>
912
913         Allow VPATH usage of vc-list-files.
914         * build-aux/vc-list-files (scriptversion): Add timestamp.
915         (options): Add --help, --version, -C.
916         (CVS): Support installed cvsu.
917
918 2008-04-02  Bruno Haible  <bruno@clisp.org>
919
920         Avoid some "statement with no effect" warnings from gcc.
921         * tests/test-wctype.c (main): Explicitly ignore unused values.
922         Reported by Jim Meyering.
923
924 2008-04-02  Jim Meyering  <meyering@redhat.com>
925
926         Avoid some warnings from "gcc -Wshadow".
927         * tests/test-frexp.c (exp): Define to a different identifier.
928         * tests/test-frexpl.c (exp): Likewise.
929
930 2008-04-03  Jim Meyering  <meyering@redhat.com>
931
932         bootstrap: remove dangling *.[ch] symlinks from lib
933         * build-aux/bootstrap [dangling symlink removal]: Move find's
934         -depth option to precede all others, to avoid a warning.
935         Remove *.[ch] files too, and from "$source_base" (usually lib/).
936
937 2008-04-02  Bruno Haible  <bruno@clisp.org>
938
939         Avoid some warnings from "gcc -Wshadow".
940         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
941         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
942         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
943         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
944         Reported by Jim Meyering.
945
946 2008-04-01  Bruno Haible  <bruno@clisp.org>
947
948         Fix test to work on IRIX 6.5 with cc.
949         * tests/test-math.c (numeric_equal): New function.
950         (main): Use it.
951
952 2008-04-01  Bruno Haible  <bruno@clisp.org>
953
954         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
955
956 2008-04-01  Bruno Haible  <bruno@clisp.org>
957
958         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
959         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
960         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
961         (Depends-on): Remove math.
962
963         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
964         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
965         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
966         (Depends-on): Remove math.
967
968         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
969         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
970         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
971         (Depends-on): Remove math.
972         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
973         (Depends-on): Remove math.
974
975         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
976         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
977         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
978         (Depends-on): Remove math.
979         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
980         (Depends-on): Remove math.
981
982         * tests/test-round1.c: Include nan.h.
983         (main): Use NaNd instead of NAN.
984         * modules/round-tests (Files): Add tests/nan.h.
985
986         * tests/test-trunc1.c: Include nan.h.
987         (main): Use NaNd instead of NAN.
988         * modules/trunc-tests (Files): Add tests/nan.h.
989
990         * tests/test-roundf1.c: Include nan.h.
991         (main): Use NaNf instead of NAN.
992         * modules/roundf-tests (Files): Add tests/nan.h.
993
994         * tests/test-truncf1.c: Include nan.h.
995         (main): Use NaNf instead of NAN.
996         * modules/truncf-tests (Files): Add tests/nan.h.
997
998         * tests/test-ceilf1.c: Include nan.h.
999         (main): Use NaNf instead of NAN.
1000         * modules/ceilf-tests (Files): Add tests/nan.h.
1001
1002         * tests/test-floorf1.c: Include nan.h.
1003         (main): Use NaNf instead of NAN.
1004         * modules/floorf-tests (Files): Add tests/nan.h.
1005
1006         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
1007         (main): Use NaNf instead of NAN.
1008         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
1009
1010         * tests/test-isnand.c: Include nan.h instead of <math.h>.
1011         (main): Use NaNd instead of NAN.
1012         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
1013
1014         * tests/test-frexp.c: Include nan.h.
1015         (main): Use NaNd instead of NAN.
1016         * modules/frexp-tests (Files): Add tests/nan.h.
1017
1018         * lib/isnan.c: Don't include <math.h>.
1019         (FUNC): Don't use NAN macro.
1020         * modules/isnand-nolibm (Depends-on): Remove math.
1021         * modules/isnanf-nolibm (Depends-on): Remove math.
1022         * modules/isnanl (Depends-on): Remove math.
1023         * modules/isnanl-nolibm (Depends-on): Remove math.
1024
1025         * tests/nan.h: New file.
1026
1027 2008-04-01  Eric Blake  <ebb9@byu.net>
1028
1029         Fix typos.
1030         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
1031         values to be the right type.
1032
1033         For now, cater to gnulib strtod inaccuracies.
1034         * tests/test-strtod.c (main): Allow 1-ulp error on expected
1035         fractional results.  While not as nice from a QoI perspective, it
1036         is a quicker patch than correctly implementing decimal to binary
1037         rounding.
1038
1039 2008-03-31  Eric Blake  <ebb9@byu.net>
1040
1041         Guarantee a definition of NAN.
1042         * lib/math.in.h (NAN): Define if missing.
1043         * tests/test-math.c (main): Test it.
1044         * doc/posix-headers/math.texi (math.h): Document this.
1045         * lib/isnan.c (rpl_isnand): Use it.
1046         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
1047         * tests/test-floorf1.c (NaN): Likewise.
1048         * tests/test-frexp.c (NaN): Likewise.
1049         * tests/test-isnand.c (NaN): Likewise.
1050         * tests/test-isnanf.c (NaN): Likewise.
1051         * tests/test-round1.c (NaN): Likewise.
1052         * tests/test-roundf1.c (NaN): Likewise.
1053         * tests/test-snprintf-posix.h (NaN): Likewise.
1054         * tests/test-sprintf-posix.h (NaN): Likewise.
1055         * tests/test-trunc1.c (NaN): Likewise.
1056         * tests/test-truncf1.c (NaN): Likewise.
1057         * tests/test-vasnprintf-posix.c (NaN): Likewise.
1058         * tests/test-vasprintf-posix.c (NaN): Likewise.
1059         * modules/isnand-nolibm (Depends-on): Add math.
1060         * modules/isnanf-nolibm (Depends-on): Likewise.
1061         * modules/isnanl (Depends-on): Likewise.
1062         * modules/isnanl-nolibm (Depends-on): Likewise.
1063         * modules/snprintf-posix-tests (Depends-on): Likewise.
1064         * modules/sprintf-posix-tests (Depends-on): Likewise.
1065         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
1066         * modules/vsprintf-posix-tests (Depends-on): Likewise.
1067         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
1068         * modules/vasprintf-posix-tests (Depends-on): Likewise.
1069
1070 2008-03-31  Bruno Haible  <bruno@clisp.org>
1071
1072         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
1073         * doc/posix-functions/strtod.texi: Likewise.
1074
1075 2008-03-31  Bruno Haible  <bruno@clisp.org>
1076
1077         * tests/test-strtod.c (main): Don't use C99 syntax.
1078
1079 2008-03-31  Bruno Haible  <bruno@clisp.org>
1080
1081         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
1082         Reported by Eric Blake.
1083
1084 2008-03-31  Jim Meyering  <meyering@redhat.com>
1085
1086         Don't compare actual signbit return values.
1087         * tests/test-strtod.c (main): Rather, compare only their
1088         zero/non-zero nature.
1089
1090 2008-03-31  Eric Blake  <ebb9@byu.net>
1091
1092         More strtod documentation.
1093         * doc/posix-functions/strtod.texi (strtod): Interpret more test
1094         failures as distinct bugs.
1095
1096 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1097
1098         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
1099         Problem reported by Erik Benada in
1100         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
1101
1102 2008-03-30  Bruno Haible  <bruno@clisp.org>
1103
1104         * tests/test-strtod.c: Add comments about which assertion fails on which
1105         platform.
1106         * doc/posix-functions/strtod.texi: Add info about many more platforms.
1107
1108 2008-03-30  Eric Blake  <ebb9@byu.net>
1109
1110         Test signbit behavior on zeros.
1111         * tests/test-signbit.c (test_signbitf): Add tests for zero.
1112         (test_signbitd, test_signbitl): Likewise.
1113
1114         More strtod touchups.
1115         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
1116         sign of negative underflow, for now.  Use .5, not .1.
1117         * doc/posix-functions/strtod.texi (strtod): Mention these
1118         limitations.
1119         Reported by Jim Meyering.
1120
1121 2008-03-30  Bruno Haible  <bruno@clisp.org>
1122
1123         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
1124         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
1125
1126 2008-03-30  Bruno Haible  <bruno@clisp.org>
1127
1128         Avoid failure when attempting to return empty iconv results on some
1129         platforms.
1130         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
1131         allocation, don't report ENOMEM when the resulting string is empty.
1132
1133 2008-03-30  Bruno Haible  <bruno@clisp.org>
1134
1135         Fix buffer overrun.
1136         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
1137         Don't consider the width for tmp_length. Check count against tmp_length
1138         before doing the padding. Ensure enough allocation during padding.
1139
1140 2008-03-30  Eric Blake  <ebb9@byu.net>
1141
1142         strtod touchups.
1143         * lib/strtod.c (strtod): Avoid compiler warnings.
1144         Reported by Jim Meyering.
1145
1146 2008-03-30  Bruno Haible  <bruno@clisp.org>
1147
1148         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
1149         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
1150         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
1151         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
1152         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
1153         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
1154         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
1155         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
1156
1157         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
1158         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
1159         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
1160         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
1161         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
1162         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
1163         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
1164         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
1165
1166         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
1167         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
1168         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
1169         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
1170         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
1171         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
1172         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
1173         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
1174
1175         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
1176         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
1177
1178         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
1179         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
1180
1181         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
1182         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
1183
1184         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
1185         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
1186         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
1187
1188         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
1189         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
1190         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
1191
1192         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
1193         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
1194         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
1195
1196         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
1197         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
1198         * modules/vasprintf (Depends-on): Add EOVERFLOW.
1199
1200         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
1201         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
1202         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
1203         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
1204         (Depends-on): Add EOVERFLOW.
1205         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
1206         (Depends-on): Add EOVERFLOW.
1207         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1208         (Depends-on): Add EOVERFLOW.
1209         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1210         (Depends-on): Add EOVERFLOW.
1211         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1212         (Depends-on): Add EOVERFLOW.
1213         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1214         (Depends-on): Add EOVERFLOW.
1215         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1216         (Depends-on): Add EOVERFLOW.
1217         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1218         (Depends-on): Add EOVERFLOW.
1219
1220         * lib/sprintf.c (EOVERFLOW): Remove fallback.
1221         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
1222         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
1223
1224         * lib/snprintf.c (EOVERFLOW): Remove fallback.
1225         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
1226         * modules/snprintf (Depends-on): Add EOVERFLOW.
1227
1228         * lib/poll.c (EOVERFLOW): Remove fallback.
1229         * modules/poll (Depends-on): Add EOVERFLOW.
1230
1231         * lib/getugroups.c (EOVERFLOW): Remove fallback.
1232         * modules/getugroups (Depends-on): Add EOVERFLOW.
1233
1234         * lib/getdelim.c (EOVERFLOW): Remove fallback.
1235         * modules/getdelim (Depends-on): Add EOVERFLOW.
1236
1237         * lib/ftell.c (EOVERFLOW): Remove fallback.
1238         * modules/ftell (Depends-on): Add EOVERFLOW.
1239
1240         * lib/fprintf.c (EOVERFLOW): Remove fallback.
1241         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
1242         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
1243
1244         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
1245
1246         * modules/EOVERFLOW-tests: New file.
1247         * tests/test-EOVERFLOW.c: New file.
1248
1249         * modules/EOVERFLOW: New file.
1250         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
1251
1252 2008-03-30  Bruno Haible  <bruno@clisp.org>
1253
1254         Fix bug introduced on 2007-06-10.
1255         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
1256         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
1257
1258 2008-03-30  Bruno Haible  <bruno@clisp.org>
1259
1260         Improve freadseek's efficiency after ungetc.
1261         * lib/freadseek.c: Include freadahead.h.
1262         (freadptrinc): New function, extracted from freadseek.
1263         (freadseek): Use it in a loop. Use freadahead to determine the number
1264         of loop iterations.
1265         * modules/freadseek (Depends-on): Add freadahead.
1266         (configure.ac): Require AC_C_INLINE.
1267
1268 2008-03-30  Bruno Haible  <bruno@clisp.org>
1269
1270         * lib/freadseek.c (freadseek): Don't ignore the return value of
1271         freadptr.
1272
1273 2008-03-29  Eric Blake  <ebb9@byu.net>
1274
1275         Add hex float support.
1276         * modules/strtod (Depends-on): Add c-ctype.
1277         (Link): Mention POW_LIB.
1278         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
1279         whitespace between 'e' and exponent.
1280         * tests/test-strtod.c (main): Enable hex float tests.
1281         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
1282         now provides.
1283
1284         Document various strtod bugs, with some fixes.
1285         * doc/posix-functions/strtod.texi (strtod): Document bugs with
1286         "-0x", "inf", "nan", and hex constants.
1287         * doc/posix-functions/atof.texi (atof): Likewise.
1288         * modules/stdlib (Makefile.am): Support strtod.
1289         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
1290         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
1291         detect additional strtod bugs.
1292         * lib/stdlib.in.h (rpl_strtod): Add declarations.
1293         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
1294         bool where appropriate.  Parse 'inf' and 'nan'.
1295         * tests/test-strtod.c: New file.
1296         * modules/strtod (Depends-on): Add stdbool, stdlib.
1297         (configure.ac): Turn on module indicator.
1298         * modules/strtod-tests: New module.
1299
1300 2008-03-29  Eric Blake  <ebb9@byu.net>
1301
1302         Fix ftell on mingw.
1303         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
1304         * modules/ftell-tests (Depends-on): Add binary-io.
1305         * modules/ftello-tests (Depends-on): Likewise.
1306         * tests/test-ftell.c (main): Enhance test to cover behavior after
1307         ungetc.  Enforce binary mode.
1308         * tests/test-ftello.c (main): Likewise.
1309
1310         Pass test-freadseek on cygwin.
1311         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
1312         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
1313         ungetc buffer.
1314
1315         * tests/test-fflush2.c (main): Fix typo.
1316
1317 2008-03-29  Bruno Haible  <bruno@clisp.org>
1318
1319         * tests/test-fflush2.c (main): Temporarily disable the contents of
1320         this test.
1321         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
1322         Reported by Eric Blake.
1323
1324 2008-03-28  Simon Josefsson  <simon@josefsson.org>
1325
1326         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
1327         (GC_SHA224_DIGEST_SIZE): Add.
1328
1329         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
1330         (gc_hash_digest_length): Likewise.
1331         (gc_hash_buffer): Likewise.
1332
1333 2008-03-25  Bruno Haible  <bruno@clisp.org>
1334
1335         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
1336         detail which gettext release to use.
1337         Reported by Simon Josefsson.
1338
1339 2008-03-26  Jim Meyering  <meyering@redhat.com>
1340
1341         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
1342         * modules/gnumakefile (clean-GNUmakefile): Also, use
1343         test ... && ... || : syntax rather than if-then ... fi.
1344
1345         gnumakefile: Don't double-quote-expand $(VPATH) value.
1346         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
1347
1348 2008-03-24  Eric Blake  <ebb9@byu.net>
1349
1350         Alter GNUmakefile to install into top directory.
1351         * modules/maintainer-makefile: Split, and add dependency...
1352         * modules/gnumakefile: to this new module.
1353         * build-aux/GNUmakefile: Move...
1354         * top/GNUmakefile: ...here.
1355         * build-aux/maint.mk: Move...
1356         * top/maint.mk: ...here.
1357         * MODULES.html.sh (Support for maintaining...): Document new
1358         module.
1359
1360 2008-03-23  Bruno Haible  <bruno@clisp.org>
1361
1362         * gnulib-tool: New options --vc-files, --no-vc-files.
1363         (func_usage): Document them.
1364         (vc_files): New variable.
1365         (func_import): Consider vc_files.
1366         (func_create_testdir): Set vc_files to empty.
1367         Suggested by Jim Meyering and Karl Berry.
1368
1369 2008-03-23  Bruno Haible  <bruno@clisp.org>
1370
1371         Fix regex compilation error on HP-UX 11.
1372         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
1373         * modules/regex (Files): Add m4/mbstate_t.m4.
1374         Reported by Ton Voon <ton.voon@altinity.com>.
1375
1376 2008-03-23  Bruno Haible  <bruno@clisp.org>
1377
1378         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
1379
1380 2008-03-23  Eric Blake  <ebb9@byu.net>
1381             Bruno Haible  <bruno@clisp.org>
1382
1383         Install files from top/ in the destination directory.
1384         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
1385         augmentation also for the files from top/.
1386         (func_import, func_create_testdir): Rewrite file names:
1387         top/filename -> filename.
1388
1389 2008-03-23  Bruno Haible  <bruno@clisp.org>
1390
1391         Tweak "gnulib --version" output.
1392         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
1393
1394 2008-03-23  Bruno Haible  <bruno@clisp.org>
1395
1396         Tweak "gnulib --version" output.
1397         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
1398         rather than contents of ChangeLog, when possible.
1399
1400 2008-03-21  Eric Blake  <ebb9@byu.net>
1401
1402         More --version tweaks.
1403         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
1404         date of last ChangeLog entry.
1405
1406 2008-03-21  Jim Meyering  <meyering@redhat.com>
1407
1408         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
1409
1410 2008-03-20  Eric Blake  <ebb9@byu.net>
1411
1412         VPATH fix.
1413         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
1414
1415 2008-03-20  Simon Josefsson  <simon@josefsson.org>
1416
1417         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
1418         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
1419
1420 2008-03-20  Eric Blake  <ebb9@byu.net>
1421
1422         Sync GNUmakefile with coreutils.
1423         * build-aux/GNUmakefile (have-Makefile): Rename...
1424         (_have-Makefile): ...to this, for namespace consideration.
1425         (GNUmakefile.cfg): Include, if present.
1426         (_autoreconf): Define a default.
1427         (_is-dist-target): New rule for rebuilds to pick up intra-release
1428         version.
1429         (maint-cfg.mk): Rename...
1430         (cfg.mk): ...to this.
1431
1432 2008-03-18  Jim Meyering  <meyering@redhat.com>
1433
1434         New script and module: mktempd
1435         * MODULES.html.sh (maint+release support): Add mktempd.
1436         * build-aux/mktempd: New file.
1437         * modules/mktempd: New file.
1438
1439 2008-03-15  Jim Meyering  <meyering@redhat.com>
1440
1441         Undo last change.
1442         * lib/sha1.c, lib/md5.c: 63 != ~63.
1443         Reported by Andreas Schwab.
1444
1445         sha1.c, md5.c: Hoist a redundant expression.
1446         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
1447         "ctx->buflen" only once, before calling *_process_block.
1448         * lib/md5.c (md5_process_bytes): Likewise.
1449
1450 2008-03-14  Eric Blake  <ebb9@byu.net>
1451
1452         Bump copyright year in files generated by gnulib-tool.
1453         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
1454         gnulib-tool, rather than hard-coding it.
1455
1456         Fix 'gnulib-tool --version' output to work with git.
1457         * gnulib-tool (func_gnulib_dir): New function, extracted from...
1458         (startup): ...here.
1459         (func_version): Use it to invoke git-version-gen, rather than
1460         relying on CVS keyword expansion.  Modernize wording.
1461         (cvsdatestamp, last_checkin_date, version): Kill unused
1462         variables.
1463
1464 2008-03-12  Jim Meyering  <meyering@redhat.com>
1465
1466         Recognize optional cast of the argument to free.
1467         * build-aux/useless-if-before-free: Update regexps.
1468
1469         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
1470
1471 2008-03-11  Bruno Haible  <bruno@clisp.org>
1472
1473         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
1474         by a single package.
1475         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
1476         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
1477         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
1478         Reported by Sam Steingold <sds@gnu.org>.
1479
1480 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
1481
1482         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
1483         repositories.
1484
1485 2008-03-11  Bruno Haible  <bruno@clisp.org>
1486
1487         Avoid conflicts between local macro definitions.
1488         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1489         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
1490
1491 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
1492             Bruno Haible  <bruno@clisp.org>
1493
1494         Make va_copy work with some version of xlc on AIX 5.1.
1495         * lib/stdarg.in.h: New file.
1496         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
1497         On AIX, use a <stdarg.h> file substitute.
1498         * modules/stdarg (Files): Add lib/stdarg.in.h.
1499         (Depends-on): Add include_next.
1500         (Makefile.am): Build a stdarg.h substitute if requested.
1501         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
1502
1503 2008-03-10  Bruno Haible  <bruno@clisp.org>
1504
1505         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
1506         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
1507         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
1508
1509 2008-03-10  Bruno Haible  <bruno@clisp.org>
1510
1511         * modules/stdlib (Depends-on): Add include_next, remove
1512         absolute-header.
1513
1514 2008-03-09  Bruno Haible  <bruno@clisp.org>
1515
1516         * lib/freadahead.h (freadahead): Document more precisely.
1517         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
1518         the sum of both buffer sizes.
1519         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
1520         * NEWS: Document the change.
1521
1522 2008-03-09  Bruno Haible  <bruno@clisp.org>
1523
1524         Extend freadptr to return also the buffer size.
1525         * lib/freadptr.h (freadptr): Add sizep argument.
1526         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
1527         (freadptr): Add sizep argument. Determine buffer size like freadahead
1528         does.
1529         * tests/test-freadptr.c: Don't include freadahead.h.
1530         (main): Adapt for new calling convention of freadptr.
1531         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
1532         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
1533         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
1534         tests/test-freadptr2.sh.
1535         (Depends): Remove freadahead.
1536         (TESTS): Add test-freadptr2.sh.
1537         (check_PROGRAMS): Add test-freadptr2.
1538
1539 2008-03-09  Bruno Haible  <bruno@clisp.org>
1540
1541         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
1542         Report and solution by Simon Josefsson.
1543
1544 2008-03-06  Bruno Haible  <bruno@clisp.org>
1545
1546         Make fflush after ungetc work on BSD platforms.
1547         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
1548         * tests/test-fflush2.c: New file.
1549         * tests/test-fflush2.sh: New file.
1550         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
1551         tests/test-fflush2.c.
1552         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
1553         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
1554
1555 2008-03-06  Eric Blake  <ebb9@byu.net>
1556
1557         Likewise for ftello.
1558         * modules/ftello (Dependencies): Add extensions.
1559         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
1560
1561 2008-03-06  Bruno Haible  <bruno@clisp.org>
1562
1563         * modules/fseeko (Dependencies): Add extensions.
1564         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
1565         Needed on glibc systems.
1566
1567 2008-03-06  Bruno Haible  <bruno@clisp.org>
1568
1569         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
1570         email address.
1571         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
1572
1573 2008-03-06  Bruno Haible  <bruno@clisp.org>
1574
1575         * users.txt: Add libgnupdf.
1576
1577 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
1578
1579         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
1580         (Header File Substitutes, Function Substitutes,
1581         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
1582         (Build robot for gnulib): Fix typo.
1583
1584 2008-03-06  Bruno Haible  <bruno@clisp.org>
1585
1586         * doc/gnulib-tool.texi (VCS Issues): Small updates.
1587         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
1588
1589 2008-03-06  Bruno Haible  <bruno@clisp.org>
1590
1591         * doc/func.texi: New file, extracted from doc/gnulib.texi.
1592         * doc/gnulib.texi: Include it.
1593
1594 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1595
1596         * modules/func (License): Change license to unlimited; there was
1597         no LGPL parts in the module anyway.
1598
1599 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1600
1601         * modules/__func__: Renamed to modules/func.
1602         * modules/__func__-tests: Renamed to modules/func-tests.
1603         * tests/test-__func__.c: Renamed to tests/test-func.c.
1604         * m4/__func__.m4: Renamed to m4/func.m4.
1605         * doc/gnulib.texi (__func__): Section renamed to func.
1606         Suggested by Eric Blake <ebb9@byu.net>.
1607
1608 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1609
1610         * doc/gnulib.texi (__func__): Use C99 terminology when talking
1611         about __func__.  Make example self-contained.  Suggested by Eric
1612         Blake <ebb9@byu.net>.
1613
1614         * tests/test-__func__.c (main): Avoid extraneous () around __func.
1615         Suggested by Eric Blake <ebb9@byu.net>.
1616
1617 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1618
1619         * modules/__func__: New file.
1620         * modules/__func__-tests: New file.
1621         * tests/test-__func__.c: New file.
1622         * m4/__func__.m4: New file.
1623         * doc/gnulib.texi (__func__): Document __func__ module.
1624
1625 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1626
1627         * modules/byteswap (License): Re-license as LGPLv2+.
1628
1629 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1630
1631         * doc/Makefile: Add pdf target.
1632
1633 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1634
1635         * modules/inline (License): Use 'unlimited', since there are only
1636         *.m4 files in this module.
1637
1638 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
1639             Bruno Haible  <bruno@clisp.org>
1640
1641         Add support for HP C 7.1 on OpenVMS 8.3.
1642         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
1643
1644 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
1645
1646         Update VMS specifics.
1647         * lib/getopt.c [VMS]: Remove include of unixlib.h.
1648
1649 2008-03-02  Jim Meyering  <meyering@redhat.com>
1650
1651         Remove the last dependency on the "free" module.
1652         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
1653         Reported by Bob Proulx.
1654
1655         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
1656
1657         Remove useless "if" tests before free.  Deprecate "free" module.
1658         * doc/posix-functions/free.texi: Mention that this
1659         module is no longer useful.
1660         * modules/free (Notice): Say this module is obsolete.
1661         * modules/readutmp (Depends-on): Remove free.
1662         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
1663         * lib/putenv.c (putenv): Likewise.
1664         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
1665         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
1666         * tests/test-c-strcasestr.c (main): Likewise.
1667         * tests/test-c-strstr.c (main): Likewise.
1668         * tests/test-mbscasestr1.c (main): Likewise.
1669         * tests/test-mbscasestr2.c (main): Likewise.
1670         * tests/test-mbsstr1.c (main): Likewise.
1671         * tests/test-mbsstr2.c (main): Likewise.
1672         * tests/test-memmem.c (main): Likewise.
1673         * tests/test-strcasestr.c (main): Likewise.
1674         * tests/test-striconv.c (main): Likewise.
1675         * tests/test-striconveh.c (main): Likewise.
1676         * tests/test-striconveha.c (main): Likewise.
1677         * tests/test-strstr.c (main): Likewise.
1678
1679         * build-aux/git-version-gen: Adjust a comment and the Usage string.
1680
1681         bootstrap: sync from coreutils again
1682         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
1683
1684 2008-03-01  Jim Meyering  <meyering@redhat.com>
1685
1686         bootstrap: sync from coreutils
1687         * build-aux/bootstrap (update_po_files): Copy a .po file into place
1688         also when the target doesn't exist.
1689
1690 2008-03-01  Eric Blake  <ebb9@byu.net>
1691
1692         Fix bugs in last patch.
1693         * lib/memchr2.c (memchr2): Fix typo.
1694         * tests/test-memchr2.c: Test previous bug, and don't use GNU
1695         extension.
1696         Reported by Bruce Korb.
1697
1698         New module 'memchr2'.
1699         * modules/memchr2: New file.
1700         * modules/memchr2-tests: Likewise.
1701         * lib/memchr2.h: Likewise.
1702         * lib/memchr2.c: Likewise, based on memchr.c.
1703         * tests/test-memchr2.c: New test.
1704         * MODULES.html.sh (String handling): Add memchr2.
1705
1706 2008-02-29  Bruno Haible  <bruno@clisp.org>
1707
1708         * modules/freadseek-tests: New file.
1709         * tests/test-freadseek.sh: New file.
1710         * tests/test-freadseek.c: New file.
1711
1712         New module 'freadseek'.
1713         * modules/freadseek: New file.
1714         * lib/freadseek.h: New file.
1715         * lib/freadseek.c: New file.
1716         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
1717
1718 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
1719
1720         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
1721         wydawca.
1722
1723         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
1724         program_invocation_name and program_invocation_short_name are
1725         present.
1726
1727 2008-02-28  Bruno Haible  <bruno@clisp.org>
1728
1729         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
1730         * tests/test-freadptr.sh: Also test non-seekable stdin.
1731
1732 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
1733
1734         * build-aux/bootstrap (source_base, m4_base)
1735         (doc_base, tests_base): New variables.
1736         (gnulib_tool_options): Do not hardcode base directories, use
1737         the above variables instead.
1738
1739 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
1740
1741         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
1742
1743 2008-02-28  Bruno Haible  <bruno@clisp.org>
1744
1745         * modules/freadptr-tests: New file.
1746         * tests/test-freadptr.sh: New file.
1747         * tests/test-freadptr.c: New file.
1748
1749         New module 'freadptr'.
1750         * modules/freadptr: New file.
1751         * lib/freadptr.h: New file.
1752         * lib/freadptr.c: New file.
1753         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
1754
1755 2008-02-26  Karl Berry  <karl@freefriends.org>
1756
1757         Sync from Libtool:
1758         * libltdl/argz.c (argz_add, argz_count): New functions.
1759         * libltdl/argz.in.h: Declare them.
1760         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
1761
1762 2008-02-22  Bruno Haible  <bruno@clisp.org>
1763
1764         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
1765         is a pointer type.  Needed for HP-UX 10.
1766         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
1767         * doc/posix-functions/gmtime_r.texi: Likewise.
1768         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
1769
1770 2008-02-24  Bruno Haible  <bruno@clisp.org>
1771
1772         * modules/environ-tests: New file.
1773         * tests/test-environ.c: New file.
1774
1775         New module 'environ'.
1776         * modules/environ: New file.
1777         * lib/unistd.in.h (environ): New declaration.
1778         * m4/environ.m4: New file.
1779         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
1780         after use.
1781         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
1782         HAVE_DECL_ENVIRON.
1783         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
1784         HAVE_DECL_ENVIRON.
1785         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
1786         wrong claim that 'environ' is missing on some systems.
1787         * modules/execute (Depends-on): Add environ.
1788         * lib/execute.c (environ): Remove fallback declaration.
1789         * modules/pipe (Depends-on): Add environ.
1790         * lib/pipe.c (environ): Remove fallback declaration.
1791         * modules/setenv (Depends-on): Add environ.
1792         * lib/setenv.c (environ): Remove fallback declaration.
1793         * modules/unsetenv (Depends-on): Add environ.
1794         * lib/unsetenv.c (environ): Remove fallback declaration.
1795         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
1796         m4/environ.m4.
1797         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
1798         (gl_PREREQ_UNSETENV): Likewise.
1799
1800 2008-02-24  Bruno Haible  <bruno@clisp.org>
1801
1802         * doc/posix-functions/environ.texi: Document the MacOS X problem.
1803
1804 2008-02-20  Bob Proulx  <bob@proulx.com>
1805
1806         Enable use of older two part flavor 'git describe'.
1807         * build-aux/git-version-gen: If using the older two part flavor of
1808         git version then recreate the third part now present in the
1809         newer three part flavor of git describe.
1810
1811 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
1812
1813         * lib/fts.c (fts_build): Typo correction to comment.
1814
1815 2008-02-17  Bruno Haible  <bruno@clisp.org>
1816
1817         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
1818         generating no-op conflicts.
1819
1820 2008-02-17  Bruno Haible  <bruno@clisp.org>
1821
1822         Speed up by 10%.
1823         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
1824         result_entries, rather than an index-based loop.
1825
1826 2008-02-17  Bruno Haible  <bruno@clisp.org>
1827
1828         Speed up by 25%.
1829         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
1830         'hashcode_cached'.
1831         (entry_create): New function.
1832         (entry_hashcode): Use the cached hashcode if possible.
1833         (read_changelog_file, try_split_merged_entry): Use entry_create.
1834
1835 2008-02-17  Bruno Haible  <bruno@clisp.org>
1836
1837         Speed up from O(n^2) to O(n) for long ChangeLog files.
1838         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
1839         (read_changelog_file): Change implementation of entries_reversed list
1840         to rbtreehash.
1841         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
1842
1843 2008-02-17  Bruno Haible  <bruno@clisp.org>
1844
1845         New option --split-merged-entry.
1846         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
1847         (find_paragraph_end, try_split_merged_entry): New functions.
1848         (long_options): Add option --split-merged-entry.
1849         (usage): Document option --split-merged-entry.
1850         (main): Implement option --split-merged-entry.
1851         Reported by Eric Blake.
1852
1853 2008-02-17  Bruno Haible  <bruno@clisp.org>
1854
1855         * lib/git-merge-changelog.c: Include c-strstr.h.
1856         (main): Support the "git pull --rebase" situation.
1857         * modules/git-merge-changelog (Depends-on): Add c-strstr.
1858         Reported by Eric Blake.
1859
1860 2008-02-16  Eric Blake  <ebb9@byu.net>
1861
1862         Avoid doubling \ in common case of "c-maybe" quoting style.
1863         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
1864         eliding outer quotes.
1865         * lib/quotearg.h: Document this.
1866         * tests/test-quotearg.c (result_strings, inputs, results_g)
1867         (flag_results, locale_results): Test it by adding a new string to
1868         each test group.
1869         (compare_strings): Test new string.
1870
1871 2008-02-13  Eric Blake  <ebb9@byu.net>
1872
1873         Avoid trigraph quoting in default output.
1874         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
1875         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
1876         unless explicitly requested.
1877         * tests/test-quotearg.c (flag_results, main): Add additional tests.
1878
1879 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
1880
1881         Don't rely on signed integer overflowing to negative value.
1882         * lib/getugroups.c (getugroups): Include <limits.h>.
1883         Instead, compare against INT_MAX, and increment only if the test passes.
1884
1885 2008-02-13  Jim Meyering  <meyering@redhat.com>
1886         and Eric Blake  <ebb9@byu.net>
1887
1888         Avoid shadowing warning and compile errors on Linux.
1889         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
1890         forwarding macros on Linux.
1891         (dcgettext): Define a stub, for Linux.
1892         (results_g, main): Avoid warnings.
1893
1894 2008-02-12  Eric Blake  <ebb9@byu.net>
1895
1896         Silence warning in last patch.
1897         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
1898
1899         Quotearg part 4: add tests, fix c-maybe colon quoting.
1900         * lib/quotearg.h: Improve documentation.
1901         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
1902         escapes when adding outer quotes.  When quoting trigraphs, use
1903         valid C notation.  When quoting NUL, omit extra characters if next
1904         character is not digit.  Alter prototype.
1905         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
1906         callers.
1907         * modules/quotearg-tests: New module.
1908         * tests/test-quotearg.c: New test.
1909
1910 2008-02-07  Eric Blake  <ebb9@byu.net>
1911
1912         Quotearg part 3: add flag to control outer quote elision.
1913         * lib/quotearg.h (c_maybe_quoting_style): New style.
1914         (enum quoting_flags): Better documentation of flags.
1915         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
1916         c-maybe style.
1917         (quotearg_buffer_restyled): Handle new flag to elide outer
1918         quotes.
1919
1920         Quotearg part 2: add flag that can control NUL elision.
1921         * lib/quotearg.h (set_quoting_flags): New prototype.
1922         * lib/quotearg.c (struct quoting_options): Add flag field.
1923         (set_quoting_flags): New function.
1924         (quotearg_buffer_restyled): Add flags parameter.
1925         (quotearg_alloc_mem): Set the flag if length cannot be returned.
1926         (quotearg_n_options): Set the flag, since length cannot be
1927         returned.
1928         (quoting_options_from_style): Default flags correctly.
1929
1930         Quotearg part 1: more wrappers, restore quotearg_char state.
1931         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
1932         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
1933         (quotearg_colon_mem): New wrappers.
1934         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
1935         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
1936         functions.
1937         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
1938         (quotearg_colon_mem): New functions.
1939
1940 2008-02-11  Bruno Haible  <bruno@clisp.org>
1941
1942         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
1943         library in the current directory: it does not work with parallel make.
1944         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1945
1946 2008-02-11  Bruno Haible  <bruno@clisp.org>
1947
1948         * .gitattributes: New file.
1949
1950 2008-02-11  Jim Meyering  <meyering@redhat.com>
1951
1952         useless-if-before-free: Fix reversed exit values.
1953         * build-aux/useless-if-before-free: Use correct values
1954         for EXIT_MATCH and EXIT_NO_MATCH.
1955
1956         * build-aux/useless-if-before-free: Close stdout carefully.
1957
1958 2008-02-10  Bruno Haible  <bruno@clisp.org>
1959
1960         New module 'git-merge-changelog'.
1961         * modules/git-merge-changelog: New file.
1962         * lib/git-merge-changelog.c: New file.
1963
1964 2008-02-10  Jim Meyering  <meyering@redhat.com>
1965
1966         useless-if-before-free: New option: --list (-l).
1967
1968         useless-if-before-free: Don't exit immediately upon open failure.
1969         * build-aux/useless-if-before-free: Exit 2 for errors.
1970         Upon failure to open a file, don't exit immediately.
1971         Rather, just warn and continue with any remaining files.
1972
1973 2008-02-10  Bruno Haible  <bruno@clisp.org>
1974
1975         New abstract list operation 'node_set_value'.
1976         * lib/gl_list.h (gl_list_node_set_value): New function.
1977         (struct gl_list_implementation): New field node_set_value.
1978         * lib/gl_list.c (gl_list_node_set_value): New function.
1979         * lib/gl_array_list.c (gl_array_node_set_value): New function.
1980         (gl_array_list_implementation): Update.
1981         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
1982         (gl_carray_list_implementation): Update.
1983         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
1984         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1985         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1986         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
1987         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1988         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1989         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1990         Update.
1991         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
1992         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
1993         (gl_sublist_list_implementation): Update.
1994
1995 2008-02-10  Bruno Haible  <bruno@clisp.org>
1996
1997         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
1998         Needed when ELEMENT is #defined to 'some_type *'.
1999
2000 2008-02-10  Jim Meyering  <meyering@redhat.com>
2001
2002         New script and module: useless-if-before-free
2003         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
2004         * build-aux/useless-if-before-free: New file.
2005         * modules/useless-if-before-free: New file.
2006
2007         * build-aux/gitlog-to-changelog: Use committer date, not author date.
2008
2009         xstrtol_error: Fix typo.
2010         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
2011         s/exit_failure/exit_status/.
2012
2013 2008-02-09  Jim Meyering  <meyering@redhat.com>
2014
2015         New script and module: gitlog-to-changelog
2016         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
2017         * modules/gitlog-to-changelog: New file.
2018         * build-aux/gitlog-to-changelog: New file.
2019
2020 2008-02-08  Jim Meyering  <meyering@redhat.com>
2021
2022         Avoid two "parameter unused" warnings.
2023         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
2024         Mark "st" as used.
2025
2026         Use "git COMMAND", not "git-COMMAND".
2027         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
2028         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
2029         * build-aux/git-version-gen: Use "git status", not "git-status".
2030
2031 2008-02-07  Bruno Haible  <bruno@clisp.org>
2032
2033         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
2034         Avoids a crash on Windows Vista.
2035         Reported by Adam Strzelecki <ono@java.pl> via
2036         Simon Josefsson <simon@josefsson.org>.
2037
2038 2008-02-06  Bruno Haible  <bruno@clisp.org>
2039
2040         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
2041         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
2042         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
2043         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
2044         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
2045         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2046         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
2047         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
2048         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2049         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2050         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2051         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2052         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2053         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2054         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2055         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
2056         left-adjust flag.
2057         * tests/test-snprintf-posix.h (test_function): Likewise.
2058         * tests/test-sprintf-posix.h (test_function): Likewise.
2059         * tests/test-vasprintf-posix.c (test_function): Likewise.
2060         * doc/posix-functions/fprintf.texi: Update.
2061         * doc/posix-functions/printf.texi: Update.
2062         * doc/posix-functions/snprintf.texi: Update.
2063         * doc/posix-functions/sprintf.texi: Update.
2064         * doc/posix-functions/vfprintf.texi: Update.
2065         * doc/posix-functions/vprintf.texi: Update.
2066         * doc/posix-functions/vsnprintf.texi: Update.
2067         * doc/posix-functions/vsprintf.texi: Update.
2068         Reported by Peter Fales <psfales@alcatel-lucent.com>.
2069
2070 2008-02-06  Bruno Haible  <bruno@clisp.org>
2071
2072         Fix bug introduced on 2008-01-26.
2073         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
2074
2075 2008-02-06  Bruno Haible  <bruno@clisp.org>
2076
2077         Fix bug introduced on 2007-06-10.
2078         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
2079         !NEED_PRINTF_FLAG_ZERO.
2080
2081 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
2082
2083         getloadavg: use libperfstat on AIX5
2084         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
2085
2086 2008-02-03  Bruno Haible  <bruno@clisp.org>
2087
2088         * lib/diffseq.h: Add comments about required #includes.
2089         Reported by Michael Biggs <gnulib@doubleplum.net>.
2090
2091 2008-02-01  Bruno Haible  <bruno@clisp.org>
2092
2093         * users.txt: Add gnuit.
2094
2095 2008-01-31  Bruno Haible  <bruno@clisp.org>
2096
2097         * lib/md4.c (set_uint32): Mark as inline.
2098         * lib/md5.c (set_uint32): Likewise.
2099         * lib/sha1.c (set_uint32): Likewise.
2100         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
2101         * m4/md5.m4 (gl_MD5): Likewise.
2102         * m4/sha1.m4 (gl_SHA1): Likewise.
2103
2104 2008-01-31  Jim Meyering  <meyering@redhat.com>
2105
2106         Use "sizeof VAR", rather than a literal "4".
2107         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
2108         * lib/md4.c (md4_read_ctx): Likewise.
2109         * lib/sha1.c (sha1_read_ctx): Likewise.
2110
2111 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2112
2113         * tests/test-sha1.c: New file, based on test-md5.c.
2114
2115         * modules/crypto/sha1-tests: New file.
2116
2117 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2118
2119         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
2120
2121 2008-01-31  Jim Meyering  <meyering@redhat.com>
2122
2123         Prefer "sizeof v" over the equivalent "4".
2124         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
2125         * lib/md5.c (set_uint32): Likewise.
2126         * lib/sha1.c (set_uint32): Likewise.
2127
2128 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2129
2130         * lib/sha1.c (set_uint32): Mark function as static.
2131
2132 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2133
2134         md2: clarify comments to say that alignment is not required.
2135         * lib/md2.h: Remove warning about alignment in comment.
2136         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
2137         never been required.
2138
2139 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2140
2141         md4: adapt alignment constraint fix from sha1.
2142         * lib/md4.c (set_uint32): New function, from sha1.c
2143         (md4_read_ctx): Use it.
2144         (md4_finish_ctx): Doc fix.
2145         * lib/md4.h: Doc fix.
2146
2147 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2148
2149         md5: adapt alignment constraint fix from sha1.
2150         * lib/md5.c (set_uint32): New function, from sha1.c
2151         (md5_read_ctx): Use it.
2152         (md5_finish_ctx): Doc fix.
2153         * lib/md5.h: Doc fix.
2154
2155 2008-01-30  Peter Palfrader  <weasel@debian.org>
2156
2157         sha1: remove the result buffer alignment constraint
2158         * lib/sha1.c (set_uint32): New function.
2159         (sha1_read_ctx): Rewrite to remove the result buffer alignment
2160         constraint.
2161         (sha1_finish_ctx): Remove comment warning about alignment constraint.
2162         * lib/sha1.h: Likewise.
2163
2164 2008-01-30  Andreas Schwab  <schwab@suse.de>
2165             Bruno Haible  <bruno@clisp.org>
2166
2167         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
2168         correct definition of LDBL_MIN_EXP.
2169
2170 2008-01-30  Karl Berry  <karl@gnu.org>
2171
2172         * config/srclist-update: try to preserve x bit on updates.
2173         * config/srclistvars.sh: update for karl.
2174
2175 2008-01-29  Jim Meyering  <meyering@redhat.com>
2176
2177         vasnprintf.c: Avoid warning about unused label
2178         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
2179         "overflow" label definition and associated code with the
2180         same cpp condition that guards the sole use of that label.
2181
2182 2008-01-26  Bruno Haible  <bruno@clisp.org>
2183
2184         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
2185         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
2186         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
2187         * lib/isnanl-nolibm.h (isnanl): Likewise.
2188         Reported by Paul Eggert <eggert@cs.ucla.edu>.
2189
2190 2008-01-26  Bruno Haible  <bruno@clisp.org>
2191
2192         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
2193         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
2194
2195 2008-01-26  Bruno Haible  <bruno@clisp.org>
2196
2197         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
2198         GCC >= 4.0 built-in.
2199         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
2200
2201 2008-01-26  Bruno Haible  <bruno@clisp.org>
2202
2203         Rename isnan, applicable to 'double' only, to isnand.
2204         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
2205         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
2206         (configure.ac): Update.
2207         (Include): Replace "isnan.h" with "isnand.h".
2208         * m4/isnand.m4: Renamed from m4/isnan.m4.
2209         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
2210         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
2211         instead of isnan.c.
2212         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
2213         instead of HAVE_ISNAN_IN_LIBC.
2214         (isnand): Renamed from isnan.
2215         * lib/isnand.c: New file.
2216         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
2217         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
2218         (Makefile.am): Update.
2219         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
2220         Include isnand.h instead of isnan.h.
2221         (main): Test isnand instead of isnan.
2222         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
2223         isnan-nolibm.
2224         * modules/frexp (Depends-on): Likewise.
2225         * modules/frexp-tests (Depends-on): Likewise.
2226         * modules/frexp-nolibm (Depends-on): Likewise.
2227         * modules/frexp-nolibm-tests (Depends-on): Likewise.
2228         * modules/isfinite (Depends-on): Likewise.
2229         * modules/round-tests (Depends-on): Likewise.
2230         * modules/signbit (Depends-on): Likewise.
2231         * modules/signbit-tests (Depends-on): Likewise.
2232         * modules/snprintf-posix (Depends-on): Likewise.
2233         * modules/sprintf-posix (Depends-on): Likewise.
2234         * modules/trunc-tests (Depends-on): Likewise.
2235         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
2236         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
2237         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
2238         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
2239         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
2240         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
2241         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
2242         * modules/vasnprintf-posix (Depends-on): Likewise.
2243         * modules/vasprintf-posix (Depends-on): Likewise.
2244         * modules/vfprintf-posix (Depends-on): Likewise.
2245         * modules/vsnprintf-posix (Depends-on): Likewise.
2246         * modules/vsprintf-posix (Depends-on): Likewise.
2247         * lib/frexp.c: Include isnand.h instead of isnan.h.
2248         (ISNAN): Set to isnand instead of isnan.
2249         * lib/isfinite.c: Include isnand.h instead of isnan.h.
2250         (gl_isfinited): Use isnand instead of isnan.
2251         * lib/signbitd.c: Include isnand.h instead of isnan.h.
2252         (gl_signbitd): Use isnand instead of isnan.
2253         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
2254         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
2255         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
2256         (main): Use isnand instead of isnan.
2257         * tests/test-round1.c: Include isnand.h.
2258         (main): Use isnand instead of isnan.
2259         * tests/test-round2.c: Include isnand.h instead of isnan.h.
2260         (ISNAN): Set to isnand instead of isnan.
2261         * tests/test-trunc1.c: Include isnand.h.
2262         (main): Use isnand instead of isnan.
2263         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
2264         (equal): Use isnand instead of isnan.
2265         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
2266         isnand-nolibm.
2267         * NEWS: Mention the change.
2268
2269 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
2270             Bruno Haible  <bruno@clisp.org>
2271
2272         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
2273         the GCC builtins for signbits are present and set
2274         REPLACE_SIGNBIT_USING_GCC if so.
2275         * lib/math.in.h (signbit): Define using GCC builtins if
2276         REPLACE_SIGNBIT_USING_GCC is set.
2277         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
2278         REPLACE_SIGNBIT_USING_GCC.
2279         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
2280
2281 2008-01-25  Jim Meyering  <meyering@redhat.com>
2282
2283         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
2284         * lib/poll.c: Include <config.h>, not "config.h".
2285         * tests/test-getaddrinfo.c: Likewise.
2286
2287 2008-01-25  Simon Josefsson  <simon@josefsson.org>
2288
2289         * modules/sockets-tests: New file.
2290
2291 2008-01-24  Simon Josefsson  <simon@josefsson.org>
2292
2293         * modules/sockets: New module, can be used to call WSA_Startup and
2294         WSA_Cleanup when needed.
2295
2296         * lib/sockets.h, lib/sockets.c: New files.
2297
2298         * m4/sockets.m4: New file.
2299
2300         * tests/test-sockets.c: New file.
2301
2302 2008-01-19  Bruno Haible  <bruno@clisp.org>
2303
2304         * doc/posix-headers: Renamed from doc/headers.
2305         * doc/posix-functions: Renamed from doc/functions.
2306         * doc/gnulib.texi: Update.
2307
2308 2008-01-19  Bruno Haible  <bruno@clisp.org>
2309
2310         * doc/glibc-functions/strcasestr.texi: Include contents of
2311         doc/functions/strcasestr.texi, fixing the list of platforms.
2312         * doc/functions/strcasestr.texi: Remove file.
2313
2314 2008-01-19  Bruno Haible  <bruno@clisp.org>
2315
2316         * doc/glibc-functions/memmem.texi: Include contents of
2317         doc/functions/memmem.texi.
2318         * doc/functions/memmem.texi: Remove file.
2319
2320 2008-01-18  Bruno Haible  <bruno@clisp.org>
2321
2322         * doc/glibc-functions/*.texi: New files.
2323         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
2324         to use the new files.
2325
2326 2008-01-17  Bruno Haible  <bruno@clisp.org>
2327
2328         * tests/test-gethostname.c (main): Fix printf statement.
2329
2330 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2331
2332         * modules/gethostname-tests: New file.
2333
2334         * tests/test-gethostname.c: New file.
2335
2336 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2337
2338         * lib/gethostname.c: Include string.h unconditionally, strncpy is
2339         used by the UNAME case.  Reported by Bruno Haible
2340         <bruno@clisp.org>.
2341
2342 2008-01-17  Eric Blake  <ebb9@byu.net>
2343
2344         Convert c-strcasestr to be more efficient.
2345         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
2346         (Depends-on): Add c-strcase, remove malloca, strnlen.
2347         * tests/test-c-strcasestr.c (main): Enhance test.
2348         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
2349
2350 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
2351
2352         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
2353         Use it in creating po/Makevars.
2354
2355 2008-01-15  Simon Josefsson  <simon@josefsson.org>
2356
2357         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
2358         Applications that requires it should initialize libgcrypt
2359         manually.
2360
2361 2008-01-16  Simon Josefsson  <simon@josefsson.org>
2362
2363         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
2364
2365 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
2366
2367         Fix problem with getdate on mingw32 reported by Simon Josefsson
2368         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
2369         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
2370         tzname", when deciding whether to declare tzname.
2371         * lib/strftime.c (tzname): Likewise.
2372
2373 2008-01-15  Bruno Haible  <bruno@clisp.org>
2374
2375         Work around a MacOS X 10.5 bug in frexpl().
2376         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
2377         * doc/functions/frexpl.texi: Document the bug.
2378         Reported by Elias Pipping <pipping@gentoo.org>.
2379
2380 2008-01-14  Eric Blake  <ebb9@byu.net>
2381
2382         Touch up previous patch.
2383         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
2384         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
2385
2386         Convert strcasestr module to use Two-Way algorithm.
2387         * modules/strcasestr-simple: New module, based on the old
2388         strcasestr, but with Two-Way rather than KMP.
2389         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
2390         * lib/string.in.h (rpl_strcasestr): Declare.
2391         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
2392         performance.
2393         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
2394         * modules/string (Makefile.am): Support strcasestr.
2395         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
2396         * modules/strcasestr-tests (Depends-on): Check for alarm.
2397         * tests/test-strcasestr.c: Augment test.
2398         * lib/str-two-way.h: Clean up stray macro.
2399         * NEWS: Document new module.
2400         * MODULES.html.sh (string handling): Likewise.
2401         * doc/functions/strcasestr.texi: New file.
2402         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
2403         here, since it is not a POSIX function.
2404
2405 2008-01-14  Colin Watson  <cjwatson@debian.org>
2406             Bruno Haible  <bruno@clisp.org>
2407
2408         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
2409         works fine; if not, set REPLACE_STRSIGNAL.
2410         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
2411         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
2412         REPLACE_STRSIGNAL.
2413         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
2414         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
2415         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
2416
2417 2008-01-14  Bruno Haible  <bruno@clisp.org>
2418
2419         * modules/strsignal (Include): Change to <string.h>.
2420
2421 2008-01-14  Colin Watson  <cjwatson@debian.org>
2422
2423         * modules/argp (Notice): Add a notice recommending to change
2424         XGETTEXT_OPTIONS.
2425         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
2426
2427 2008-01-13  Colin Watson  <cjwatson@debian.org>
2428
2429         * modules/strsignal-tests: New file.
2430         * tests/test-strsignal.c: New file.
2431
2432         * lib/strsignal.c: New file, from glibc with modifications.
2433         * lib/siglist.h: New file, from glibc with modifications.
2434         * lib/string.in.h (strsignal): New declaration.
2435         * m4/strsignal.m4: New file.
2436         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
2437         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
2438         * modules/strsignal: New file.
2439         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
2440         HAVE_DECL_STRSIGNAL.
2441
2442 2008-01-13  Bruno Haible  <bruno@clisp.org>
2443
2444         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
2445         locale encoding is not ASCII. Needed for OpenBSD 4.0.
2446         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
2447         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
2448
2449 2008-01-13  Bruno Haible  <bruno@clisp.org>
2450
2451         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
2452         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
2453         * lib/argp.h (__attribute__): Likewise.
2454         * lib/c-stack.c (__attribute__): Likewise.
2455         * lib/error.h (__attribute__): Likewise.
2456         * lib/fts.c (__attribute__): Likewise.
2457         * lib/openat.h (__attribute__): Likewise.
2458         * lib/stdio.in.h (__attribute__): Likewise.
2459         * lib/string.in.h (__attribute__): Likewise.
2460         * lib/utimens.c (__attribute__): Likewise.
2461         * lib/vasnprintf.h (__attribute__): Likewise.
2462         * lib/xalloc.h (__attribute__): Likewise.
2463         * lib/xprintf.h (__attribute__): Likewise.
2464         * lib/xstrtol.h (__attribute__): Likewise.
2465         * lib/xvasprintf.h (__attribute__): Likewise.
2466
2467 2008-01-12  Bruno Haible  <bruno@clisp.org>
2468
2469         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
2470         * doc/glibc-headers/a.out.texi: New file.
2471         * doc/glibc-headers/aliases.texi: New file.
2472         * doc/glibc-headers/alloca.texi: New file.
2473         * doc/glibc-headers/ar.texi: New file.
2474         * doc/glibc-headers/argp.texi: New file.
2475         * doc/glibc-headers/argz.texi: New file.
2476         * doc/glibc-headers/byteswap.texi: New file.
2477         * doc/glibc-headers/crypt.texi: New file.
2478         * doc/glibc-headers/endian.texi: New file.
2479         * doc/glibc-headers/envz.texi: New file.
2480         * doc/glibc-headers/err.texi: New file.
2481         * doc/glibc-headers/error.texi: New file.
2482         * doc/glibc-headers/execinfo.texi: New file.
2483         * doc/glibc-headers/fpu_control.texi: New file.
2484         * doc/glibc-headers/fstab.texi: New file.
2485         * doc/glibc-headers/fts.texi: New file.
2486         * doc/glibc-headers/getopt.texi: New file.
2487         * doc/glibc-headers/ieee754.texi: New file.
2488         * doc/glibc-headers/ifaddrs.texi: New file.
2489         * doc/glibc-headers/libintl.texi: New file.
2490         * doc/glibc-headers/mcheck.texi: New file.
2491         * doc/glibc-headers/mntent.texi: New file.
2492         * doc/glibc-headers/obstack.texi: New file.
2493         * doc/glibc-headers/paths.texi: New file.
2494         * doc/glibc-headers/printf.texi: New file.
2495         * doc/glibc-headers/pty.texi: New file.
2496         * doc/glibc-headers/resolv.texi: New file.
2497         * doc/glibc-headers/shadow.texi: New file.
2498         * doc/glibc-headers/sysexits.texi: New file.
2499         * doc/glibc-headers/ttyent.texi: New file.
2500
2501 2008-01-12  Jim Meyering  <meyering@redhat.com>
2502
2503         announce-gen: emit Gnulib's git-based version string.
2504         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
2505         New option --gnulib-version=V, where V is expected to be
2506         the output of running git describe in the gnulib directory.
2507         (get_tool_versions): Request feedback on xdelta.  I suspect it's
2508         not useful, and plan to stop publishing an xdelta file with each
2509         coreutils release.
2510
2511         * build-aux/announce-gen: Also check for lzma-compressed files.
2512
2513 2008-01-11  Bruno Haible  <bruno@clisp.org>
2514
2515         * tests/test-memmem.c (main): Increase maximum allowed time.
2516         * tests/test-strstr.c (main): Likewise.
2517
2518 2008-01-11  Bruno Haible  <bruno@clisp.org>
2519
2520         * doc/functions/memmem.texi: Add more precisions about platforms.
2521         * doc/functions/strstr.texi: Likewise.
2522
2523 2008-01-10  Eric Blake  <ebb9@byu.net>
2524
2525         * m4/strstr.m4: Delete cruft from copy-n-paste.
2526         Reported by Bruno Haible.
2527
2528 2008-01-10  Bruno Haible  <bruno@clisp.org>
2529
2530         Make c-strstr rely on strstr.
2531         * lib/c-strstr.c: Don't include str-kmp.h.
2532         (c_strstr): Define in terms of strstr.
2533         * modules/c-strstr (Files): Remove lib/str-kmp.h.
2534         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
2535
2536 2008-01-10  Bruno Haible  <bruno@clisp.org>
2537
2538         * doc/gnulib.texi (String Functions in C Locale): New section.
2539         * doc/c-ctype.texi: New file.
2540         * doc/c-strcase.texi: New file.
2541         * doc/c-strcaseeq.texi: New file.
2542         * doc/c-strcasestr.texi: New file.
2543         * doc/c-strstr.texi: New file.
2544         * doc/c-strtod.texi: New file.
2545         * doc/c-strtold.texi: New file.
2546
2547 2008-01-10  Eric Blake  <ebb9@byu.net>
2548
2549         * lib/relocatable.h: Fix a comment.
2550
2551 2008-01-10  Eric Blake  <ebb9@byu.net>
2552
2553         Share two-way algorithm.
2554         * lib/str-two-way.h: New file, merged from...
2555         * lib/memmem.c: ...here...
2556         * lib/strstr.c: ...and here.
2557         * modules/memmem (Files): Use it.
2558         * modules/strstr (Files): Likewise.
2559
2560         Avoid quadratic strstr implementations.
2561         * lib/strstr.c: New file.
2562         * m4/strstr.m4: Likewise.
2563         * modules/strstr: Likewise.
2564         * modules/strstr-tests: Likewise.
2565         * tests/test-strstr.c: Likewise.
2566         * lib/string.in.h (rpl_strstr): Declare.
2567         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
2568         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
2569         * modules/string (Makefile.am): Likewise.
2570         * MODULES.html.sh (string handling): Mention new module.
2571         * doc/functions/strstr.texi (strstr): Document the bug.
2572
2573 2008-01-10  Bruno Haible  <bruno@clisp.org>
2574
2575         * lib/relocatable.h (relocate): State whether result is freshly
2576         allocated or not.
2577         * lib/relocatable.c (relocate): Return a freshly allocated string
2578         instead of a pointer to a privately held string.
2579         Reported by Sylvain Beucler <beuc@gnu.org>.
2580
2581 2008-01-10  Colin Watson  <cjwatson@debian.org>
2582
2583         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
2584         s/S_ISNLK/S_ISLNK/.
2585
2586 2008-01-09  Bruno Haible  <bruno@clisp.org>
2587
2588         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
2589         and other files.
2590         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
2591         if it's only a guess.
2592         * modules/memmem: Simplify by depending on memmem-simple.
2593
2594 2008-01-09  Bruno Haible  <bruno@clisp.org>
2595
2596         Work around OpenBSD 4.0 tdelete() bug.
2597         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
2598         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
2599         macros and don't redefine the enum values.
2600         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
2601         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
2602         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
2603
2604 2008-01-09  Bruno Haible  <bruno@clisp.org>
2605
2606         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
2607         (main): Don't perform the tests if setlocale did not install a UTF-8
2608         locale. Needed on OpenBSD 4.0.
2609         * modules/wcwidth-tests (Depends-on): Add localcharset.
2610
2611 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
2612
2613         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
2614         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
2615         * NEWS: announce this.
2616         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
2617
2618 2008-01-09  Simon Josefsson  <simon@josefsson.org>
2619         and Eric Blake  <ebb9@byu.net>
2620
2621         Add memmem-simple module.
2622         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
2623         (gl_FUNC_MEMMEM): Separate performance from presence checks.
2624         * modules/memmem-simple: New file.
2625         * modules/memmem (Description): Tweak.
2626         * MODULES.html.sh (string handling): Mention new module.
2627         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
2628         addressed by memmem-simple.
2629         * NEWS: Document the difference.
2630
2631 2008-01-09  Eric Blake  <ebb9@byu.net>
2632
2633         Give gcc some memmem optimization hints.
2634         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
2635         (strcasestr): Declare as pure.
2636         * modules/memmem (Maintainer): Claim my implementation.
2637
2638 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2639
2640         Support AIX 6.1 and higher.
2641         * build-aux/config.libpath: Likewise.
2642         * build-aux/config.rpath: Likewise.
2643
2644 2008-01-08  Jim Meyering  <meyering@redhat.com>
2645             Bruno Haible  <bruno@clisp.org>
2646
2647         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
2648         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
2649         Reported by Peter Fales in
2650         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
2651
2652 2008-01-08  Bruno Haible  <bruno@clisp.org>
2653
2654         * modules/unictype/category-of (Depends-on): Add
2655         unictype/category-none.
2656         * modules/unictype/category-and-tests (Depends-on): Add
2657         unictype/category-{L,N,Lu,Nd}.
2658         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
2659         * modules/unictype/category-or-tests (Depends-on): Add
2660         unictype/category-{L,N}.
2661         * modules/unictype/category-name-tests (Depends-on): Add
2662         unictype/category-{Z,Nl}.
2663         Reported by Simon Josefsson.
2664
2665 2008-01-08  Bruno Haible  <bruno@clisp.org>
2666
2667         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
2668         convention better.
2669         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
2670         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
2671         Reported by Peter Miller <millerp@canb.auug.org.au>.
2672
2673 2008-01-08  Eric Blake  <ebb9@byu.net>
2674
2675         Rewrite memmem to guarantee linear complexity without malloc.
2676         * lib/memmem.c (memmem): Use Two-Way rather than
2677         Knuth-Morris-Pratt, to allow O(1) space usage.
2678         (critical_factorization, two_way_short_needle)
2679         (two_way_long_needle): New functions.
2680         (knuth_morris_pratt): Delete.
2681         * modules/memmem (Depends-on): No longer need malloca or stdbool.
2682         Add stdint.
2683         * tests/test-memmem.c (main): Add tests for periodic needle and
2684         sublinear performance.
2685         * doc/functions/memmem.texi (memmem): Document other deficiencies
2686         in cygwin and older glibc.
2687
2688 2008-01-08  Bruno Haible  <bruno@clisp.org>
2689
2690         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
2691         augmentation.
2692
2693 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
2694
2695         Add a configure time option: --disable-acl.
2696         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
2697         AC_ARG_ENABLE(acl).
2698
2699 2008-01-06  Simon Josefsson  <simon@josefsson.org>
2700
2701         * tests/test-localename.c: Don't include obsolete "setenv.h".
2702
2703         * modules/localename-tests (Depends-on): Need unsetenv.
2704
2705 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2706
2707         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
2708
2709 2008-01-06  Colin Watson  <cjwatson@debian.org>
2710
2711         * users.txt: Add man-db.
2712
2713 2008-01-07  Bruno Haible  <bruno@clisp.org>
2714
2715         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
2716         previous section name.
2717
2718 2008-01-07  Bruno Haible  <bruno@clisp.org>
2719
2720         * lib/progname.c (set_program_name): Don't strip off a leading
2721         "lt-" prefix outside a .libs directory.
2722         Suggested by Paul Eggert.
2723
2724 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
2725             Bruno Haible  <bruno@clisp.org>
2726
2727         Improve memory cleanup in 'relocatable' module.
2728         * lib/relocatable.h (compute_curr_prefix): Change return type to
2729         'char *'.
2730         * lib/relocatable.c (compute_curr_prefix): Change return type to
2731         'char *'. Free curr_installdir after use.
2732         (relocate): Free curr_prefix_better after use.
2733         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
2734
2735 2008-01-01  Bruno Haible  <bruno@clisp.org>
2736
2737         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
2738         failure on older glibc systems.
2739         Reported by Peter Fales <psfales@alcatel-lucent.com>.
2740
2741 2008-01-05  Eric Blake  <ebb9@byu.net>
2742
2743         Avoid quadratic system memmem.
2744         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
2745         Reported by Ralf Wildenhues.
2746
2747         Fix memmem test for mingw.
2748         * modules/memmem-tests (configure.ac): Check for alarm.
2749         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
2750         it.
2751         * doc/functions/memmem.texi: New file.
2752         * doc/gnulib.texi (Function Substitutes): Add memmem.
2753         Reported by Bruno Haible.
2754
2755 2008-01-04  Bruno Haible  <bruno@clisp.org>
2756
2757         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
2758         Require gl_HEADER_STRINGS_H_DEFAULTS, not
2759         gl_HEADER_STRING_H_DEFAULTS.
2760
2761 2008-01-04  Eric Blake  <ebb9@byu.net>
2762
2763         Shorten duration of memmem test.
2764         * tests/test-memmem.c (main): Use alarm to declare failure if test
2765         is taking too long.
2766         Reported by Ralf Wildenhues.
2767
2768 2007-12-21  Simon Josefsson  <simon@josefsson.org>
2769
2770         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
2771         string, needed by strerror.
2772
2773 2008-01-03  Colin Watson  <cjwatson@debian.org>
2774             Bruno Haible  <bruno@clisp.org>
2775
2776         * doc/gnulib-tool.texi (Localization): New section.
2777
2778 2008-01-02  Bruno Haible  <bruno@clisp.org>
2779
2780         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
2781         variables to 'unsigned char *' type.
2782         Reported by Paul Eggert.
2783
2784 2008-01-02  Jim Meyering  <jim@meyering.net>
2785
2786         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
2787
2788 2007-12-31  Jim Meyering  <jim@meyering.net>
2789
2790         Avoid use of private FTS type name.
2791         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
2792
2793 2007-12-30  Karl Berry  <karl@gnu.org>
2794
2795         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
2796         work around defect in Texinfo and/or the standalone Info browser.
2797
2798 2007-12-30  Bruno Haible  <bruno@clisp.org>
2799
2800         Unify 5 copies of the KMP code.
2801         * lib/str-kmp.h: New file.
2802         * lib/c-strcasestr.c: Include str-kmp.h.
2803         (knuth_morris_pratt): Remove function.
2804         (c_strcasestr): Update.
2805         * lib/c-strstr.c: Include str-kmp.h.
2806         (knuth_morris_pratt): Remove function.
2807         (c_strcasestr): Update.
2808         * lib/mbscasestr.c: Include str-kmp.h.
2809         (knuth_morris_pratt_unibyte): Remove function.
2810         * lib/mbsstr.c: Include str-kmp.h.
2811         (knuth_morris_pratt_unibyte): Remove function.
2812         * lib/strcasestr.c: Include str-kmp.h.
2813         (knuth_morris_pratt): Remove function.
2814         (strcasestr): Update.
2815         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
2816         * modules/c-strstr (Files): Likewise.
2817         * modules/mbscasestr (Files): Likewise.
2818         * modules/mbsstr (Files): Likewise.
2819         * modules/strcasestr (Files): Likewise.
2820         Suggested by Paul Eggert.
2821
2822 2007-12-30  Bruno Haible  <bruno@clisp.org>
2823
2824         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
2825         defined.
2826
2827 2007-12-30  Bruno Haible  <bruno@clisp.org>
2828
2829         * lib/xmalloca.h: Include xalloc.h.
2830         (xnmalloca): New macro.
2831
2832 2007-12-30  Bruno Haible  <bruno@clisp.org>
2833
2834         * lib/malloca.h (nmalloca): New macro.
2835         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
2836         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
2837         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
2838         knuth_morris_pratt_multibyte): Likewise.
2839         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
2840         knuth_morris_pratt_multibyte): Likewise.
2841         * lib/memmem.c (knuth_morris_pratt): Likewise.
2842         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
2843
2844 2007-12-25  Bruno Haible  <bruno@clisp.org>
2845
2846         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
2847         * lib/glob.c: Don't include openat.h.
2848         (link_exists2_p): Add back the code that deals with the
2849         !GLOB_ALTDIRFUNC case.
2850         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
2851         let it do the filename concatenation.
2852         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
2853         * modules/glob (Depends-on): Remove openat.
2854
2855 2007-12-31  Bruno Haible  <bruno@clisp.org>
2856
2857         * modules/dirfd (License): Change to LGPLv2+.
2858         Approved by Jim Meyering.
2859
2860 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2861
2862         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
2863         when multiplying M by sizeof (size_t).
2864
2865 2007-12-10  Martin Lambers  <marlam@marlam.de>
2866
2867         Override getpagesize on mingw.
2868         * lib/getpagesize.c: New file.
2869         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
2870         * modules/getpagesize (Files): Add lib/getpagesize.c.
2871         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
2872         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
2873         REPLACE_GETPAGESIZE.
2874         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
2875
2876 2007-12-25  Bruno Haible  <bruno@clisp.org>
2877
2878         * modules/localcharset (Notice): New field.
2879         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
2880         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
2881
2882 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
2883             Bruno Haible  <bruno@clisp.org>
2884
2885         Avoid using the syntax symbol() in formatted documentation.
2886         * MODULES.html.sh (func_module): When replacing symbol() with a
2887         hyperlink, remove the parentheses. Show an error if some remain.
2888         Recognize and render the '...' syntax.
2889         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
2890         Rework. Add paragraph about GCC's inlining.
2891         * doc/alloca.texi: Likewise.
2892         * doc/error.texi: Remove parentheses from symbol reference.
2893         * doc/gnulib-intro.texi: Likewise.
2894         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
2895         * modules/fnmatch (Description): Reword to say "the ... function".
2896         * modules/full-read (Description): Likewise.
2897         * modules/full-write (Description): Likewise.
2898         * modules/safe-read (Description): Likewise.
2899         * modules/safe-write (Description): Likewise.
2900         * modules/strchrnul (Description): Likewise.
2901         * modules/trim (Description): Likewise.
2902         * modules/error (Description): Remove parentheses from symbol
2903         references.
2904         * modules/verror (Description): Likewise.
2905         Reported by Karl Berry.
2906
2907 2007-12-25  Bruno Haible  <bruno@clisp.org>
2908
2909         Fixup after 2007-10-16 commit.
2910         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
2911
2912 2007-12-24  Bruno Haible  <bruno@clisp.org>
2913
2914         Make --enable-relocatable work with DESTDIR.
2915         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
2916         to compute installdir from destprog.
2917         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
2918         also set the RELOC_DESTDIR variable.
2919         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2920
2921 2007-12-24  Bruno Haible  <bruno@clisp.org>
2922
2923         Fix link error due to xalloc_die().
2924         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
2925         of xreadlink.
2926         * lib/relocwrapper.c: Update comments.
2927         * build-aux/install-reloc: Remove xreadlink.c from file list.
2928         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
2929         xreadlink.c.
2930         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2931
2932 2007-12-24  Bruno Haible  <bruno@clisp.org>
2933
2934         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
2935         * lib/setenv.h: Remove file.
2936         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
2937         lib/setenv.h.
2938         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
2939         (Depends-on): Add stdlib.
2940         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
2941         gl_FUNC_UNSETENV.
2942         (Include): Replace setenv.h with <stdlib.h>.
2943         * modules/unsetenv: New file.
2944         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
2945         * lib/unsetenv.c: Include <stdlib.h> first.
2946         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
2947         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
2948         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
2949         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
2950         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
2951         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
2952         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
2953         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
2954         * doc/functions/unsetenv.texi: Update.
2955         * modules/xsetenv (Depends-on): Add unsetenv.
2956         * modules/getdate (Depends-on): Likewise.
2957         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
2958         * lib/xsetenv.c: Don't include setenv.h.
2959         * lib/getdate.y: Likewise.
2960         * lib/relocwrapper.c: Likewise.
2961         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
2962         (Depends-on): Add stdlib.
2963         * NEWS: Mention the changes.
2964         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2965
2966 2007-12-23  Bruno Haible  <bruno@clisp.org>
2967
2968         * lib/memmem.c (memmem): Use lowercase variable names. Tab
2969         indentation.
2970
2971 2007-12-23  Bruno Haible  <bruno@clisp.org>
2972
2973         * lib/c-strcasestr.c: Add more comments.
2974         * lib/c-strstr.c: Likewise.
2975         * lib/mbscasestr.c: Likewise.
2976         * lib/mbsstr.c: Likewise.
2977         * lib/strcasestr.c: Likewise.
2978         * lib/memmem.c: Likewise.
2979
2980 2007-12-23  Bruno Haible  <bruno@clisp.org>
2981
2982         * tests/test-memmem.c: Include <string.h> first.
2983
2984 2007-12-22  Bruno Haible  <bruno@clisp.org>
2985
2986         * gnulib-tool (func_create_testdir): Change $auxdir while generating
2987         the contents of $testsbase.
2988         Reported by Ralf Wildenhues.
2989
2990 2007-12-22  Bruno Haible  <bruno@clisp.org>
2991
2992         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
2993         two variables local_ldadd_before, local_ldadd_last.
2994
2995 2007-12-20  Eric Blake  <ebb9@byu.net>
2996
2997         Work around circular library issue when cross-compiling.
2998         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
2999         that progname.o does not need to pull in rpl_memcmp.
3000
3001 2007-12-19  Eric Blake  <ebb9@byu.net>
3002
3003         Fix memmem to avoid O(n^2) worst-case complexity.
3004         * lib/memmem.c (knuth_morris_pratt): New function.
3005         (memmem): Use it if first few naive iterations fail.
3006         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
3007         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
3008         * modules/memchr (License): Likewise.
3009         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
3010         malloca.
3011         * tests/test-memmem.c: Rewrite, borrowing ideas from
3012         test-mbsstr1.c; the old version wouldn't even compile!
3013         * modules/memmem-tests: New file.
3014         * lib/string.in.h (rpl_memmem): Add declaration.
3015         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
3016         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
3017         REPLACE_MEMMEM.
3018
3019 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
3020
3021         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
3022         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
3023         before any system include files, and undef after them all.  This
3024         should fix a problem on VMS reported by John E. Malmberg in
3025         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
3026
3027 2007-12-17  Eric Blake  <ebb9@byu.net>
3028
3029         Revert addition of verify, for BSD/OS.
3030         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
3031         can't handle large files, for the sake of obsolete platforms.
3032         * modules/fseeko (Depends-on): Remove verify.
3033         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
3034         * doc/functions/ftello.texi (ftello): Likewise.
3035         * doc/functions/fgetpos.texi (fgetpos): Likewise.
3036         Reported by Larry Jones.
3037
3038 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
3039
3040         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
3041         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
3042
3043 2007-12-17  Jim Meyering  <meyering@redhat.com>
3044
3045         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
3046         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
3047         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
3048         * modules/getcwd (Depends-on): Add openat.
3049         Reported by Petr Salinger.
3050
3051 2007-12-17  Bruno Haible  <bruno@clisp.org>
3052
3053         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
3054         avoid a segmentation fault of the configure test on x86_64 systems.
3055
3056 2007-12-15  Jim Meyering  <meyering@redhat.com>
3057
3058         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
3059
3060 2007-12-13  Eric Blake  <ebb9@byu.net>
3061
3062         Another fseek test.
3063         * tests/test-fseek.c (main): Also test ungetc handling.
3064         * tests/test-fseeko.c (main): Likewise.
3065         * modules/fseeko (Depends-on): Add verify.
3066         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
3067         large.
3068         Reported by Larry Jones.
3069
3070         Fix fseeko on mingw.
3071         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
3072         seek.
3073
3074         Beef up fseek tests.
3075         * tests/test-fseek.c (main): Also test eof handling.
3076         * tests/test-fseeko.c (main): Likewise.
3077         Reported by Larry Jones.
3078
3079 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
3080
3081         Fix fseeko on BSD-based platforms.
3082         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
3083         successful seek.
3084
3085 2007-12-12  Eric Blake  <ebb9@byu.net>
3086
3087         Allow circular dependency of separate libtests.a
3088         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
3089         when use_libtests.
3090
3091 2007-12-11  Eric Blake  <ebb9@byu.net>
3092
3093         Fix bug with -0.0L in previous patch.
3094         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
3095         * tests/test-isnan.c (main): Also test on zeroes.
3096         * tests/test-isnanf.c (main): Likewise.
3097         * tests/test-isnanl.h (main): Likewise.
3098
3099         Detect pseudo-denormals on x86 even when cross-compiling.
3100         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
3101         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
3102         invalid bit patterns that happen to satisfy ==.
3103
3104         Avoid link failures with separate libtests.a.
3105         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
3106         last, to satisfy circular dependencies.
3107
3108 2007-12-11  Eric Blake  <ebb9@byu.net>
3109         and Bruno Haible  <bruno@clisp.org>
3110
3111         Fix OpenBSD 4.0 <float.h> handling of long double.
3112         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
3113         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
3114         * doc/headers/float.texi (float.h): Document OpenBSD bug.
3115
3116 2007-12-11  Jim Meyering  <meyering@redhat.com>
3117
3118         * users.txt: Add libvirt.
3119
3120         Support versions of autoconf prior to 2.59c.
3121         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
3122         if it is not already defined.
3123
3124 2007-12-09  Bruno Haible  <bruno@clisp.org>
3125
3126         Let 'gnulib-tool --import' collect sources needed for the tests in
3127         tests/ rather than in lib/.
3128         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
3129         argument. If true, add rules to generate libtests.a, and put libtests.a
3130         into $(LDADD). Consider source files in subdirectories and set
3131         uses_subdirs.
3132         (func_emit_initmacro_start, func_emit_initmacro_end,
3133         func_emit_initmacro_done): Pass all arguments explicitly.
3134         (func_import): Determine two module lists main_modules,
3135         testsrelated_modules. Determine use_libtests. Determine two variables
3136         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
3137         instead of just sed_transform_lib_file. Determine two variables
3138         main_files and testsrelated_files. Compute 'files' as the union of
3139         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
3140         func_add_or_update. In the generated gnulib-comp.m4, collect the
3141         object files for tests/ in different variables than those for lib/.
3142         Substitute LIBTESTS_LIBDEPS.
3143         (func_create_testdir): Combine the uses_subdirs results from
3144         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
3145
3146 2007-12-09  Bruno Haible  <bruno@clisp.org>
3147
3148         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
3149         the build-aux directory.
3150
3151 2007-12-09  Bruno Haible  <bruno@clisp.org>
3152
3153         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
3154         introduced on 2006-09-09.
3155
3156 2007-12-07  Jim Meyering  <meyering@redhat.com>
3157
3158         Let these macros work also with autoconf-2.59.
3159         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
3160         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
3161         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
3162
3163 2007-12-06  Jim Meyering  <meyering@redhat.com>
3164
3165         Avoid a configure-time syntax error in gl_FUNC_ACL.
3166         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
3167         function in each branch, before testing the cache variable.
3168
3169 2007-12-04  Eric Blake  <ebb9@byu.net>
3170
3171         Make scripts executable.
3172         * build-aux/config.guess: Add execute permissions.
3173         * build-aux/config.sub: Likewise.
3174         * build-aux/gendocs.sh: Likewise.
3175
3176         Fix frexp on mingw.
3177         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
3178         cross-compiling.
3179         * doc/functions/frexp.texi (frexp): Document the bug.
3180
3181         Make cygwin fseeko check more reliable.
3182         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
3183         version numbers, rather than unrelated feature check.
3184         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
3185         * doc/functions/ftello.texi (ftello): Likewise.
3186         Reported by Bruno Haible.
3187
3188         * m4/strerror.m4: Bump version number.
3189
3190 2007-12-03  Bruno Haible  <bruno@clisp.org>
3191
3192         * doc/functions/mprotect.texi: Mention the mingw problem.
3193
3194 2007-12-03  Eric Blake  <ebb9@byu.net>
3195
3196         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
3197         REPLACE_STRERROR is initialized before this macro.
3198
3199 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
3200
3201         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
3202         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
3203         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
3204         put -lsec in even for programs other than 'ls'.  This fixes a problem
3205         for gettext reported by Bruno Haible in
3206         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
3207         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
3208         Add support for Solaris 10.  This isn't efficient, but should get the
3209         job done for now.
3210
3211 2007-12-03  James Youngman  <jay@gnu.org>
3212
3213         * doc/regexprops-generic.texi: change "an close-group" to "a
3214         close-group" and "illegal" to "not allowed".
3215
3216 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3217
3218         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
3219         pr_byname.h. Needed for the rare case when the maintainer has done
3220         "make maintainer-clean" in the source directory and then attempts a
3221         build outside the source directory.
3222         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
3223         scripts_byname.h.
3224
3225 2007-12-02  Martin Lambers <marlam@marlam.de>
3226             Bruno Haible  <bruno@clisp.org>
3227
3228         * lib/getpagesize.h: Remove file.
3229         * lib/unistd.in.h: Include declaration of getpagesize here.
3230         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
3231         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
3232         HAVE_SYS_PARAM_H.
3233         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
3234         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3235         * modules/getpagesize (Files): Remove lib/getpagesize.h.
3236         (Depends-on): Add unistd.
3237         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3238         (Include): Use <unistd.h> instead of getpagesize.h.
3239         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
3240         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3241         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
3242         gl_GETPAGESIZE invocation, already handled by module dependency.
3243         * lib/pagealign_alloc.c: Don't include getpagesize.h.
3244
3245 2007-12-02  Bruno Haible  <bruno@clisp.org>
3246
3247         * modules/strings-tests: New file.
3248         * tests/test-strings.c: New file.
3249
3250         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
3251         * lib/strings.in.h: New file.
3252         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
3253         * m4/strings_h.m4: New file.
3254         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
3255         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
3256         * modules/strings: New file.
3257         * modules/string (Makefile.am): Update.
3258         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
3259         Reported by Karl Berry.
3260
3261 2007-12-01  Eric Blake  <ebb9@byu.net>
3262
3263         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
3264         accomodate fix in cygwin 1.5.25.
3265
3266 2007-12-01  Jim Meyering  <meyering@redhat.com>
3267
3268         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
3269         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
3270         that would inhibit utf8-optimization of a regexp containing line-
3271         or buffer-anchors, e.g., `^', `$'.
3272
3273 2007-11-30  Bruno Haible  <bruno@clisp.org>
3274
3275         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
3276         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
3277         glthread_recursive_lock_init.
3278         * lib/lock.c (glthread_recursive_lock_init)
3279         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
3280         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3281
3282 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3283
3284         New function qset_acl, like set_acl but with syscall semantics.
3285         * lib/acl.h (qset_acl): New decl.
3286         * lib/acl.c (qset_acl): New function.
3287         (set_acl): Use new function.  Use more-consistent diagnostics.
3288
3289 2007-11-28  Jim Meyering  <meyering@redhat.com>
3290
3291         * modules/physmem (License): Change from GPL to LGPLv2+.
3292
3293 2007-11-26  Bruno Haible  <bruno@clisp.org>
3294
3295         * lib/vasnprintf.c (decode_long_double): Don't abort if the
3296         'long double' type has excess precision.
3297         Reported by Jim Meyering in
3298         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
3299
3300 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3301
3302         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
3303         Sync from <http://gnu.org/licenses>.
3304         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
3305         with license text from same location.
3306         * doc/maintain.texi, doc/standards.texi:  Sync from
3307         <http://savannah.gnu.org/projects/gnustandards>.
3308
3309 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
3310         and Jim Meyering  <meyering@redhat.com>
3311
3312         Adjust getdate' grammar to accept a slightly more regular language.
3313         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
3314         Before, the former was rejected.
3315         * lib/getdate.y (digits_to_date_time): New function, factored
3316         out of ...
3317         (number): ...here.  Just call digits_to_date_time.
3318         (hybrid): New non-terminal to handle an <unsigned number,
3319         signed relative offset> sequence consistently.
3320
3321 2007-11-18  Jim Meyering  <meyering@redhat.com>
3322
3323         Pull my changes from coreutils:
3324         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
3325         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
3326         use of $gnulib_tool_option_extras, so that it's separated from the
3327         preceding argument.
3328
3329         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
3330         * build-aux/bootstrap (cp_mark_as_generated): Create any required
3331         parent destination directories before copying a file into place.
3332
3333 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3334
3335         bootstrap: work also with 4-argument variant of AC_INIT
3336         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
3337
3338 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3339
3340         Port test-getaddrinfo to Solaris.
3341         Problem reported by Bruno Haible in
3342         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
3343         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
3344         explanation of setting 'hints'.
3345         Don't reject an implementation merely because it returns EAI_SERVICE.
3346         (EAI_SERVICE): Define to 0 if not defined.
3347
3348 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
3349
3350         The license of gnu-make and posix-shell is now "GPLed build tool".
3351         * modules/gnu-make (License): Likewise.
3352         * modules/posix-shell (License): Likewise.
3353
3354         New module posix-shell, for determining a POSIX shell
3355         or perhaps something that is close enough to a POSIX shell.
3356         * m4/posix-shell.m4: New file.
3357         * modules/posix-shell: New file.
3358
3359         * MODULES.html.sh: Mention new module.
3360
3361         New module gnu-make, for determining whether we're using GNU Make.
3362         * m4/gnu-make.m4: New file.
3363         * modules/gnu-make: New file.
3364         * MODULES.html.sh: Mention new module.
3365
3366 2007-11-14  Jim Meyering  <meyering@redhat.com>
3367
3368         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
3369         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
3370         use this macro to create a function _definition_.
3371         Remove useless "#undef ARGMATCH_DIE".
3372
3373 2007-11-14  Bruno Haible  <bruno@clisp.org>
3374
3375         * lib/config.charset: Update for OpenBSD 4.1.
3376         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
3377
3378 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
3379
3380         Document 64-bit #if problems in stdint.texi.
3381         * doc/headers/stdint.texi (stdint.h): Mention problems with
3382         64-bit-#if, and how to work around them.
3383
3384         Don't insist on 'long long int' support in the preprocessor.  It
3385         breaks too many things.  For example, PRIdMAX still uses a 'long
3386         long int' format with the latest Sun compiler, even though
3387         HAVE_LONG_LONG_INT isn't defined due to that compiler's
3388         preprocessor problem.  This causes the latest coreutils to dump
3389         core on Solaris 10 sparc with the Sun C compiler.
3390         Instead, fix the 2007-10-16 problem in a different way, by evaluating
3391         the troublesome expressions at configure-time, not at #if-time.
3392         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
3393         preprocessor.
3394         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
3395         compile-time C checks, done at 'configure'-time.
3396         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
3397         * modules/inttypes (Makefile): Substitute the new symbols that
3398         gl_INTTYPES_H now generates.
3399         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
3400
3401 2007-11-12  Bruno Haible  <bruno@clisp.org>
3402
3403         Tests for Unicode character classification functions.
3404
3405         * modules/unictype/bidicategory-byname-tests: New file.
3406         * modules/unictype/bidicategory-name-tests: New file.
3407         * modules/unictype/bidicategory-of-tests: New file.
3408         * modules/unictype/bidicategory-test-tests: New file.
3409         * modules/unictype/block-list-tests: New file.
3410         * modules/unictype/block-of-tests: New file.
3411         * modules/unictype/block-test-tests: New file.
3412         * modules/unictype/category-C-tests: New file.
3413         * modules/unictype/category-Cc-tests: New file.
3414         * modules/unictype/category-Cf-tests: New file.
3415         * modules/unictype/category-Cn-tests: New file.
3416         * modules/unictype/category-Co-tests: New file.
3417         * modules/unictype/category-Cs-tests: New file.
3418         * modules/unictype/category-L-tests: New file.
3419         * modules/unictype/category-Ll-tests: New file.
3420         * modules/unictype/category-Lm-tests: New file.
3421         * modules/unictype/category-Lo-tests: New file.
3422         * modules/unictype/category-Lt-tests: New file.
3423         * modules/unictype/category-Lu-tests: New file.
3424         * modules/unictype/category-M-tests: New file.
3425         * modules/unictype/category-Mc-tests: New file.
3426         * modules/unictype/category-Me-tests: New file.
3427         * modules/unictype/category-Mn-tests: New file.
3428         * modules/unictype/category-N-tests: New file.
3429         * modules/unictype/category-Nd-tests: New file.
3430         * modules/unictype/category-Nl-tests: New file.
3431         * modules/unictype/category-No-tests: New file.
3432         * modules/unictype/category-P-tests: New file.
3433         * modules/unictype/category-Pc-tests: New file.
3434         * modules/unictype/category-Pd-tests: New file.
3435         * modules/unictype/category-Pe-tests: New file.
3436         * modules/unictype/category-Pf-tests: New file.
3437         * modules/unictype/category-Pi-tests: New file.
3438         * modules/unictype/category-Po-tests: New file.
3439         * modules/unictype/category-Ps-tests: New file.
3440         * modules/unictype/category-S-tests: New file.
3441         * modules/unictype/category-Sc-tests: New file.
3442         * modules/unictype/category-Sk-tests: New file.
3443         * modules/unictype/category-Sm-tests: New file.
3444         * modules/unictype/category-So-tests: New file.
3445         * modules/unictype/category-Z-tests: New file.
3446         * modules/unictype/category-Zl-tests: New file.
3447         * modules/unictype/category-Zp-tests: New file.
3448         * modules/unictype/category-Zs-tests: New file.
3449         * modules/unictype/category-and-not-tests: New file.
3450         * modules/unictype/category-and-tests: New file.
3451         * modules/unictype/category-byname-tests: New file.
3452         * modules/unictype/category-name-tests: New file.
3453         * modules/unictype/category-none-tests: New file.
3454         * modules/unictype/category-of-tests: New file.
3455         * modules/unictype/category-or-tests: New file.
3456         * modules/unictype/category-test-withtable-tests: New file.
3457         * modules/unictype/combining-class-tests: New file.
3458         * modules/unictype/ctype-alnum-tests: New file.
3459         * modules/unictype/ctype-alpha-tests: New file.
3460         * modules/unictype/ctype-blank-tests: New file.
3461         * modules/unictype/ctype-cntrl-tests: New file.
3462         * modules/unictype/ctype-digit-tests: New file.
3463         * modules/unictype/ctype-graph-tests: New file.
3464         * modules/unictype/ctype-lower-tests: New file.
3465         * modules/unictype/ctype-print-tests: New file.
3466         * modules/unictype/ctype-punct-tests: New file.
3467         * modules/unictype/ctype-space-tests: New file.
3468         * modules/unictype/ctype-upper-tests: New file.
3469         * modules/unictype/ctype-xdigit-tests: New file.
3470         * modules/unictype/decimal-digit-tests: New file.
3471         * modules/unictype/digit-tests: New file.
3472         * modules/unictype/mirror-tests: New file.
3473         * modules/unictype/numeric-tests: New file.
3474         * modules/unictype/property-alphabetic-tests: New file.
3475         * modules/unictype/property-ascii-hex-digit-tests: New file.
3476         * modules/unictype/property-bidi-arabic-digit-tests: New file.
3477         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
3478         * modules/unictype/property-bidi-block-separator-tests: New file.
3479         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
3480         * modules/unictype/property-bidi-common-separator-tests: New file.
3481         * modules/unictype/property-bidi-control-tests: New file.
3482         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
3483         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
3484         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
3485         * modules/unictype/property-bidi-european-digit-tests: New file.
3486         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
3487         * modules/unictype/property-bidi-left-to-right-tests: New file.
3488         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
3489         * modules/unictype/property-bidi-other-neutral-tests: New file.
3490         * modules/unictype/property-bidi-pdf-tests: New file.
3491         * modules/unictype/property-bidi-segment-separator-tests: New file.
3492         * modules/unictype/property-bidi-whitespace-tests: New file.
3493         * modules/unictype/property-byname-tests: New file.
3494         * modules/unictype/property-combining-tests: New file.
3495         * modules/unictype/property-composite-tests: New file.
3496         * modules/unictype/property-currency-symbol-tests: New file.
3497         * modules/unictype/property-dash-tests: New file.
3498         * modules/unictype/property-decimal-digit-tests: New file.
3499         * modules/unictype/property-default-ignorable-code-point-tests: New file.
3500         * modules/unictype/property-deprecated-tests: New file.
3501         * modules/unictype/property-diacritic-tests: New file.
3502         * modules/unictype/property-extender-tests: New file.
3503         * modules/unictype/property-format-control-tests: New file.
3504         * modules/unictype/property-grapheme-base-tests: New file.
3505         * modules/unictype/property-grapheme-extend-tests: New file.
3506         * modules/unictype/property-grapheme-link-tests: New file.
3507         * modules/unictype/property-hex-digit-tests: New file.
3508         * modules/unictype/property-hyphen-tests: New file.
3509         * modules/unictype/property-id-continue-tests: New file.
3510         * modules/unictype/property-id-start-tests: New file.
3511         * modules/unictype/property-ideographic-tests: New file.
3512         * modules/unictype/property-ids-binary-operator-tests: New file.
3513         * modules/unictype/property-ids-trinary-operator-tests: New file.
3514         * modules/unictype/property-ignorable-control-tests: New file.
3515         * modules/unictype/property-iso-control-tests: New file.
3516         * modules/unictype/property-join-control-tests: New file.
3517         * modules/unictype/property-left-of-pair-tests: New file.
3518         * modules/unictype/property-line-separator-tests: New file.
3519         * modules/unictype/property-logical-order-exception-tests: New file.
3520         * modules/unictype/property-lowercase-tests: New file.
3521         * modules/unictype/property-math-tests: New file.
3522         * modules/unictype/property-non-break-tests: New file.
3523         * modules/unictype/property-not-a-character-tests: New file.
3524         * modules/unictype/property-numeric-tests: New file.
3525         * modules/unictype/property-other-alphabetic-tests: New file.
3526         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
3527         * modules/unictype/property-other-grapheme-extend-tests: New file.
3528         * modules/unictype/property-other-id-continue-tests: New file.
3529         * modules/unictype/property-other-id-start-tests: New file.
3530         * modules/unictype/property-other-lowercase-tests: New file.
3531         * modules/unictype/property-other-math-tests: New file.
3532         * modules/unictype/property-other-uppercase-tests: New file.
3533         * modules/unictype/property-paired-punctuation-tests: New file.
3534         * modules/unictype/property-paragraph-separator-tests: New file.
3535         * modules/unictype/property-pattern-syntax-tests: New file.
3536         * modules/unictype/property-pattern-white-space-tests: New file.
3537         * modules/unictype/property-private-use-tests: New file.
3538         * modules/unictype/property-punctuation-tests: New file.
3539         * modules/unictype/property-quotation-mark-tests: New file.
3540         * modules/unictype/property-radical-tests: New file.
3541         * modules/unictype/property-sentence-terminal-tests: New file.
3542         * modules/unictype/property-soft-dotted-tests: New file.
3543         * modules/unictype/property-space-tests: New file.
3544         * modules/unictype/property-terminal-punctuation-tests: New file.
3545         * modules/unictype/property-test-tests: New file.
3546         * modules/unictype/property-titlecase-tests: New file.
3547         * modules/unictype/property-unassigned-code-value-tests: New file.
3548         * modules/unictype/property-unified-ideograph-tests: New file.
3549         * modules/unictype/property-uppercase-tests: New file.
3550         * modules/unictype/property-variation-selector-tests: New file.
3551         * modules/unictype/property-white-space-tests: New file.
3552         * modules/unictype/property-xid-continue-tests: New file.
3553         * modules/unictype/property-xid-start-tests: New file.
3554         * modules/unictype/property-zero-width-tests: New file.
3555         * modules/unictype/scripts-tests: New file.
3556         * modules/unictype/syntax-c-ident-tests: New file.
3557         * modules/unictype/syntax-c-whitespace-tests: New file.
3558         * modules/unictype/syntax-java-ident-tests: New file.
3559         * modules/unictype/syntax-java-whitespace-tests: New file.
3560         * tests/unictype/test-bidi_byname.c: New file.
3561         * tests/unictype/test-bidi_name.c: New file.
3562         * tests/unictype/test-bidi_of.c: New file.
3563         * tests/unictype/test-bidi_test.c: New file.
3564         * tests/unictype/test-block_list.c: New file.
3565         * tests/unictype/test-block_of.c: New file.
3566         * tests/unictype/test-block_test.c: New file.
3567         * tests/unictype/test-categ_and.c: New file.
3568         * tests/unictype/test-categ_and_not.c: New file.
3569         * tests/unictype/test-categ_byname.c: New file.
3570         * tests/unictype/test-categ_name.c: New file.
3571         * tests/unictype/test-categ_none.c: New file.
3572         * tests/unictype/test-categ_of.c: New file.
3573         * tests/unictype/test-categ_or.c: New file.
3574         * tests/unictype/test-categ_test_withtable.c: New file.
3575         * tests/unictype/test-combining.c: New file.
3576         * tests/unictype/test-decdigit.c: New file.
3577         * tests/unictype/test-digit.c: New file.
3578         * tests/unictype/test-mirror.c: New file.
3579         * tests/unictype/test-numeric.c: New file.
3580         * tests/unictype/test-pr_byname.c: New file.
3581         * tests/unictype/test-pr_test.c: New file.
3582         * tests/unictype/test-predicate-part1.h: New file.
3583         * tests/unictype/test-predicate-part2.h: New file.
3584         * tests/unictype/test-scripts.c: New file.
3585         * tests/unictype/test-sy_c_ident.c: New file.
3586         * tests/unictype/test-sy_java_ident.c: New file.
3587
3588         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
3589         for Unicode 5.0.0.
3590         * tests/unictype/test-categ_Cc.c: Likewise.
3591         * tests/unictype/test-categ_Cf.c: Likewise.
3592         * tests/unictype/test-categ_Cn.c: Likewise.
3593         * tests/unictype/test-categ_Co.c: Likewise.
3594         * tests/unictype/test-categ_Cs.c: Likewise.
3595         * tests/unictype/test-categ_L.c: Likewise.
3596         * tests/unictype/test-categ_Ll.c: Likewise.
3597         * tests/unictype/test-categ_Lm.c: Likewise.
3598         * tests/unictype/test-categ_Lo.c: Likewise.
3599         * tests/unictype/test-categ_Lt.c: Likewise.
3600         * tests/unictype/test-categ_Lu.c: Likewise.
3601         * tests/unictype/test-categ_M.c: Likewise.
3602         * tests/unictype/test-categ_Mc.c: Likewise.
3603         * tests/unictype/test-categ_Me.c: Likewise.
3604         * tests/unictype/test-categ_Mn.c: Likewise.
3605         * tests/unictype/test-categ_N.c: Likewise.
3606         * tests/unictype/test-categ_Nd.c: Likewise.
3607         * tests/unictype/test-categ_Nl.c: Likewise.
3608         * tests/unictype/test-categ_No.c: Likewise.
3609         * tests/unictype/test-categ_P.c: Likewise.
3610         * tests/unictype/test-categ_Pc.c: Likewise.
3611         * tests/unictype/test-categ_Pd.c: Likewise.
3612         * tests/unictype/test-categ_Pe.c: Likewise.
3613         * tests/unictype/test-categ_Pf.c: Likewise.
3614         * tests/unictype/test-categ_Pi.c: Likewise.
3615         * tests/unictype/test-categ_Po.c: Likewise.
3616         * tests/unictype/test-categ_Ps.c: Likewise.
3617         * tests/unictype/test-categ_S.c: Likewise.
3618         * tests/unictype/test-categ_Sc.c: Likewise.
3619         * tests/unictype/test-categ_Sk.c: Likewise.
3620         * tests/unictype/test-categ_Sm.c: Likewise.
3621         * tests/unictype/test-categ_So.c: Likewise.
3622         * tests/unictype/test-categ_Z.c: Likewise.
3623         * tests/unictype/test-categ_Zl.c: Likewise.
3624         * tests/unictype/test-categ_Zp.c: Likewise.
3625         * tests/unictype/test-categ_Zs.c: Likewise.
3626         * tests/unictype/test-ctype_alnum.c: Likewise.
3627         * tests/unictype/test-ctype_alpha.c: Likewise.
3628         * tests/unictype/test-ctype_blank.c: Likewise.
3629         * tests/unictype/test-ctype_cntrl.c: Likewise.
3630         * tests/unictype/test-ctype_digit.c: Likewise.
3631         * tests/unictype/test-ctype_graph.c: Likewise.
3632         * tests/unictype/test-ctype_lower.c: Likewise.
3633         * tests/unictype/test-ctype_print.c: Likewise.
3634         * tests/unictype/test-ctype_punct.c: Likewise.
3635         * tests/unictype/test-ctype_space.c: Likewise.
3636         * tests/unictype/test-ctype_upper.c: Likewise.
3637         * tests/unictype/test-ctype_xdigit.c: Likewise.
3638         * tests/unictype/test-decdigit.h: Likewise.
3639         * tests/unictype/test-digit.h: Likewise.
3640         * tests/unictype/test-numeric.h: Likewise.
3641         * tests/unictype/test-pr_alphabetic.c: Likewise.
3642         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
3643         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
3644         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
3645         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
3646         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
3647         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
3648         * tests/unictype/test-pr_bidi_control.c: Likewise.
3649         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
3650         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
3651         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
3652         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
3653         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
3654         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
3655         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
3656         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
3657         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
3658         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
3659         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
3660         * tests/unictype/test-pr_combining.c: Likewise.
3661         * tests/unictype/test-pr_composite.c: Likewise.
3662         * tests/unictype/test-pr_currency_symbol.c: Likewise.
3663         * tests/unictype/test-pr_dash.c: Likewise.
3664         * tests/unictype/test-pr_decimal_digit.c: Likewise.
3665         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
3666         * tests/unictype/test-pr_deprecated.c: Likewise.
3667         * tests/unictype/test-pr_diacritic.c: Likewise.
3668         * tests/unictype/test-pr_extender.c: Likewise.
3669         * tests/unictype/test-pr_format_control.c: Likewise.
3670         * tests/unictype/test-pr_grapheme_base.c: Likewise.
3671         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
3672         * tests/unictype/test-pr_grapheme_link.c: Likewise.
3673         * tests/unictype/test-pr_hex_digit.c: Likewise.
3674         * tests/unictype/test-pr_hyphen.c: Likewise.
3675         * tests/unictype/test-pr_id_continue.c: Likewise.
3676         * tests/unictype/test-pr_id_start.c: Likewise.
3677         * tests/unictype/test-pr_ideographic.c: Likewise.
3678         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
3679         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
3680         * tests/unictype/test-pr_ignorable_control.c: Likewise.
3681         * tests/unictype/test-pr_iso_control.c: Likewise.
3682         * tests/unictype/test-pr_join_control.c: Likewise.
3683         * tests/unictype/test-pr_left_of_pair.c: Likewise.
3684         * tests/unictype/test-pr_line_separator.c: Likewise.
3685         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
3686         * tests/unictype/test-pr_lowercase.c: Likewise.
3687         * tests/unictype/test-pr_math.c: Likewise.
3688         * tests/unictype/test-pr_non_break.c: Likewise.
3689         * tests/unictype/test-pr_not_a_character.c: Likewise.
3690         * tests/unictype/test-pr_numeric.c: Likewise.
3691         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
3692         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
3693         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
3694         * tests/unictype/test-pr_other_id_continue.c: Likewise.
3695         * tests/unictype/test-pr_other_id_start.c: Likewise.
3696         * tests/unictype/test-pr_other_lowercase.c: Likewise.
3697         * tests/unictype/test-pr_other_math.c: Likewise.
3698         * tests/unictype/test-pr_other_uppercase.c: Likewise.
3699         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
3700         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
3701         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
3702         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
3703         * tests/unictype/test-pr_private_use.c: Likewise.
3704         * tests/unictype/test-pr_punctuation.c: Likewise.
3705         * tests/unictype/test-pr_quotation_mark.c: Likewise.
3706         * tests/unictype/test-pr_radical.c: Likewise.
3707         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
3708         * tests/unictype/test-pr_soft_dotted.c: Likewise.
3709         * tests/unictype/test-pr_space.c: Likewise.
3710         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
3711         * tests/unictype/test-pr_titlecase.c: Likewise.
3712         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
3713         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
3714         * tests/unictype/test-pr_uppercase.c: Likewise.
3715         * tests/unictype/test-pr_variation_selector.c: Likewise.
3716         * tests/unictype/test-pr_white_space.c: Likewise.
3717         * tests/unictype/test-pr_xid_continue.c: Likewise.
3718         * tests/unictype/test-pr_xid_start.c: Likewise.
3719         * tests/unictype/test-pr_zero_width.c: Likewise.
3720         * tests/unictype/test-sy_c_whitespace.c: Likewise.
3721         * tests/unictype/test-sy_java_whitespace.c: Likewise.
3722
3723 2007-11-12  Bruno Haible  <bruno@clisp.org>
3724
3725         Unicode character classification functions.
3726         * lib/unictype.h: New file.
3727         * modules/unictype/base: New file.
3728         * modules/unictype/category-L: New file.
3729         * modules/unictype/category-Lu: New file.
3730         * modules/unictype/category-Ll: New file.
3731         * modules/unictype/category-Lt: New file.
3732         * modules/unictype/category-Lm: New file.
3733         * modules/unictype/category-Lo: New file.
3734         * modules/unictype/category-M: New file.
3735         * modules/unictype/category-Mn: New file.
3736         * modules/unictype/category-Mc: New file.
3737         * modules/unictype/category-Me: New file.
3738         * modules/unictype/category-N: New file.
3739         * modules/unictype/category-Nd: New file.
3740         * modules/unictype/category-Nl: New file.
3741         * modules/unictype/category-No: New file.
3742         * modules/unictype/category-P: New file.
3743         * modules/unictype/category-Pc: New file.
3744         * modules/unictype/category-Pd: New file.
3745         * modules/unictype/category-Ps: New file.
3746         * modules/unictype/category-Pe: New file.
3747         * modules/unictype/category-Pi: New file.
3748         * modules/unictype/category-Pf: New file.
3749         * modules/unictype/category-Po: New file.
3750         * modules/unictype/category-S: New file.
3751         * modules/unictype/category-Sm: New file.
3752         * modules/unictype/category-Sc: New file.
3753         * modules/unictype/category-Sk: New file.
3754         * modules/unictype/category-So: New file.
3755         * modules/unictype/category-Z: New file.
3756         * modules/unictype/category-Zs: New file.
3757         * modules/unictype/category-Zl: New file.
3758         * modules/unictype/category-Zp: New file.
3759         * modules/unictype/category-C: New file.
3760         * modules/unictype/category-Cc: New file.
3761         * modules/unictype/category-Cf: New file.
3762         * modules/unictype/category-Cs: New file.
3763         * modules/unictype/category-Co: New file.
3764         * modules/unictype/category-Cn: New file.
3765         * modules/unictype/category-or: New file.
3766         * modules/unictype/category-of: New file.
3767         * modules/unictype/category-test: New file.
3768         * modules/unictype/category-test-withtable: New file.
3769         * modules/unictype/category-byname: New file.
3770         * modules/unictype/category-none: New file.
3771         * modules/unictype/category-and: New file.
3772         * modules/unictype/category-and-not: New file.
3773         * modules/unictype/category-name: New file.
3774         * modules/unictype/combining-class: New file.
3775         * modules/unictype/category-all: New file.
3776         * modules/unictype/bidicategory-all: New file.
3777         * modules/unictype/bidicategory-byname: New file.
3778         * modules/unictype/bidicategory-name: New file.
3779         * modules/unictype/bidicategory-of: New file.
3780         * modules/unictype/bidicategory-test: New file.
3781         * modules/unictype/decimal-digit: New file.
3782         * modules/unictype/digit: New file.
3783         * modules/unictype/numeric: New file.
3784         * modules/unictype/mirror: New file.
3785         * modules/unictype/property-white-space: New file.
3786         * modules/unictype/property-alphabetic: New file.
3787         * modules/unictype/property-other-alphabetic: New file.
3788         * modules/unictype/property-not-a-character: New file.
3789         * modules/unictype/property-default-ignorable-code-point: New file.
3790         * modules/unictype/property-other-default-ignorable-code-point: New
3791         file.
3792         * modules/unictype/property-deprecated: New file.
3793         * modules/unictype/property-logical-order-exception: New file.
3794         * modules/unictype/property-variation-selector: New file.
3795         * modules/unictype/property-private-use: New file.
3796         * modules/unictype/property-unassigned-code-value: New file.
3797         * modules/unictype/property-uppercase: New file.
3798         * modules/unictype/property-other-uppercase: New file.
3799         * modules/unictype/property-lowercase: New file.
3800         * modules/unictype/property-other-lowercase: New file.
3801         * modules/unictype/property-titlecase: New file.
3802         * modules/unictype/property-soft-dotted: New file.
3803         * modules/unictype/property-id-start: New file.
3804         * modules/unictype/property-other-id-start: New file.
3805         * modules/unictype/property-id-continue: New file.
3806         * modules/unictype/property-other-id-continue: New file.
3807         * modules/unictype/property-xid-start: New file.
3808         * modules/unictype/property-xid-continue: New file.
3809         * modules/unictype/property-pattern-white-space: New file.
3810         * modules/unictype/property-pattern-syntax: New file.
3811         * modules/unictype/property-join-control: New file.
3812         * modules/unictype/property-grapheme-base: New file.
3813         * modules/unictype/property-grapheme-extend: New file.
3814         * modules/unictype/property-other-grapheme-extend: New file.
3815         * modules/unictype/property-grapheme-link: New file.
3816         * modules/unictype/property-bidi-control: New file.
3817         * modules/unictype/property-bidi-left-to-right: New file.
3818         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
3819         * modules/unictype/property-bidi-arabic-right-to-left: New file.
3820         * modules/unictype/property-bidi-european-digit: New file.
3821         * modules/unictype/property-bidi-eur-num-separator: New file.
3822         * modules/unictype/property-bidi-eur-num-terminator: New file.
3823         * modules/unictype/property-bidi-arabic-digit: New file.
3824         * modules/unictype/property-bidi-common-separator: New file.
3825         * modules/unictype/property-bidi-block-separator: New file.
3826         * modules/unictype/property-bidi-segment-separator: New file.
3827         * modules/unictype/property-bidi-whitespace: New file.
3828         * modules/unictype/property-bidi-non-spacing-mark: New file.
3829         * modules/unictype/property-bidi-boundary-neutral: New file.
3830         * modules/unictype/property-bidi-pdf: New file.
3831         * modules/unictype/property-bidi-embedding-or-override: New file.
3832         * modules/unictype/property-bidi-other-neutral: New file.
3833         * modules/unictype/property-hex-digit: New file.
3834         * modules/unictype/property-ascii-hex-digit: New file.
3835         * modules/unictype/property-ideographic: New file.
3836         * modules/unictype/property-unified-ideograph: New file.
3837         * modules/unictype/property-radical: New file.
3838         * modules/unictype/property-ids-binary-operator: New file.
3839         * modules/unictype/property-ids-trinary-operator: New file.
3840         * modules/unictype/property-zero-width: New file.
3841         * modules/unictype/property-space: New file.
3842         * modules/unictype/property-non-break: New file.
3843         * modules/unictype/property-iso-control: New file.
3844         * modules/unictype/property-format-control: New file.
3845         * modules/unictype/property-dash: New file.
3846         * modules/unictype/property-hyphen: New file.
3847         * modules/unictype/property-punctuation: New file.
3848         * modules/unictype/property-line-separator: New file.
3849         * modules/unictype/property-paragraph-separator: New file.
3850         * modules/unictype/property-quotation-mark: New file.
3851         * modules/unictype/property-sentence-terminal: New file.
3852         * modules/unictype/property-terminal-punctuation: New file.
3853         * modules/unictype/property-currency-symbol: New file.
3854         * modules/unictype/property-math: New file.
3855         * modules/unictype/property-other-math: New file.
3856         * modules/unictype/property-paired-punctuation: New file.
3857         * modules/unictype/property-left-of-pair: New file.
3858         * modules/unictype/property-combining: New file.
3859         * modules/unictype/property-composite: New file.
3860         * modules/unictype/property-decimal-digit: New file.
3861         * modules/unictype/property-numeric: New file.
3862         * modules/unictype/property-diacritic: New file.
3863         * modules/unictype/property-extender: New file.
3864         * modules/unictype/property-ignorable-control: New file.
3865         * modules/unictype/property-test: New file.
3866         * modules/unictype/property-byname: New file.
3867         * modules/unictype/property-all: New file.
3868         * modules/unictype/scripts: New file.
3869         * modules/unictype/scripts-all: New file.
3870         * modules/unictype/block-of: New file.
3871         * modules/unictype/block-test: New file.
3872         * modules/unictype/block-list: New file.
3873         * modules/unictype/block-all: New file.
3874         * modules/unictype/syntax-c-whitespace: New file.
3875         * modules/unictype/syntax-java-whitespace: New file.
3876         * modules/unictype/syntax-c-ident: New file.
3877         * modules/unictype/syntax-java-ident: New file.
3878         * modules/unictype/ctype-alnum: New file.
3879         * modules/unictype/ctype-alpha: New file.
3880         * modules/unictype/ctype-cntrl: New file.
3881         * modules/unictype/ctype-digit: New file.
3882         * modules/unictype/ctype-graph: New file.
3883         * modules/unictype/ctype-lower: New file.
3884         * modules/unictype/ctype-print: New file.
3885         * modules/unictype/ctype-punct: New file.
3886         * modules/unictype/ctype-space: New file.
3887         * modules/unictype/ctype-upper: New file.
3888         * modules/unictype/ctype-xdigit: New file.
3889         * modules/unictype/ctype-blank: New file.
3890         * lib/unictype/bidi_byname.c: New file.
3891         * lib/unictype/bidi_name.c: New file.
3892         * lib/unictype/bidi_of.c: New file.
3893         * lib/unictype/bidi_test.c: New file.
3894         * lib/unictype/bitmap.h: New file.
3895         * lib/unictype/block_test.c: New file.
3896         * lib/unictype/blocks.c: New file.
3897         * lib/unictype/categ_C.c: New file.
3898         * lib/unictype/categ_Cc.c: New file.
3899         * lib/unictype/categ_Cf.c: New file.
3900         * lib/unictype/categ_Cn.c: New file.
3901         * lib/unictype/categ_Co.c: New file.
3902         * lib/unictype/categ_Cs.c: New file.
3903         * lib/unictype/categ_L.c: New file.
3904         * lib/unictype/categ_Ll.c: New file.
3905         * lib/unictype/categ_Lm.c: New file.
3906         * lib/unictype/categ_Lo.c: New file.
3907         * lib/unictype/categ_Lt.c: New file.
3908         * lib/unictype/categ_Lu.c: New file.
3909         * lib/unictype/categ_M.c: New file.
3910         * lib/unictype/categ_Mc.c: New file.
3911         * lib/unictype/categ_Me.c: New file.
3912         * lib/unictype/categ_Mn.c: New file.
3913         * lib/unictype/categ_N.c: New file.
3914         * lib/unictype/categ_Nd.c: New file.
3915         * lib/unictype/categ_Nl.c: New file.
3916         * lib/unictype/categ_No.c: New file.
3917         * lib/unictype/categ_P.c: New file.
3918         * lib/unictype/categ_Pc.c: New file.
3919         * lib/unictype/categ_Pd.c: New file.
3920         * lib/unictype/categ_Pe.c: New file.
3921         * lib/unictype/categ_Pf.c: New file.
3922         * lib/unictype/categ_Pi.c: New file.
3923         * lib/unictype/categ_Po.c: New file.
3924         * lib/unictype/categ_Ps.c: New file.
3925         * lib/unictype/categ_S.c: New file.
3926         * lib/unictype/categ_Sc.c: New file.
3927         * lib/unictype/categ_Sk.c: New file.
3928         * lib/unictype/categ_Sm.c: New file.
3929         * lib/unictype/categ_So.c: New file.
3930         * lib/unictype/categ_Z.c: New file.
3931         * lib/unictype/categ_Zl.c: New file.
3932         * lib/unictype/categ_Zp.c: New file.
3933         * lib/unictype/categ_Zs.c: New file.
3934         * lib/unictype/categ_and.c: New file.
3935         * lib/unictype/categ_and_not.c: New file.
3936         * lib/unictype/categ_byname.c: New file.
3937         * lib/unictype/categ_name.c: New file.
3938         * lib/unictype/categ_none.c: New file.
3939         * lib/unictype/categ_of.c: New file.
3940         * lib/unictype/categ_or.c: New file.
3941         * lib/unictype/categ_test.c: New file.
3942         * lib/unictype/combining.c: New file.
3943         * lib/unictype/ctype_alnum.c: New file.
3944         * lib/unictype/ctype_alpha.c: New file.
3945         * lib/unictype/ctype_blank.c: New file.
3946         * lib/unictype/ctype_cntrl.c: New file.
3947         * lib/unictype/ctype_digit.c: New file.
3948         * lib/unictype/ctype_graph.c: New file.
3949         * lib/unictype/ctype_lower.c: New file.
3950         * lib/unictype/ctype_print.c: New file.
3951         * lib/unictype/ctype_punct.c: New file.
3952         * lib/unictype/ctype_space.c: New file.
3953         * lib/unictype/ctype_upper.c: New file.
3954         * lib/unictype/ctype_xdigit.c: New file.
3955         * lib/unictype/decdigit.c: New file.
3956         * lib/unictype/digit.c: New file.
3957         * lib/unictype/identsyntaxmap.h: New file.
3958         * lib/unictype/mirror.c: New file.
3959         * lib/unictype/numeric.c: New file.
3960         * lib/unictype/pr_alphabetic.c: New file.
3961         * lib/unictype/pr_ascii_hex_digit.c: New file.
3962         * lib/unictype/pr_bidi_arabic_digit.c: New file.
3963         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
3964         * lib/unictype/pr_bidi_block_separator.c: New file.
3965         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
3966         * lib/unictype/pr_bidi_common_separator.c: New file.
3967         * lib/unictype/pr_bidi_control.c: New file.
3968         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
3969         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
3970         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
3971         * lib/unictype/pr_bidi_european_digit.c: New file.
3972         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
3973         * lib/unictype/pr_bidi_left_to_right.c: New file.
3974         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
3975         * lib/unictype/pr_bidi_other_neutral.c: New file.
3976         * lib/unictype/pr_bidi_pdf.c: New file.
3977         * lib/unictype/pr_bidi_segment_separator.c: New file.
3978         * lib/unictype/pr_bidi_whitespace.c: New file.
3979         * lib/unictype/pr_byname.c: New file.
3980         * lib/unictype/pr_byname.gperf: New file.
3981         * lib/unictype/pr_combining.c: New file.
3982         * lib/unictype/pr_composite.c: New file.
3983         * lib/unictype/pr_currency_symbol.c: New file.
3984         * lib/unictype/pr_dash.c: New file.
3985         * lib/unictype/pr_decimal_digit.c: New file.
3986         * lib/unictype/pr_default_ignorable_code_point.c: New file.
3987         * lib/unictype/pr_deprecated.c: New file.
3988         * lib/unictype/pr_diacritic.c: New file.
3989         * lib/unictype/pr_extender.c: New file.
3990         * lib/unictype/pr_format_control.c: New file.
3991         * lib/unictype/pr_grapheme_base.c: New file.
3992         * lib/unictype/pr_grapheme_extend.c: New file.
3993         * lib/unictype/pr_grapheme_link.c: New file.
3994         * lib/unictype/pr_hex_digit.c: New file.
3995         * lib/unictype/pr_hyphen.c: New file.
3996         * lib/unictype/pr_id_continue.c: New file.
3997         * lib/unictype/pr_id_start.c: New file.
3998         * lib/unictype/pr_ideographic.c: New file.
3999         * lib/unictype/pr_ids_binary_operator.c: New file.
4000         * lib/unictype/pr_ids_trinary_operator.c: New file.
4001         * lib/unictype/pr_ignorable_control.c: New file.
4002         * lib/unictype/pr_iso_control.c: New file.
4003         * lib/unictype/pr_join_control.c: New file.
4004         * lib/unictype/pr_left_of_pair.c: New file.
4005         * lib/unictype/pr_line_separator.c: New file.
4006         * lib/unictype/pr_logical_order_exception.c: New file.
4007         * lib/unictype/pr_lowercase.c: New file.
4008         * lib/unictype/pr_math.c: New file.
4009         * lib/unictype/pr_non_break.c: New file.
4010         * lib/unictype/pr_not_a_character.c: New file.
4011         * lib/unictype/pr_numeric.c: New file.
4012         * lib/unictype/pr_other_alphabetic.c: New file.
4013         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
4014         * lib/unictype/pr_other_grapheme_extend.c: New file.
4015         * lib/unictype/pr_other_id_continue.c: New file.
4016         * lib/unictype/pr_other_id_start.c: New file.
4017         * lib/unictype/pr_other_lowercase.c: New file.
4018         * lib/unictype/pr_other_math.c: New file.
4019         * lib/unictype/pr_other_uppercase.c: New file.
4020         * lib/unictype/pr_paired_punctuation.c: New file.
4021         * lib/unictype/pr_paragraph_separator.c: New file.
4022         * lib/unictype/pr_pattern_syntax.c: New file.
4023         * lib/unictype/pr_pattern_white_space.c: New file.
4024         * lib/unictype/pr_private_use.c: New file.
4025         * lib/unictype/pr_punctuation.c: New file.
4026         * lib/unictype/pr_quotation_mark.c: New file.
4027         * lib/unictype/pr_radical.c: New file.
4028         * lib/unictype/pr_sentence_terminal.c: New file.
4029         * lib/unictype/pr_soft_dotted.c: New file.
4030         * lib/unictype/pr_space.c: New file.
4031         * lib/unictype/pr_terminal_punctuation.c: New file.
4032         * lib/unictype/pr_test.c: New file.
4033         * lib/unictype/pr_titlecase.c: New file.
4034         * lib/unictype/pr_unassigned_code_value.c: New file.
4035         * lib/unictype/pr_unified_ideograph.c: New file.
4036         * lib/unictype/pr_uppercase.c: New file.
4037         * lib/unictype/pr_variation_selector.c: New file.
4038         * lib/unictype/pr_white_space.c: New file.
4039         * lib/unictype/pr_xid_continue.c: New file.
4040         * lib/unictype/pr_xid_start.c: New file.
4041         * lib/unictype/pr_zero_width.c: New file.
4042         * lib/unictype/scripts.c: New file.
4043         * lib/unictype/sy_c_ident.c: New file.
4044         * lib/unictype/sy_c_whitespace.c: New file.
4045         * lib/unictype/sy_java_ident.c: New file.
4046         * lib/unictype/sy_java_whitespace.c: New file.
4047
4048         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
4049         Unicode 5.0.0.
4050         * lib/unictype/blocks.h: Likewise.
4051         * lib/unictype/categ_C.h: Likewise.
4052         * lib/unictype/categ_Cc.h: Likewise.
4053         * lib/unictype/categ_Cf.h: Likewise.
4054         * lib/unictype/categ_Cn.h: Likewise.
4055         * lib/unictype/categ_Co.h: Likewise.
4056         * lib/unictype/categ_Cs.h: Likewise.
4057         * lib/unictype/categ_L.h: Likewise.
4058         * lib/unictype/categ_Ll.h: Likewise.
4059         * lib/unictype/categ_Lm.h: Likewise.
4060         * lib/unictype/categ_Lo.h: Likewise.
4061         * lib/unictype/categ_Lt.h: Likewise.
4062         * lib/unictype/categ_Lu.h: Likewise.
4063         * lib/unictype/categ_M.h: Likewise.
4064         * lib/unictype/categ_Mc.h: Likewise.
4065         * lib/unictype/categ_Me.h: Likewise.
4066         * lib/unictype/categ_Mn.h: Likewise.
4067         * lib/unictype/categ_N.h: Likewise.
4068         * lib/unictype/categ_Nd.h: Likewise.
4069         * lib/unictype/categ_Nl.h: Likewise.
4070         * lib/unictype/categ_No.h: Likewise.
4071         * lib/unictype/categ_P.h: Likewise.
4072         * lib/unictype/categ_Pc.h: Likewise.
4073         * lib/unictype/categ_Pd.h: Likewise.
4074         * lib/unictype/categ_Pe.h: Likewise.
4075         * lib/unictype/categ_Pf.h: Likewise.
4076         * lib/unictype/categ_Pi.h: Likewise.
4077         * lib/unictype/categ_Po.h: Likewise.
4078         * lib/unictype/categ_Ps.h: Likewise.
4079         * lib/unictype/categ_S.h: Likewise.
4080         * lib/unictype/categ_Sc.h: Likewise.
4081         * lib/unictype/categ_Sk.h: Likewise.
4082         * lib/unictype/categ_Sm.h: Likewise.
4083         * lib/unictype/categ_So.h: Likewise.
4084         * lib/unictype/categ_Z.h: Likewise.
4085         * lib/unictype/categ_Zl.h: Likewise.
4086         * lib/unictype/categ_Zp.h: Likewise.
4087         * lib/unictype/categ_Zs.h: Likewise.
4088         * lib/unictype/categ_of.h: Likewise.
4089         * lib/unictype/combining.h: Likewise.
4090         * lib/unictype/ctype_alnum.h: Likewise.
4091         * lib/unictype/ctype_alpha.h: Likewise.
4092         * lib/unictype/ctype_blank.h: Likewise.
4093         * lib/unictype/ctype_cntrl.h: Likewise.
4094         * lib/unictype/ctype_digit.h: Likewise.
4095         * lib/unictype/ctype_graph.h: Likewise.
4096         * lib/unictype/ctype_lower.h: Likewise.
4097         * lib/unictype/ctype_print.h: Likewise.
4098         * lib/unictype/ctype_punct.h: Likewise.
4099         * lib/unictype/ctype_space.h: Likewise.
4100         * lib/unictype/ctype_upper.h: Likewise.
4101         * lib/unictype/ctype_xdigit.h: Likewise.
4102         * lib/unictype/decdigit.h: Likewise.
4103         * lib/unictype/digit.h: Likewise.
4104         * lib/unictype/mirror.h: Likewise.
4105         * lib/unictype/numeric.h: Likewise.
4106         * lib/unictype/pr_alphabetic.h: Likewise.
4107         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
4108         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
4109         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
4110         * lib/unictype/pr_bidi_block_separator.h: Likewise.
4111         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
4112         * lib/unictype/pr_bidi_common_separator.h: Likewise.
4113         * lib/unictype/pr_bidi_control.h: Likewise.
4114         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
4115         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
4116         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
4117         * lib/unictype/pr_bidi_european_digit.h: Likewise.
4118         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
4119         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
4120         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
4121         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
4122         * lib/unictype/pr_bidi_pdf.h: Likewise.
4123         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
4124         * lib/unictype/pr_bidi_whitespace.h: Likewise.
4125         * lib/unictype/pr_combining.h: Likewise.
4126         * lib/unictype/pr_composite.h: Likewise.
4127         * lib/unictype/pr_currency_symbol.h: Likewise.
4128         * lib/unictype/pr_dash.h: Likewise.
4129         * lib/unictype/pr_decimal_digit.h: Likewise.
4130         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
4131         * lib/unictype/pr_deprecated.h: Likewise.
4132         * lib/unictype/pr_diacritic.h: Likewise.
4133         * lib/unictype/pr_extender.h: Likewise.
4134         * lib/unictype/pr_format_control.h: Likewise.
4135         * lib/unictype/pr_grapheme_base.h: Likewise.
4136         * lib/unictype/pr_grapheme_extend.h: Likewise.
4137         * lib/unictype/pr_grapheme_link.h: Likewise.
4138         * lib/unictype/pr_hex_digit.h: Likewise.
4139         * lib/unictype/pr_hyphen.h: Likewise.
4140         * lib/unictype/pr_id_continue.h: Likewise.
4141         * lib/unictype/pr_id_start.h: Likewise.
4142         * lib/unictype/pr_ideographic.h: Likewise.
4143         * lib/unictype/pr_ids_binary_operator.h: Likewise.
4144         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
4145         * lib/unictype/pr_ignorable_control.h: Likewise.
4146         * lib/unictype/pr_iso_control.h: Likewise.
4147         * lib/unictype/pr_join_control.h: Likewise.
4148         * lib/unictype/pr_left_of_pair.h: Likewise.
4149         * lib/unictype/pr_line_separator.h: Likewise.
4150         * lib/unictype/pr_logical_order_exception.h: Likewise.
4151         * lib/unictype/pr_lowercase.h: Likewise.
4152         * lib/unictype/pr_math.h: Likewise.
4153         * lib/unictype/pr_non_break.h: Likewise.
4154         * lib/unictype/pr_not_a_character.h: Likewise.
4155         * lib/unictype/pr_numeric.h: Likewise.
4156         * lib/unictype/pr_other_alphabetic.h: Likewise.
4157         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
4158         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
4159         * lib/unictype/pr_other_id_continue.h: Likewise.
4160         * lib/unictype/pr_other_id_start.h: Likewise.
4161         * lib/unictype/pr_other_lowercase.h: Likewise.
4162         * lib/unictype/pr_other_math.h: Likewise.
4163         * lib/unictype/pr_other_uppercase.h: Likewise.
4164         * lib/unictype/pr_paired_punctuation.h: Likewise.
4165         * lib/unictype/pr_paragraph_separator.h: Likewise.
4166         * lib/unictype/pr_pattern_syntax.h: Likewise.
4167         * lib/unictype/pr_pattern_white_space.h: Likewise.
4168         * lib/unictype/pr_private_use.h: Likewise.
4169         * lib/unictype/pr_punctuation.h: Likewise.
4170         * lib/unictype/pr_quotation_mark.h: Likewise.
4171         * lib/unictype/pr_radical.h: Likewise.
4172         * lib/unictype/pr_sentence_terminal.h: Likewise.
4173         * lib/unictype/pr_soft_dotted.h: Likewise.
4174         * lib/unictype/pr_space.h: Likewise.
4175         * lib/unictype/pr_terminal_punctuation.h: Likewise.
4176         * lib/unictype/pr_titlecase.h: Likewise.
4177         * lib/unictype/pr_unassigned_code_value.h: Likewise.
4178         * lib/unictype/pr_unified_ideograph.h: Likewise.
4179         * lib/unictype/pr_uppercase.h: Likewise.
4180         * lib/unictype/pr_variation_selector.h: Likewise.
4181         * lib/unictype/pr_white_space.h: Likewise.
4182         * lib/unictype/pr_xid_continue.h: Likewise.
4183         * lib/unictype/pr_xid_start.h: Likewise.
4184         * lib/unictype/pr_zero_width.h: Likewise.
4185         * lib/unictype/scripts.h: Likewise.
4186         * lib/unictype/scripts_byname.gperf: Likewise.
4187         * lib/unictype/sy_c_ident.h: Likewise.
4188         * lib/unictype/sy_c_whitespace.h: Likewise.
4189         * lib/unictype/sy_java_ident.h: Likewise.
4190         * lib/unictype/sy_java_whitespace.h: Likewise.
4191
4192         * lib/unictype/Makefile: New file.
4193         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
4194         glibc.
4195         * lib/unictype/3level.h: New file, copied from glibc.
4196         * lib/unictype/3levelbit.h: New file.
4197
4198 2007-11-11  Bruno Haible  <bruno@clisp.org>
4199
4200         * modules/gperf: New file.
4201         * modules/iconv_open (Depends-on): Add it.
4202         (Makefile.am): Remove the GPERF definition.
4203
4204 2007-11-11  Bruno Haible  <bruno@clisp.org>
4205
4206         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
4207         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
4208
4209 2007-11-11  Bruno Haible  <bruno@clisp.org>
4210
4211         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
4212         (usage): Remove function.
4213
4214 2007-11-11  Bruno Haible  <bruno@clisp.org>
4215
4216         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
4217         gl_FUNC_CEILF_LIBS.
4218         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
4219         gl_FUNC_CEIL_LIBS.
4220         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
4221         gl_FUNC_CEILL_LIBS.
4222         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
4223         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
4224         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
4225
4226 2007-11-11  Bruno Haible  <bruno@clisp.org>
4227
4228         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
4229         roundf were declared but do not exist on functions.
4230         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
4231         roundl were declared but do not exist on functions.
4232         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
4233         HAVE_FLOORL_AND_CEILL, respectively.
4234         Needed for Sun C on Solaris 10.
4235
4236 2007-11-11  Bruno Haible  <bruno@clisp.org>
4237
4238         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
4239         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
4240         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
4241         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
4242         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
4243         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
4244         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
4245         HAVE_DECL_ROUNDF.
4246         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
4247         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
4248         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
4249         of HAVE_DECL_ROUND*.
4250         * modules/math (Makefile.am): Update.
4251
4252 2007-11-10  Bruno Haible  <bruno@clisp.org>
4253
4254         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
4255         ptrdiff_t as m4/intl.m4.
4256
4257 2007-11-10  Jim Meyering  <meyering@redhat.com>
4258
4259         Avoid link failure for the argmatch test.
4260         * tests/test-argmatch.c (usage): Define function to avoid a link
4261         failure: argmatch_die requires a usage function.
4262
4263 2007-11-09  Bruno Haible  <bruno@clisp.org>
4264
4265         * doc/functions/snprintf.texi: Mention BeOS deficiency.
4266         * doc/functions/vsnprintf.texi: Likewise.
4267         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
4268         with a size argument < 2.
4269
4270 2007-11-09  Bruno Haible  <bruno@clisp.org>
4271
4272         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
4273         buffer. Fixes an inefficiency introduced on 2007-11-03.
4274
4275 2007-11-09  Bruno Haible  <bruno@clisp.org>
4276
4277         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
4278         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
4279
4280 2007-11-08  Jim Meyering  <meyering@redhat.com>
4281
4282         Change cache variable name prefix "jm_" to "gl_" everywhere.
4283         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
4284         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
4285         * m4/uptime.m4: s/gl_/jm_/
4286
4287 2007-11-07  Bruno Haible  <bruno@clisp.org>
4288
4289         Update to GNU gettext 0.17.
4290         * m4/intl.m4: Update to GNU gettext 0.17.
4291         * m4/po.m4: Likewise.
4292         * modules/gettext (Files): Remove m4/ulonglong.m4.
4293         (configure.ac): Require gettext infrastructure from version 0.17.
4294
4295 2007-11-06  Bruno Haible  <bruno@clisp.org>
4296
4297         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
4298         symbolic values are not defined in a public header.
4299         * lib/freadable.c (freadable) [QNX]: Likewise.
4300         * lib/freadahead.c (freadahead) [QNX]: Likewise.
4301         * lib/freading.c (freading) [QNX]: Likewise.
4302         * lib/fseterr.c (fseterr) [QNX]: Likewise.
4303         * lib/fwritable.c (fwritable) [QNX]: Likewise.
4304         * lib/fwriting.c (fwriting) [QNX]: Likewise.
4305         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
4306         Reported by Alain Magloire.
4307
4308         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
4309
4310 2007-11-05  Bruno Haible  <bruno@clisp.org>
4311
4312         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
4313         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
4314         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
4315         Reported by Eric Blake.
4316
4317 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4318             Bruno Haible  <bruno@clisp.org>
4319
4320         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
4321         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
4322         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
4323         (malloc): Undefine also before including <stdlib.h>.
4324         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
4325         Needed on OSF/1 4.0.
4326
4327 2007-11-05  Jim Meyering  <meyering@redhat.com>
4328
4329         git-version-gen: sync from coreutils.
4330         * build-aux/git-version-gen: Add comments.
4331         Change the first '-' to '.' in the snapshot version string,
4332         e.g., 6.9-377-08144 -> 6.9.377-08144
4333         Remove first parameter.
4334         Don't declare a version "-dirty" merely because a time
4335         stamp has changed.
4336
4337 2007-11-04  Bruno Haible  <bruno@clisp.org>
4338
4339         * lib/lock.h: Protect all macro definitions containing an 'if'
4340         statement through a "do { ... } while (0)".
4341         * lib/tls.h: Likewise.
4342
4343 2007-11-04  Bruno Haible  <bruno@clisp.org>
4344
4345         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
4346
4347 2007-11-04  Bruno Haible  <bruno@clisp.org>
4348
4349         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
4350         * modules/fprintf-posix (Depends-on): Add nocrash.
4351         * modules/snprintf-posix (Depends-on): Likewise.
4352         * modules/sprintf-posix (Depends-on): Likewise.
4353         * modules/vasnprintf-posix (Depends-on): Likewise.
4354         * modules/vasprintf-posix (Depends-on): Likewise.
4355         * modules/vfprintf-posix (Depends-on): Likewise.
4356         * modules/vsnprintf-posix (Depends-on): Likewise.
4357         * modules/vsprintf-posix (Depends-on): Likewise.
4358         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
4359         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
4360         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
4361         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
4362         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
4363         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
4364         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
4365
4366 2007-11-04  Bruno Haible  <bruno@clisp.org>
4367
4368         * modules/nocrash: New file.
4369         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
4370         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
4371
4372 2007-11-04  Bruno Haible  <bruno@clisp.org>
4373
4374         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
4375         precision handling.
4376         * tests/test-vasprintf-posix.c (test_function): Likewise.
4377         * tests/test-snprintf-posix.h (test_function): Likewise.
4378         * tests/test-sprintf-posix.h (test_function): Likewise.
4379
4380         Fix *printf behaviour for large precisions on mingw and BeOS.
4381         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
4382         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
4383         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
4384         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
4385         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4386         gl_PRINTF_PRECISION and test its result. Invoke
4387         gl_PREREQ_VASNPRINTF_PRECISION.
4388         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4389         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4390         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4391         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4392         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4393         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4394         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4395         * doc/functions/fprintf.texi: Update.
4396         * doc/functions/printf.texi: Update.
4397         * doc/functions/snprintf.texi: Update.
4398         * doc/functions/sprintf.texi: Update.
4399         * doc/functions/vfprintf.texi: Update.
4400         * doc/functions/vprintf.texi: Update.
4401         * doc/functions/vsnprintf.texi: Update.
4402         * doc/functions/vsprintf.texi: Update.
4403
4404 2007-11-04  Bruno Haible  <bruno@clisp.org>
4405
4406         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
4407
4408 2007-11-04  Bruno Haible  <bruno@clisp.org>
4409
4410         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
4411         Reported by Sylvain Beucler <beuc@gnu.org>.
4412
4413 2007-11-03  Bruno Haible  <bruno@clisp.org>
4414
4415         * tests/test-fprintf-posix2.sh: New file.
4416         * tests/test-fprintf-posix2.c: New file.
4417         * modules/fprintf-posix-tests (Files): Add them.
4418         (TESTS): Add test-fprintf-posix2.sh.
4419         (configure.ac): Check for getrlimit and setrlimit.
4420         (check_PROGRAMS): Add test-fprintf-posix2.
4421
4422         * tests/test-printf-posix2.sh: New file.
4423         * tests/test-printf-posix2.c: New file.
4424         * modules/printf-posix-tests (Files): Add them.
4425         (TESTS): Add test-printf-posix2.sh.
4426         (configure.ac): Check for getrlimit and setrlimit.
4427         (check_PROGRAMS): Add test-printf-posix2.
4428
4429         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
4430         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
4431         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
4432         (decode_double): New function, copied from decode_long_double.
4433         (scale10_round_decimal_decoded): New function, extracted from
4434         scale10_round_decimal_long_double.
4435         (scale10_round_decimal_long_double): Use it.
4436         (scale10_round_decimal_double): New function.
4437         (floorlog10): New function.
4438         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
4439         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
4440         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
4441         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4442         gl_PRINTF_ENOMEM and test its result. Invoke
4443         gl_PREREQ_VASNPRINTF_ENOMEM.
4444         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4445         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4446         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4447         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4448         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4449         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4450         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4451         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
4452         * modules/snprintf-posix (Depends-on): Likewise.
4453         * modules/sprintf-posix (Depends-on): Likewise.
4454         * modules/vasnprintf-posix (Depends-on): Likewise.
4455         * modules/vasprintf-posix (Depends-on): Likewise.
4456         * modules/vfprintf-posix (Depends-on): Likewise.
4457         * modules/vsnprintf-posix (Depends-on): Likewise.
4458         * modules/vsprintf-posix (Depends-on): Likewise.
4459         * doc/functions/fprintf.texi: Update.
4460         * doc/functions/printf.texi: Update.
4461         * doc/functions/snprintf.texi: Update.
4462         * doc/functions/sprintf.texi: Update.
4463         * doc/functions/vfprintf.texi: Update.
4464         * doc/functions/vprintf.texi: Update.
4465         * doc/functions/vsnprintf.texi: Update.
4466         * doc/functions/vsprintf.texi: Update.
4467
4468 2007-11-03  Bruno Haible  <bruno@clisp.org>
4469
4470         * modules/frexp-nolibm-tests: New file.
4471
4472         * modules/frexp-nolibm: New file.
4473         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
4474
4475 2007-11-03  Bruno Haible  <bruno@clisp.org>
4476
4477         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
4478         value is C99 compliant.
4479         Needed for OSF/1 5.1.
4480
4481 2007-11-03  Bruno Haible  <bruno@clisp.org>
4482
4483         Fix out-of-memory handling of vasnprintf.
4484         * lib/printf-parse.c: Include <errno.h>.
4485         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
4486         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
4487         is already set.
4488
4489 2007-11-02  Eric Blake  <ebb9@byu.net>
4490
4491         Fix tests on cygwin.
4492         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
4493
4494 2007-11-01  Bruno Haible  <bruno@clisp.org>
4495
4496         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
4497         warning.
4498         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
4499         needed for POSIX compatibility.
4500
4501 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
4502
4503         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
4504         for compatibility with GNU.
4505
4506 2007-11-01  Bruno Haible  <bruno@clisp.org>
4507
4508         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
4509         (putenv): Renamed from rpl_putenv. Change argument type from
4510         'const char *' to 'char *'.
4511         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
4512         of defining putenv in config.h, just set REPLACE_PUTENV.
4513         * modules/putenv (Depends-on): Add stdlib.
4514         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4515         (Include): Use <stdlib.h>.
4516         * lib/stdlib.in.h (putenv): New declaration.
4517         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
4518         REPLACE_PUTENV.
4519         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
4520         REPLACE_PUTENV.
4521         Needed for MacOS X 10.5.0.
4522         Reported by Peter O'Gorman <peter@pogma.com>.
4523
4524 2007-11-01  Jim Meyering  <meyering@redhat.com>
4525
4526         Treat an empty date string exactly like "0".
4527         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
4528         if the remaining date string (to be parsed) is empty, use "0".
4529         Reported by Mischa Molhoek and discussed in this thread:
4530         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
4531
4532 2007-10-31  Bruno Haible  <bruno@clisp.org>
4533
4534         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
4535         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
4536         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
4537         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
4538         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
4539         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
4540
4541 2007-10-31  Bruno Haible  <bruno@clisp.org>
4542
4543         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
4544         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
4545         (AC_TYPE_LONG_LONG_INT): Use it.
4546         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
4547         it as well.
4548         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
4549         to m4/longlong.m4.
4550         * modules/stdint (Files): Remove m4/ulonglong.m4.
4551         * modules/strtoull (Files): Use m4/longlong.m4 instead of
4552         m4/ulonglong.m4.
4553         * modules/strtoumax (Files): Likewise.
4554
4555 2007-10-30  Bruno Haible  <bruno@clisp.org>
4556
4557         * modules/xvasprintf-posix: New file.
4558         Suggested by Eric Blake.
4559
4560 2007-10-30  Bruno Haible  <bruno@clisp.org>
4561
4562         * modules/xprintf-posix-tests: New file.
4563         * tests/test-xprintf-posix.sh: New file.
4564         * tests/test-xprintf-posix.c: New file.
4565         * tests/test-xfprintf-posix.c: New file.
4566
4567         * modules/xprintf-posix: New file.
4568
4569 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4570
4571         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
4572         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
4573         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
4574
4575 2007-10-29  Bruno Haible  <bruno@clisp.org>
4576
4577         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
4578         contain the special marker '_cv_'.
4579         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
4580         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
4581         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
4582         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
4583         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
4584         Reported by Ralf Wildenhues.
4585
4586 2007-10-29  Bruno Haible  <bruno@clisp.org>
4587
4588         * gnulib-tool (func_import): When --lgpl is not specified, set
4589         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
4590         GPLv3.
4591         Reported by Simon Josefsson.
4592
4593 2007-10-28  Bruno Haible  <bruno@clisp.org>
4594
4595         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
4596         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
4597         HAVE_DECL_ISFINITE.
4598         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
4599         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
4600         HAVE_DECL_ISFINITE.
4601
4602 2007-10-28  Bruno Haible  <bruno@clisp.org>
4603
4604         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
4605         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
4606
4607 2007-10-28  Bruno Haible  <bruno@clisp.org>
4608
4609         Fix link errors with Sun C 5.0 on Solaris 10.
4610         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
4611         function is declared but not present in the compiler's libm.
4612         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
4613         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
4614         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
4615         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
4616         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
4617         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
4618         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
4619         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
4620         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
4621         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
4622         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
4623         HAVE_DECL_FLOORL.
4624
4625 2007-10-28  Bruno Haible  <bruno@clisp.org>
4626
4627         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
4628         gl_FUNC_FLOORL. Cache the result.
4629         (gl_FUNC_FLOORL): Use it.
4630         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
4631         gl_FUNC_CEILL. Cache the result.
4632         (gl_FUNC_CEILL): Use it.
4633
4634         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
4635         gl_FUNC_FLOOR. Cache the result.
4636         (gl_FUNC_FLOOR): Use it.
4637         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
4638         gl_FUNC_CEIL. Cache the result.
4639         (gl_FUNC_CEIL): Use it.
4640
4641         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
4642         gl_FUNC_FLOORF. Cache the result.
4643         (gl_FUNC_FLOORF): Use it.
4644         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
4645         gl_FUNC_CEILF. Cache the result.
4646         (gl_FUNC_CEILF): Use it.
4647
4648 2007-10-28  Bruno Haible  <bruno@clisp.org>
4649
4650         * gnulib-tool: Allow specifying the LGPL version number through
4651         --lgpl=2 or --lgpl=3.
4652         (func_usage): Document --lgpl with argument.
4653         Handle --lgpl=... arguments.
4654         (func_import): Recognize also gl_LGPL calls with an argument. When
4655         --lgpl=2 is used and the module's license is just LGPL, report an
4656         error. Set sed_transform_lib_file according to the lgpl variable. In
4657         the generated files, use --lgpl or gl_LGPL invocations with argument,
4658         if necessary.
4659         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
4660         an LGPv2+ license.
4661         * doc/gnulib-tool.texi (Modified imports): Update explanation of
4662         gl_LGPL macro.
4663
4664 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4665             Bruno Haible  <bruno@clisp.org>
4666
4667         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
4668         (u16_uctomb_aux): Likewise.
4669         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
4670         !HAVE_INLINE.
4671         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
4672
4673 2007-10-28  Bruno Haible  <bruno@clisp.org>
4674
4675         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
4676         Invoke AM_GETTEXT_OPTION if it exists.
4677         * modules/vasprintf: Likewise.
4678         * modules/verror: Likewise.
4679         * modules/xprintf: Likewise.
4680         * modules/xvasprintf: Likewise.
4681
4682 2007-10-27  Ben Pfaff  <blp@gnu.org>
4683
4684         * lib/math.in.h: Define isfinite macro and prototypes for
4685         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
4686         implementations.
4687         * m4/math_h.m4: New substitutions for isfinite module.
4688         * lib/isfinite.c: New file.
4689         * m4/isfinite.m4: New file.
4690         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
4691         * modules/isfinite: New file.
4692         * modules/isfinite-tests: New file.
4693         * tests/tests-isfinite.c: New file.
4694         * doc/functions/isfinite.texi: Mention isfinite module.
4695         * MODULES.html.sh: Mention new module.
4696
4697 2007-10-27  Ben Pfaff  <blp@gnu.org>
4698
4699         Ralf Wildenhues reported that Tru64 4.0D declares the round
4700         functions but does not have definitions.
4701         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
4702         cannot be found in any library, set the output variable to
4703         "missing" instead of "".
4704         * m4/round.m4: Also use our substitute if we cannot find round in
4705         any library, even if it is declared.
4706         * m4/roundf.m4: Likewise for roundf.
4707         * m4/roundl.m4: Likewise for roundl.
4708         * lib/math.in.h: Undefine roundf, round, roundl before defining
4709         their replacements, to allow for hypothetical systems where these
4710         may be defined as macros but not available in libraries.
4711
4712 2007-10-27  Bruno Haible  <bruno@clisp.org>
4713
4714         * doc/gnulib.texi: Invoke @firstparagraphindent.
4715         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
4716         changes in gnulib.
4717         (Source changes): New section.
4718
4719 2007-10-26  Bruno Haible  <bruno@clisp.org>
4720
4721         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
4722         borrowed from autoconf.
4723
4724 2007-10-26  Bruno Haible  <bruno@clisp.org>
4725
4726         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
4727         strerror returned the empty string. Needed on HP-UX 11.00.
4728
4729 2007-10-24  Micah Cowan  <micah@cowan.name>
4730
4731         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
4732         * build-aux/bootstrap: Remove support for now-unnecessary option,
4733         --cvs-user, and envvars CVS_USER, CVS_RSH.
4734
4735 2007-10-24  Jim Meyering  <meyering@redhat.com>
4736
4737         Avoid diagnostics from sha1sum when there is no cached checksum.
4738         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
4739         if the po.s1 file hasn't been created yet.
4740
4741         * build-aux/bootstrap: Sync from coreutils:
4742         2007-10-24  Jim Meyering  <meyering@redhat.com>
4743         Get gnulib from the git repository, not from an obsolete cvs one.
4744         * build-aux/bootstrap: Suggestion from Micah Cowan.
4745         2007-10-04  Jim Meyering  <jim@meyering.net>
4746         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
4747         (update_po_files): Work also when there are no .po files in po/.
4748
4749 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
4750
4751         * README: Append ".git" to git and cg examples.
4752         Problem reported by Benoit Sigoure.
4753
4754 2007-10-23  Micah Cowan  <micah@cowan.name>
4755
4756         * users.txt: Add wget.
4757
4758 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4759
4760         Fix linking of some unistdio tests on FreeBSD.
4761         * modules/unistdio/u16-vsnprintf-tests
4762         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
4763         * modules/unistdio/u16-vsprintf-tests
4764         (test_u16_vsnprintf1_LDADD): Likewise.
4765         * modules/unistdio/u32-vsnprintf-tests
4766         (test_u32_vsnprintf1_LDADD): Likewise.
4767         * modules/unistdio/u32-vsprintf-tests
4768         (test_u32_vsprintf1_LDADD): Likewise.
4769         * modules/unistdio/u8-vsnprintf-tests
4770         (test_u8_vsnprintf1_LDADD): Likewise.
4771         * modules/unistdio/u8-vsprintf-tests
4772         (test_u8_vsprintf1_LDADD): Likewise.
4773         * modules/unistdio/ulc-vsnprintf-tests
4774         (test_ulc_vsnprintf1_LDADD): Likewise.
4775         * modules/unistdio/ulc-vsprintf-tests
4776         (test_ulc_vsprintf1_LDADD): Likewise.
4777
4778         Fix linking of some uniconv tests on FreeBSD.
4779         * modules/uniconv/u16-conv-from-enc-tests
4780         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
4781         * modules/uniconv/u16-conv-to-enc-tests
4782         (test_u16_conv_to_enc_LDADD): Likewise.
4783         * modules/uniconv/u16-strconv-from-enc-tests
4784         (test_u16_strconv_from_enc_LDADD): Likewise.
4785         * modules/uniconv/u16-strconv-to-enc-tests
4786         (test_u16_strconv_to_enc_LDADD): Likewise.
4787         * modules/uniconv/u32-conv-from-enc-tests
4788         (test_u32_conv_from_enc_LDADD): Likewise.
4789         * modules/uniconv/u32-conv-to-enc-tests
4790         (test_u32_conv_to_enc_LDADD): Likewise.
4791         * modules/uniconv/u32-strconv-from-enc-tests
4792         (test_u32_strconv_from_enc_LDADD): Likewise.
4793         * modules/uniconv/u32-strconv-to-enc-tests
4794         (test_u32_strconv_to_enc_LDADD): Likewise.
4795         * modules/uniconv/u8-conv-from-enc-tests
4796         (test_u8_conv_from_enc_LDADD): Likewise.
4797         * modules/uniconv/u8-conv-to-enc-tests
4798         (test_u8_conv_to_enc_LDADD): Likewise.
4799         * modules/uniconv/u8-strconv-from-enc-tests
4800         (test_u8_strconv_from_enc_LDADD): Likewise.
4801         * modules/uniconv/u8-strconv-to-enc-tests
4802         (test_u8_strconv_to_enc_LDADD): Likewise.
4803
4804 2007-10-22  Bruno Haible  <bruno@clisp.org>
4805
4806         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
4807         size.
4808
4809 2007-10-22  Eric Blake  <ebb9@byu.net>
4810
4811         Tweak x*printf documentation.
4812         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
4813         variable name and comments.
4814         Suggested by Bruno Haible.
4815
4816 2007-10-22  Bruno Haible  <bruno@clisp.org>
4817
4818         * lib/acl.c (copy_acl): Fix file name in comment.
4819
4820 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
4821
4822         Fix Tru64 problem with stdbool.h.
4823         * lib/stdbool.in.h (false, true):
4824         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
4825         Don't declare as an enum in this situation; it runs afoul of Tru64.
4826         Problem reported by Steven M. Schweda in
4827         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
4828
4829 2007-10-22  Eric Blake  <ebb9@byu.net>
4830
4831         Also wrap vf?printf.
4832         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
4833         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
4834         (xvprintf, xvfprintf): New functions.
4835
4836 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4837
4838         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
4839         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
4840
4841         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
4842         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
4843
4844 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
4845
4846         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
4847         by Bruno Haible.
4848
4849 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4850
4851         * lib/getloadavg.c
4852         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
4853         Undef `sys' after including sys/table.h, for Tru64 4.0D.
4854
4855         * tests/test-i-ring.c: Work for C89.
4856
4857 2007-10-22  Bruno Haible  <bruno@clisp.org>
4858
4859         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
4860         -1u, in preprocessor expression, so that we don't test for the bug
4861         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
4862         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
4863
4864 2007-10-22  Eric Blake  <ebb9@byu.net>
4865
4866         * tests/test-yesno.sh: Silence stderr during test.
4867
4868 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4869
4870         * modules/crypto/gc-camellia: New file.
4871
4872         * m4/gc-camellia.m4: New file.
4873
4874         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
4875
4876         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
4877
4878 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4879
4880         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
4881         --help to stdout.  Reported by sms@antinode.org (Steven
4882         M. Schweda).
4883
4884 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4885
4886         * users.txt: Fix link to libksba.
4887
4888 2007-10-21  Ben Pfaff  <blp@gnu.org>
4889
4890         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
4891         round.c roundf implementation that depends on floorf and ceilf to
4892         be tested unconditionally.
4893
4894 2007-10-21  Ben Pfaff  <blp@gnu.org>
4895
4896         * m4/check-libm-func.m4: Removed.
4897         * m4/check-math-lib.m4: New file.
4898         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
4899         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
4900         definition and lack of AC_LIBOBJ([roundf]).
4901         * m4/roundl.m4: Ditto, and similarly for roundl.
4902         * modules/round: Reference new m4 file.
4903         * modules/roundf: Ditto.
4904         * modules/roundl: Ditto.
4905         * tests/test-round2.c (main): Use ROUND instead of round.
4906         Bug report from Bruno Haible.
4907
4908 2007-10-21  Bruno Haible  <bruno@clisp.org>
4909
4910         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
4911         context.
4912
4913 2007-10-21  Bruno Haible  <bruno@clisp.org>
4914
4915         * tests/test-wcwidth.c (main): Allow negative result for some control
4916         characters.
4917
4918         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
4919         Needed on OSF/1 5.1.
4920
4921 2007-10-21  Bruno Haible  <bruno@clisp.org>
4922
4923         * tests/test-floorf1.c: Include isnanf.h.
4924         (main): Use isnanf() instead of isnan().
4925         * tests/test-ceilf1.c: Include isnanf.h.
4926         (main): Use isnanf() instead of isnan().
4927         * tests/test-truncf1.c: Include isnanf.h.
4928         (main): Use isnanf() instead of isnan().
4929         * tests/test-roundf1.c: Include isnanf.h.
4930         (main): Use isnanf() instead of isnan().
4931
4932 2007-10-21  Eric Blake  <ebb9@byu.net>
4933
4934         * users.txt: Update URL for m4.
4935
4936 2007-10-21  Bruno Haible  <bruno@clisp.org>
4937
4938         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
4939
4940 2007-10-21  Bruno Haible  <bruno@clisp.org>
4941
4942         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
4943         Git's management files if the CVS files are not present.
4944
4945 2007-10-20  Bruno Haible  <bruno@clisp.org>
4946
4947         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
4948         gcc-3.4.x.
4949
4950 2007-10-20  Ben Pfaff  <blp@gnu.org>
4951
4952         * lib/math.in.h: Declare round, roundf, roundl if we are providing
4953         implementations.
4954         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
4955         * lib/round.c: New file.
4956         * lib/roundf.c: New file.
4957         * lib/roundl.c: New file.
4958         * m4/round.m4: New file.
4959         * m4/roundf.m4: New file.
4960         * m4/roundl.m4: New file.
4961         * m4/check-libm-func-m4: New file.
4962         * modules/math: Replace round, roundf, roundl related @VARS@ in
4963         math.in.h.
4964         * modules/round: New file.
4965         * modules/round-tests: New file.
4966         * modules/roundf: New file.
4967         * modules/roundf-tests: New file.
4968         * modules/roundl: New file.
4969         * modules/roundl-tests: New file.
4970         * tests/test-round1.c: New file.
4971         * tests/test-round2.c: New file.
4972         * tests/test-roundf1.c: New file.
4973         * tests/test-roundf2.c: New file.
4974         * tests/test-roundl.c: New file.
4975         * doc/functions/round.texi: Mention round module.
4976         * doc/functions/roundf.texi: Mention roundf module.
4977         * doc/functions/roundl.texi: Mention roundl module.
4978         * MODULES.html.sh: Mention new modules.
4979         Thanks to Bruno Haible for suggestions.
4980
4981 2007-10-20  Jim Meyering  <meyering@redhat.com>
4982
4983         * lib/xprintf.c: Include <config.h> unconditionally.
4984
4985         Change xprintf's license to GPL.
4986         * modules/xprintf (License): s/LGPL/GPL/, since this module
4987         depends on modules (exit and exitfail) which are GPL.
4988         Suggestion from Bruno Haible.
4989
4990         xprintf fixes.
4991         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
4992         Use a clearer diagnostic.
4993         Patch from Bruno Haible.
4994
4995 2007-10-20  Bruno Haible  <bruno@clisp.org>
4996
4997         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
4998         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
4999         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5000
5001 2007-10-20  Bruno Haible  <bruno@clisp.org>
5002
5003         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
5004         precision in the comparison result > x - 1 or similar.
5005         * tests/test-ceilf2.c (correct_result_p): Likewise.
5006         * tests/test-truncf2.c (correct_result_p): Likewise.
5007         * tests/test-trunc2.c (correct_result_p): Likewise.
5008         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5009
5010 2007-10-20  Bruno Haible  <bruno@clisp.org>
5011
5012         * modules/ceil: New file.
5013         * m4/ceil.m4: New file.
5014         * doc/functions/ceil.texi: Mention the 'ceil' module.
5015
5016 2007-10-20  Bruno Haible  <bruno@clisp.org>
5017
5018         * modules/floor: New file.
5019         * m4/floor.m4: New file.
5020         * doc/functions/floor.texi: Mention the 'floor' module.
5021
5022 2007-10-20  Bruno Haible  <bruno@clisp.org>
5023
5024         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
5025         of %a.
5026         * modules/floorf-tests (Depends-on): Likewise.
5027         * modules/truncf-tests (Depends-on): Likewise.
5028         * modules/trunc-tests (Depends-on): Likewise.
5029         Reported by Ben Pfaff.
5030
5031 2007-10-19  Jim Meyering  <meyering@redhat.com>
5032
5033         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
5034         Don't bother testing specific errno values.  Just test ferror.
5035
5036         New module: xprintf
5037         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
5038
5039 2007-10-19  Bruno Haible  <bruno@clisp.org>
5040
5041         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
5042         syntax.
5043         * modules/javaexec (Makefile.am): Likewise.
5044         * modules/relocatable-prog (Makefile.am): Likewise.
5045         Suggested by Jim Meyering.
5046
5047 2007-10-18  Bruno Haible  <bruno@clisp.org>
5048
5049         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
5050         Reported by Jim Meyering.
5051
5052 2007-10-18  Eric Blake  <ebb9@byu.net>
5053
5054         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
5055
5056 2007-10-18  Bruno Haible  <bruno@clisp.org>
5057
5058         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
5059         the format string into writable memory. Needed in Fortify conditions.
5060
5061 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
5062             Bruno Haible  <bruno@clisp.org>
5063
5064         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
5065         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
5066         * modules/trim (Depends-on): Add mbchar.
5067         (configure.ac): Add gl_FUNC_MBRTOWC.
5068         (Makefile.am): Augment lib_SOURCES.
5069
5070 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
5071
5072         Modify glob.c to use fstatat and dirfd, to simplify it.
5073         Suggested by Eric Blake.
5074         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
5075         Don't include <stdbool.h>; not used.
5076         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
5077         (link_exists_p): Simplify implementation, since we can now assume
5078         dirfd and fstatat.
5079         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
5080
5081 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5082
5083         * gnulib-tool (func_get_dependencies): Fix sed script to
5084         match only tests.
5085
5086 2007-10-17  Bruno Haible  <bruno@clisp.org>
5087
5088         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
5089         allow locale names without encoding suffix.
5090         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
5091         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
5092
5093 2007-10-16  Bruno Haible  <bruno@clisp.org>
5094
5095         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
5096         * lib/getgroups.c (getgroups): Likewise.
5097         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
5098
5099 2007-10-16  Bruno Haible  <bruno@clisp.org>
5100
5101         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
5102         * modules/malloc-posix (License): Likewise.
5103         * modules/realloc-posix (License): Likewise.
5104         * modules/calloc-posix (License): Likewise.
5105         * modules/intprops (License): Change from GPL to LGPL, with
5106         Paul Eggert's approval.
5107
5108 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
5109
5110         Merge glibc changes into lib/glob.c.
5111
5112         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
5113         2007-10-15 04:59:03 UTC.  Here are the changes:
5114
5115         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
5116
5117         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
5118
5119         * lib/glob.c: Add some branch prediction throughout.
5120
5121         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
5122
5123         [BZ #5103]
5124         * lib/glob.c (glob): Recognize patterns starting \/.
5125
5126         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
5127
5128         [BZ #3996]
5129         * lib/glob.c (attribute_hidden): Define if not defined.
5130         (glob): Unescape dirname, filename or username when needed and not
5131         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
5132         is NULL.  Handle unescaped [ in pattern without closing ].
5133         Don't pass GLOB_CHECK down to recursive glob for directories.
5134         (__glob_pattern_type): New function.
5135         (__glob_pattern_p): Implement using __glob_pattern_type.
5136         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
5137         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
5138         Remove unreachable code.
5139
5140         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
5141
5142         * lib/glob.c (glob_in_dir): Add some comments and asserts to
5143         explain why there are no leaks.
5144
5145         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
5146
5147         [BZ #3253]
5148         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
5149         time, rather allocate increasingly bigger arrays of pointers, if
5150         possible with alloca, if too large with malloc.
5151
5152 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
5153
5154         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
5155         Problem reported by H.Merijn Brand in
5156         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
5157         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
5158         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5159
5160 2007-10-15  Bruno Haible  <bruno@clisp.org>
5161
5162         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
5163         with explicit rpl_ prefix.
5164         * lib/fopen.c (fopen): Likewise.
5165         * lib/freopen.c (freopen): Likewise.
5166         * lib/iconv.c (iconv): Likewise.
5167         * lib/iconv_close.c (iconv_close): Likewise.
5168
5169 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5170
5171         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
5172
5173 2007-10-15  Bruno Haible  <bruno@clisp.org>
5174
5175         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
5176         <stddef.h> instead of <stdlib.h> since we only need NULL.
5177         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5178
5179 2007-10-15  Bruno Haible  <bruno@clisp.org>
5180
5181         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
5182         Replace paragraph talking about LIBOBJS.
5183         Reported by Colin Watson <cjwatson@debian.org>.
5184
5185 2007-10-15  Bruno Haible  <bruno@clisp.org>
5186
5187         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
5188         <stdlib.h> before using NULL.
5189
5190 2007-10-15  Simon Josefsson  <simon@josefsson.org>
5191
5192         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
5193         Reported by Albert Chin <china@thewrittenword.com>.
5194
5195 2007-10-14  Bruno Haible  <bruno@clisp.org>
5196
5197         * modules/iconv_open-utf-tests: New file.
5198         * tests/test-iconv-utf.c: New file.
5199
5200         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
5201         * modules/iconv_open-utf: New file.
5202         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
5203         (iconv, iconv_close): New declarations.
5204         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
5205         be defined.
5206         (iconv_open): Add special handling of conversion between UTF-8 and
5207         UTF-{16,32}{BE,LE}.
5208         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
5209         * lib/iconv_close.c: New file.
5210         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
5211         gl_FUNC_ICONV_OPEN.
5212         (gl_FUNC_ICONV_OPEN): Use it.
5213         (gl_FUNC_ICONV_OPEN_UTF): New macro.
5214         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
5215         and REPLACE_ICONV_UTF.
5216         * modules/iconv_open (Depends-on): Add c-strcase.
5217         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
5218         ICONV_CONST.
5219         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
5220
5221 2007-10-13  Albert Chin  <china@thewrittenword.com>
5222             Bruno Haible  <bruno@clisp.org>
5223
5224         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
5225         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
5226
5227 2007-10-13  Bruno Haible  <bruno@clisp.org>
5228
5229         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
5230         defined, use the ISO C99 inline semantics.
5231         * lib/argp.h (ARGP_EI): Likewise.
5232
5233 2007-10-13  Bruno Haible  <bruno@clisp.org>
5234
5235         Handle 'inline' change in gcc 4.3.0.
5236         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
5237         argp_fmtstream_write, argp_fmtstream_set_lmargin,
5238         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
5239         argp_fmtstream_point): Disable 'extern' declaration if the function
5240         definition is going to be provided inline.
5241         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
5242         semantics, not the ISO C99 inline semantics.
5243         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
5244         'extern' declaration if the function definition is going to be provided
5245         inline.
5246         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
5247         the GNU C inline semantics, not the ISO C99 inline semantics. With
5248         GCC 4.2, avoid a warning.
5249
5250 2007-10-13  Bruno Haible  <bruno@clisp.org>
5251
5252         * lib/freading.h (freading): Enable the use of __freading for
5253         glibc >= 2.7.
5254         * lib/freading.c (freading): Likewise.
5255
5256 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
5257
5258         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
5259         "warning: C99 inline functions are not supported; using GNU89".
5260
5261 2007-10-12  Bruno Haible  <bruno@clisp.org>
5262
5263         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
5264         of 2.
5265         * tests/test-ceilf2.c: New file.
5266         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
5267
5268         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
5269         * modules/ceilf-tests: Update.
5270
5271 2007-10-12  Bruno Haible  <bruno@clisp.org>
5272
5273         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
5274         of 2.
5275         * tests/test-floorf2.c: New file.
5276         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
5277
5278         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
5279         * modules/floorf-tests: Update.
5280
5281 2007-10-12  Bruno Haible  <bruno@clisp.org>
5282
5283         * tests/test-trunc2.c: New file.
5284         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
5285
5286         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
5287         * modules/trunc-tests: Update.
5288
5289 2007-10-12  Bruno Haible  <bruno@clisp.org>
5290
5291         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
5292         of 2.
5293         * tests/test-truncf2.c: New file.
5294         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
5295
5296         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
5297         * modules/truncf-tests: Update.
5298
5299 2007-10-11  Eric Blake  <ebb9@byu.net>
5300
5301         Don't claim strerror is broken on Interix.
5302         * doc/functions/strerror.texi (strerror): Known broken systems are
5303         now Solaris 8, and not Interix.
5304         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
5305         Interix on cross-compile.
5306         Reported by Martin Koeppe in
5307         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
5308
5309 2007-10-11  Bruno Haible  <bruno@clisp.org>
5310
5311         * modules/i-ring-tests: New file.
5312         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
5313         instead of assert.
5314
5315 2007-10-11  Bruno Haible  <bruno@clisp.org>
5316
5317         * modules/filenamecat-tests: New file.
5318         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
5319         * lib/filenamecat.c: Remove test code.
5320
5321 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5322
5323         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
5324
5325         * lib/strerror.c: Include <string.h> always, to test interface,
5326         and to remove the need for the dummy.
5327         Include intprops.h to compute width instead of doing it ourselves
5328         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
5329         (strerror): Define it to return NULL if there's no system strerror.
5330         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
5331         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
5332         ancient pre-strerror Unix systems well any more.  Saying "unknown
5333         system error" is enough.
5334         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
5335         simpler strerror.c implementation.
5336         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
5337         Simplify the tests to reflect the simpler strerror implementation.
5338         * modules/strerror (Depends-on): Add intprops.
5339
5340 2007-10-09  Eric Blake  <ebb9@byu.net>
5341
5342         Silence test-fpending.
5343         * modules/fpending-tests (Files): Add wrapper script.
5344         * tests/test-fpending.sh: New file.
5345
5346 2007-10-09  Bruno Haible  <bruno@clisp.org>
5347
5348         * MODULES.html.sh (func_module): Don't create a hyperlink for
5349         function names like 'printf_frexp'.
5350         (Misc): Add crc, memxor.
5351         (Characteristics of floating types): New section.
5352         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
5353         isnanf-nolibm, signbit, trunc, truncf, truncl.
5354         (Enhancements for ISO C 99 functions): New subsection Input/output.
5355         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
5356         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
5357         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
5358         (Compatibility checks for POSIX:2001 functions): Add clock-time.
5359         (Enhancements for POSIX:2001 functions): Add chdir-long.
5360         (File system functions): Add areadlink, chdir-safer, read-file.
5361         Remove cycle-check.
5362         (File system as inode set): New section.
5363         (Date and time): Add gethrxtime.
5364         (Multithreading): Add openmp.
5365         (Internationalization functions): Add localename.
5366         (Unicode string functions): Add unistr/u*-mbsnlen.
5367         (Support for maintaining and releasing projects): Add git-version-gen.
5368         (Lone files): Remove directories.
5369
5370 2007-10-08  Ben Pfaff  <blp@gnu.org>
5371
5372         * lib/xmalloca.h: Fix typo in comment.
5373
5374 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
5375
5376         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
5377         when avoiding problems with integer overflow.  Use a portable test
5378         instead.
5379
5380 2007-10-08  Simon Josefsson  <simon@josefsson.org>
5381
5382         * modules/dummy (License): Change to LGPLv2+.
5383         * modules/float (License): Likewise
5384         * modules/realloc (License): Likewise
5385         * modules/stdlib (License): Likewise
5386
5387 2007-10-07  Bruno Haible  <bruno@clisp.org>
5388
5389         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
5390         * floor.c (TWO_MANT_DIG): Likewise.
5391         * ceil.c (TWO_MANT_DIG): Likewise.
5392         Reported by Ben Pfaff.
5393
5394 2007-10-07  Bruno Haible  <bruno@clisp.org>
5395
5396         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
5397         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
5398         * lib/frexp.c (FUNC): Likewise.
5399         * lib/printf-frexp.h (printf_frexp): Likewise.
5400         * lib/printf-frexpl.h (printf_frexpl): Likewise.
5401         * lib/printf-frexp.c (FUNC): Likewise.
5402         Suggested by Jim Meyering.
5403
5404 2007-10-07  Jim Meyering  <meyering@redhat.com>
5405
5406         Make xnanosleep's integer overflow test more robust.
5407         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
5408         so that gcc-4.3.0 doesn't optimize away this test for overflow.
5409
5410 2007-10-07  Bruno Haible  <bruno@clisp.org>
5411
5412         * NEWS: Mention the license change.
5413
5414         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
5415         abbreviations in the modules files.
5416
5417         Change copyright notice from GPLv2+ to GPLv3+.
5418         * README: Change copyright notice.
5419         * MODULES.html.sh: Likewise.
5420         * build-aux/bootstrap.conf: Likewise.
5421         * build-aux/config.libpath: Likewise.
5422         * build-aux/csharpcomp.sh.in: Likewise.
5423         * build-aux/csharpexec.sh.in: Likewise.
5424         * build-aux/install-reloc: Likewise.
5425         * build-aux/javacomp.sh.in: Likewise.
5426         * build-aux/javaexec.sh.in: Likewise.
5427         * build-aux/ldd.sh.in: Likewise.
5428         * build-aux/reloc-ldflags: Likewise.
5429         * build-aux/relocatable.sh.in: Likewise.
5430         * build-aux/x-to-1.in: Likewise.
5431         * check-module: Likewise.
5432         * config/srclistvars.sh: Likewise.
5433         * gnulib-tool: Likewise.
5434         * lib/acl-internal.h: Likewise.
5435         * lib/acl.c: Likewise.
5436         * lib/acl.h: Likewise.
5437         * lib/acl_entries.c: Likewise.
5438         * lib/areadlink-with-size.c: Likewise.
5439         * lib/areadlink.c: Likewise.
5440         * lib/areadlink.h: Likewise.
5441         * lib/argmatch.c: Likewise.
5442         * lib/argmatch.h: Likewise.
5443         * lib/argp-ba.c: Likewise.
5444         * lib/argp-eexst.c: Likewise.
5445         * lib/argp-fmtstream.c: Likewise.
5446         * lib/argp-fmtstream.h: Likewise.
5447         * lib/argp-fs-xinl.c: Likewise.
5448         * lib/argp-help.c: Likewise.
5449         * lib/argp-namefrob.h: Likewise.
5450         * lib/argp-parse.c: Likewise.
5451         * lib/argp-pin.c: Likewise.
5452         * lib/argp-pv.c: Likewise.
5453         * lib/argp-pvh.c: Likewise.
5454         * lib/argp-xinl.c: Likewise.
5455         * lib/argp.h: Likewise.
5456         * lib/at-func.c: Likewise.
5457         * lib/atanl.c: Likewise.
5458         * lib/backupfile.c: Likewise.
5459         * lib/backupfile.h: Likewise.
5460         * lib/basename.c: Likewise.
5461         * lib/binary-io.h: Likewise.
5462         * lib/byteswap.in.h: Likewise.
5463         * lib/c-stack.c: Likewise.
5464         * lib/c-stack.h: Likewise.
5465         * lib/c-strcasestr.c: Likewise.
5466         * lib/c-strcasestr.h: Likewise.
5467         * lib/c-strstr.c: Likewise.
5468         * lib/c-strstr.h: Likewise.
5469         * lib/c-strtod.c: Likewise.
5470         * lib/calloc.c: Likewise.
5471         * lib/canon-host.c: Likewise.
5472         * lib/canon-host.h: Likewise.
5473         * lib/canonicalize-lgpl.c: Likewise.
5474         * lib/canonicalize.c: Likewise.
5475         * lib/canonicalize.h: Likewise.
5476         * lib/ceil.c: Likewise.
5477         * lib/ceilf.c: Likewise.
5478         * lib/ceill.c: Likewise.
5479         * lib/chdir-long.c: Likewise.
5480         * lib/chdir-long.h: Likewise.
5481         * lib/chdir-safer.c: Likewise.
5482         * lib/chdir-safer.h: Likewise.
5483         * lib/chown.c: Likewise.
5484         * lib/classpath.c: Likewise.
5485         * lib/classpath.h: Likewise.
5486         * lib/clean-temp.c: Likewise.
5487         * lib/clean-temp.h: Likewise.
5488         * lib/cloexec.c: Likewise.
5489         * lib/close-stream.c: Likewise.
5490         * lib/closein.c: Likewise.
5491         * lib/closein.h: Likewise.
5492         * lib/closeout.c: Likewise.
5493         * lib/closeout.h: Likewise.
5494         * lib/concat-filename.c: Likewise.
5495         * lib/copy-file.c: Likewise.
5496         * lib/copy-file.h: Likewise.
5497         * lib/count-one-bits.h: Likewise.
5498         * lib/crc.c: Likewise.
5499         * lib/crc.h: Likewise.
5500         * lib/creat-safer.c: Likewise.
5501         * lib/csharpcomp.c: Likewise.
5502         * lib/csharpcomp.h: Likewise.
5503         * lib/csharpexec.c: Likewise.
5504         * lib/csharpexec.h: Likewise.
5505         * lib/cycle-check.c: Likewise.
5506         * lib/cycle-check.h: Likewise.
5507         * lib/diacrit.c: Likewise.
5508         * lib/diacrit.h: Likewise.
5509         * lib/diffseq.h: Likewise.
5510         * lib/dirchownmod.c: Likewise.
5511         * lib/dirent.in.h: Likewise.
5512         * lib/dirfd.c: Likewise.
5513         * lib/dirfd.h: Likewise.
5514         * lib/dirname.c: Likewise.
5515         * lib/dirname.h: Likewise.
5516         * lib/dummy.c: Likewise.
5517         * lib/dup-safer.c: Likewise.
5518         * lib/dup2.c: Likewise.
5519         * lib/eealloc.h: Likewise.
5520         * lib/error.c: Likewise.
5521         * lib/error.h: Likewise.
5522         * lib/euidaccess.c: Likewise.
5523         * lib/exclude.c: Likewise.
5524         * lib/exclude.h: Likewise.
5525         * lib/execute.c: Likewise.
5526         * lib/execute.h: Likewise.
5527         * lib/exitfail.c: Likewise.
5528         * lib/exitfail.h: Likewise.
5529         * lib/expl.c: Likewise.
5530         * lib/fatal-signal.c: Likewise.
5531         * lib/fatal-signal.h: Likewise.
5532         * lib/fbufmode.c: Likewise.
5533         * lib/fbufmode.h: Likewise.
5534         * lib/fchdir.c: Likewise.
5535         * lib/fchmodat.c: Likewise.
5536         * lib/fchownat.c: Likewise.
5537         * lib/fcntl--.h: Likewise.
5538         * lib/fcntl-safer.h: Likewise.
5539         * lib/fcntl.in.h: Likewise.
5540         * lib/fd-safer.c: Likewise.
5541         * lib/fflush.c: Likewise.
5542         * lib/file-has-acl.c: Likewise.
5543         * lib/file-set.c: Likewise.
5544         * lib/file-type.c: Likewise.
5545         * lib/file-type.h: Likewise.
5546         * lib/fileblocks.c: Likewise.
5547         * lib/filemode.c: Likewise.
5548         * lib/filemode.h: Likewise.
5549         * lib/filename.h: Likewise.
5550         * lib/filenamecat.c: Likewise.
5551         * lib/filenamecat.h: Likewise.
5552         * lib/findprog.c: Likewise.
5553         * lib/findprog.h: Likewise.
5554         * lib/float.in.h: Likewise.
5555         * lib/floor.c: Likewise.
5556         * lib/floorf.c: Likewise.
5557         * lib/floorl.c: Likewise.
5558         * lib/fopen-safer.c: Likewise.
5559         * lib/fopen.c: Likewise.
5560         * lib/fpending.c: Likewise.
5561         * lib/fpending.h: Likewise.
5562         * lib/fprintf.c: Likewise.
5563         * lib/fprintftime.h: Likewise.
5564         * lib/fpucw.h: Likewise.
5565         * lib/fpurge.c: Likewise.
5566         * lib/fpurge.h: Likewise.
5567         * lib/freadable.c: Likewise.
5568         * lib/freadable.h: Likewise.
5569         * lib/freadahead.c: Likewise.
5570         * lib/freadahead.h: Likewise.
5571         * lib/freading.c: Likewise.
5572         * lib/freading.h: Likewise.
5573         * lib/free.c: Likewise.
5574         * lib/freopen.c: Likewise.
5575         * lib/frexp.c: Likewise.
5576         * lib/frexpl.c: Likewise.
5577         * lib/fseek.c: Likewise.
5578         * lib/fseterr.c: Likewise.
5579         * lib/fseterr.h: Likewise.
5580         * lib/fstatat.c: Likewise.
5581         * lib/fstrcmp.c: Likewise.
5582         * lib/fstrcmp.h: Likewise.
5583         * lib/fsusage.c: Likewise.
5584         * lib/fsusage.h: Likewise.
5585         * lib/ftell.c: Likewise.
5586         * lib/ftello.c: Likewise.
5587         * lib/fts-cycle.c: Likewise.
5588         * lib/fts.c: Likewise.
5589         * lib/fts_.h: Likewise.
5590         * lib/full-read.c: Likewise.
5591         * lib/full-read.h: Likewise.
5592         * lib/full-write.c: Likewise.
5593         * lib/full-write.h: Likewise.
5594         * lib/fwritable.c: Likewise.
5595         * lib/fwritable.h: Likewise.
5596         * lib/fwriteerror.c: Likewise.
5597         * lib/fwriteerror.h: Likewise.
5598         * lib/fwriting.c: Likewise.
5599         * lib/fwriting.h: Likewise.
5600         * lib/gcd.c: Likewise.
5601         * lib/gcd.h: Likewise.
5602         * lib/getcwd.c: Likewise.
5603         * lib/getdate.h: Likewise.
5604         * lib/getdate.y: Likewise.
5605         * lib/getdomainname.c: Likewise.
5606         * lib/getdomainname.h: Likewise.
5607         * lib/getgroups.c: Likewise.
5608         * lib/gethostname.c: Likewise.
5609         * lib/gethrxtime.c: Likewise.
5610         * lib/gethrxtime.h: Likewise.
5611         * lib/getloadavg.c: Likewise.
5612         * lib/getndelim2.c: Likewise.
5613         * lib/getndelim2.h: Likewise.
5614         * lib/getnline.c: Likewise.
5615         * lib/getnline.h: Likewise.
5616         * lib/getopt.c: Likewise.
5617         * lib/getopt.in.h: Likewise.
5618         * lib/getopt1.c: Likewise.
5619         * lib/getopt_int.h: Likewise.
5620         * lib/getpagesize.h: Likewise.
5621         * lib/getsubopt.c: Likewise.
5622         * lib/gettime.c: Likewise.
5623         * lib/getugroups.c: Likewise.
5624         * lib/getugroups.h: Likewise.
5625         * lib/getusershell.c: Likewise.
5626         * lib/gl_anyavltree_list1.h: Likewise.
5627         * lib/gl_anyavltree_list2.h: Likewise.
5628         * lib/gl_anyhash_list1.h: Likewise.
5629         * lib/gl_anyhash_list2.h: Likewise.
5630         * lib/gl_anylinked_list1.h: Likewise.
5631         * lib/gl_anylinked_list2.h: Likewise.
5632         * lib/gl_anyrbtree_list1.h: Likewise.
5633         * lib/gl_anyrbtree_list2.h: Likewise.
5634         * lib/gl_anytree_list1.h: Likewise.
5635         * lib/gl_anytree_list2.h: Likewise.
5636         * lib/gl_anytree_oset.h: Likewise.
5637         * lib/gl_anytreehash_list1.h: Likewise.
5638         * lib/gl_anytreehash_list2.h: Likewise.
5639         * lib/gl_array_list.c: Likewise.
5640         * lib/gl_array_list.h: Likewise.
5641         * lib/gl_array_oset.c: Likewise.
5642         * lib/gl_array_oset.h: Likewise.
5643         * lib/gl_avltree_list.c: Likewise.
5644         * lib/gl_avltree_list.h: Likewise.
5645         * lib/gl_avltree_oset.c: Likewise.
5646         * lib/gl_avltree_oset.h: Likewise.
5647         * lib/gl_avltreehash_list.c: Likewise.
5648         * lib/gl_avltreehash_list.h: Likewise.
5649         * lib/gl_carray_list.c: Likewise.
5650         * lib/gl_carray_list.h: Likewise.
5651         * lib/gl_linked_list.c: Likewise.
5652         * lib/gl_linked_list.h: Likewise.
5653         * lib/gl_linkedhash_list.c: Likewise.
5654         * lib/gl_linkedhash_list.h: Likewise.
5655         * lib/gl_list.c: Likewise.
5656         * lib/gl_list.h: Likewise.
5657         * lib/gl_oset.c: Likewise.
5658         * lib/gl_oset.h: Likewise.
5659         * lib/gl_rbtree_list.c: Likewise.
5660         * lib/gl_rbtree_list.h: Likewise.
5661         * lib/gl_rbtree_oset.c: Likewise.
5662         * lib/gl_rbtree_oset.h: Likewise.
5663         * lib/gl_rbtreehash_list.c: Likewise.
5664         * lib/gl_rbtreehash_list.h: Likewise.
5665         * lib/gl_sublist.c: Likewise.
5666         * lib/gl_sublist.h: Likewise.
5667         * lib/group-member.c: Likewise.
5668         * lib/group-member.h: Likewise.
5669         * lib/hard-locale.c: Likewise.
5670         * lib/hard-locale.h: Likewise.
5671         * lib/hash-pjw.c: Likewise.
5672         * lib/hash-pjw.h: Likewise.
5673         * lib/hash-triple.c: Likewise.
5674         * lib/hash.c: Likewise.
5675         * lib/hash.h: Likewise.
5676         * lib/human.c: Likewise.
5677         * lib/human.h: Likewise.
5678         * lib/i-ring.c: Likewise.
5679         * lib/i-ring.h: Likewise.
5680         * lib/idcache.c: Likewise.
5681         * lib/imaxabs.c: Likewise.
5682         * lib/imaxdiv.c: Likewise.
5683         * lib/inet_pton.c: Likewise.
5684         * lib/inet_pton.h: Likewise.
5685         * lib/intprops.h: Likewise.
5686         * lib/inttostr.c: Likewise.
5687         * lib/inttostr.h: Likewise.
5688         * lib/inttypes.in.h: Likewise.
5689         * lib/isapipe.c: Likewise.
5690         * lib/isdir.c: Likewise.
5691         * lib/isnan.c: Likewise.
5692         * lib/isnan.h: Likewise.
5693         * lib/isnanf.c: Likewise.
5694         * lib/isnanf.h: Likewise.
5695         * lib/isnanl-nolibm.h: Likewise.
5696         * lib/isnanl.c: Likewise.
5697         * lib/isnanl.h: Likewise.
5698         * lib/javacomp.c: Likewise.
5699         * lib/javacomp.h: Likewise.
5700         * lib/javaexec.c: Likewise.
5701         * lib/javaexec.h: Likewise.
5702         * lib/javaversion.c: Likewise.
5703         * lib/javaversion.h: Likewise.
5704         * lib/javaversion.java: Likewise.
5705         * lib/lbrkprop.h: Likewise.
5706         * lib/lchmod.h: Likewise.
5707         * lib/lchown.c: Likewise.
5708         * lib/ldexpl.c: Likewise.
5709         * lib/linebreak.c: Likewise.
5710         * lib/linebreak.h: Likewise.
5711         * lib/linebuffer.c: Likewise.
5712         * lib/linebuffer.h: Likewise.
5713         * lib/locale.in.h: Likewise.
5714         * lib/logl.c: Likewise.
5715         * lib/long-options.c: Likewise.
5716         * lib/long-options.h: Likewise.
5717         * lib/lstat.c: Likewise.
5718         * lib/lstat.h: Likewise.
5719         * lib/math.in.h: Likewise.
5720         * lib/mbchar.c: Likewise.
5721         * lib/mbchar.h: Likewise.
5722         * lib/mbfile.h: Likewise.
5723         * lib/mbiter.h: Likewise.
5724         * lib/mbscasecmp.c: Likewise.
5725         * lib/mbscasestr.c: Likewise.
5726         * lib/mbschr.c: Likewise.
5727         * lib/mbscspn.c: Likewise.
5728         * lib/mbslen.c: Likewise.
5729         * lib/mbsncasecmp.c: Likewise.
5730         * lib/mbsnlen.c: Likewise.
5731         * lib/mbspbrk.c: Likewise.
5732         * lib/mbspcasecmp.c: Likewise.
5733         * lib/mbsrchr.c: Likewise.
5734         * lib/mbssep.c: Likewise.
5735         * lib/mbsspn.c: Likewise.
5736         * lib/mbsstr.c: Likewise.
5737         * lib/mbstok_r.c: Likewise.
5738         * lib/mbswidth.c: Likewise.
5739         * lib/mbswidth.h: Likewise.
5740         * lib/mbuiter.h: Likewise.
5741         * lib/memcasecmp.c: Likewise.
5742         * lib/memcasecmp.h: Likewise.
5743         * lib/memchr.c: Likewise.
5744         * lib/memcmp.c: Likewise.
5745         * lib/memcoll.c: Likewise.
5746         * lib/memcoll.h: Likewise.
5747         * lib/memcpy.c: Likewise.
5748         * lib/memrchr.c: Likewise.
5749         * lib/mkancesdirs.c: Likewise.
5750         * lib/mkdir-p.c: Likewise.
5751         * lib/mkdir-p.h: Likewise.
5752         * lib/mkdir.c: Likewise.
5753         * lib/mkdirat.c: Likewise.
5754         * lib/mkdtemp.c: Likewise.
5755         * lib/mkstemp-safer.c: Likewise.
5756         * lib/mkstemp.c: Likewise.
5757         * lib/modechange.c: Likewise.
5758         * lib/modechange.h: Likewise.
5759         * lib/mountlist.c: Likewise.
5760         * lib/mountlist.h: Likewise.
5761         * lib/mpsort.c: Likewise.
5762         * lib/nanosleep.c: Likewise.
5763         * lib/obstack.c: Likewise.
5764         * lib/obstack.h: Likewise.
5765         * lib/open-safer.c: Likewise.
5766         * lib/open.c: Likewise.
5767         * lib/openat-die.c: Likewise.
5768         * lib/openat-priv.h: Likewise.
5769         * lib/openat-proc.c: Likewise.
5770         * lib/openat.c: Likewise.
5771         * lib/openat.h: Likewise.
5772         * lib/pagealign_alloc.c: Likewise.
5773         * lib/pagealign_alloc.h: Likewise.
5774         * lib/physmem.c: Likewise.
5775         * lib/physmem.h: Likewise.
5776         * lib/pipe-safer.c: Likewise.
5777         * lib/pipe.c: Likewise.
5778         * lib/pipe.h: Likewise.
5779         * lib/posixtm.c: Likewise.
5780         * lib/posixtm.h: Likewise.
5781         * lib/posixver.c: Likewise.
5782         * lib/printf-frexp.c: Likewise.
5783         * lib/printf-frexp.h: Likewise.
5784         * lib/printf-frexpl.c: Likewise.
5785         * lib/printf-frexpl.h: Likewise.
5786         * lib/printf.c: Likewise.
5787         * lib/progname.c: Likewise.
5788         * lib/progname.h: Likewise.
5789         * lib/progreloc.c: Likewise.
5790         * lib/putenv.c: Likewise.
5791         * lib/quote.c: Likewise.
5792         * lib/quote.h: Likewise.
5793         * lib/quotearg.c: Likewise.
5794         * lib/quotearg.h: Likewise.
5795         * lib/raise.c: Likewise.
5796         * lib/readline.c: Likewise.
5797         * lib/readline.h: Likewise.
5798         * lib/readlink.c: Likewise.
5799         * lib/readtokens.c: Likewise.
5800         * lib/readtokens.h: Likewise.
5801         * lib/readtokens0.c: Likewise.
5802         * lib/readtokens0.h: Likewise.
5803         * lib/readutmp.c: Likewise.
5804         * lib/readutmp.h: Likewise.
5805         * lib/realloc.c: Likewise.
5806         * lib/relocwrapper.c: Likewise.
5807         * lib/rename-dest-slash.c: Likewise.
5808         * lib/rename.c: Likewise.
5809         * lib/rmdir.c: Likewise.
5810         * lib/rpmatch.c: Likewise.
5811         * lib/safe-read.c: Likewise.
5812         * lib/safe-read.h: Likewise.
5813         * lib/safe-write.c: Likewise.
5814         * lib/safe-write.h: Likewise.
5815         * lib/same-inode.h: Likewise.
5816         * lib/same.c: Likewise.
5817         * lib/same.h: Likewise.
5818         * lib/save-cwd.c: Likewise.
5819         * lib/save-cwd.h: Likewise.
5820         * lib/savedir.c: Likewise.
5821         * lib/savedir.h: Likewise.
5822         * lib/savewd.c: Likewise.
5823         * lib/savewd.h: Likewise.
5824         * lib/search.in.h: Likewise.
5825         * lib/setenv.c: Likewise.
5826         * lib/setenv.h: Likewise.
5827         * lib/settime.c: Likewise.
5828         * lib/sh-quote.c: Likewise.
5829         * lib/sh-quote.h: Likewise.
5830         * lib/sig2str.c: Likewise.
5831         * lib/sig2str.h: Likewise.
5832         * lib/signal.in.h: Likewise.
5833         * lib/signbitd.c: Likewise.
5834         * lib/signbitf.c: Likewise.
5835         * lib/signbitl.c: Likewise.
5836         * lib/sigprocmask.c: Likewise.
5837         * lib/sincosl.c: Likewise.
5838         * lib/sleep.c: Likewise.
5839         * lib/sprintf.c: Likewise.
5840         * lib/sqrtl.c: Likewise.
5841         * lib/stat-time.h: Likewise.
5842         * lib/stdio--.h: Likewise.
5843         * lib/stdio-safer.h: Likewise.
5844         * lib/stdlib--.h: Likewise.
5845         * lib/stdlib-safer.h: Likewise.
5846         * lib/stdlib.in.h: Likewise.
5847         * lib/stpcpy.c: Likewise.
5848         * lib/stpncpy.c: Likewise.
5849         * lib/strchrnul.c: Likewise.
5850         * lib/strcspn.c: Likewise.
5851         * lib/strerror.c: Likewise.
5852         * lib/strftime.c: Likewise.
5853         * lib/strftime.h: Likewise.
5854         * lib/striconveh.c: Likewise.
5855         * lib/striconveh.h: Likewise.
5856         * lib/striconveha.c: Likewise.
5857         * lib/striconveha.h: Likewise.
5858         * lib/stripslash.c: Likewise.
5859         * lib/strnlen1.c: Likewise.
5860         * lib/strnlen1.h: Likewise.
5861         * lib/strtod.c: Likewise.
5862         * lib/strtoimax.c: Likewise.
5863         * lib/strtok_r.c: Likewise.
5864         * lib/strtol.c: Likewise.
5865         * lib/strtoll.c: Likewise.
5866         * lib/strtoul.c: Likewise.
5867         * lib/strtoull.c: Likewise.
5868         * lib/sysexits.in.h: Likewise.
5869         * lib/tempname.c: Likewise.
5870         * lib/tempname.h: Likewise.
5871         * lib/timespec.h: Likewise.
5872         * lib/tls.c: Likewise.
5873         * lib/tls.h: Likewise.
5874         * lib/tmpdir.c: Likewise.
5875         * lib/tmpdir.h: Likewise.
5876         * lib/tmpfile-safer.c: Likewise.
5877         * lib/tmpfile.c: Likewise.
5878         * lib/trigl.c: Likewise.
5879         * lib/trigl.h: Likewise.
5880         * lib/trim.c: Likewise.
5881         * lib/trim.h: Likewise.
5882         * lib/trunc.c: Likewise.
5883         * lib/truncf.c: Likewise.
5884         * lib/truncl.c: Likewise.
5885         * lib/tsearch.c: Likewise.
5886         * lib/unicodeio.c: Likewise.
5887         * lib/unicodeio.h: Likewise.
5888         * lib/unistd--.h: Likewise.
5889         * lib/unistd-safer.h: Likewise.
5890         * lib/unistdio/ulc-fprintf.c: Likewise.
5891         * lib/unistdio/ulc-vfprintf.c: Likewise.
5892         * lib/unlinkdir.c: Likewise.
5893         * lib/unlinkdir.h: Likewise.
5894         * lib/unlocked-io.h: Likewise.
5895         * lib/unsetenv.c: Likewise.
5896         * lib/userspec.c: Likewise.
5897         * lib/utime.c: Likewise.
5898         * lib/utimecmp.c: Likewise.
5899         * lib/utimecmp.h: Likewise.
5900         * lib/utimens.c: Likewise.
5901         * lib/verify.h: Likewise.
5902         * lib/verror.c: Likewise.
5903         * lib/verror.h: Likewise.
5904         * lib/version-etc-fsf.c: Likewise.
5905         * lib/version-etc.c: Likewise.
5906         * lib/version-etc.h: Likewise.
5907         * lib/vfprintf.c: Likewise.
5908         * lib/vprintf.c: Likewise.
5909         * lib/vsprintf.c: Likewise.
5910         * lib/w32spawn.h: Likewise.
5911         * lib/wait-process.c: Likewise.
5912         * lib/wait-process.h: Likewise.
5913         * lib/wcwidth.c: Likewise.
5914         * lib/write-any-file.c: Likewise.
5915         * lib/xalloc-die.c: Likewise.
5916         * lib/xalloc.h: Likewise.
5917         * lib/xasprintf.c: Likewise.
5918         * lib/xgetcwd.c: Likewise.
5919         * lib/xgetcwd.h: Likewise.
5920         * lib/xgetdomainname.c: Likewise.
5921         * lib/xgetdomainname.h: Likewise.
5922         * lib/xgethostname.c: Likewise.
5923         * lib/xmalloc.c: Likewise.
5924         * lib/xmalloca.c: Likewise.
5925         * lib/xmalloca.h: Likewise.
5926         * lib/xmemcoll.c: Likewise.
5927         * lib/xnanosleep.c: Likewise.
5928         * lib/xreadlink.c: Likewise.
5929         * lib/xreadlink.h: Likewise.
5930         * lib/xsetenv.c: Likewise.
5931         * lib/xsetenv.h: Likewise.
5932         * lib/xstriconv.c: Likewise.
5933         * lib/xstriconv.h: Likewise.
5934         * lib/xstrndup.c: Likewise.
5935         * lib/xstrndup.h: Likewise.
5936         * lib/xstrtod.c: Likewise.
5937         * lib/xstrtod.h: Likewise.
5938         * lib/xstrtol-error.c: Likewise.
5939         * lib/xstrtol.c: Likewise.
5940         * lib/xstrtol.h: Likewise.
5941         * lib/xtime.h: Likewise.
5942         * lib/xvasprintf.c: Likewise.
5943         * lib/xvasprintf.h: Likewise.
5944         * lib/yesno.c: Likewise.
5945         * lib/yesno.h: Likewise.
5946         * posix-modules: Likewise.
5947         * tests/test-alloca-opt.c: Likewise.
5948         * tests/test-arcfour.c: Likewise.
5949         * tests/test-arctwo.c: Likewise.
5950         * tests/test-argmatch.c: Likewise.
5951         * tests/test-argp-2.sh: Likewise.
5952         * tests/test-argp.c: Likewise.
5953         * tests/test-arpa_inet.c: Likewise.
5954         * tests/test-array_list.c: Likewise.
5955         * tests/test-array_oset.c: Likewise.
5956         * tests/test-atexit.c: Likewise.
5957         * tests/test-avltree_list.c: Likewise.
5958         * tests/test-avltree_oset.c: Likewise.
5959         * tests/test-avltreehash_list.c: Likewise.
5960         * tests/test-base64.c: Likewise.
5961         * tests/test-binary-io.c: Likewise.
5962         * tests/test-byteswap.c: Likewise.
5963         * tests/test-c-ctype.c: Likewise.
5964         * tests/test-c-strcasecmp.c: Likewise.
5965         * tests/test-c-strcasestr.c: Likewise.
5966         * tests/test-c-strncasecmp.c: Likewise.
5967         * tests/test-c-strstr.c: Likewise.
5968         * tests/test-canonicalize-lgpl.c: Likewise.
5969         * tests/test-canonicalize.c: Likewise.
5970         * tests/test-carray_list.c: Likewise.
5971         * tests/test-ceilf.c: Likewise.
5972         * tests/test-ceill.c: Likewise.
5973         * tests/test-count-one-bits.c: Likewise.
5974         * tests/test-crc.c: Likewise.
5975         * tests/test-dirname.c: Likewise.
5976         * tests/test-fbufmode.c: Likewise.
5977         * tests/test-fcntl.c: Likewise.
5978         * tests/test-fflush.c: Likewise.
5979         * tests/test-floorf.c: Likewise.
5980         * tests/test-floorl.c: Likewise.
5981         * tests/test-fopen.c: Likewise.
5982         * tests/test-fprintf-posix.c: Likewise.
5983         * tests/test-fprintf-posix.h: Likewise.
5984         * tests/test-fpurge.c: Likewise.
5985         * tests/test-freadable.c: Likewise.
5986         * tests/test-freadahead.c: Likewise.
5987         * tests/test-freading.c: Likewise.
5988         * tests/test-freopen.c: Likewise.
5989         * tests/test-frexp.c: Likewise.
5990         * tests/test-frexpl.c: Likewise.
5991         * tests/test-fseek.c: Likewise.
5992         * tests/test-fseeko.c: Likewise.
5993         * tests/test-fseterr.c: Likewise.
5994         * tests/test-fstrcmp.c: Likewise.
5995         * tests/test-ftell.c: Likewise.
5996         * tests/test-ftello.c: Likewise.
5997         * tests/test-fwritable.c: Likewise.
5998         * tests/test-fwriting.c: Likewise.
5999         * tests/test-getaddrinfo.c: Likewise.
6000         * tests/test-getpass.c: Likewise.
6001         * tests/test-gettimeofday.c: Likewise.
6002         * tests/test-hmac-md5.c: Likewise.
6003         * tests/test-hmac-sha1.c: Likewise.
6004         * tests/test-iconv.c: Likewise.
6005         * tests/test-iconvme.c: Likewise.
6006         * tests/test-inttypes.c: Likewise.
6007         * tests/test-isnan.c: Likewise.
6008         * tests/test-isnanf.c: Likewise.
6009         * tests/test-isnanl-nolibm.c: Likewise.
6010         * tests/test-isnanl.c: Likewise.
6011         * tests/test-isnanl.h: Likewise.
6012         * tests/test-ldexpl.c: Likewise.
6013         * tests/test-linked_list.c: Likewise.
6014         * tests/test-linkedhash_list.c: Likewise.
6015         * tests/test-locale.c: Likewise.
6016         * tests/test-localename.c: Likewise.
6017         * tests/test-lock.c: Likewise.
6018         * tests/test-lseek.c: Likewise.
6019         * tests/test-malloca.c: Likewise.
6020         * tests/test-math.c: Likewise.
6021         * tests/test-mbscasecmp.c: Likewise.
6022         * tests/test-mbscasestr1.c: Likewise.
6023         * tests/test-mbscasestr2.c: Likewise.
6024         * tests/test-mbscasestr3.c: Likewise.
6025         * tests/test-mbscasestr4.c: Likewise.
6026         * tests/test-mbschr.c: Likewise.
6027         * tests/test-mbscspn.c: Likewise.
6028         * tests/test-mbsncasecmp.c: Likewise.
6029         * tests/test-mbspbrk.c: Likewise.
6030         * tests/test-mbspcasecmp.c: Likewise.
6031         * tests/test-mbsrchr.c: Likewise.
6032         * tests/test-mbsspn.c: Likewise.
6033         * tests/test-mbsstr1.c: Likewise.
6034         * tests/test-mbsstr2.c: Likewise.
6035         * tests/test-mbsstr3.c: Likewise.
6036         * tests/test-md5.c: Likewise.
6037         * tests/test-memmem.c: Likewise.
6038         * tests/test-netinet_in.c: Likewise.
6039         * tests/test-open.c: Likewise.
6040         * tests/test-printf-frexp.c: Likewise.
6041         * tests/test-printf-frexpl.c: Likewise.
6042         * tests/test-printf-posix.c: Likewise.
6043         * tests/test-printf-posix.h: Likewise.
6044         * tests/test-rbtree_list.c: Likewise.
6045         * tests/test-rbtree_oset.c: Likewise.
6046         * tests/test-rbtreehash_list.c: Likewise.
6047         * tests/test-read-file.c: Likewise.
6048         * tests/test-rijndael.c: Likewise.
6049         * tests/test-search.c: Likewise.
6050         * tests/test-signbit.c: Likewise.
6051         * tests/test-sleep.c: Likewise.
6052         * tests/test-snprintf-posix.c: Likewise.
6053         * tests/test-snprintf-posix.h: Likewise.
6054         * tests/test-snprintf.c: Likewise.
6055         * tests/test-sprintf-posix.c: Likewise.
6056         * tests/test-sprintf-posix.h: Likewise.
6057         * tests/test-stat-time.c: Likewise.
6058         * tests/test-stdbool.c: Likewise.
6059         * tests/test-stdint.c: Likewise.
6060         * tests/test-stdio.c: Likewise.
6061         * tests/test-stdlib.c: Likewise.
6062         * tests/test-stpncpy.c: Likewise.
6063         * tests/test-strcasestr.c: Likewise.
6064         * tests/test-striconv.c: Likewise.
6065         * tests/test-striconveh.c: Likewise.
6066         * tests/test-striconveha.c: Likewise.
6067         * tests/test-string.c: Likewise.
6068         * tests/test-sys_select.c: Likewise.
6069         * tests/test-sys_socket.c: Likewise.
6070         * tests/test-sys_stat.c: Likewise.
6071         * tests/test-sys_time.c: Likewise.
6072         * tests/test-sysexits.c: Likewise.
6073         * tests/test-time.c: Likewise.
6074         * tests/test-tls.c: Likewise.
6075         * tests/test-trunc.c: Likewise.
6076         * tests/test-truncf.c: Likewise.
6077         * tests/test-truncl.c: Likewise.
6078         * tests/test-unistd.c: Likewise.
6079         * tests/test-vasnprintf-posix.c: Likewise.
6080         * tests/test-vasnprintf-posix2.c: Likewise.
6081         * tests/test-vasnprintf.c: Likewise.
6082         * tests/test-vasprintf-posix.c: Likewise.
6083         * tests/test-vasprintf.c: Likewise.
6084         * tests/test-verify.c: Likewise.
6085         * tests/test-vfprintf-posix.c: Likewise.
6086         * tests/test-vprintf-posix.c: Likewise.
6087         * tests/test-vsnprintf-posix.c: Likewise.
6088         * tests/test-vsnprintf.c: Likewise.
6089         * tests/test-vsprintf-posix.c: Likewise.
6090         * tests/test-wchar.c: Likewise.
6091         * tests/test-wctype.c: Likewise.
6092         * tests/test-wcwidth.c: Likewise.
6093         * tests/test-xstrtol.c: Likewise.
6094         * tests/test-xvasprintf.c: Likewise.
6095         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
6096         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
6097         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
6098         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
6099         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
6100         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
6101         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
6102         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
6103         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
6104         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
6105         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
6106         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
6107         * tests/uniname/test-uninames.c: Likewise.
6108         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
6109         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
6110         * tests/unistdio/test-u16-printf1.h: Likewise.
6111         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
6112         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
6113         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
6114         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
6115         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
6116         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
6117         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
6118         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
6119         * tests/unistdio/test-u32-printf1.h: Likewise.
6120         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
6121         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
6122         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
6123         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
6124         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
6125         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
6126         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
6127         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
6128         * tests/unistdio/test-u8-printf1.h: Likewise.
6129         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
6130         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
6131         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
6132         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
6133         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
6134         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
6135         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
6136         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
6137         * tests/unistdio/test-ulc-printf1.h: Likewise.
6138         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
6139         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
6140         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
6141         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
6142         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
6143         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
6144         * tests/uniwidth/test-u16-strwidth.c: Likewise.
6145         * tests/uniwidth/test-u16-width.c: Likewise.
6146         * tests/uniwidth/test-u32-strwidth.c: Likewise.
6147         * tests/uniwidth/test-u32-width.c: Likewise.
6148         * tests/uniwidth/test-u8-strwidth.c: Likewise.
6149         * tests/uniwidth/test-u8-width.c: Likewise.
6150         * tests/uniwidth/test-uc_width.c: Likewise.
6151         * config/srclist-update: Likewise.
6152         (fixlicense): Update to GPLv3+.
6153
6154         Change copyright notice from LGPLv2.1+ to LGPLv3+.
6155         * tests/test-tsearch.c: Change copyright notice.
6156
6157         Change copyright notice from LGPLv2.0+ to LGPLv3+.
6158         * lib/c-strcaseeq.h: Change copyright notice.
6159         * lib/streq.h: Likewise.
6160         * lib/uniconv.h: Likewise.
6161         * lib/uniconv/u-conv-from-enc.h: Likewise.
6162         * lib/uniconv/u-conv-to-enc.h: Likewise.
6163         * lib/uniconv/u-strconv-from-enc.h: Likewise.
6164         * lib/uniconv/u-strconv-to-enc.h: Likewise.
6165         * lib/uniconv/u16-conv-from-enc.c: Likewise.
6166         * lib/uniconv/u16-conv-to-enc.c: Likewise.
6167         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
6168         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
6169         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
6170         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
6171         * lib/uniconv/u32-conv-from-enc.c: Likewise.
6172         * lib/uniconv/u32-conv-to-enc.c: Likewise.
6173         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
6174         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
6175         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
6176         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
6177         * lib/uniconv/u8-conv-from-enc.c: Likewise.
6178         * lib/uniconv/u8-conv-to-enc.c: Likewise.
6179         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
6180         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
6181         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
6182         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
6183         * lib/uniname.h: Likewise.
6184         * lib/uniname/uniname.c: Likewise.
6185         * lib/unistdio.h: Likewise.
6186         * lib/unistdio/u-asnprintf.h: Likewise.
6187         * lib/unistdio/u-asprintf.h: Likewise.
6188         * lib/unistdio/u-printf-args.c: Likewise.
6189         * lib/unistdio/u-printf-args.h: Likewise.
6190         * lib/unistdio/u-printf-parse.h: Likewise.
6191         * lib/unistdio/u-snprintf.h: Likewise.
6192         * lib/unistdio/u-sprintf.h: Likewise.
6193         * lib/unistdio/u-vasprintf.h: Likewise.
6194         * lib/unistdio/u-vsnprintf.h: Likewise.
6195         * lib/unistdio/u-vsprintf.h: Likewise.
6196         * lib/unistdio/u16-asnprintf.c: Likewise.
6197         * lib/unistdio/u16-asprintf.c: Likewise.
6198         * lib/unistdio/u16-printf-parse.c: Likewise.
6199         * lib/unistdio/u16-snprintf.c: Likewise.
6200         * lib/unistdio/u16-sprintf.c: Likewise.
6201         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
6202         * lib/unistdio/u16-u16-asprintf.c: Likewise.
6203         * lib/unistdio/u16-u16-snprintf.c: Likewise.
6204         * lib/unistdio/u16-u16-sprintf.c: Likewise.
6205         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
6206         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
6207         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
6208         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
6209         * lib/unistdio/u16-vasnprintf.c: Likewise.
6210         * lib/unistdio/u16-vasprintf.c: Likewise.
6211         * lib/unistdio/u16-vsnprintf.c: Likewise.
6212         * lib/unistdio/u16-vsprintf.c: Likewise.
6213         * lib/unistdio/u32-asnprintf.c: Likewise.
6214         * lib/unistdio/u32-asprintf.c: Likewise.
6215         * lib/unistdio/u32-printf-parse.c: Likewise.
6216         * lib/unistdio/u32-snprintf.c: Likewise.
6217         * lib/unistdio/u32-sprintf.c: Likewise.
6218         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
6219         * lib/unistdio/u32-u32-asprintf.c: Likewise.
6220         * lib/unistdio/u32-u32-snprintf.c: Likewise.
6221         * lib/unistdio/u32-u32-sprintf.c: Likewise.
6222         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
6223         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
6224         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
6225         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
6226         * lib/unistdio/u32-vasnprintf.c: Likewise.
6227         * lib/unistdio/u32-vasprintf.c: Likewise.
6228         * lib/unistdio/u32-vsnprintf.c: Likewise.
6229         * lib/unistdio/u32-vsprintf.c: Likewise.
6230         * lib/unistdio/u8-asnprintf.c: Likewise.
6231         * lib/unistdio/u8-asprintf.c: Likewise.
6232         * lib/unistdio/u8-printf-parse.c: Likewise.
6233         * lib/unistdio/u8-snprintf.c: Likewise.
6234         * lib/unistdio/u8-sprintf.c: Likewise.
6235         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
6236         * lib/unistdio/u8-u8-asprintf.c: Likewise.
6237         * lib/unistdio/u8-u8-snprintf.c: Likewise.
6238         * lib/unistdio/u8-u8-sprintf.c: Likewise.
6239         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
6240         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
6241         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
6242         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
6243         * lib/unistdio/u8-vasnprintf.c: Likewise.
6244         * lib/unistdio/u8-vasprintf.c: Likewise.
6245         * lib/unistdio/u8-vsnprintf.c: Likewise.
6246         * lib/unistdio/u8-vsprintf.c: Likewise.
6247         * lib/unistdio/ulc-asnprintf.c: Likewise.
6248         * lib/unistdio/ulc-asprintf.c: Likewise.
6249         * lib/unistdio/ulc-printf-parse.c: Likewise.
6250         * lib/unistdio/ulc-snprintf.c: Likewise.
6251         * lib/unistdio/ulc-sprintf.c: Likewise.
6252         * lib/unistdio/ulc-vasnprintf.c: Likewise.
6253         * lib/unistdio/ulc-vasprintf.c: Likewise.
6254         * lib/unistdio/ulc-vsnprintf.c: Likewise.
6255         * lib/unistdio/ulc-vsprintf.c: Likewise.
6256         * lib/unistr.h: Likewise.
6257         * lib/unistr/u-cpy-alloc.h: Likewise.
6258         * lib/unistr/u-cpy.h: Likewise.
6259         * lib/unistr/u-endswith.h: Likewise.
6260         * lib/unistr/u-move.h: Likewise.
6261         * lib/unistr/u-set.h: Likewise.
6262         * lib/unistr/u-startswith.h: Likewise.
6263         * lib/unistr/u-stpcpy.h: Likewise.
6264         * lib/unistr/u-stpncpy.h: Likewise.
6265         * lib/unistr/u-strcat.h: Likewise.
6266         * lib/unistr/u-strcpy.h: Likewise.
6267         * lib/unistr/u-strcspn.h: Likewise.
6268         * lib/unistr/u-strdup.h: Likewise.
6269         * lib/unistr/u-strlen.h: Likewise.
6270         * lib/unistr/u-strncat.h: Likewise.
6271         * lib/unistr/u-strncpy.h: Likewise.
6272         * lib/unistr/u-strnlen.h: Likewise.
6273         * lib/unistr/u-strpbrk.h: Likewise.
6274         * lib/unistr/u-strspn.h: Likewise.
6275         * lib/unistr/u-strstr.h: Likewise.
6276         * lib/unistr/u-strtok.h: Likewise.
6277         * lib/unistr/u16-check.c: Likewise.
6278         * lib/unistr/u16-chr.c: Likewise.
6279         * lib/unistr/u16-cmp.c: Likewise.
6280         * lib/unistr/u16-cpy-alloc.c: Likewise.
6281         * lib/unistr/u16-cpy.c: Likewise.
6282         * lib/unistr/u16-endswith.c: Likewise.
6283         * lib/unistr/u16-mblen.c: Likewise.
6284         * lib/unistr/u16-mbsnlen.c: Likewise.
6285         * lib/unistr/u16-mbtouc-aux.c: Likewise.
6286         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
6287         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
6288         * lib/unistr/u16-mbtouc.c: Likewise.
6289         * lib/unistr/u16-mbtoucr.c: Likewise.
6290         * lib/unistr/u16-move.c: Likewise.
6291         * lib/unistr/u16-next.c: Likewise.
6292         * lib/unistr/u16-prev.c: Likewise.
6293         * lib/unistr/u16-set.c: Likewise.
6294         * lib/unistr/u16-startswith.c: Likewise.
6295         * lib/unistr/u16-stpcpy.c: Likewise.
6296         * lib/unistr/u16-stpncpy.c: Likewise.
6297         * lib/unistr/u16-strcat.c: Likewise.
6298         * lib/unistr/u16-strchr.c: Likewise.
6299         * lib/unistr/u16-strcmp.c: Likewise.
6300         * lib/unistr/u16-strcpy.c: Likewise.
6301         * lib/unistr/u16-strcspn.c: Likewise.
6302         * lib/unistr/u16-strdup.c: Likewise.
6303         * lib/unistr/u16-strlen.c: Likewise.
6304         * lib/unistr/u16-strmblen.c: Likewise.
6305         * lib/unistr/u16-strmbtouc.c: Likewise.
6306         * lib/unistr/u16-strncat.c: Likewise.
6307         * lib/unistr/u16-strncmp.c: Likewise.
6308         * lib/unistr/u16-strncpy.c: Likewise.
6309         * lib/unistr/u16-strnlen.c: Likewise.
6310         * lib/unistr/u16-strpbrk.c: Likewise.
6311         * lib/unistr/u16-strrchr.c: Likewise.
6312         * lib/unistr/u16-strspn.c: Likewise.
6313         * lib/unistr/u16-strstr.c: Likewise.
6314         * lib/unistr/u16-strtok.c: Likewise.
6315         * lib/unistr/u16-to-u32.c: Likewise.
6316         * lib/unistr/u16-to-u8.c: Likewise.
6317         * lib/unistr/u16-uctomb-aux.c: Likewise.
6318         * lib/unistr/u16-uctomb.c: Likewise.
6319         * lib/unistr/u32-check.c: Likewise.
6320         * lib/unistr/u32-chr.c: Likewise.
6321         * lib/unistr/u32-cmp.c: Likewise.
6322         * lib/unistr/u32-cpy-alloc.c: Likewise.
6323         * lib/unistr/u32-cpy.c: Likewise.
6324         * lib/unistr/u32-endswith.c: Likewise.
6325         * lib/unistr/u32-mblen.c: Likewise.
6326         * lib/unistr/u32-mbsnlen.c: Likewise.
6327         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
6328         * lib/unistr/u32-mbtouc.c: Likewise.
6329         * lib/unistr/u32-mbtoucr.c: Likewise.
6330         * lib/unistr/u32-move.c: Likewise.
6331         * lib/unistr/u32-next.c: Likewise.
6332         * lib/unistr/u32-prev.c: Likewise.
6333         * lib/unistr/u32-set.c: Likewise.
6334         * lib/unistr/u32-startswith.c: Likewise.
6335         * lib/unistr/u32-stpcpy.c: Likewise.
6336         * lib/unistr/u32-stpncpy.c: Likewise.
6337         * lib/unistr/u32-strcat.c: Likewise.
6338         * lib/unistr/u32-strchr.c: Likewise.
6339         * lib/unistr/u32-strcmp.c: Likewise.
6340         * lib/unistr/u32-strcpy.c: Likewise.
6341         * lib/unistr/u32-strcspn.c: Likewise.
6342         * lib/unistr/u32-strdup.c: Likewise.
6343         * lib/unistr/u32-strlen.c: Likewise.
6344         * lib/unistr/u32-strmblen.c: Likewise.
6345         * lib/unistr/u32-strmbtouc.c: Likewise.
6346         * lib/unistr/u32-strncat.c: Likewise.
6347         * lib/unistr/u32-strncmp.c: Likewise.
6348         * lib/unistr/u32-strncpy.c: Likewise.
6349         * lib/unistr/u32-strnlen.c: Likewise.
6350         * lib/unistr/u32-strpbrk.c: Likewise.
6351         * lib/unistr/u32-strrchr.c: Likewise.
6352         * lib/unistr/u32-strspn.c: Likewise.
6353         * lib/unistr/u32-strstr.c: Likewise.
6354         * lib/unistr/u32-strtok.c: Likewise.
6355         * lib/unistr/u32-to-u16.c: Likewise.
6356         * lib/unistr/u32-to-u8.c: Likewise.
6357         * lib/unistr/u32-uctomb.c: Likewise.
6358         * lib/unistr/u8-check.c: Likewise.
6359         * lib/unistr/u8-chr.c: Likewise.
6360         * lib/unistr/u8-cmp.c: Likewise.
6361         * lib/unistr/u8-cpy-alloc.c: Likewise.
6362         * lib/unistr/u8-cpy.c: Likewise.
6363         * lib/unistr/u8-endswith.c: Likewise.
6364         * lib/unistr/u8-mblen.c: Likewise.
6365         * lib/unistr/u8-mbsnlen.c: Likewise.
6366         * lib/unistr/u8-mbtouc-aux.c: Likewise.
6367         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
6368         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
6369         * lib/unistr/u8-mbtouc.c: Likewise.
6370         * lib/unistr/u8-mbtoucr.c: Likewise.
6371         * lib/unistr/u8-move.c: Likewise.
6372         * lib/unistr/u8-next.c: Likewise.
6373         * lib/unistr/u8-prev.c: Likewise.
6374         * lib/unistr/u8-set.c: Likewise.
6375         * lib/unistr/u8-startswith.c: Likewise.
6376         * lib/unistr/u8-stpcpy.c: Likewise.
6377         * lib/unistr/u8-stpncpy.c: Likewise.
6378         * lib/unistr/u8-strcat.c: Likewise.
6379         * lib/unistr/u8-strchr.c: Likewise.
6380         * lib/unistr/u8-strcmp.c: Likewise.
6381         * lib/unistr/u8-strcpy.c: Likewise.
6382         * lib/unistr/u8-strcspn.c: Likewise.
6383         * lib/unistr/u8-strdup.c: Likewise.
6384         * lib/unistr/u8-strlen.c: Likewise.
6385         * lib/unistr/u8-strmblen.c: Likewise.
6386         * lib/unistr/u8-strmbtouc.c: Likewise.
6387         * lib/unistr/u8-strncat.c: Likewise.
6388         * lib/unistr/u8-strncmp.c: Likewise.
6389         * lib/unistr/u8-strncpy.c: Likewise.
6390         * lib/unistr/u8-strnlen.c: Likewise.
6391         * lib/unistr/u8-strpbrk.c: Likewise.
6392         * lib/unistr/u8-strrchr.c: Likewise.
6393         * lib/unistr/u8-strspn.c: Likewise.
6394         * lib/unistr/u8-strstr.c: Likewise.
6395         * lib/unistr/u8-strtok.c: Likewise.
6396         * lib/unistr/u8-to-u16.c: Likewise.
6397         * lib/unistr/u8-to-u32.c: Likewise.
6398         * lib/unistr/u8-uctomb-aux.c: Likewise.
6399         * lib/unistr/u8-uctomb.c: Likewise.
6400         * lib/unitypes.h: Likewise.
6401         * lib/uniwidth.h: Likewise.
6402         * lib/uniwidth/cjk.h: Likewise.
6403         * lib/uniwidth/u16-strwidth.c: Likewise.
6404         * lib/uniwidth/u16-width.c: Likewise.
6405         * lib/uniwidth/u32-strwidth.c: Likewise.
6406         * lib/uniwidth/u32-width.c: Likewise.
6407         * lib/uniwidth/u8-strwidth.c: Likewise.
6408         * lib/uniwidth/u8-width.c: Likewise.
6409         * lib/uniwidth/width.c: Likewise.
6410
6411 2007-10-07  Bruno Haible  <bruno@clisp.org>
6412
6413         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
6414         The file is still under LGPL (see modules/inttypes).
6415
6416 2007-10-06  Bruno Haible  <bruno@clisp.org>
6417
6418         * modules/trunc (Dependencies): Add 'extensions'.
6419         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
6420         Reported by Ben Pfaff <blp@gnu.org>.
6421
6422 2007-10-06  Bruno Haible  <bruno@clisp.org>
6423
6424         * modules/freopen-tests: New file.
6425         * tests/test-freopen.c: New file.
6426
6427         * modules/fopen-tests: New file.
6428         * tests/test-fopen.c: New file.
6429
6430         * modules/fopen: New file.
6431         * lib/fopen.c: New file.
6432         * m4/fopen.m4: New file.
6433         * modules/freopen: New file.
6434         * lib/freopen.c: New file.
6435         * m4/freopen.m4: New file.
6436         * lib/stdio.in.h (fopen, freopen): New declarations.
6437         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
6438         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
6439         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
6440         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
6441         * doc/functions/fopen.texi: Mention the 'fopen' module.
6442         * doc/functions/freopen.texi: Mention the 'freopen' module.
6443
6444 2007-10-06  Bruno Haible  <bruno@clisp.org>
6445
6446         * modules/open-tests: New file.
6447         * tests/test-open.c: New file.
6448
6449         * modules/open: New file.
6450         * lib/open.c: New file.
6451         * m4/open.m4: New file.
6452         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
6453         lib/open.c does.
6454         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
6455         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
6456         macros.
6457         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
6458         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
6459         REPLACE_OPEN.
6460         * doc/functions/open.texi: Mention the 'open' module.
6461
6462 2007-10-04  Bruno Haible  <bruno@clisp.org>
6463
6464         * modules/ceill-tests: New file.
6465         * tests/test-ceill.c: New file.
6466
6467         * modules/ceill: New file.
6468         * lib/ceill.c: Replace entire file.
6469         * m4/ceill.m4: New file.
6470         * lib/math.in.h (ceill): Replace declaration.
6471         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
6472         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
6473         * doc/functions/ceill.texi: Mention the 'ceill' module.
6474         * modules/mathl (Files): Remove lib/ceill.c.
6475         (Depends-on): Add ceill.
6476
6477 2007-10-04  Bruno Haible  <bruno@clisp.org>
6478
6479         * modules/ceilf-tests: New file.
6480         * tests/test-ceilf.c: New file.
6481
6482         * modules/ceilf: New file.
6483         * lib/ceil.c: New file.
6484         * lib/ceilf.c: New file.
6485         * m4/ceilf.m4: New file.
6486         * lib/math.in.h (ceilf): New declaration.
6487         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
6488         HAVE_DECL_CEILF.
6489         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
6490         HAVE_DECL_CEILF.
6491         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
6492
6493 2007-10-04  Bruno Haible  <bruno@clisp.org>
6494
6495         * modules/floorl-tests: New file.
6496         * tests/test-floorl.c: New file.
6497
6498         * modules/floorl: New file.
6499         * lib/floorl.c: Replace entire file.
6500         * m4/floorl.m4: New file.
6501         * lib/math.in.h (floorl): Replace declaration.
6502         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
6503         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
6504         * doc/functions/floorl.texi: Mention the 'floorl' module.
6505         * modules/mathl (Files): Remove lib/floorl.c.
6506         (Depends-on): Add floorl.
6507
6508 2007-10-04  Bruno Haible  <bruno@clisp.org>
6509
6510         * modules/floorf-tests: New file.
6511         * tests/test-floorf.c: New file.
6512
6513         * modules/floorf: New file.
6514         * lib/floor.c: New file.
6515         * lib/floorf.c: New file.
6516         * m4/floorf.m4: New file.
6517         * lib/math.in.h (floorf): New declaration.
6518         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
6519         HAVE_DECL_FLOORF.
6520         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
6521         HAVE_DECL_FLOORF.
6522         * doc/functions/floorf.texi: Mention the 'floorf' module.
6523
6524 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
6525             Bruno Haible  <bruno@clisp.org>
6526
6527         Advertise for the Git server instead of the CVS server.
6528         * doc/gnulib-intro.texi (Steady Development): Mention the Git
6529         repository instead of the CVS one.
6530         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
6531         about all VCS systems generically.
6532         * doc/gnulib.texi (Introduction): Capitalize `Git'.
6533
6534 2007-10-04  Bruno Haible  <bruno@clisp.org>
6535
6536         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
6537         means.
6538         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
6539
6540 2007-10-04  Bruno Haible  <bruno@clisp.org>
6541
6542         * modules/truncl-tests: New file.
6543         * tests/test-truncl.c: New file.
6544
6545         * modules/truncl: New file.
6546         * lib/truncl.c: New file.
6547         * m4/truncl.m4: New file.
6548         * lib/math.in.h (truncl): New declaration.
6549         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
6550         HAVE_DECL_TRUNCL.
6551         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
6552         HAVE_DECL_TRUNCL.
6553         * doc/functions/truncl.texi: Mention the 'truncl' module.
6554
6555 2007-10-04  Bruno Haible  <bruno@clisp.org>
6556
6557         * modules/truncf-tests: New file.
6558         * tests/test-truncf.c: New file.
6559
6560         * modules/truncf: New file.
6561         * lib/trunc.c: Make paramerizable through USE_* macros.
6562         * lib/truncf.c: New file.
6563         * m4/truncf.m4: New file.
6564         * lib/math.in.h (truncf): New declaration.
6565         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
6566         HAVE_DECL_TRUNCF.
6567         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
6568         HAVE_DECL_TRUNCF.
6569         * doc/functions/truncf.texi: Mention the 'truncf' module.
6570
6571 2007-10-03  Bruno Haible  <bruno@clisp.org>
6572
6573         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
6574         augmentation also for tests modules.
6575         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
6576         * modules/atexit-tests (Makefile.am): Likewise.
6577         * modules/binary-io-tests (Makefile.am): Likewise.
6578         * modules/c-strcase-tests (Makefile.am): Likewise.
6579         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
6580         * modules/canonicalize-tests (Makefile.am): Likewise.
6581         * modules/closein-tests (Makefile.am): Likewise.
6582         * modules/fprintf-posix-tests (Makefile.am): Likewise.
6583         * modules/freadahead-tests (Makefile.am): Likewise.
6584         * modules/fseek-tests (Makefile.am): Likewise.
6585         * modules/fseeko-tests (Makefile.am): Likewise.
6586         * modules/ftell-tests (Makefile.am): Likewise.
6587         * modules/ftello-tests (Makefile.am): Likewise.
6588         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
6589         * modules/isnanl-tests (Makefile.am): Likewise.
6590         * modules/lseek-tests (Makefile.am): Likewise.
6591         * modules/mbscasecmp-tests (Makefile.am): Likewise.
6592         * modules/mbscasestr-tests (Makefile.am): Likewise.
6593         * modules/mbschr-tests (Makefile.am): Likewise.
6594         * modules/mbscspn-tests (Makefile.am): Likewise.
6595         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
6596         * modules/mbspbrk-tests (Makefile.am): Likewise.
6597         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
6598         * modules/mbsrchr-tests (Makefile.am): Likewise.
6599         * modules/mbsspn-tests (Makefile.am): Likewise.
6600         * modules/mbsstr-tests (Makefile.am): Likewise.
6601         * modules/printf-posix-tests (Makefile.am): Likewise.
6602         * modules/snprintf-posix-tests (Makefile.am): Likewise.
6603         * modules/sprintf-posix-tests (Makefile.am): Likewise.
6604         * modules/tsearch-tests (Makefile.am): Likewise.
6605         * modules/uniname/uniname-tests (Makefile.am): Likewise.
6606         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
6607         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
6608         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
6609         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
6610         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
6611         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
6612         * modules/vprintf-posix-tests (Makefile.am): Likewise.
6613         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
6614         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
6615         * modules/xstrtoimax-tests (Makefile.am): Likewise.
6616         * modules/xstrtol-tests (Makefile.am): Likewise.
6617         * modules/xstrtoumax-tests (Makefile.am): Likewise.
6618         * modules/yesno-tests (Makefile.am): Likewise.
6619
6620 2007-10-03  Bruno Haible  <bruno@clisp.org>
6621
6622         * modules/trunc-tests: New file.
6623         * tests/test-trunc.c: New file.
6624
6625         * modules/trunc: New file.
6626         * lib/trunc.c: New file.
6627         * m4/trunc.m4: New file.
6628         * lib/math.in.h (trunc): New declaration.
6629         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
6630         HAVE_DECL_TRUNC.
6631         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
6632         HAVE_DECL_TRUNC.
6633         * doc/functions/trunc.texi: Mention the 'trunc' module.
6634
6635 2007-10-03  Bruno Haible  <bruno@clisp.org>
6636
6637         * tests/test-fpending.c: New file, mostly copied
6638         from coreutils/lib/t-fpending.c.
6639         * modules/fpending-tests: New file.
6640
6641 2007-10-03  Bruno Haible  <bruno@clisp.org>
6642
6643         Port the stdio extensions to QNX (untested).
6644         * lib/fseterr.c (fseterr): Add support for QNX.
6645         * lib/fbufmode.c (fbufmode): Likewise.
6646         * lib/freadable.c (freadable): Likewise.
6647         * lib/fwritable.c (fwritable): Likewise.
6648         * lib/freading.c (freading): Likewise.
6649         * lib/fwriting.c (fwriting): Likewise.
6650         * lib/freadahead.c (freadahed): Likewise.
6651         * lib/fpurge.c (fpurge): Likewise.
6652         * lib/fseeko.c (rpl_fseeko): Likewise.
6653
6654 2007-10-03  Bruno Haible  <bruno@clisp.org>
6655             Jim Meyering  <jim@meyering.net>
6656             Eric Blake  <ebb9@byu.net>
6657
6658         * doc/relocatable.texi: Use @command instead of @program.
6659
6660 2007-10-02  Jim Meyering  <jim@meyering.net>
6661
6662         Perform one more "_.h" -> ".in.h" substitution.
6663         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
6664         instead of unistd_.h here, too.
6665
6666 2007-10-01  Bruno Haible  <bruno@clisp.org>
6667
6668         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
6669         Needed for the alloca-opt module.
6670
6671 2007-09-30  Bruno Haible  <bruno@clisp.org>
6672
6673         * lib/alloca.in.h: Renamed from lib/alloca_.h.
6674         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
6675         alloca_.h.
6676         * lib/argz.in.h: Renamed from lib/argz_.h.
6677         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
6678         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
6679         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
6680         byteswap_.h.
6681         * lib/dirent.in.h: Renamed from lib/dirent_.h.
6682         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
6683         dirent_.h.
6684         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
6685         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
6686         fcntl_.h.
6687         * lib/float.in.h: Renamed from lib/float_.h.
6688         * modules/float (Files, Makefile.am): Use float.in.h instead of
6689         float_.h.
6690         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
6691         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
6692         fnmatch_.h.
6693         * lib/getopt.in.h: Renamed from lib/getopt_.h.
6694         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
6695         getopt_.h.
6696         * lib/glob.in.h: Renamed from lib/glob_.h.
6697         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
6698         * lib/iconv.in.h: Renamed from lib/iconv_.h.
6699         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
6700         iconv_.h.
6701         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
6702         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
6703         inttypes_.h.
6704         * lib/locale.in.h: Renamed from lib/locale_.h.
6705         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
6706         locale_.h.
6707         * lib/math.in.h: Renamed from lib/math_.h.
6708         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
6709         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
6710         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
6711         of netinet_in_.h. Add dependency.
6712         * lib/poll.in.h: Renamed from lib/poll_.h.
6713         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
6714         * lib/search.in.h: Renamed from lib/search_.h.
6715         * modules/search (Files, Makefile.am): Use search.in.h instead of
6716         search_.h.
6717         * lib/signal.in.h: Renamed from lib/signal_.h.
6718         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
6719         _signal.h.
6720         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
6721         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
6722         stdbool_.h.
6723         * lib/stdint.in.h: Renamed from lib/stdint_.h.
6724         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
6725         stdint_.h.
6726         * lib/stdio.in.h: Renamed from lib/stdio_.h.
6727         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
6728         stdio_.h.
6729         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
6730         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
6731         stdlib_.h.
6732         * lib/string.in.h: Renamed from lib/string_.h.
6733         * modules/string (Files, Makefile.am): Use string.in.h instead of
6734         string_.h.
6735         * doc/gnulib-tool.texi (Initial import): Update.
6736         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
6737         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
6738         of sys_select_.h. Add dependency.
6739         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
6740         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
6741         of sys_socket_.h.
6742         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
6743         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
6744         sys_stat_.h.
6745         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
6746         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
6747         sys_time_.h.
6748         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
6749         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
6750         sysexits_.h.
6751         * lib/time.in.h: Renamed from lib/time_.h.
6752         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
6753         * lib/unistd.in.h: Renamed from lib/unistd_.h.
6754         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
6755         unistd_.h.
6756         * lib/wchar.in.h: Renamed from lib/wchar_.h.
6757         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
6758         wchar_.h.
6759         * lib/wctype.in.h: Renamed from lib/wctype_.h.
6760         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
6761         wctype_.h.
6762         * build-aux/bootstrap (slurp): Update.
6763         * lib/.cppi-disable: Update.
6764
6765 2007-09-30  Bruno Haible  <bruno@clisp.org>
6766
6767         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
6768         Needed on BeOS.
6769
6770 2007-09-30  Bruno Haible  <bruno@clisp.org>
6771
6772         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
6773
6774 2007-09-29  Bruno Haible  <bruno@clisp.org>
6775
6776         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
6777
6778 2007-09-29  Bruno Haible  <bruno@clisp.org>
6779
6780         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
6781         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
6782         * build-aux/install-reloc: Compile also areadlink.c.
6783         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
6784
6785 2007-09-29  Bruno Haible  <bruno@clisp.org>
6786
6787         * gnulib-tool (func_emit_initmacro_done): Indentation.
6788
6789 2007-09-29  Bruno Haible  <bruno@clisp.org>
6790
6791         * README: Add CVS checkout update instructions.
6792         Info from Bob Proulx <bob@proulx.com>.
6793
6794 2007-09-28  Eric Blake  <ebb9@byu.net>
6795
6796         Provide move-if-change.
6797         * build-aux/move-if-change: New file, based on best practice
6798         rather than any canonical upstream location.
6799
6800 2007-09-28  Jim Meyering  <jim@meyering.net>
6801
6802         Fix canonicalize loop-detection corner case.
6803         Do not attempt to stat the symlink values stored via seen_triple.
6804         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
6805         on linux-2.6.18, (but not 2.6.22).
6806         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
6807         triple_compare.  The former compares dev,ino,filename, while the latter
6808         would actually stat dirname(filename) when dev and ino were equal.
6809         * lib/hash-triple.c: Install <string.h>.
6810         (STREQ): Define.
6811         (triple_compare_ino_str): New function.
6812         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
6813
6814 2007-09-28  Eric Blake  <ebb9@byu.net>
6815
6816         Enforce that AC_REPLACE_FUNCS files exist.
6817         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
6818         override check for typos.
6819
6820         Fix test-closein on Solaris 10.
6821         * tests/test-closein.c (main): Don't assume stdin can be inherited
6822         closed on all systems.
6823         * tests/test-closein.sh: Likewise.
6824         Reported by Piotr Tarnowski.
6825
6826 2007-09-28  Jim Meyering  <jim@meyering.net>
6827
6828         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
6829
6830 2007-09-27  Jim Meyering  <jim@meyering.net>
6831
6832         canonicalize: Avoid a false-positive cycle failure.
6833         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
6834         Sort.  Remove cycle-check.
6835         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
6836         not cycle-check.h.
6837         (seen_triple): New function.
6838         (canonicalize_filename_mode): Use it instead of cycle-check.
6839         * tests/test-canonicalize.c: Add a test for this bug.
6840         * tests/test-canonicalize.sh: Set up and run the test.
6841
6842         New module, file-set, from coreutils.
6843         * modules/file-set: Define it.
6844         * lib/file-set.c, lib/file-set.h: Implement.
6845
6846         New module, hash-triple, from coreutils.
6847         * modules/hash-triple: Define it.
6848         * lib/hash-triple.c, lib/hash-triple.h: Implement.
6849
6850 2007-09-25  Eric Blake  <ebb9@byu.net>
6851
6852         Fix strerror on Interix.
6853         * lib/string_.h (strerror): Declare replacement.
6854         * doc/functions/strerror.texi (strerror): Document the Interix
6855         shortcoming.
6856         * modules/string (Makefile.am): Support new hooks.
6857         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
6858         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
6859         gl_FUNC_STRERROR_SEPARATE.
6860         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
6861         * lib/strerror.c (rpl_strerror): Provide replacement.
6862         * modules/strerror (Depends-on): Add string.
6863         (configure.ac): Detect use of module.
6864         * tests/test-strerror.c: New file.
6865         * modules/strerror-tests: New test module.
6866         * modules/argp (Depends-on): Add strerror.
6867         * modules/error (Depends-on): Likewise.
6868         Reported by Martin Koeppe.
6869
6870 2007-09-24  Bruno Haible  <bruno@clisp.org>
6871
6872         * README: Update git instructions.
6873
6874 2007-09-24  Eric Blake  <ebb9@byu.net>
6875
6876         Revert fpending breakage from 2007-09-08.
6877         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
6878         __fpending.c.
6879
6880 2007-09-24  Jim Meyering  <jim@meyering.net>
6881
6882         filenamecat.c: Add a test.
6883         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
6884         showing how the function works when DIR is the empty string.
6885
6886 2007-09-21  Simon Josefsson  <simon@josefsson.org>
6887
6888         * tests/test-canonicalize.sh: Turn on executable bit.
6889
6890 2007-09-19  Eric Blake  <ebb9@byu.net>
6891
6892         * README: Update CVS instructions.
6893
6894 2007-09-18  Bruno Haible  <bruno@clisp.org>
6895
6896         * modules/areadlink: New file.
6897         * lib/areadlink.h (areadlink): New declaration.
6898         * lib/areadlink.c: New file, based on lib/xreadlink.c.
6899
6900 2007-09-17  Jim Meyering  <jim@meyering.net>
6901
6902         * lib/savewd.c (ESTALE) [!defined]: Define.
6903         Reported to be required on Interix by Martin Koeppe.
6904
6905 2007-09-17  Bruno Haible  <bruno@clisp.org>
6906
6907         * gnulib-tool (func_version): Use $version.
6908
6909 2007-09-16  Bruno Haible  <bruno@clisp.org>
6910
6911         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
6912         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
6913         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
6914         Reported by Greg Schafer <gschafer@zip.com.au>.
6915
6916 2007-09-15  Bruno Haible  <bruno@clisp.org>
6917
6918         * gnulib-tool (sed): Try a little harder to make bash understand the
6919         alias.
6920         Reported by Bruce Korb <bruce.korb@gmail.com>.
6921
6922 2007-09-13  Eric Blake  <ebb9@byu.net>
6923
6924         * ChangeLog: Remove conflict markers.
6925
6926 2007-09-13  Simon Josefsson  <simon@josefsson.org>
6927
6928         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
6929         Reported by Bruno Haible <bruno@clisp.org>.
6930
6931 2007-09-12  Bruno Haible  <bruno@clisp.org>
6932
6933         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
6934         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
6935         is not defined.
6936
6937 2007-09-12  Eric Blake  <ebb9@byu.net>
6938
6939         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
6940         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
6941         Autoconf definition.
6942         * modules/euidaccess (Depends-on): Add extensions, for
6943         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
6944         * modules/fnmatch (Depends-on): Likewise.
6945         * modules/getaddrinfo (Depends-on): Likewise.
6946         * modules/getdelim (Depends-on): Likewise.
6947         * modules/getline (Depends-on): Likewise.
6948         * modules/getsubopt (Depends-on): Likewise.
6949         * modules/gettext (Depends-on): Likewise.
6950         * modules/group-member (Depends-on): Likewise.
6951         * modules/mbchar (Depends-on): Likewise.
6952         * modules/memmem (Depends-on): Likewise.
6953         * modules/mempcpy (Depends-on): Likewise.
6954         * modules/memrchr (Depends-on): Likewise.
6955         * modules/pagealign_alloc (Depends-on): Likewise.
6956         * modules/readutmp (Depends-on): Likewise.
6957         * modules/stpcpy (Depends-on): Likewise.
6958         * modules/stpncpy (Depends-on): Likewise.
6959         * modules/strchrnul (Depends-on): Likewise.
6960         * modules/strndup (Depends-on): Likewise.
6961         * modules/strsep (Depends-on): Likewise.
6962         * modules/strverscmp (Depends-on): Likewise.
6963         * modules/vasprintf (Depends-on): Likewise.
6964         * modules/wcwidth (Depends-on): Likewise.
6965         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
6966         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
6967         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
6968         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
6969         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
6970         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
6971         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
6972         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6973         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
6974         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
6975         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
6976         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
6977         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
6978         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
6979         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
6980         * m4/readutmp.m4 (gl_READUTMP): Likewise.
6981         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6982         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
6983         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
6984         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
6985         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
6986         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
6987         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
6988         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
6989         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
6990         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6991         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
6992         so that lock.m4 can be used in gettext without extensions module.
6993
6994 2007-09-11  Bruno Haible  <bruno@clisp.org>
6995
6996         * m4/isc-posix.m4: Remove file.
6997         Suggested by Eric Blake.
6998
6999 2007-09-11  Eric Blake  <ebb9@byu.net>
7000
7001         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
7002
7003 2007-09-10  Bruno Haible  <bruno@clisp.org>
7004
7005         * posix-modules: Fix typo in error message.
7006         Reported by Matt <mkraai@beckman.com>.
7007
7008 2007-09-09  Bruno Haible  <bruno@clisp.org>
7009
7010         * doc/functions/getdelim.texi: Update list of platforms lacking the
7011         function.
7012         * doc/functions/getline.texi: Likewise.
7013
7014 2007-09-09  Jim Meyering  <jim@meyering.net>
7015
7016         * lib/hash.c (hash_initialize): Detect calloc failure.
7017         Reported by Bruno Haible.
7018
7019 2007-09-09  Bruno Haible  <bruno@clisp.org>
7020
7021         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
7022         malloc or realloc fails.
7023
7024 2007-09-09  Bruno Haible  <bruno@clisp.org>
7025
7026         * modules/getcwd (Depends-on): Add malloc-posix.
7027         * modules/glob (Depends-on): Likewise.
7028         * modules/putenv (Depends-on): Likewise.
7029         * modules/strdup (Depends-on): Likewise.
7030         * modules/getdelim (Depends-on): Add realloc-posix.
7031         * modules/read-file (Depends-on): Likewise.
7032
7033 2007-09-09  Bruno Haible  <bruno@clisp.org>
7034
7035         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
7036         (gl_FUNC_MALLOC_POSIX): Require it.
7037         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
7038         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
7039         * modules/realloc (Files): Add m4/malloc.m4.
7040         * modules/calloc (Files): Likewise.
7041
7042 2007-09-09  Bruno Haible  <bruno@clisp.org>
7043
7044         * modules/malloc-posix: New file.
7045         * modules/malloc (Depends-on): Add malloc-posix.
7046         * lib/malloc.c: Include errno.h.
7047         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
7048         and a POSIX-compatible malloc into a single function. Set ENOMEM
7049         when returning NULL.
7050         * m4/malloc.m4: New file.
7051         * doc/functions/malloc.texi: Mention the malloc-posix module.
7052         * lib/stdlib_.h (malloc): New declaration.
7053         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7054         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
7055         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
7056         and HAVE_MALLOC_POSIX.
7057
7058 2007-09-09  Bruno Haible  <bruno@clisp.org>
7059
7060         * modules/realloc-posix: New file.
7061         * modules/realloc (Depends-on): Add realloc-posix.
7062         * lib/realloc.c: Include errno.h.
7063         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
7064         and a POSIX-compatible realloc into a single function. Set ENOMEM
7065         when returning NULL.
7066         * m4/realloc.m4: New file.
7067         * doc/functions/realloc.texi: Mention the realloc-posix module.
7068         * lib/stdlib_.h (realloc): New declaration.
7069         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7070         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
7071         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
7072         and HAVE_REALLOC_POSIX.
7073
7074 2007-09-09  Bruno Haible  <bruno@clisp.org>
7075
7076         * modules/calloc-posix: New file.
7077         * modules/calloc (Depends-on): Add calloc-posix.
7078         * lib/calloc.c: Include errno.h.
7079         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
7080         and a POSIX-compatible calloc into a single function. Set ENOMEM
7081         when returning NULL.
7082         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
7083         * doc/functions/calloc.texi: Mention the calloc-posix module.
7084         * lib/stdlib_.h (calloc): New declaration.
7085         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7086         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
7087         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
7088         and HAVE_CALLOC_POSIX.
7089
7090 2007-09-09  Bruno Haible  <bruno@clisp.org>
7091
7092         Allow for modules to show an arbitrary notice.
7093         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
7094         * gnulib-tool: New option --extract-notice.
7095         (func_usage): Document it.
7096         (sed_extract_prog): Update.
7097         (func_get_notice): New function.
7098         (func_modules_notice): New function.
7099         (func_import, func_create_testdir): Invoke it.
7100         Suggested by Jim Meyering.
7101
7102 2007-09-09  Bruno Haible  <bruno@clisp.org>
7103
7104         * gnulib-tool: New options --verbose, --quiet.
7105         (func_usage): Document them.
7106         (verbose): New variable.
7107         (func_execute_command): New function.
7108         (func_import): Don't show the module list and the file list if
7109         $verbose < 0.
7110         (func_create_testdir): Likewise. Use func_execute_command.
7111         (func_create_megatestdir): Use func_execute_command.
7112
7113 2007-09-08  Bruno Haible  <bruno@clisp.org>
7114
7115         * gnulib-tool (func_import): Prefer rsync over wget when available,
7116         for fetching the PO files.
7117
7118 2007-09-08  Bruno Haible  <bruno@clisp.org>
7119
7120         * posix-modules: New file. Portions copied from gnulib-tool.
7121         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
7122
7123 2007-09-08  Jim Meyering  <jim@meyering.net>
7124
7125         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
7126         * lib/fpending.h: Rename from __fpending.h.
7127         * lib/fpending.c: Rename from __fpending.c.
7128         Include "fpending.h", not "__fpending.h".
7129         * lib/__fpending.h, lib/__fpending.c: Remove files.
7130         * modules/fpending (Files): Reflect new file names.
7131         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
7132
7133 2007-09-08  Bruno Haible  <bruno@clisp.org>
7134
7135         * m4/inttypes-h.m4: Remove stub file.
7136
7137 2007-09-07  Simon Josefsson  <simon@josefsson.org>
7138
7139         * doc/headers/stdint.texi: Discuss #include_next issue.
7140
7141 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7142
7143         * build-aux/bootstrap: Remove obsolete comment about wget --help.
7144
7145 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7146
7147         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
7148         in variable name.
7149
7150 2007-09-03  Jim Meyering  <jim@meyering.net>
7151
7152         New module: git-version-gen.
7153         * modules/git-version-gen: New file.
7154
7155         Import changes from coreutils for bootstrap script.
7156
7157         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
7158
7159         bootstrap: uses rsync to download the .po files
7160         * build-aux/bootstrap (po_download_command_format): New global.
7161         (download_po_files): Use rsync.
7162         (update_po_files): Don't remove .po files after download,
7163         so future rsync runs can take advantage of the copies.
7164
7165         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
7166
7167         Solve the unnecessary-.po-file-regeneration problem once and for all.
7168         * build-aux/bootstrap (download_po_files): New function, renamed from
7169         get_translations.  Now, downloads, but doesn't update LINGUAS.
7170         (update_po_files): New function.
7171
7172         bootstrap: Ignore more.
7173         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
7174         uniwidth to e.g., lib/.gitignore.
7175         (slurp): Handle the sys_stat_.h -> sys mapping, too.
7176
7177         * build-aux/bootstrap: New setting: vc_ignore.
7178         (insert_sorted_if_absent): Create $file if absent.
7179         Adapt to new, possibly empty, list: $vc_ignore.
7180
7181         bootstrap: generate more ignorable names
7182         * build-aux/bootstrap (slurp): When generating ignorable names,
7183         also map .sin to .sed, .gperf to .c, and .y to .c.
7184
7185 2007-09-03  Jim Meyering  <jim@meyering.net>
7186
7187         * build-aux/git-version-gen: New file, from coreutils.  For details, see
7188         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
7189
7190 2007-09-02  Bruno Haible  <bruno@clisp.org>
7191
7192         Fix mis-recognition of 'mcs' on QNX 6.
7193         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
7194         output contains the string "Mono".
7195         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
7196         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
7197
7198 2007-09-01  Bruno Haible  <bruno@clisp.org>
7199
7200         Fix collision between uniwidth/* and linebreak modules.
7201         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
7202         u32_width): Remove declarations.
7203         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
7204         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
7205         streq3, streq2, streq1, streq0): Remove functions.
7206         (STREQ): Remove macro.
7207         (is_cjk_encoding): Remove function.
7208         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
7209         (uc_width, u8_width, u16_width, u32_width): Remove functions.
7210         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
7211         * NEWS: Document the change.
7212
7213 2007-09-01  Bruno Haible  <bruno@clisp.org>
7214
7215         * lib/streq.h: Add double-inclusion guard.
7216
7217 2007-09-01  Karl Berry  <karl@gnu.org>
7218
7219         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
7220
7221 2007-08-28  Jim Meyering  <jim@meyering.net>
7222
7223         Rename mreadlink_with_size to areadlink_with_size.
7224         * NEWS: Document the change.
7225         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
7226         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
7227         * lib/mreadlink.h: Rename this to...
7228         * lib/areadlink.h: ...this.
7229         * modules/mreadlink-with-size: Rename this to...
7230         * modules/areadlink-with-size: ...this.
7231         * lib/canonicalize.c: Reflect the renaming.
7232         * modules/canonicalize: Likewise.
7233
7234 2007-08-26  Bruno Haible  <bruno@clisp.org>
7235
7236         * gnulib-tool (func_import): When deciding which files to remove,
7237         consider also dangling symbolic links.
7238         Reported by Eric Blake.
7239
7240 2007-08-26  Bruno Haible  <bruno@clisp.org>
7241
7242         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
7243
7244 2007-08-23  Simon Josefsson  <simon@josefsson.org>
7245
7246         * lib/readline.c: Don't include getline.h, the prototype is now
7247         found in stdio.h.
7248
7249 2007-08-23  Jim Meyering  <jim@meyering.net>
7250
7251         Getdelim touchup.
7252         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
7253         around the funlockfile call, since funlockfile never sets errno.
7254         Don't set errno upon failed realloc.
7255
7256 2007-08-22  Eric Blake  <ebb9@byu.net>
7257
7258         Getline touchups.
7259         * lib/getdelim.c (getdelim): Revert regression that required *n to
7260         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
7261         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
7262         getdelim, rather than whether implementation is missing.
7263         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
7264         * lib/stdio_.h (getline): Also declare if replacement is
7265         required.
7266         * doc/functions/getdelim.texi: New file.
7267         * doc/functions/getline.texi: Likewise.
7268         * doc/gnulib.texi (Function Substitutes): Add new files.
7269         Reported by Bruno Haible.
7270
7271 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
7272
7273         * users.txt: Add Guile.
7274
7275 2007-08-22  Eric Blake  <ebb9@byu.net>
7276
7277         * tests/test-getdelim.c (main): Use remove, not unlink.
7278         * tests/test-getline.c (main): Likewise.
7279
7280         Move getline and getdelim into stdio.h, per POSIX 200x.
7281         * modules/getline (Files): Remove getline.h.
7282         (Depends-on): Add stdio.
7283         (configure.ac): Add module indicator.
7284         * modules/getdelim (Files): Remove getdelim.h.
7285         (Depends-on): Add stdio.
7286         (configure.ac): Add module indicator.
7287         * modules/stdio (Makefile.am): Work with new indicators.
7288         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
7289         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
7290         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
7291         * lib/getdelim.h: Delete.
7292         * lib/getline.h: Delete.
7293         * lib/stdio_.h (getdelim, getline): Declare.
7294         * modules/getdelim-tests: New module.
7295         * modules/getline-tests: Likewise.
7296         * tests/test-getdelim.c: New file.
7297         * tests/test-getline.c: Likewise.
7298         * NEWS: Document the change.
7299         * lib/getline.c: Update choice of header.
7300         * lib/csharpcomp.c: Likewise.
7301         * lib/getpass.c: Likewise.
7302         * lib/javacomp.c: Likewise.
7303         * lib/javaversion.c: Likewise.
7304         * lib/yesno.c: Likewise.
7305         * lib/getdelim.c: Likewise.
7306         (getdelim): Set errno on failure, and avoid memory leak.
7307
7308 2007-08-19  Bruno Haible  <bruno@clisp.org>
7309
7310         * modules/closein (Depends-on): Add freadahead.
7311         * lib/closein.c: Include freadahead.h.
7312         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
7313         is zero.
7314
7315 2007-08-19  Bruno Haible  <bruno@clisp.org>
7316
7317         * modules/freadahead-tests: New file.
7318         * tests/test-freadahead.sh: New file.
7319         * tests/test-freadahead.c: New file.
7320
7321         * modules/freadahead: New file.
7322         * lib/freadahead.h: New file.
7323         * lib/freadahead.c: New file.
7324         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
7325         fbufmode, fpurge, freadable, fwritable.
7326
7327 2007-08-19  Eric Blake  <ebb9@byu.net>
7328
7329         Test yesno in combination with closein.
7330         * lib/yesno.c (yesno): Document use of stdin.
7331         * modules/yesno-tests (Files): New module.
7332         * tests/test-yesno.c (main): New file.
7333         * tests/test-yesno.sh: Likewise.
7334
7335 2007-08-19  Bruno Haible  <bruno@clisp.org>
7336
7337         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
7338         * lib/fseeko.c (rpl_fseeko): Likewise.
7339         * lib/fseterr.c (fseterr): Likewise.
7340
7341 2007-08-19  Bruno Haible  <bruno@clisp.org>
7342
7343         * tests/test-lseek.c (main): Disable a test for BeOS.
7344         * doc/functions/lseek.texi: Document the BeOS bug.
7345
7346 2007-08-19  Bruno Haible  <bruno@clisp.org>
7347             Eric Blake  <ebb9@byu.net>
7348
7349         * lib/lseek.c: Include <sys/stat.h>.
7350         (rpl_lseek): Add workaround code also for Unix platforms.
7351         Needed for BeOS.
7352         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
7353         * doc/functions/lseek.texi: Document BeOS definiency.
7354
7355 2007-08-18  Bruno Haible  <bruno@clisp.org>
7356
7357         * modules/fstrcmp-tests: New file.
7358         * tests/test-fstrcmp.c: New file.
7359
7360 2007-08-18  Bruno Haible  <bruno@clisp.org>
7361
7362         * modules/fstrcmp: New file, from GNU gettext with modifications.
7363         * lib/fstrcmp.h: New file, from GNU gettext.
7364         * lib/fstrcmp.c: New file, from GNU gettext.
7365         * MODULES.html.sh (String handling): Add fstrcmp.
7366
7367 2007-08-18  Bruno Haible  <bruno@clisp.org>
7368
7369         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
7370         'bool'.
7371         (diag, compareseq): Remove const from the ctxt argument.
7372         (USE_HEURISTIC): Undefine at the end.
7373
7374 2007-08-18  Jim Meyering  <jim@meyering.net>
7375
7376         New file: lib/idcache.h
7377         * NEWS: Mention the addition.
7378         * modules/idcache (Files): Add lib/idcache.h
7379         * lib/idcache.c: Include "idcache.h".
7380         Don't include <sys/types.h>.
7381         Add a FIXME comment.
7382         Move file-scoped "static" declarations to the top.
7383         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
7384
7385 2007-08-17  Bruno Haible  <bruno@clisp.org>
7386         and Paul Eggert  <eggert@cs.ucla.edu>
7387
7388         * MODULES.html.sh: Add diffseq.
7389         * modules/diffseq: New file.
7390         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
7391         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
7392
7393 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
7394
7395         Import changes from coreutils for bootstrap script.
7396
7397         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
7398
7399         * build-aux/bootstrap (slurp): Work even in environments where
7400         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
7401         current code does not slurp files whose names start with ".", and
7402         this looks like it might be a troublesome area.
7403
7404         2007-07-11  Jim Meyering  <jim@meyering.net>
7405
7406         If there's a GPL vN copyright comment, require that N == 3.
7407
7408         2007-07-08  Jim Meyering  <jim@meyering.net>
7409
7410         Run the coreutils-specific code only if tests/Makefile.am.in exists.
7411         * build-aux/bootstrap (mam_template): Move definition out of loop.
7412
7413         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
7414
7415         * build-aux/bootstrap (symlink_to_dir): Rename function from
7416         symlink_to_gnulib.  Add a directory parameter.  Update all
7417         callers.
7418         (cp_mark_as_generated): Also check for -- and link to -- files in
7419         gl/.
7420
7421         2007-07-08  Jim Meyering  <jim@meyering.net>
7422
7423         Adapt to deeper hierarchy in gnulib.
7424         * build-aux/bootstrap (symlink_to_dir): If the destination
7425         directory doesn't exist, create it. This is required at least for
7426         "lib/uniwidth/cjk.h".
7427
7428         2007-05-15  Jim Meyering  <jim@meyering.net>
7429
7430         * build-aux/bootstrap: Now that generated Makefile.am files
7431         are no longer under version control, they must be created at
7432         bootstrap time.
7433
7434 2007-08-14  Ben Pfaff  <blp@gnu.org>
7435
7436         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
7437
7438 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
7439
7440         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
7441         given the changes below.
7442         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
7443         even on hosts that have padding bits beyond the supported 64.
7444
7445 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
7446
7447         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
7448         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
7449         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
7450         depends on it.
7451         (xstrtol_error): Remove.
7452         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
7453         but with a different signature.
7454         (ATTRIBUTE_NORETURN, __attribute__): New macros.
7455         * lib/xstrtol-error.c: Include exitfail.h.
7456         (xstrtol_fatal): New function, with a different signature from the
7457         old xstrtol_error, so that the caller need not worry about passing
7458         in an exit status, or about storage management of the option argument.
7459         (xstrtol_error): Now a static function.  Redo signature to
7460         implement xstrtol_fatal.  Output the correct number of hyphens in
7461         front of the option so that the caller need not worry about
7462         storage management.
7463         (N_): New macro.
7464         (_): Remove; not used now.
7465         * modules/xstrtol: Depend on getopt.
7466         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
7467         of old STRTOL_FATAL_ERROR macro.
7468         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
7469         of test program.
7470         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
7471         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
7472
7473 2007-08-08  Eric Blake  <ebb9@byu.net>
7474
7475         * lib/xstrtol-error.c: Add missing include.
7476
7477         Move xstrtol messages into gnulib domain, when --pobase is used.
7478         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
7479         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
7480         * modules/xstrtol (Files): Distribute new file.
7481         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
7482         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
7483         * tests/test-xstrtol.c: ...into new file.
7484         * tests/test-xstrtoul.c: Also test xstrtoul.
7485         * tests/test-xstrtoimax.c: Also test xstrtoimax.
7486         * tests/test-xstrtoumax.c: Also test xstrtoumax.
7487         * tests/test-xstrtol.sh: Drive the tests.
7488         * tests/test-xstrtoimax.sh: Likewise.
7489         * tests/test-xstrtoumax.sh: Likewise.
7490         * modules/xstrtol-tests: New module.
7491         * modules/xstrtoimax-tests: Likewise.
7492         * modules/xstrtoumax-tests: Likewise.
7493
7494 2007-08-08  Jim Meyering  <jim@meyering.net>
7495
7496         New function: mfile_name_concat.
7497         * lib/filenamecat.c (mfile_name_concat): New function, just like
7498         file_name_concat, but return NULL upon failure rather than exiting
7499         with a diagnostic.
7500         * lib/filenamecat.h: Declare it.
7501
7502 2007-08-07  Bruno Haible  <bruno@clisp.org>
7503
7504         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
7505         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
7506         warning from gcc.
7507         Reported by Eric Blake.
7508
7509 2007-08-07  Simon Josefsson  <simon@josefsson.org>
7510
7511         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
7512         * modules/crypto/arcfour (License): Likewise.
7513         * modules/crypto/des-tests (License): Likewise.
7514         * modules/crypto/gc-arctwo-tests (License): Likewise.
7515         * modules/crypto/gc-des-tests (License): Likewise.
7516         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
7517         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
7518         * modules/crypto/gc-md2-tests (License): Likewise.
7519         * modules/crypto/gc-md4-tests (License): Likewise.
7520         * modules/crypto/gc-md5-tests (License): Likewise.
7521         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
7522         * modules/crypto/gc-rijndael-tests (License): Likewise.
7523         * modules/crypto/gc-sha1-tests (License): Likewise.
7524         * modules/crypto/gc-tests (License): Likewise.
7525         * modules/crypto/hmac-md5 (License): Likewise.
7526         * modules/crypto/hmac-sha1 (License): Likewise.
7527         * modules/crypto/md2-tests (License): Likewise.
7528         * modules/crypto/md4-tests (License): Likewise.
7529         * modules/crypto/md5 (License): Likewise.
7530         * modules/crypto/rijndael (License): Likewise.
7531         * modules/crypto/sha1 (License): Likewise.
7532         * modules/memxor (License): Likewise.
7533
7534 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
7535         and Bruno Haible  <bruno@clisp.org>
7536
7537         * NEWS: Describe interface changes to human, xstrtol.
7538         * lib/human.h: Include <xstrtol.h>.
7539         (human_options): Return enum strtol_error, not int.  Remove
7540         bool arg; take int * instead.
7541         * lib/human.c: Don't include "gettext.h".
7542         (_): Remove; no longer used.
7543         Don't include <xstrtol.h>, since human.h does it.
7544         (human_options): Adjust to abovementioned interface changes.
7545         Do not report error to stderr; that's now the caller's
7546         responsibility.
7547         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
7548         interface change.
7549         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
7550         Str, Argument_type_string.  All uses changed.  Put " argument"
7551         in diagnostics to make them clearer.  Change wording of suffix
7552         message for clarity.
7553         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
7554         Argument_type_string.
7555         (STRTOL_FATAL_WARN): Remove; no longer used.
7556         * modules/human (Depends-on): Remove gettext-h.
7557
7558 2007-08-06  Simon Josefsson  <simon@josefsson.org>
7559
7560         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
7561
7562 2007-07-31  Bruno Haible  <bruno@clisp.org>
7563
7564         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
7565         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
7566         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
7567
7568 2007-07-31  Bruno Haible  <bruno@clisp.org>
7569
7570         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
7571         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
7572
7573 2007-07-30  Bruno Haible  <bruno@clisp.org>
7574
7575         * modules/base64 (License): Use the synonymous term "LGPLv2+".
7576         * modules/c-ctype (License): Likewise.
7577         * modules/c-strcase (License): Likewise.
7578         * modules/check-version (License): Likewise.
7579         * modules/iconv (License): Likewise.
7580         * modules/iconv_open (License): Likewise.
7581         * modules/read-file (License): Likewise.
7582         * modules/striconv (License): Likewise.
7583         * modules/strverscmp (License): Likewise.
7584         * modules/vasprintf (License): Likewise.
7585         * modules/crypto/des (License): Likewise.
7586         * modules/crypto/gc (License): Likewise.
7587         * modules/crypto/gc-arcfour (License): Likewise.
7588         * modules/crypto/gc-arctwo (License): Likewise.
7589         * modules/crypto/gc-des (License): Likewise.
7590         * modules/crypto/gc-hmac-md5 (License): Likewise.
7591         * modules/crypto/gc-hmac-sha1 (License): Likewise.
7592         * modules/crypto/gc-md2 (License): Likewise.
7593         * modules/crypto/gc-md4 (License): Likewise.
7594         * modules/crypto/gc-md5 (License): Likewise.
7595         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
7596         * modules/crypto/gc-random (License): Likewise.
7597         * modules/crypto/gc-rijndael (License): Likewise.
7598         * modules/crypto/gc-sha1 (License): Likewise.
7599         * modules/crypto/md2 (License): Likewise.
7600         * modules/crypto/md4 (License): Likewise.
7601
7602 2007-07-30  Jim Meyering  <jim@meyering.net>
7603
7604         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
7605         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
7606         it has valid stat data.  This bug would cause du not to count the
7607         sizes of inaccessible directories.
7608         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
7609         in <http://bugzilla.redhat.com/250077>.
7610
7611 2007-07-25  Peter O'Gorman  <peter@pogma.com>
7612             Bruno Haible  <bruno@clisp.org>
7613
7614         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
7615         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
7616         #include_next, gives a diagnostic about it, but reports no error in
7617         the exit code.
7618         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
7619
7620 2007-07-24  Ben Pfaff  <blp@gnu.org>
7621
7622         Improve name: "count-one-bits" is better than "popcount".
7623         * MODULES.html.sh: Update name.
7624         * lib/popcount.h: Renamed lib/count-one-bits.h.
7625         (popcount): Renamed count_one_bits.
7626         (popcountl): Renamed count_one_bits_l.
7627         (popcountll): Renamed count_one_bits_ll.
7628         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
7629         * modules/popcount: Renamed module/count-one-bits.
7630         * modules/popcount-tests: Renamed module/count-one-bits-tests.
7631         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
7632
7633 2007-07-23  Ben Pfaff  <blp@gnu.org>
7634
7635         * lib/popcount.h (popcount32): Reduce size of constants, to allow
7636         better code generation, and add U to large constants to avoid
7637         warnings, in non-GCC case.
7638         Suggested by Bruno Haible.
7639
7640 2007-07-23  Ben Pfaff  <blp@gnu.org>
7641
7642         * lib/popcount.h: Use verify_true instead of if...abort.
7643         * modules/popcount: Depend on verify module.
7644         Suggested by Jim Meyering.
7645
7646 2007-07-23  Bruno Haible  <bruno@clisp.org>
7647
7648         * gnulib-tool (func_import): Create a .cvsignore file also when the
7649         directory is not yet in CVS but the toplevel directory is. When
7650         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
7651         Reported by Karl Berry.
7652
7653 2007-07-22  Ben Pfaff  <blp@gnu.org>
7654
7655         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
7656         case.
7657         Suggested by Eric Blake.
7658
7659 2007-07-22  Ben Pfaff  <blp@gnu.org>
7660
7661         New module: popcount.
7662         * MODULES.html.sh: Add popcount.
7663         * modules/popcount: New file.
7664         * modules/popcount-tests: New file.
7665         * tests/test-popcount.c: New file.
7666         * lib/popcount.h: New file.
7667         * m4/popcount.m4: New file.
7668
7669 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7670
7671         * build-aux/announce-gen: Update to GPLv3.
7672
7673         * build-aux/config.guess: Update from config.
7674
7675 2007-07-21  Bruno Haible  <bruno@clisp.org>
7676
7677         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
7678         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
7679
7680 2007-07-20  Jim Meyering  <jim@meyering.net>
7681
7682         * check-module: Diagnose a self-dependency.
7683
7684 2007-07-19  Bruno Haible  <bruno@clisp.org>
7685
7686         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
7687         empty.
7688         Reported by Eric Blake.
7689
7690 2007-07-18  Bruno Haible  <bruno@clisp.org>
7691
7692         * gnulib-tool: New options --po-base, --po-domain.
7693         (func_usage): Document them.
7694         (pobase, po_domain): New variables.
7695         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
7696         DEFAULT_TEXT_DOMAIN.
7697         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
7698         (func_import): Consider pobase and po_domain. Create a po/ directory.
7699         (func_create_testdir): Set pobase and po_domain to empty.
7700         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
7701         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
7702
7703 2007-07-18  Bruno Haible  <bruno@clisp.org>
7704
7705         * gnulib-tool (func_get_automake_snippet): Synthesize also an
7706         EXTRA_DIST augmentation for files in build-aux/.
7707
7708 2007-07-16  Bruno Haible  <bruno@clisp.org>
7709
7710         * modules/lseek (License): Use the synonymous term "LGPLv2+".
7711         * modules/getdelim (License): Likewise.
7712
7713 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7714
7715         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
7716         * modules/d-type (License): Likewise.
7717         * modules/extensions (License): Likewise.
7718         * modules/fnmatch (License): Likewise.
7719         * modules/fseeko (License): Likewise.
7720         * modules/getaddrinfo (License): Likewise.
7721         * modules/getline (License): Likewise.
7722         * modules/getlogin_r (License): Likewise.
7723         * modules/getpass (License): Likewise.
7724         * modules/gettimeofday (License): Likewise.
7725         * modules/glob (License): Likewise.
7726         * modules/inet_ntop (License): Likewise.
7727         * modules/malloc (License): Likewise.
7728         * modules/malloca (License): Likewise.
7729         * modules/memmem (License): Likewise.
7730         * modules/mempcpy (License): Likewise.
7731         * modules/memset (License): Likewise.
7732         * modules/minmax (License): Likewise.
7733         * modules/mktime (License): Likewise.
7734         * modules/netinet_in (License): Likewise.
7735         * modules/pathmax (License): Likewise.
7736         * modules/poll (License): Likewise.
7737         * modules/regex (License): Likewise.
7738         * modules/snprintf (License): Likewise.
7739         * modules/stdbool (License): Likewise.
7740         * modules/stdint (License): Likewise.
7741         * modules/stdio (License): Likewise.
7742         * modules/strcase (License): Likewise.
7743         * modules/strcasestr (License): Likewise.
7744         * modules/strdup (License): Likewise.
7745         * modules/string (License): Likewise.
7746         * modules/strndup (License): Likewise.
7747         * modules/strnlen (License): Likewise.
7748         * modules/strpbrk (License): Likewise.
7749         * modules/strptime (License): Likewise.
7750         * modules/strsep (License): Likewise.
7751         * modules/sys_select (License): Likewise.
7752         * modules/sys_socket (License): Likewise.
7753         * modules/sys_stat (License): Likewise.
7754         * modules/sys_time (License): Likewise.
7755         * modules/time (License): Likewise.
7756         * modules/time_r (License): Likewise.
7757         * modules/timegm (License): Likewise.
7758         * modules/unistd (License): Likewise.
7759         * modules/vsnprintf (License): Likewise.
7760         * modules/wctype (License): Likewise.
7761
7762 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7763
7764         * modules/argz (License): LGPLv2+.
7765
7766 2007-07-15  Karl Berry  <karl@gnu.org>
7767
7768         * doc/gnulib.texi: revise node structure per new fdl.texi.
7769
7770 2007-07-14  Bruno Haible  <bruno@clisp.org>
7771
7772         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
7773         the output file.
7774         * lib/uniname/uninames.h: Regenerated.
7775
7776 2007-07-14  Karl Berry  <karl@gnu.org>
7777
7778         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
7779         omitting sectioning and index commands.
7780
7781 2007-07-13  Bruno Haible  <bruno@clisp.org>
7782
7783         New gnulib-tool option --more-symlinks.
7784         * gnulib-tool (func_usage): Document --more-symlinks.
7785         (do_copyrights): New variable.
7786         Recognize option --more-symlinks.
7787         (func_import): Don't add a copyright notice transform to
7788         sed_transform_lib_file if do_copyrights is empty.
7789
7790 2007-07-13  Bruno Haible  <bruno@clisp.org>
7791
7792         * lib/vasnprintf.c (decimal_point_char): Define also if
7793         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
7794         && !NEED_PRINTF_DIRECTIVE_A.
7795         Reported by Clemens Koller <clemens.koller@anagramm.de> via
7796         Gary V. Vaughan <gary@gnu.org>.
7797
7798 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
7799
7800         * lib/inttypes_.h: Undo previous change, since it was fixed
7801         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
7802
7803 2007-07-13  Bruno Haible  <bruno@clisp.org>
7804
7805         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
7806         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
7807
7808 2007-07-13  Jim Meyering  <jim@meyering.net>
7809
7810         df: Don't fail for Tru64's "file-on-file mount".
7811         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
7812         so we fall through and use statfs instead.  Details here:
7813         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
7814         Reported by Albert Chin.
7815
7816 2007-07-13  Bruno Haible  <bruno@clisp.org>
7817
7818         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
7819         * modules/configmake (License): Likewise.
7820         * modules/gettext (License): Likewise.
7821         * modules/gettext-h (License): Likewise.
7822         * modules/include_next (License): Likewise.
7823         * modules/link-warning (License): Likewise.
7824         * modules/localcharset (License): Likewise.
7825         * modules/localename (License): Likewise.
7826         * modules/lock (License): Likewise.
7827         * modules/relocatable-lib-lgpl (License): Likewise.
7828         * modules/size_max (License): Likewise.
7829         * modules/vasnprintf (License): Likewise.
7830         * modules/wchar (License): Likewise.
7831         * modules/xsize (License): Likewise.
7832
7833 2007-07-13  Bruno Haible  <bruno@clisp.org>
7834
7835         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
7836         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
7837
7838 2007-07-12  Bruno Haible  <bruno@clisp.org>
7839
7840         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
7841         in the modules files.
7842
7843 2007-07-11  Karl Berry  <karl@gnu.org>
7844
7845         * MODULES.html.sh (func_module): use
7846          sed -e '\|^'"${includefile}"'$|d'
7847          instead of /.../d, to avoid errors on $includefile's containing /.
7848
7849 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7850
7851         * gnulib-tool (func_import): Avoid duplication of --avoid
7852         statements
7853         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
7854         names to `_' in variable names.
7855
7856 2007-07-10  Eric Blake  <ebb9@byu.net>
7857
7858         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
7859         * NEWS: Document this change.
7860
7861 2007-07-08  Bruno Haible  <bruno@clisp.org>
7862
7863         Update to Unicode 5.0.
7864         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
7865         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
7866         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
7867         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
7868         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
7869         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
7870         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
7871         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
7872         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
7873         U+10A3F, U+1D242..U+1D244.
7874         (nonspacing_table_ind): Update.
7875         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
7876         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
7877
7878 2007-07-08  Bruno Haible  <bruno@clisp.org>
7879
7880         Update to Unicode 5.0.
7881         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
7882         code transform. Extend the name index field of unicode_name_to_code and
7883         unicode_code_to_name from 16 to 24 bits.
7884         * lib/uniname/uniname.c (unicode_character_name,
7885         unicode_name_character): Add the range 0x12xxx to the code transform.
7886         * lib/uniname/uninames.h: Regenerated.
7887         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
7888
7889 2007-07-07  Bruno Haible  <bruno@clisp.org>
7890
7891         * modules/wcwidth-tests: New file.
7892         * tests/test-wcwidth.c: New file.
7893
7894         Work around MacOS X wcwidth() bug.
7895         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
7896         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
7897         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
7898         original wcwidth in non-UTF-8 locales.
7899         * modules/wcwidth (Depends-on): Add localcharset, streq,
7900         uniwidth/width.
7901         * doc/functions/wcwidth.texi: Update.
7902
7903 2007-07-07  Bruno Haible  <bruno@clisp.org>
7904
7905         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
7906         (wcwidth): New declaration.
7907         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
7908         macros.
7909         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
7910         here. Prepare for creating <wchar.h> unconditionally.
7911         * modules/wchar (Depends-on): Add link-warning.
7912         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
7913         REPLACE_WCWIDTH, and GL_LINK_WARNING.
7914         * lib/wcwidth.h: Remove file.
7915         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
7916         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
7917         * modules/wcwidth (Files): Remove lib/wcwidth.h.
7918         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
7919         (Include): Replace wcwidth.h with <wchar.h>.
7920         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
7921         * lib/mbchar.h: Don't include wcwidth.h.
7922         * lib/mbswidth.c: Likewise.
7923         * NEWS: Mention the change.
7924
7925 2007-07-07  Bruno Haible  <bruno@clisp.org>
7926
7927         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
7928         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
7929         definition with an external declaration.
7930         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
7931         defined as a function. Remove AC_C_INLINE requirement.
7932         * modules/wcwidth (Files): Add lib/wcwidth.c.
7933         (Makefile.am): Remove redundant statement.
7934
7935 2007-07-07  Bruno Haible  <bruno@clisp.org>
7936
7937         * MODULES.html.sh (Unicode string functions): Add the new modules.
7938
7939         * tests/uniwidth/test-u32-strwidth.c: New file.
7940         * modules/uniwidth/u32-strwidth-tests: New file.
7941
7942         * lib/uniwidth/u32-strwidth.c: New file.
7943         * modules/uniwidth/u32-strwidth: New file.
7944
7945         * tests/uniwidth/test-u16-strwidth.c: New file.
7946         * modules/uniwidth/u16-strwidth-tests: New file.
7947
7948         * lib/uniwidth/u16-strwidth.c: New file.
7949         * modules/uniwidth/u16-strwidth: New file.
7950
7951         * tests/uniwidth/test-u8-strwidth.c: New file.
7952         * modules/uniwidth/u8-strwidth-tests: New file.
7953
7954         * lib/uniwidth/u8-strwidth.c: New file.
7955         * modules/uniwidth/u8-strwidth: New file.
7956
7957         * tests/uniwidth/test-u32-width.c: New file.
7958         * modules/uniwidth/u32-width-tests: New file.
7959
7960         * lib/uniwidth/u32-width.c: New file.
7961         * modules/uniwidth/u32-width: New file.
7962
7963         * tests/uniwidth/test-u16-width.c: New file.
7964         * modules/uniwidth/u16-width-tests: New file.
7965
7966         * lib/uniwidth/u16-width.c: New file.
7967         * modules/uniwidth/u16-width: New file.
7968
7969         * tests/uniwidth/test-u8-width.c: New file.
7970         * modules/uniwidth/u8-width-tests: New file.
7971
7972         * lib/uniwidth/u8-width.c: New file.
7973         * modules/uniwidth/u8-width: New file.
7974
7975         * tests/uniwidth/test-uc_width.c: New file.
7976         * modules/uniwidth/width-tests: New file.
7977
7978         * lib/uniwidth/width.c: New file, from GNU libiconv.
7979         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
7980         * modules/uniwidth/width: New file.
7981
7982         * lib/uniwidth.h: New file, from GNU libiconv.
7983         * modules/uniwidth/base: New file.
7984
7985 2007-07-07  Bruno Haible  <bruno@clisp.org>
7986
7987         * lib/uniname.h: New file, from GNU gettext.
7988         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
7989         * lib/uniname/uninames.h: New file, from GNU gettext.
7990         * lib/uniname/uniname.c: New file, from GNU gettext.
7991         * tests/uniname/test-uninames.sh: New file.
7992         * tests/uniname/test-uninames.c: New file, from GNU gettext.
7993         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
7994         * modules/uniname/base: New file.
7995         * modules/uniname/uniname: New file.
7996         * modules/uniname/uniname-tests: New file.
7997         * MODULES.html.sh (Unicode string functions): Add the new modules.
7998
7999 2007-07-06  Bruno Haible  <bruno@clisp.org>
8000
8001         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
8002
8003 2007-07-06  Bruno Haible  <bruno@clisp.org>
8004
8005         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
8006         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
8007         includes <cygwin/sys_time.h> which includes <sys/select.h> which
8008         include <sys/time.h>.
8009         Reported by Eric Blake.
8010
8011 2007-07-06  Eric Blake  <ebb9@byu.net>
8012
8013         Fix testing canonicalize on cygwin.
8014         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
8015         Revert patch from 2007-06-19.
8016         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
8017         canonicalize module is also in use.
8018         * tests/test-canonicalize.c: New file.
8019         * tests/test-canonicalize.sh: Likewise.
8020         * modules/canonicalize-tests: Likewise.
8021
8022 2007-07-06  Jim Meyering  <jim@meyering.net>
8023
8024         * lib/getugroups.c (getugroups): Detect getgrent failure.
8025         Adjust comment to reflect reality: this function may return -1.
8026
8027 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
8028
8029         * build-aux/bootstrap (TP_URL,get_translations): Update to use
8030         the new TP address.
8031         (usage): Fix typo
8032         (gnulib_mk): New variable.
8033
8034 2007-07-05  Jim Meyering  <jim@meyering.net>
8035
8036         Don't let endgrent clobber errno, no matter how improbable.
8037         * lib/getugroups.c (getugroups): Save and restore errno around
8038         endgrent call.
8039
8040         Close the group DB even when failing with 2^31 or more members.
8041         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
8042
8043 2007-07-04  Jim Meyering  <jim@meyering.net>
8044
8045         * lib/getugroups.h: New file.
8046         * lib/getugroups.c: Include "getugroups.h".
8047         Remove uses of "register" keyword.
8048         Move local variable, "cp", down into scope where used.
8049         Give "username" parameter the "const" attribute.
8050         * modules/getugroups (Files): Add lib/getugroups.h
8051
8052 2007-07-04  Karl Berry  <karl@gnu.org>
8053
8054         * MODULES.html.sh (func_all_modules): Complete rename of
8055         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
8056
8057 2007-07-02  Bruno Haible  <bruno@clisp.org>
8058
8059         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
8060         mode, when inttypes.h comes from gnulib.
8061         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
8062
8063 2007-07-02  Simon Josefsson  <simon@josefsson.org>
8064
8065         * NEWS: Mention lgpl module name change.
8066
8067         * modules/lgpl-2.1: Renamed from lgpl.
8068
8069         * NEWS: Mention gpl module name change.
8070
8071         * modules/gpl-3.0: New file, based on gpl-2.0.
8072
8073         * modules/gpl-2.0: Renamed from gpl.
8074
8075         * modules/gpl: Fix filename, doc/gpl.texi is now found at
8076         doc/gpl-2.0.texi.
8077
8078 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
8079
8080         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
8081         #define __STDC_LIMIT_MACROS temporarily while including
8082         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
8083         Problem reported by Joel E. Denny in
8084         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
8085
8086 2007-07-01  Bruno Haible  <bruno@clisp.org>
8087
8088         * lib/unistdio.h: New file.
8089         * lib/unistdio/u-asnprintf.h: New file.
8090         * lib/unistdio/u-asprintf.h: New file.
8091         * lib/unistdio/u-printf-args.c: New file.
8092         * lib/unistdio/u-printf-args.h: New file.
8093         * lib/unistdio/u-printf-parse.h: New file.
8094         * lib/unistdio/u-snprintf.h: New file.
8095         * lib/unistdio/u-sprintf.h: New file.
8096         * lib/unistdio/u-vasprintf.h: New file.
8097         * lib/unistdio/u-vsnprintf.h: New file.
8098         * lib/unistdio/u-vsprintf.h: New file.
8099         * lib/unistdio/ulc-asnprintf.c: New file.
8100         * lib/unistdio/ulc-asprintf.c: New file.
8101         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
8102         * lib/unistdio/ulc-printf-parse.c: New file.
8103         * lib/unistdio/ulc-snprintf.c: New file.
8104         * lib/unistdio/ulc-sprintf.c: New file.
8105         * lib/unistdio/ulc-vasnprintf.c: New file.
8106         * lib/unistdio/ulc-vasprintf.c: New file.
8107         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
8108         * lib/unistdio/ulc-vsnprintf.c: New file.
8109         * lib/unistdio/ulc-vsprintf.c: New file.
8110         * lib/unistdio/u8-asnprintf.c: New file.
8111         * lib/unistdio/u8-asprintf.c: New file.
8112         * lib/unistdio/u8-printf-parse.c: New file.
8113         * lib/unistdio/u8-snprintf.c: New file.
8114         * lib/unistdio/u8-sprintf.c: New file.
8115         * lib/unistdio/u8-vasnprintf.c: New file.
8116         * lib/unistdio/u8-vasprintf.c: New file.
8117         * lib/unistdio/u8-vsnprintf.c: New file.
8118         * lib/unistdio/u8-vsprintf.c: New file.
8119         * lib/unistdio/u8-u8-asnprintf.c: New file.
8120         * lib/unistdio/u8-u8-asprintf.c: New file.
8121         * lib/unistdio/u8-u8-snprintf.c: New file.
8122         * lib/unistdio/u8-u8-sprintf.c: New file.
8123         * lib/unistdio/u8-u8-vasnprintf.c: New file.
8124         * lib/unistdio/u8-u8-vasprintf.c: New file.
8125         * lib/unistdio/u8-u8-vsnprintf.c: New file.
8126         * lib/unistdio/u8-u8-vsprintf.c: New file.
8127         * lib/unistdio/u16-asnprintf.c: New file.
8128         * lib/unistdio/u16-asprintf.c: New file.
8129         * lib/unistdio/u16-printf-parse.c: New file.
8130         * lib/unistdio/u16-snprintf.c: New file.
8131         * lib/unistdio/u16-sprintf.c: New file.
8132         * lib/unistdio/u16-vasnprintf.c: New file.
8133         * lib/unistdio/u16-vasprintf.c: New file.
8134         * lib/unistdio/u16-vsnprintf.c: New file.
8135         * lib/unistdio/u16-vsprintf.c: New file.
8136         * lib/unistdio/u16-u16-asnprintf.c: New file.
8137         * lib/unistdio/u16-u16-asprintf.c: New file.
8138         * lib/unistdio/u16-u16-snprintf.c: New file.
8139         * lib/unistdio/u16-u16-sprintf.c: New file.
8140         * lib/unistdio/u16-u16-vasnprintf.c: New file.
8141         * lib/unistdio/u16-u16-vasprintf.c: New file.
8142         * lib/unistdio/u16-u16-vsnprintf.c: New file.
8143         * lib/unistdio/u16-u16-vsprintf.c: New file.
8144         * lib/unistdio/u32-asnprintf.c: New file.
8145         * lib/unistdio/u32-asprintf.c: New file.
8146         * lib/unistdio/u32-printf-parse.c: New file.
8147         * lib/unistdio/u32-snprintf.c: New file.
8148         * lib/unistdio/u32-sprintf.c: New file.
8149         * lib/unistdio/u32-vasnprintf.c: New file.
8150         * lib/unistdio/u32-vasprintf.c: New file.
8151         * lib/unistdio/u32-vsnprintf.c: New file.
8152         * lib/unistdio/u32-vsprintf.c: New file.
8153         * lib/unistdio/u32-u32-asnprintf.c: New file.
8154         * lib/unistdio/u32-u32-asprintf.c: New file.
8155         * lib/unistdio/u32-u32-snprintf.c: New file.
8156         * lib/unistdio/u32-u32-sprintf.c: New file.
8157         * lib/unistdio/u32-u32-vasnprintf.c: New file.
8158         * lib/unistdio/u32-u32-vasprintf.c: New file.
8159         * lib/unistdio/u32-u32-vsnprintf.c: New file.
8160         * lib/unistdio/u32-u32-vsprintf.c: New file.
8161         * tests/unistdio/test-ulc-asnprintf1.c: New file.
8162         * tests/unistdio/test-ulc-asnprintf1.h: New file.
8163         * tests/unistdio/test-ulc-printf1.h: New file.
8164         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
8165         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
8166         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
8167         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
8168         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
8169         * tests/unistdio/test-ulc-vasprintf1.c: New file.
8170         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
8171         * tests/unistdio/test-ulc-vsprintf1.c: New file.
8172         * tests/unistdio/test-u8-asnprintf1.c: New file.
8173         * tests/unistdio/test-u8-asnprintf1.h: New file.
8174         * tests/unistdio/test-u8-printf1.h: New file.
8175         * tests/unistdio/test-u8-vasnprintf1.c: New file.
8176         * tests/unistdio/test-u8-vasnprintf2.c: New file.
8177         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
8178         * tests/unistdio/test-u8-vasnprintf3.c: New file.
8179         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
8180         * tests/unistdio/test-u8-vasprintf1.c: New file.
8181         * tests/unistdio/test-u8-vsnprintf1.c: New file.
8182         * tests/unistdio/test-u8-vsprintf1.c: New file.
8183         * tests/unistdio/test-u16-asnprintf1.c: New file.
8184         * tests/unistdio/test-u16-asnprintf1.h: New file.
8185         * tests/unistdio/test-u16-printf1.h: New file.
8186         * tests/unistdio/test-u16-vasnprintf1.c: New file.
8187         * tests/unistdio/test-u16-vasnprintf2.c: New file.
8188         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
8189         * tests/unistdio/test-u16-vasnprintf3.c: New file.
8190         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
8191         * tests/unistdio/test-u16-vasprintf1.c: New file.
8192         * tests/unistdio/test-u16-vsnprintf1.c: New file.
8193         * tests/unistdio/test-u16-vsprintf1.c: New file.
8194         * tests/unistdio/test-u32-asnprintf1.c: New file.
8195         * tests/unistdio/test-u32-asnprintf1.h: New file.
8196         * tests/unistdio/test-u32-printf1.h: New file.
8197         * tests/unistdio/test-u32-vasnprintf1.c: New file.
8198         * tests/unistdio/test-u32-vasnprintf2.c: New file.
8199         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
8200         * tests/unistdio/test-u32-vasnprintf3.c: New file.
8201         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
8202         * tests/unistdio/test-u32-vasprintf1.c: New file.
8203         * tests/unistdio/test-u32-vsnprintf1.c: New file.
8204         * tests/unistdio/test-u32-vsprintf1.c: New file.
8205         * modules/unistdio/base: New file.
8206         * modules/unistdio/u-printf-args: New file.
8207         * modules/unistdio/ulc-asnprintf: New file.
8208         * modules/unistdio/ulc-asprintf: New file.
8209         * modules/unistdio/ulc-fprintf: New file.
8210         * modules/unistdio/ulc-printf-parse: New file.
8211         * modules/unistdio/ulc-snprintf: New file.
8212         * modules/unistdio/ulc-sprintf: New file.
8213         * modules/unistdio/ulc-vasnprintf: New file.
8214         * modules/unistdio/ulc-vasprintf: New file.
8215         * modules/unistdio/ulc-vfprintf: New file.
8216         * modules/unistdio/ulc-vsnprintf: New file.
8217         * modules/unistdio/ulc-vsprintf: New file.
8218         * modules/unistdio/u8-asnprintf: New file.
8219         * modules/unistdio/u8-asprintf: New file.
8220         * modules/unistdio/u8-printf-parse: New file.
8221         * modules/unistdio/u8-snprintf: New file.
8222         * modules/unistdio/u8-sprintf: New file.
8223         * modules/unistdio/u8-vasnprintf: New file.
8224         * modules/unistdio/u8-vasprintf: New file.
8225         * modules/unistdio/u8-vsnprintf: New file.
8226         * modules/unistdio/u8-vsprintf: New file.
8227         * modules/unistdio/u8-u8-asnprintf: New file.
8228         * modules/unistdio/u8-u8-asprintf: New file.
8229         * modules/unistdio/u8-u8-snprintf: New file.
8230         * modules/unistdio/u8-u8-sprintf: New file.
8231         * modules/unistdio/u8-u8-vasnprintf: New file.
8232         * modules/unistdio/u8-u8-vasprintf: New file.
8233         * modules/unistdio/u8-u8-vsnprintf: New file.
8234         * modules/unistdio/u8-u8-vsprintf: New file.
8235         * modules/unistdio/u16-asnprintf: New file.
8236         * modules/unistdio/u16-asprintf: New file.
8237         * modules/unistdio/u16-printf-parse: New file.
8238         * modules/unistdio/u16-snprintf: New file.
8239         * modules/unistdio/u16-sprintf: New file.
8240         * modules/unistdio/u16-vasnprintf: New file.
8241         * modules/unistdio/u16-vasprintf: New file.
8242         * modules/unistdio/u16-vsnprintf: New file.
8243         * modules/unistdio/u16-vsprintf: New file.
8244         * modules/unistdio/u16-u16-asnprintf: New file.
8245         * modules/unistdio/u16-u16-asprintf: New file.
8246         * modules/unistdio/u16-u16-snprintf: New file.
8247         * modules/unistdio/u16-u16-sprintf: New file.
8248         * modules/unistdio/u16-u16-vasnprintf: New file.
8249         * modules/unistdio/u16-u16-vasprintf: New file.
8250         * modules/unistdio/u16-u16-vsnprintf: New file.
8251         * modules/unistdio/u16-u16-vsprintf: New file.
8252         * modules/unistdio/u32-asnprintf: New file.
8253         * modules/unistdio/u32-asprintf: New file.
8254         * modules/unistdio/u32-printf-parse: New file.
8255         * modules/unistdio/u32-snprintf: New file.
8256         * modules/unistdio/u32-sprintf: New file.
8257         * modules/unistdio/u32-vasnprintf: New file.
8258         * modules/unistdio/u32-vasprintf: New file.
8259         * modules/unistdio/u32-vsnprintf: New file.
8260         * modules/unistdio/u32-vsprintf: New file.
8261         * modules/unistdio/u32-u32-asnprintf: New file.
8262         * modules/unistdio/u32-u32-asprintf: New file.
8263         * modules/unistdio/u32-u32-snprintf: New file.
8264         * modules/unistdio/u32-u32-sprintf: New file.
8265         * modules/unistdio/u32-u32-vasnprintf: New file.
8266         * modules/unistdio/u32-u32-vasprintf: New file.
8267         * modules/unistdio/u32-u32-vsnprintf: New file.
8268         * modules/unistdio/u32-u32-vsprintf: New file.
8269         * modules/unistdio/ulc-asnprintf-tests: New file.
8270         * modules/unistdio/ulc-vasnprintf-tests: New file.
8271         * modules/unistdio/ulc-vasprintf-tests: New file.
8272         * modules/unistdio/ulc-vsnprintf-tests: New file.
8273         * modules/unistdio/ulc-vsprintf-tests: New file.
8274         * modules/unistdio/u8-asnprintf-tests: New file.
8275         * modules/unistdio/u8-vasnprintf-tests: New file.
8276         * modules/unistdio/u8-vasprintf-tests: New file.
8277         * modules/unistdio/u8-vsnprintf-tests: New file.
8278         * modules/unistdio/u8-vsprintf-tests: New file.
8279         * modules/unistdio/u16-asnprintf-tests: New file.
8280         * modules/unistdio/u16-vasnprintf-tests: New file.
8281         * modules/unistdio/u16-vasprintf-tests: New file.
8282         * modules/unistdio/u16-vsnprintf-tests: New file.
8283         * modules/unistdio/u16-vsprintf-tests: New file.
8284         * modules/unistdio/u32-asnprintf-tests: New file.
8285         * modules/unistdio/u32-vasnprintf-tests: New file.
8286         * modules/unistdio/u32-vasprintf-tests: New file.
8287         * modules/unistdio/u32-vsnprintf-tests: New file.
8288         * modules/unistdio/u32-vsprintf-tests: New file.
8289         * MODULES.html.sh (Unicode string functions): Add the new modules.
8290
8291 2007-07-01  Bruno Haible  <bruno@clisp.org>
8292
8293         * lib/sprintf.c (sprintf): Limit the available length estimation,
8294         to avoid address wraparound.
8295         * lib/vsprintf.c (vsprintf): Likewise.
8296         * modules/sprintf-posix (Dependencies): Add stdint.
8297         * modules/vsprintf-posix (Dependencies): Likewise.
8298
8299 2007-07-01  Bruno Haible  <bruno@clisp.org>
8300
8301         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
8302         Windows PATH as well. Conservative double-quoting. Comments.
8303
8304 2007-07-01  Bruno Haible  <bruno@clisp.org>
8305             Eric Blake  <ebb9@byu.net>
8306             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8307
8308         * gnulib-tool (self_abspathname): Fix algorithm to cope with
8309         empty components in $PATH, denoting '.'.
8310
8311 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8312
8313         * gnulib-tool: Fix indentation.
8314         (func_create_megatestdir): Likewise.
8315         Report by Bruno Haible.
8316
8317 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8318
8319         Sync from Automake.
8320         * build-aux/gnupload: Fix shell portability issues with for loops.
8321         Report by Karl Berry.
8322
8323 2007-06-29  Simon Josefsson  <simon@josefsson.org>
8324
8325         * build-aux/maint.mk (POURL): Use translationproject.org.
8326
8327 2007-06-27  Simon Josefsson  <simon@josefsson.org>
8328             Bruno Haible  <bruno@clisp.org>
8329
8330         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
8331         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
8332         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
8333         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
8334         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
8335
8336 2007-06-27  Bruno Haible  <bruno@clisp.org>
8337
8338         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
8339         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
8340
8341 2007-06-26  Karl Berry  <karl@gnu.org>
8342
8343         * MODULES.html.sh: remove xreadlink-with-size.
8344
8345 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8346
8347         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
8348         method that I hope also handles the double-include problem noted
8349         by Bruno Haible in
8350         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
8351
8352 2007-06-23  Bruno Haible  <bruno@clisp.org>
8353
8354         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8355         Don't let the 'mostlyclean' target fail if the last subdirectory could
8356         not be removed.
8357         Reported by Karl Berry.
8358
8359 2007-06-23  Bruno Haible  <bruno@clisp.org>
8360
8361         * gnulib-tool (echo): Add a speedier workaround for ksh.
8362         * tests/test-echo.sh: Likewise.
8363
8364 2007-06-23  Bruno Haible  <bruno@clisp.org>
8365
8366         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
8367         * tests/test-echo.sh: Likewise.
8368
8369 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8370
8371         * gnulib-tool (IFS): Initialize early, so we don't set it to
8372         empty later.
8373         (self_abspathname): Rewrite algorithm to set it, reindent.
8374         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
8375         (func_create_megatestdir): Merge some sed scripts.
8376
8377 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8378
8379         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
8380         exposed by Sun Studio 11 cc on Solaris 8.
8381
8382 2007-06-22  Bruno Haible  <bruno@clisp.org>
8383
8384         * gnulib-tool (echo): Ensure the echo primitive does not interpret
8385         backslashes.
8386         * tests/test-echo.sh: New file.
8387
8388 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8389
8390         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
8391         simplify `sed_replace_build_aux' scripts, they are portable but
8392         echoing them with `echo' is not.
8393         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
8394
8395 2007-06-21  Karl Berry  <karl@gnu.org>
8396
8397         * config/srclist.txt: guess we can't handle the licenses via
8398         srclist at the moment.
8399
8400 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
8401
8402         * MODULES.html.sh: Add include_next.
8403         * modules/include_next: New file.
8404
8405 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8406
8407         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
8408         INCLUDE_NEXT.
8409         (gl_CHECK_NEXT_HEADERS): New macro.
8410         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
8411         the obsolescent gl_ABSOLUTE_HEADER.
8412         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
8413         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
8414         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
8415         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
8416         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
8417         * m4/math_h.m4 (gl_MATH_H): Likewise.
8418         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
8419         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
8420         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
8421         * m4/stdint.m4 (gl_STDINT_H): Likewise.
8422         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
8423         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
8424         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
8425         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8426         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
8427         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
8428         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
8429         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
8430         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
8431         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
8432         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8433         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
8434         * m4/inttypes.m4 (gl_INTTYPES_H): Define
8435         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
8436         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
8437         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
8438         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
8439         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
8440         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
8441         * lib/float_.h: Likewise.
8442         * lib/inttypes_.h: Likewise.
8443         * lib/math_.h: Likewise.
8444         * lib/search_.h: Likewise.
8445         * lib/signal_.h: Likewise.
8446         * lib/stdint_.h: Likewise.
8447         * lib/stdio_.h: Likewise.
8448         * lib/stdlib_.h: Likewise.
8449         * lib/string_.h: Likewise.
8450         * lib/sys_stat_.h: Likewise.
8451         * lib/sys_time_.h: Likewise.
8452         * lib/time_.h: Likewise.
8453         * lib/unistd_.h: Likewise.
8454         * lib/wchar_.h: Likewise.
8455         * lib/wctype_.h: Likewise.
8456         * lib/dirent_.h: Likewise.
8457         * lib/iconv_.h: Likewise.
8458         * lib/locale_.h: Likewise.
8459         * lib/netinet_in_.h: Likewise.
8460         * lib/sys_select_.h: Likewise.
8461         * lib/sys_socket_.h: Likewise.
8462         * lib/sysexits_.h: Likewise.
8463         * modules/fcntl (Depends-on): Depend on include_next, not
8464         absolute_header.
8465         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
8466         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
8467         * modules/fchdir: Likewise.
8468         * modules/float: Likewise.
8469         * modules/iconv_open: Likewise.
8470         * modules/inttypes: Likewise.
8471         * modules/locale: Likewise.
8472         * modules/math: Likewise.
8473         * modules/netinet_in: Likewise.
8474         * modules/search: Likewise.
8475         * modules/signal: Likewise.
8476         * modules/stdint: Likewise.
8477         * modules/stdio: Likewise.
8478         * modules/stdlib: Likewise.
8479         * modules/string: Likewise.
8480         * modules/sys_select: Likewise.
8481         * modules/sys_socket: Likewise.
8482         * modules/sys_stat: Likewise.
8483         * modules/sys_time: Likewise.
8484         * modules/sysexits: Likewise.
8485         * modules/time: Likewise.
8486         * modules/unistd: Likewise.
8487         * modules/wchar: Likewise.
8488         * modules/wctype: Likewise.
8489         * modules/sys_stat: Change maintainer to "all".
8490         * modules/unistd: Likewise.
8491
8492 2007-06-20  Karl Berry  <karl@gnu.org>
8493
8494         * config/srclist.txt: track www changes in license files.
8495
8496 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
8497
8498         * build-aux/bootstrap: Remove stray dot.
8499         Make sure build_aux settings are honored when linking
8500         gnulib_extra_files.
8501
8502 2007-06-19  Eric Blake  <ebb9@byu.net>
8503
8504         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
8505         Allow compilation on cygwin.
8506
8507 2007-06-19  Jim Meyering  <jim@meyering.net>
8508
8509         xreadlink-with-size: Remove module.  No longer used.
8510         Ex-callers now use xreadlink or mreadlink-with-size.
8511         * modules/xreadlink-with-size: Remove module.
8512         * lib/xreadlink-with-size.c: Remove file.
8513         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
8514         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
8515         just before the function definition *is* accurate.
8516
8517         Eliminate one way canonicalize_filename_mode could exit.
8518         * lib/canonicalize.c (canonicalize_filename_mode):
8519         Use mreadlink_with_size, not xreadlink_with_size.
8520
8521 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
8522
8523         Detect porting problems to FreeBSD/arm, which has time_t wider than
8524         long int.  Original problem reported for GNU diff by Xin Li in
8525         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
8526         * modules/getdate (Depends-on): Add intprops, verify.
8527         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
8528         is an integer type no wider than long int.
8529
8530 2007-06-18  Jim Meyering  <jim@meyering.net>
8531
8532         New module: mreadlink-with-size.
8533         * MODULES.html.sh: Add mreadlink-with-size.
8534         * modules/mreadlink-with-size: New module
8535         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
8536         not xreadlink-with-size.
8537         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
8538
8539 2007-06-16  Bruno Haible  <bruno@clisp.org>
8540
8541         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
8542         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
8543         Reported by Gary V. Vaughan <gary@gnu.org>.
8544
8545 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
8546
8547         Revamp lchown so that it lives in unistd.h where it belongs.
8548         * lib/lchown.h: Remove.
8549         * lib/dirchownmod.c: Don't include lib/lchown.h.
8550         * lib/fchownat.c: Likewise.
8551         * lib/openat.c: Likewise.
8552         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
8553         does not follow symlinks.
8554         (EOPNOTSUPP): Define if not defined.
8555         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
8556         is defined to 0.
8557         (lchown): New decl.
8558         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
8559         Do not check for lchown decl.
8560         Set REPLACE_LCHOWN.
8561         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
8562         REPLACE_LCHOWN.
8563         * modules/chown: Make it clear it follows symlinks.
8564         * modules/lchown: Make it clear it doesn't follow symlinks.
8565         (Files): Remove lib/lchown.h
8566         (Depends-on): Add unistd.
8567         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
8568         (Include): Include <unistd.h>, not "lchown.h".
8569         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
8570         REPLACE_LCHOWN.
8571
8572 2007-06-15  Jim Meyering  <jim@meyering.net>
8573
8574         Change license (GPL to LGPL) of fsusage and dependents.
8575         * modules/fsusage (License): Change to LGPL.
8576         * modules/full-read (License): Likewise.
8577         * modules/full-write (License): Likewise.
8578         * modules/safe-read (License): Likewise.
8579         * modules/safe-write (License): Likewise.
8580
8581 2007-06-14  Ben Pfaff  <blp@gnu.org>
8582
8583         Missing part of allocsa -> malloca transition.
8584         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
8585         gl_MALLOCA.
8586
8587 2007-06-12  Bruno Haible  <bruno@clisp.org>
8588
8589         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
8590         to ia64, x86_64, i386.
8591         Reported by Eric Blake.
8592
8593 2007-06-12  Bruno Haible  <bruno@clisp.org>
8594
8595         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
8596         cross-compiling to x86_64.
8597
8598 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
8599
8600         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
8601         glitch reported by Ralf Wildenhues in
8602         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
8603
8604         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
8605         Vin Shelton.
8606
8607 2007-06-11  Bruno Haible  <bruno@clisp.org>
8608
8609         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
8610         replacement string.
8611         Reported by Eric Blake.
8612
8613 2007-06-10  Bruno Haible  <bruno@clisp.org>
8614
8615         Prepare vasnprintf code for use with Unicode strings.
8616         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
8617         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
8618         TYPE_U32_STRING.
8619         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
8620         a_u32_string variants.
8621         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
8622         * lib/printf-args.c: Don't include config.h and the specification
8623         header if PRINTF_FETCHARGS is already defined.
8624         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
8625         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
8626         TYPE_U16_STRING, TYPE_U32_STRING.
8627         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
8628         u16_directive, u16_directives, u32_directive, u32_directives): New
8629         types.
8630         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
8631         New declarations.
8632         * lib/printf-parse.c: Don't include config.h and the specification
8633         header if PRINTF_PARSE is already defined. Eliminate the set of
8634         parameters for WIDE_CHAR_VERSION; the user of this file must provide
8635         them now. Include c-ctype.h.
8636         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
8637         directive and CHAR_T_ONLY_ASCII.
8638         * lib/vasnprintf.c: Don't include config.h and the specification header
8639         if VASNPRINTF is already defined.
8640         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
8641         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
8642         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
8643         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
8644         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
8645         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
8646         code accordingly.
8647         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
8648         pad_ourselves also in this case, with the 'c' and 's' directives, and
8649         with a different notion of "width".
8650         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
8651
8652 2007-06-10  Bruno Haible  <bruno@clisp.org>
8653
8654         * modules/unistr/u32-mbsnlen: New file.
8655         * lib/unistr/u32-mbsnlen.c: New file.
8656
8657         * modules/unistr/u16-mbsnlen: New file.
8658         * lib/unistr/u16-mbsnlen.c: New file.
8659
8660         * modules/unistr/u8-mbsnlen: New file.
8661         * lib/unistr/u8-mbsnlen.c: New file.
8662
8663         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
8664         declarations.
8665
8666 2007-06-10  Bruno Haible  <bruno@clisp.org>
8667
8668         * lib/string_.h (mbsnlen): New declaration.
8669         * lib/mbsnlen.c: New file.
8670         * m4/mbsnlen.m4: New file.
8671         * modules/mbsnlen: New file.
8672         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
8673         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
8674         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
8675
8676 2007-06-10  Bruno Haible  <bruno@clisp.org>
8677
8678         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
8679
8680 2007-06-10  Bruno Haible  <bruno@clisp.org>
8681
8682         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
8683         * lib/mbuiter.h: Likewise.
8684
8685 2007-06-10  Bruno Haible  <bruno@clisp.org>
8686
8687         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
8688         declaration.
8689
8690 2007-06-10  Karl Berry  <karl@gnu.org>
8691
8692         * config/srclist.txt: remove gettext entries, Bruno prefers
8693         to update individually.
8694
8695 2007-06-10  Bruno Haible  <bruno@clisp.org>
8696
8697         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
8698         'maxlen'. Ensure only length + width bytes are allocated, not
8699         length + 1 + width.
8700
8701 2007-06-09  Bruno Haible  <bruno@clisp.org>
8702
8703         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
8704         (CHAR_T): Remove macro.
8705         (VASNPRINTF): Update.
8706
8707 2007-06-09  Bruno Haible  <bruno@clisp.org>
8708
8709         * MODULES.html.sh (Unicode string functions): Add the new modules.
8710
8711         * modules/uniconv/u32-conv-to-enc: New file.
8712         * lib/uniconv/u32-conv-to-enc.c: New file.
8713         * modules/uniconv/u32-conv-to-enc-tests: New file.
8714         * tests/uniconv/test-u32-conv-to-enc.c: New file.
8715
8716         * modules/uniconv/u16-conv-to-enc: New file.
8717         * lib/uniconv/u16-conv-to-enc.c: New file.
8718         * lib/uniconv/u-conv-to-enc.h: New file.
8719         * modules/uniconv/u16-conv-to-enc-tests: New file.
8720         * tests/uniconv/test-u16-conv-to-enc.c: New file.
8721
8722         * modules/uniconv/u8-conv-to-enc: New file.
8723         * lib/uniconv/u8-conv-to-enc.c: New file.
8724         * modules/uniconv/u8-conv-to-enc-tests: New file.
8725         * tests/uniconv/test-u8-conv-to-enc.c: New file.
8726
8727         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
8728         u32_conv_to_encoding): New declarations.
8729
8730 2007-06-09  Bruno Haible  <bruno@clisp.org>
8731
8732         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
8733
8734 2007-06-09  Bruno Haible  <bruno@clisp.org>
8735
8736         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
8737         * modules/malloca: Renamed from modules/allocsa, updated.
8738         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
8739         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
8740         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
8741         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
8742         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
8743         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
8744         * modules/xmalloca: Renamed from modules/xallocsa, updated.
8745         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
8746         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
8747         * modules/c-strcasestr (Depends-on): Update.
8748         * lib/c-strcasestr.c: Update.
8749         * modules/c-strstr (Depends-on): Update.
8750         * lib/c-strstr.c: Update.
8751         * modules/canonicalize-lgpl (Depends-on): Update.
8752         * lib/canonicalize-lgpl.c: Update.
8753         * modules/clean-temp (Depends-on): Update.
8754         * lib/clean-temp.c: Update.
8755         * modules/csharpcomp (Depends-on): Update.
8756         * lib/csharpcomp.c: Update.
8757         * modules/csharpexec (Depends-on): Update.
8758         * lib/csharpexec.c: Update.
8759         * modules/javacomp (Depends-on): Update.
8760         * lib/javacomp.c: Update.
8761         * modules/javaexec (Depends-on): Update.
8762         * lib/javaexec.c: Update.
8763         * modules/mbscasestr (Depends-on): Update.
8764         * lib/mbscasestr.c: Update.
8765         * modules/mbsstr (Depends-on): Update.
8766         * lib/mbsstr.c: Update.
8767         * modules/setenv (Depends-on): Update.
8768         * lib/setenv.c: Update.
8769         * modules/strcasestr (Depends-on): Update.
8770         * lib/strcasestr.c: Update.
8771         * modules/striconveha (Depends-on): Update.
8772         * lib/striconveha.c: Update.
8773         * modules/relocatable-prog-wrapper (Files): Update.
8774         * lib/relocwrapper.c: Update.
8775         * build-aux/install-reloc: Update.
8776         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
8777
8778 2007-06-08  Bruno Haible  <bruno@clisp.org>
8779
8780         Port to uClibc.
8781         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
8782         * lib/fpurge.c (fpurge): Likewise.
8783         * lib/freading.c (freading): Likewise.
8784         * lib/fseeko.c (rpl_fseeko): Likewise.
8785         * lib/fseterr.c (fseterr): Likewise.
8786         * lib/fwriting.c (fwriting): Likewise.
8787         * tests/test-fflush.c (main): Avoid a failure on uClibc.
8788
8789 2007-06-08  Bruno Haible  <bruno@clisp.org>
8790
8791         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
8792         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
8793         * modules/gettext (Files): Add m4/intlmacosx.m4.
8794
8795 2007-06-07  Bruno Haible  <bruno@clisp.org>
8796
8797         * modules/localename-tests: New file.
8798         * tests/test-localename.c: New file.
8799
8800         New module 'localename'.
8801         * lib/localename.h: New file.
8802         * lib/localename.c: New file, from GNU gettext.
8803         * m4/localename.m4: New file.
8804         * modules/localename: New file.
8805
8806 2007-06-07  Bruno Haible  <bruno@clisp.org>
8807
8808         Work around the lack of <wchar.h> on some builds of uClibc.
8809         * doc/headers/wchar.texi: Update.
8810         * lib/wchar_.h: Include <wchar.h> only if it exists.
8811         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
8812         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
8813         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
8814         doesn't exist.
8815         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
8816         * modules/mbfile (Depends-on): Add wchar.
8817         * modules/mbiter (Depends-on): Likewise.
8818         * modules/mbuiter (Depends-on): Likewise.
8819         Reported by Simon Josefsson.
8820
8821 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
8822
8823         Work around problem reported by Steven M. Schweda in
8824         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
8825         Tru64 5.1B with the Compaq compiler environment installed declares
8826         an 'isblank' function but does not define it in the C library.
8827         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
8828         * lib/regex_internal.h (isblank): Likewise.
8829         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
8830         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
8831
8832 2007-06-05  Bruno Haible  <bruno@clisp.org>
8833
8834         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
8835         ia64.
8836         * modules/printf-safe: New file.
8837         * modules/fprintf-posix (Depends-on): Add printf-safe.
8838         * modules/printf-posix (Depends-on): Likewise.
8839         * modules/snprintf-posix (Depends-on): Likewise.
8840         * modules/sprintf-posix (Depends-on): Likewise.
8841         * modules/vasnprintf-posix (Depends-on): Likewise.
8842         * modules/vasprintf-posix (Depends-on): Likewise.
8843         * modules/vfprintf-posix (Depends-on): Likewise.
8844         * modules/vprintf-posix (Depends-on): Likewise.
8845         * modules/vsnprintf-posix (Depends-on): Likewise.
8846         * modules/vsprintf-posix (Depends-on): Likewise.
8847         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
8848         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
8849         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
8850         "no" on i386, x86_64, ia64.
8851         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
8852         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8853         on i386, x86_64, ia64.
8854         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
8855         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8856         on i386, x86_64, ia64.
8857         * tests/test-vasnprintf-posix.c: Include float.h.
8858         (LDBL80_WORDS): New macro.
8859         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8860         on i386, x86_64, ia64.
8861         * tests/test-vasprintf-posix.c: Include float.h.
8862         (LDBL80_WORDS): New macro.
8863         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8864         on i386, x86_64, ia64.
8865         * tests/test-snprintf-posix.c: Include float.h.
8866         * tests/test-sprintf-posix.c: Likewise.
8867         * tests/test-vsnprintf-posix.c: Likewise.
8868         * tests/test-vsprintf-posix.c: Likewise.
8869
8870 2007-06-05  Bruno Haible  <bruno@clisp.org>
8871
8872         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
8873         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
8874         non-IEEE numbers on i386, x86_64, ia64.
8875         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
8876         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
8877         * tests/test-isnanl.h: Include float.h.
8878         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
8879
8880 2007-06-05  Bruno Haible  <bruno@clisp.org>
8881
8882         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
8883         also the %a / %A. Handle the %a / %A code before this extra handling.
8884
8885 2007-06-05  Bruno Haible  <bruno@clisp.org>
8886
8887         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
8888         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
8889
8890 2007-06-05  Bruno Haible  <bruno@clisp.org>
8891
8892         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
8893         typo in variable name.
8894
8895 2007-06-05  Eric Blake  <ebb9@byu.net>
8896
8897         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
8898         Reported by Simon Josefsson.
8899
8900 2007-06-04  Bruno Haible  <bruno@clisp.org>
8901
8902         Avoid test failures on some PowerPC platforms.
8903         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
8904         Define differently for PowerPC.
8905         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
8906         Reported by Gary V. Vaughan <gary@gnu.org>.
8907
8908 2007-06-02  Bruno Haible  <bruno@clisp.org>
8909
8910         Fix test-stdint failure on FreeBSD/ia64.
8911         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
8912         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
8913         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
8914         * doc/headers/stdint.texi: Update.
8915
8916 2007-06-01  Bruno Haible  <bruno@clisp.org>
8917
8918         * tests/test-binary-io.c (main): Pass a third argument to open().
8919         Reported by Gary V. Vaughan <gary@gnu.org>.
8920
8921 2007-06-01  Bruno Haible  <bruno@clisp.org>
8922
8923         * doc/functions/frexpl.texi: Update for mingw.
8924
8925 2007-06-01  Bruno Haible  <bruno@clisp.org>
8926
8927         * tests/test-lseek.c (main): Disable test of errno for invalid third
8928         argument.
8929         * doc/functions/lseek.texi: Update.
8930         Reported by Gary V. Vaughan <gary@gnu.org>.
8931
8932 2007-05-28  Bruno Haible  <bruno@clisp.org>
8933
8934         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
8935
8936 2007-05-31  Eric Blake  <ebb9@byu.net>
8937
8938         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
8939         cross compiling.
8940
8941 2007-05-30  Eric Blake  <ebb9@byu.net>
8942         and Bruno Haible  <bruno@clisp.org>
8943
8944         Work around mingw test failures exposed by m4-1.4.9b.
8945         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
8946         * tests/test-unistd.c: Disable uid_t and git_t tests for the
8947         moment.
8948
8949 2007-05-30  Bruno Haible  <bruno@clisp.org>
8950
8951         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
8952         assuming that they are closed. Needed on HP-UX 11.
8953
8954 2007-05-29  Bruno Haible  <bruno@clisp.org>
8955
8956         Fix a problem with #include_next.
8957         * lib/dirent_.h: Split the double-inclusion guard.
8958         * lib/fcntl_.h: Likewise.
8959         * lib/float_.h: Likewise.
8960         * lib/iconv_.h: Likewise.
8961         * lib/inttypes_.h: Likewise.
8962         * lib/locale_.h: Likewise.
8963         * lib/math_.h: Likewise.
8964         * lib/netinet_in_.h: Likewise.
8965         * lib/search_.h: Likewise.
8966         * lib/signal_.h: Likewise.
8967         * lib/stdint_.h: Likewise.
8968         * lib/stdio_.h: Likewise.
8969         * lib/stdlib_.h: Likewise.
8970         * lib/string_.h: Likewise.
8971         * lib/sys_select_.h: Likewise.
8972         * lib/sys_socket_.h: Likewise.
8973         * lib/sys_stat_.h: Likewise.
8974         * lib/sys_time_.h: Likewise.
8975         * lib/sysexits_.h: Likewise.
8976         * lib/time_.h: Likewise.
8977         * lib/unistd_.h: Likewise.
8978         * lib/wchar_.h: Likewise.
8979         * lib/wctype_.h: Likewise.
8980
8981 2007-05-29  Bruno Haible  <bruno@clisp.org>
8982
8983         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
8984         for the moment.
8985
8986 2007-05-29  Bruno Haible  <bruno@clisp.org>
8987
8988         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
8989         invocation.
8990         Reported by Eric Blake.
8991
8992 2007-05-29  Bruno Haible  <bruno@clisp.org>
8993
8994         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
8995         compiling case.
8996
8997 2007-05-29  Eric Blake  <ebb9@byu.net>
8998             Bruno Haible  <bruno@clisp.org>
8999
9000         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
9001         cross compiles.
9002
9003 2007-05-28  Eric Blake  <ebb9@byu.net>
9004
9005         * modules/closein-tests (test_closein_LDADD): Support test on
9006         cygwin with libtool.
9007
9008 2007-05-28  Bruno Haible  <bruno@clisp.org>
9009
9010         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
9011         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
9012         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
9013         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
9014         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
9015         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
9016         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
9017         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
9018         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
9019
9020 2007-05-28  Eric Blake  <ebb9@byu.net>
9021
9022         Unconditionally include <config.h> in unit tests.
9023         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
9024         * tests/test-allocsa.c, tests/test-arcfour.c,
9025         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
9026         tests/test-array_list.c, tests/test-array_oset.c,
9027         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
9028         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
9029         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
9030         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
9031         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
9032         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
9033         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
9034         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
9035         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
9036         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
9037         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
9038         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
9039         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
9040         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
9041         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
9042         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
9043         test-md5.c, test-memmem.c, test-printf-posix.c,
9044         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
9045         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
9046         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
9047         test-strcasestr.c, test-striconv.c, test-striconveh.c,
9048         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
9049         test-vasnprintf-posix2.c, test-vasnprintf.c,
9050         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
9051         test-vfprintf-posix.c, test-vprintf-posix.c,
9052         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
9053         test-xvasprintf.c: Likewise.
9054
9055 2007-05-28  Bruno Haible  <bruno@clisp.org>
9056
9057         * gnulib-tool (func_import): Remember the --with-tests command-line
9058         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
9059         Reported by Eric Blake.
9060
9061 2007-05-28  Bruno Haible  <bruno@clisp.org>
9062
9063         * modules/ftell-tests: New file.
9064         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
9065         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
9066
9067         * lib/ftell.c: New file.
9068         * modules/ftell: New file.
9069         * m4/ftell.m4: New file.
9070         * doc/functions/ftell.texi: Update.
9071         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
9072         REPLACE_FTELL.
9073         * lib/stdio_.h (rpl_ftell): New declaration.
9074         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
9075         REPLACE_FTELL.
9076
9077 2007-05-28  Eric Blake  <ebb9@byu.net>
9078
9079         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
9080
9081 2007-05-28  Bruno Haible  <bruno@clisp.org>
9082
9083         * modules/fseek-tests: New file.
9084         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
9085         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
9086
9087         * lib/fseek.c: New file.
9088         * modules/fseek: New file.
9089         * m4/fseek.m4: New file.
9090         * doc/functions/fseek.texi: Update.
9091         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
9092         REPLACE_FSEEK.
9093         * lib/stdio_.h (rpl_fseek): New declaration.
9094         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
9095         REPLACE_FSEEK.
9096
9097 2007-05-28  Bruno Haible  <bruno@clisp.org>
9098
9099         * lib/stdio_.h (fflush): More comments.
9100
9101 2007-05-28  Bruno Haible  <bruno@clisp.org>
9102
9103         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
9104         runtime test.
9105
9106 2007-05-28  Eric Blake  <ebb9@byu.net>
9107
9108         Improve lseek module.
9109         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
9110         * lib/unistd_.h (lseek): Scale back link warning message.
9111         * tests/test-lseek.c: Beef up test.
9112         * tests/test-lseek.sh: Exercise more facets of lseek.
9113         Reported by Bruno Haible.
9114
9115 2007-05-28  Bruno Haible  <bruno@clisp.org>
9116
9117         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
9118         to define.
9119
9120 2007-05-27  Bruno Haible  <bruno@clisp.org>
9121
9122         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
9123
9124 2007-05-27  Bruno Haible  <bruno@clisp.org>
9125
9126         * modules/openmp: New file.
9127         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
9128         Noah Misch.
9129
9130 2007-05-26  Bruno Haible  <bruno@clisp.org>
9131
9132         * modules/chdir-long (Depends-on): Add fchdir.
9133         * modules/chdir-safer (Depends-on): Likewise.
9134         * modules/fts (Depends-on): Likewise.
9135         * modules/fts-lgpl (Depends-on): Likewise.
9136         * modules/openat (Depends-on): Likewise.
9137         * modules/savewd (Depends-on): Likewise.
9138
9139 2007-05-24  Eric Blake  <ebb9@byu.net>
9140
9141         Fix lseek on mingw.
9142         * modules/lseek: New module.
9143         * m4/lseek.m4: New file.
9144         * lib/lseek.c: New file.
9145         * modules/lseek-tests: New file.
9146         * tests/test-lseek.c: New file.
9147         * tests/test-lseek.sh: New file.
9148         * MODULES.html.sh: Document lseek module.
9149         * modules/fflush (Depends-on): Add lseek, fseeko.
9150         * modules/fseeko (Depends-on): Likewise.
9151         * modules/ftello (Depends-on): Likewise.
9152         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
9153         broken.
9154         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
9155         broken.
9156         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
9157         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
9158         * lib/ftello.c (rpl_ftello): Likewise.
9159         * tests/test-fseeko.c (main): Test this.
9160         * tests/test-fseeko.sh: Likewise.
9161         * tests/test-ftello.c (main): Likewise.
9162         * tests/test-ftello.sh: Likewise.
9163         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
9164         implies replacing fseek.
9165         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
9166         HAVE_FTELLO.
9167         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
9168         * modules/unistd (Makefile.am): Likewise.
9169         * lib/unistd_.h (lseek): Declare a replacement.
9170         * doc/functions/lseek.texi (lseek): Document this fix.
9171         * doc/functions/fseek.texi (fseek): Likewise.
9172         * doc/functions/ftell.texi (ftell): Likewise.
9173
9174 2007-05-24  Bruno Haible  <bruno@clisp.org>
9175
9176         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
9177         in the printed representation of a NaN.
9178         * tests/test-vasprintf-posix.c (test_function): Likewise.
9179         * tests/test-snprintf-posix.h (test_function): Likewise.
9180         * tests/test-sprintf-posix.h (test_function): Likewise.
9181         Reported by Eric Blake.
9182
9183 2007-05-23  Eric Blake  <ebb9@byu.net>
9184
9185         Fix fseeko/ftello on cygwin 1.5.24.
9186         * doc/functions/fseeko.texi (fseeko): Document the fix.
9187         * doc/functions/ftello.texi (ftello): Document the fix.
9188         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
9189         * doc/functions/stdout.text (stdout): New file.
9190         * doc/functions/stderr.text (stderr): New file.
9191         * doc/gnulib.texi (Function Substitutes): Use new files.
9192         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
9193         prior to 1.7.0.
9194         * tests/test-ftello.c (main): Likewise for ftello.
9195         * tests/test-fseeko.sh: New file.
9196         * tests/test-ftello.sh: New file.
9197         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
9198         with seekable stdin.
9199         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
9200         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
9201         (gl_REPLACE_FSEEKO): New macro.
9202         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
9203         * modules/fseeko (Files): Distribute fseeko.c.
9204         * modules/ftello (Files): Distribute ftello.c.
9205         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
9206         mode.
9207         * lib/ftello.c (rpl_ftello): New file.
9208         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
9209         fseeko, ftello.
9210         (gl_STDIN_LARGE_OFFSET): New macro.
9211         * modules/stdio (Makefile.am): Perform the replacement.
9212         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
9213
9214 2007-05-23  Bruno Haible  <bruno@clisp.org>
9215
9216         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
9217         GNULIB_POSIXCHECK is defined.
9218
9219 2007-05-21  Bruno Haible  <bruno@clisp.org>
9220
9221         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
9222         Check also the output for NaN arguments. When cross-compiling, guess
9223         no on IRIX.
9224         * lib/vasnprintf.c: Update comments.
9225         * tests/test-vasnprintf-posix.c (strisnan): New function.
9226         (test_function): Use it.
9227         * tests/test-vasprintf-posix.c (strisnan): New function.
9228         (test_function): Use it.
9229         * tests/test-snprintf-posix.h (strisnan): New function.
9230         (test_function): Use it.
9231         * tests/test-sprintf-posix.h (strisnan): New function.
9232         (test_function): Use it.
9233         Reported by Eric Blake.
9234
9235 2007-05-20  Bruno Haible  <bruno@clisp.org>
9236
9237         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
9238         numbers that fails on BeOS.
9239         * doc/functions/frexpl.texi: Update.
9240
9241 2007-05-20  Jim Meyering  <jim@meyering.net>
9242
9243         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
9244         forced upon us by glibc-2.6.
9245
9246 2007-05-20  Bruno Haible  <bruno@clisp.org>
9247
9248         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
9249         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
9250         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
9251         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
9252         NEED_PRINTF_INFINITE.
9253         (is_infinitel): New function.
9254         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
9255         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
9256         gl_PREREQ_VASNPRINTF_INFINITE.
9257         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
9258         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9259         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
9260         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
9261         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
9262         gl_PREREQ_VASNPRINTF_INFINITE.
9263         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9264         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9265         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9266         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9267         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9268         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9269         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9270         * doc/functions/fprintf.texi: Update.
9271         * doc/functions/printf.texi: Update.
9272         * doc/functions/snprintf.texi: Update.
9273         * doc/functions/sprintf.texi: Update.
9274         * doc/functions/vfprintf.texi: Update.
9275         * doc/functions/vprintf.texi: Update.
9276         * doc/functions/vsnprintf.texi: Update.
9277         * doc/functions/vsprintf.texi: Update.
9278
9279 2007-05-20  Bruno Haible  <bruno@clisp.org>
9280
9281         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
9282         was not found in libc.
9283         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
9284
9285 2007-05-20  Bruno Haible  <bruno@clisp.org>
9286
9287         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9288         printed as "-nan" instead of "nan".
9289         * tests/test-vasprintf-posix.c (test_function): Likewise.
9290         * tests/test-snprintf-posix.h (test_function): Likewise.
9291         * tests/test-sprintf-posix.h (test_function): Likewise.
9292         Needed for HP-UX 11.
9293
9294 2007-05-20  Jim Meyering  <jim@meyering.net>
9295
9296         Fix buggy test for the fchownat-deref bug.
9297         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
9298         symlink required for the run-test.  Without it, this test would
9299         always declare that fchownat doesn't work, and client code would
9300         unnecessarily use the replacement function with fixed libc.
9301         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
9302         Reported by Greg Schafer.
9303
9304 2007-05-19  Bruno Haible  <bruno@clisp.org>
9305
9306         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
9307         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
9308         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
9309         Needed for IRIX 6.5 and Solaris 2.5.1.
9310
9311 2007-05-19  Bruno Haible  <bruno@clisp.org>
9312
9313         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
9314         (test_function): Skip tests involving -0.0 on platforms where
9315         -0.0 = 0.0.
9316         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
9317         (test_function): Skip tests involving -0.0 on platforms where
9318         -0.0 = 0.0.
9319         * tests/test-snprintf-posix.h (have_minus_zero): New function.
9320         (test_function): Skip tests involving -0.0 on platforms where
9321         -0.0 = 0.0.
9322         * tests/test-sprintf-posix.h (have_minus_zero): New function.
9323         (test_function): Skip tests involving -0.0 on platforms where
9324         -0.0 = 0.0.
9325         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
9326         tests.
9327         * tests/test-printf-posix.h (test_function): Likewise.
9328         * tests/test-printf-posix.output: Remove all -0.0 related results.
9329         Needed for IRIX 6.5.
9330
9331 2007-05-19  Bruno Haible  <bruno@clisp.org>
9332
9333         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9334         printed as "nan0x7fffffff" instead of "nan".
9335         * tests/test-vasprintf-posix.c (test_function): Likewise.
9336         * tests/test-snprintf-posix.h (test_function): Likewise.
9337         * tests/test-sprintf-posix.h (test_function): Likewise.
9338         * tests/test-fprintf-posix.h (NaN): Remove macro.
9339         (test_function): Remove all NaN related tests.
9340         * tests/test-printf-posix.h (NaN): Remove macro.
9341         (test_function): Remove all NaN related tests.
9342         * tests/test-printf-posix.output: Remove all NaN related results.
9343         Needed for IRIX 6.5.
9344
9345 2007-05-19  Bruno Haible  <bruno@clisp.org>
9346
9347         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
9348         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
9349
9350 2007-05-19  Bruno Haible  <bruno@clisp.org>
9351
9352         * lib/float_.h: New file.
9353         * m4/float_h.m4: New file.
9354         * modules/float: New file.
9355         * modules/isnanl (Dependencies): Add float.
9356         * modules/isnanl-nolibm (Dependencies): Likewise.
9357         * modules/mathl (Dependencies): Likewise.
9358         * modules/printf-frexpl (Dependencies): Likewise.
9359         * modules/signbit (Dependencies): Likewise.
9360         * modules/vasnprintf (Dependencies): Likewise.
9361         * doc/headers/float.texi: Update.
9362
9363 2007-05-19  Jim Meyering  <jim@meyering.net>
9364
9365         * lib/utimens.c (gl_futimens): Rename from futimens,
9366         now that glibc-2.6 declares futimens.
9367         * lib/utimens.h: Likewise.
9368
9369 2007-05-19  Bruno Haible  <bruno@clisp.org>
9370
9371         Avoid test failures on mingw.
9372         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
9373         * tests/test-printf-posix.sh: Likewise.
9374         * tests/test-vfprintf-posix.sh: Likewise.
9375         * tests/test-vprintf-posix.sh: Likewise.
9376
9377 2007-05-19  Bruno Haible  <bruno@clisp.org>
9378
9379         Fix *printf result for NaN, Inf, -0.0 on mingw.
9380         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
9381         * lib/vasnprintf.c: Include math.h and isnan.h.
9382         (is_infinite_or_zero): New function.
9383         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
9384         values in the %f, %F, %e, %E, %g, %G directives.
9385         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
9386         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9387         gl_PRINTF_INFINITE and test its result. Invoke
9388         gl_PREREQ_VASNPRINTF_INFINITE.
9389         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9390         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9391         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9392         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9393         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9394         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9395         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9396         * doc/functions/fprintf.texi: Update.
9397         * doc/functions/printf.texi: Update.
9398         * doc/functions/snprintf.texi: Update.
9399         * doc/functions/sprintf.texi: Update.
9400         * doc/functions/vfprintf.texi: Update.
9401         * doc/functions/vprintf.texi: Update.
9402         * doc/functions/vsnprintf.texi: Update.
9403         * doc/functions/vsprintf.texi: Update.
9404
9405 2007-05-19  Bruno Haible  <bruno@clisp.org>
9406
9407         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
9408         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
9409         Instead of multiplying with 10^k, set extra_zeroes to k.
9410         (scale10_round_long_double): Remove function.
9411
9412 2007-05-18  Bruno Haible  <bruno@clisp.org>
9413
9414         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
9415         introduced on 2007-05-06.
9416
9417 2007-05-18  Bruno Haible  <bruno@clisp.org>
9418
9419         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
9420         %g directives.
9421         * tests/test-vasprintf-posix.c (test_function): Likewise.
9422         * tests/test-snprintf-posix.h (test_function): Likewise.
9423         * tests/test-sprintf-posix.h (test_function): Likewise.
9424
9425 2007-05-18  Bruno Haible  <bruno@clisp.org>
9426
9427         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
9428         (strmatch): New function.
9429         (test_function): Test the %f directive on numbers of various exponents.
9430         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
9431         (strmatch): New function.
9432         (test_function): Test the %f directive on numbers of various exponents.
9433         * tests/test-snprintf-posix.h (strmatch): New function.
9434         (test_function): Test the %f directive on numbers of various exponents.
9435         * tests/test-sprintf-posix.h (strmatch): New function.
9436         (test_function): Test the %f directive on numbers of various exponents.
9437         * tests/test-snprintf-posix.c (SIZEOF): New macro.
9438         * tests/test-sprintf-posix.c (SIZEOF): New macro.
9439         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
9440         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
9441
9442 2007-05-18  Bruno Haible  <bruno@clisp.org>
9443
9444         Add support for 'long double' number output.
9445         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
9446         * lib/vasnprintf.c: Include math.h and float+.h.
9447         (mp_limb_t): New type.
9448         (GMP_LIMB_BITS): New macro.
9449         (mp_twolimb_t): New type.
9450         (GMP_TWOLIMB_BITS): New macro.
9451         (mpn_t): New type.
9452         (multiply, divide, convert_to_decimal, decode_long_double,
9453         scale10_round_long_double, scale10_round_decimal_long_double,
9454         floorlog10l): New functions.
9455         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
9456         for the %f, %F, %e, %E, %g, %G directives.
9457         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
9458         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9459         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
9460         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
9461         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9462         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9463         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9464         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9465         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9466         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9467         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9468         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
9469         * modules/snprintf-posix (Depends-on): Likewise.
9470         * modules/sprintf-posix (Depends-on): Likewise.
9471         * modules/vasnprintf-posix (Depends-on): Likewise.
9472         * modules/vasprintf-posix (Depends-on): Likewise.
9473         * modules/vfprintf-posix (Depends-on): Likewise.
9474         * modules/vsnprintf-posix (Depends-on): Likewise.
9475         * modules/vsprintf-posix (Depends-on): Likewise.
9476         * modules/vasnprintf (Files): Add lib/float+.h.
9477         * doc/functions/fprintf.texi: Update.
9478         * doc/functions/printf.texi: Update.
9479         * doc/functions/snprintf.texi: Update.
9480         * doc/functions/sprintf.texi: Update.
9481         * doc/functions/vfprintf.texi: Update.
9482         * doc/functions/vprintf.texi: Update.
9483         * doc/functions/vsnprintf.texi: Update.
9484         * doc/functions/vsprintf.texi: Update.
9485
9486 2007-05-18  Bruno Haible  <bruno@clisp.org>
9487
9488         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
9489
9490 2007-05-18  Bruno Haible  <bruno@clisp.org>
9491
9492         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
9493         for printing 64-bit integers. Needed for mingw.
9494
9495 2007-05-18  Bruno Haible  <bruno@clisp.org>
9496
9497         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
9498         gl_FUNC_FREXPL_WORKS.
9499         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
9500
9501 2007-05-18  Bruno Haible  <bruno@clisp.org>
9502
9503         * modules/frexpl-nolibm-tests: New file.
9504
9505         * modules/frexpl-nolibm: New file.
9506         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
9507
9508 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
9509
9510         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
9511         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
9512         GCC 4.2, which otherwise issues a lot of warnings.
9513         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
9514         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
9515         Likewise.
9516         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
9517         * modules/iconv_open (iconv.h): Likewise.
9518         * modules/locale (locale.h): Likewise.
9519         * modules/netinet_in (netinet/in.h): Likewise.
9520         * modules/sys_select (sys_select.h): Likewise.
9521         * modules/sys_socket (sys/socket.h): Likewise.
9522         * modules/sys_stat (sys/stat.h): Likewise.
9523         * modules/sysexits (sysexits.h): Likewise.
9524         * modules/unistd (unistd.h): Likewise.
9525
9526 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9527
9528         * modules/closein-tests (Makefile.am): Distribute
9529         `test-closein.sh'.
9530
9531 2007-05-17  Bruno Haible  <bruno@clisp.org>
9532
9533         * tests/test-printf-posix.output: Renamed from
9534         tests/test-fprintf-posix.out.
9535         * modules/fprintf-posix-tests: Update.
9536         * modules/printf-posix-tests: Update.
9537         * modules/vfprintf-posix-tests: Update.
9538         * modules/vprintf-posix-tests: Update.
9539         * tests/test-fprintf-posix.sh: Update.
9540         * tests/test-printf-posix.sh: Update.
9541         * tests/test-vfprintf-posix.sh: Update.
9542         * tests/test-vprintf-posix.sh: Update.
9543         Reported by Ralf Wildenhues.
9544
9545 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
9546
9547         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
9548         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
9549         GCC 4.2, which otherwise issues a lot of warnings.
9550         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
9551         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
9552         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
9553         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
9554         it should no longer be needed.
9555         * lib/string_.h: Likewise.
9556         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
9557         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
9558         * modules/inttypes (inttypes.h): Likewise.
9559         * modules/math (math.h): Likewise.
9560         * modules/search (search.h): Likewise.
9561         * modules/signal (signal.h): Likewise.
9562         * modules/stdint (stdint.h): Likewise.
9563         * modules/stdio (stdio.h): Likewise.
9564         * modules/stdlib (stdlib.h): Likewise.
9565         * modules/string (string.h): Likewise.
9566         * modules/sys_time (sys/time.h): Likewise.
9567         * modules/time (time.h): Likewise.
9568         * modules/wchar (wchar.h): Likewise.
9569         * modules/wctype (wtype.h): Likewise.
9570
9571 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
9572
9573         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
9574
9575 2007-05-13  Bruno Haible  <bruno@clisp.org>
9576
9577         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
9578         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
9579         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
9580         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
9581         (gl_PREREQ_STRTOK_R): Don't require it here.
9582
9583 2007-05-13  Bruno Haible  <bruno@clisp.org>
9584
9585         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
9586         when used in C++ mode.
9587
9588 2007-05-12  Bruno Haible  <bruno@clisp.org>
9589
9590         * lib/linebuffer.h: Tweak doc.
9591         * lib/linebuffer.c: Likewise.
9592
9593 2007-05-12  James Youngman  <jay@gnu.org>
9594
9595         * lib/linebuffer.c (readlinebuffer_delim): New function,
9596         like readlinebuffer, but use a caller-specified delimiter.
9597         (readlinebuffer): Just call readlinebuffer_delim with '\n'
9598         as the delimiter.
9599         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
9600
9601 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9602
9603         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
9604         * modules/openat (Files): Remove openat-die.c.
9605         (Depends-on): Add openat-die.
9606         * modules/openat-die: New module.
9607
9608 2007-05-06  Bruno Haible  <bruno@clisp.org>
9609
9610         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
9611         Update with info about Cygwin.
9612         * doc/functions/fprintf.texi: Update.
9613         * doc/functions/printf.texi: Update.
9614         * doc/functions/snprintf.texi: Update.
9615         * doc/functions/sprintf.texi: Update.
9616         * doc/functions/vfprintf.texi: Update.
9617         * doc/functions/vprintf.texi: Update.
9618         * doc/functions/vsnprintf.texi: Update.
9619         * doc/functions/vsprintf.texi: Update.
9620         Reported by Eric Blake.
9621
9622 2007-05-06  Bruno Haible  <bruno@clisp.org>
9623
9624         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
9625         padding ourselves for the floating-point directives.
9626         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
9627         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
9628         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9629         gl_PRINTF_FLAG_ZERO and test its result. Invoke
9630         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
9631         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9632         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
9633         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9634         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9635         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9636         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9637         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9638         * tests/test-snprintf-posix.h (test_function): Also check the width
9639         and some flags in the %f directive.
9640         * tests/test-sprintf-posix.h (test_function): Likewise.
9641         * tests/test-vasnprintf-posix.c (test_function): Likewise.
9642         * tests/test-vasprintf-posix.c (test_function): Likewise.
9643         * doc/functions/fprintf.texi: Update.
9644         * doc/functions/printf.texi: Update.
9645         * doc/functions/snprintf.texi: Update.
9646         * doc/functions/sprintf.texi: Update.
9647         * doc/functions/vfprintf.texi: Update.
9648         * doc/functions/vprintf.texi: Update.
9649         * doc/functions/vsnprintf.texi: Update.
9650         * doc/functions/vsprintf.texi: Update.
9651
9652 2007-05-06  Bruno Haible  <bruno@clisp.org>
9653
9654         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
9655         pass the ' flag character to sprintf or snprintf.
9656         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
9657         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
9658         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9659         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
9660         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
9661         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9662         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
9663         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9664         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9665         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9666         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9667         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9668         * tests/test-snprintf-posix.h (test_function): Also check the grouping
9669         flag.
9670         * tests/test-sprintf-posix.h (test_function): Likewise.
9671         * tests/test-vasnprintf-posix.c (test_function): Likewise.
9672         * tests/test-vasprintf-posix.c (test_function): Likewise.
9673         * doc/functions/fprintf.texi: Update.
9674         * doc/functions/printf.texi: Update.
9675         * doc/functions/snprintf.texi: Update.
9676         * doc/functions/sprintf.texi: Update.
9677         * doc/functions/vfprintf.texi: Update.
9678         * doc/functions/vprintf.texi: Update.
9679         * doc/functions/vsnprintf.texi: Update.
9680         * doc/functions/vsprintf.texi: Update.
9681
9682 2007-05-01  Bruno Haible  <bruno@clisp.org>
9683
9684         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
9685
9686 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
9687
9688         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
9689         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
9690
9691 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9692
9693         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
9694         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
9695         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
9696
9697 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
9698
9699         * lib/argp-help.c (struct hol_entry): New member `ord'.
9700         (HOL_ENTRY_PTRCMP): Use ord for comparison
9701         (hol_sort): Initialize ord.
9702
9703 2007-05-01  Bruno Haible  <bruno@clisp.org>
9704
9705         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
9706         Reported by Eric Blake.
9707         * doc/gnulib.texi (Function Substitutes): Update.
9708
9709 2007-05-01  Bruno Haible  <bruno@clisp.org>
9710
9711         * doc/functions.texi: Remove file, now redundant through
9712         doc/functions/*.texi.
9713
9714 2007-05-01  Bruno Haible  <bruno@clisp.org>
9715
9716         * modules/argp (Depends-on): Add sleep.
9717
9718 2007-05-01  Bruno Haible  <bruno@clisp.org>
9719
9720         * modules/sleep-tests: New file.
9721         * tests/test-sleep.c: New file.
9722
9723         * modules/sleep: New file.
9724         * lib/sleep.c: New file.
9725         * m4/sleep.m4: New file.
9726         * lib/unistd_.h (sleep): New declaration.
9727         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
9728         HAVE_SLEEP.
9729         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
9730         * doc/functions/sleep.texi: Document the sleep module.
9731
9732 2007-05-01  Bruno Haible  <bruno@clisp.org>
9733
9734         * lib/sigprocmask.h: Remove file.
9735         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
9736         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
9737         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
9738         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
9739         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
9740         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
9741         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
9742         HAVE_SIGSET_T as a shell variable.
9743         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
9744         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
9745         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
9746         (Depends-on): Add signal. Remove verify.
9747         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
9748         (Include): Mention <signal.h> instead of sigprocmask.h.
9749         * NEWS: Mention the change.
9750         * lib/fatal-signal.c: Don't include sigprocmask.h.
9751
9752 2007-05-01  Bruno Haible  <bruno@clisp.org>
9753
9754         * modules/signal: New file.
9755         * lib/signal_.h: New file.
9756         * m4/signal_h.m4: New file.
9757
9758 2007-05-01  Bruno Haible  <bruno@clisp.org>
9759
9760         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
9761         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
9762         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
9763         HAVE_WCTYPE_CTMP_BUG into wctype.h.
9764
9765 2007-05-01  Bruno Haible  <bruno@clisp.org>
9766
9767         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
9768         configure time.
9769         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
9770         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
9771         * modules/sys_stat (Makefile.am): Substitute their values into
9772         sys/stat.h.
9773
9774 2007-05-01  Bruno Haible  <bruno@clisp.org>
9775
9776         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
9777         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
9778         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
9779
9780 2007-05-01  Bruno Haible  <bruno@clisp.org>
9781
9782         * doc/header/assert.texi: Undo last change: don't mention the gnulib
9783         'assert' module here.
9784
9785 2007-05-01  Bruno Haible  <bruno@clisp.org>
9786
9787         * doc/functions/*.texi: New files.
9788         * doc/functions/google-ranking.txt: New file.
9789         * doc/gnulib.texi (Function Substitutes): New chapter.
9790         (ctime, inet_ntoa): Remove sections.
9791         * doc/ctime.texi: Remove file.
9792         * doc/inet_ntoa.texi: Remove file.
9793         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
9794         dependencies.
9795         (%.info): New rule, specifying a --reference-limit.
9796
9797 2007-05-01  Bruno Haible  <bruno@clisp.org>
9798
9799         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
9800
9801 2007-05-01  Bruno Haible  <bruno@clisp.org>
9802
9803         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
9804         the portability of 'mkdir' to mingw systems.
9805
9806 2007-05-01  Bruno Haible  <bruno@clisp.org>
9807
9808         * doc/headers/google-ranking.txt: New file.
9809
9810 2007-04-30  Eric Blake  <ebb9@byu.net>
9811
9812         Prefer fseeko to fseek.
9813         * modules/getpass (Depends-on): Add fseeko.
9814         * lib/getpass.c (getpass): Use fseeko, not fseek.
9815
9816 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
9817
9818         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
9819         assumes the sorting is stable, while most qsort implementations
9820         are not.  Use argument addresses to ensure they never compare as
9821         equal.
9822
9823         * tests/test-argp-2.sh (usage-indent test): Fix output
9824         (func_compare): Restore diff options
9825         * tests/test-argp.c: Restore #include "progname.h"
9826
9827 2007-04-29  Bruno Haible  <bruno@clisp.org>
9828
9829         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
9830         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9831         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
9832         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9833         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
9834         (configure.ac): Define CHECK_SNPRINTF_POSIX.
9835         (TESTS, check_PROGRAMS): Add test-snprintf.
9836         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
9837         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
9838         (TESTS, check_PROGRAMS): Add test-vsnprintf.
9839         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
9840         assertions that fail on HP-UX, OSF/1, or IRIX.
9841         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
9842
9843 2007-04-29  Bruno Haible  <bruno@clisp.org>
9844
9845         * MODULES.html.sh (posix_functions): Remove 'contents'.
9846
9847 2007-04-29  Karl Berry  <karl@gnu.org>
9848
9849         * config/srclist.txt (gendocs_template_min): new entry.
9850
9851 2007-04-29  Bruno Haible  <bruno@clisp.org>
9852
9853         Work around fpurge bug on BSD systems.
9854         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
9855         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
9856         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
9857         fpurge to rpl_fpurge if the system already has this function.
9858         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
9859         the case where the system already has this function. Correct invariants
9860         on BSD systems.
9861         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
9862         BSD systems.
9863
9864 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
9865
9866         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
9867         proposed by Sven Verdoolaege.
9868
9869         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
9870         options.
9871         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
9872         (usage and help tests): Update
9873
9874 2007-04-29  Bruno Haible  <bruno@clisp.org>
9875
9876         * tests/test-fflush.c (main): Use a file of size 17, not 10.
9877         Print more information in case of failure. Disable a test on BeOS.
9878
9879 2007-04-29  Bruno Haible  <bruno@clisp.org>
9880
9881         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
9882         This helps debugging on systems on which no gdb is available.
9883
9884 2007-04-29  Bruno Haible  <bruno@clisp.org>
9885
9886         * lib/freading.h: Improve comments.
9887         * lib/fwriting.h: Likewise.
9888         * tests/test-freading.c (main): Don't check freading immediately after
9889         repositioning. Needed for glibc.
9890
9891 2007-04-29  Bruno Haible  <bruno@clisp.org>
9892
9893         * lib/freading.c (freading): Trivial simplification.
9894
9895 2007-04-28  Bruno Haible  <bruno@clisp.org>
9896
9897         * tests/test-fwriting.c (main): Also test the interaction between
9898         fflush and fwriting.
9899         * modules/fwriting-tests (Depends-on): Add fflush.
9900
9901         * tests/test-freading.c (main): Also test the interaction between
9902         fflush and freading.
9903         * modules/freading-tests (Depends-on): Add fflush.
9904
9905 2007-04-28  Bruno Haible  <bruno@clisp.org>
9906
9907         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
9908         fseeko and ftello.
9909         Suggested by Eric Blake.
9910
9911 2007-04-28  Jim Meyering  <jim@meyering.net>
9912
9913         Avoid false-negative in gl_STDINT_H's C99 conformance test.
9914         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
9915         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
9916
9917 2007-04-27  Eric Blake  <ebb9@byu.net>
9918
9919         * doc/headers/assert.texi (assert.h): Document assert module use.
9920
9921 2007-04-27  Bruno Haible  <bruno@clisp.org>
9922
9923         * doc/headers/*.texi: New files.
9924         * doc/gnulib.texi (Header File Substitutes): New chapter.
9925         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
9926         dependencies.
9927         (standards.info ,standards.html, standards.dvi): Update dependencies.
9928         (mostlyclean, clean): New targets.
9929
9930 2007-04-27  Bruno Haible  <bruno@clisp.org>
9931
9932         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
9933         * modules/sysexits (Files, Makefile.am): Update.
9934
9935         * lib/sys_socket_.h: Renamed from lib/socket_.h.
9936         * modules/sys_socket (Files, Makefile.am): Update.
9937
9938         * lib/sys_stat_.h: Renamed from lib/stat_.h.
9939         * modules/sys_stat (Files, Makefile.am): Update.
9940
9941 2007-04-27  Eric Blake  <ebb9@byu.net>
9942
9943         * lib/freading.h: Improve comments.
9944         * lib/fwriting.h: Likewise.
9945         * lib/fflush.c: Likewise.
9946
9947         Fix closein for mingw.
9948         * modules/closein-tests: Add tests for closein.
9949         * tests/test-closein.c: New file.
9950         * tests/test-closein.sh: Likewise.
9951         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
9952         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
9953
9954 2007-04-27  Bruno Haible  <bruno@clisp.org>
9955
9956         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
9957         version is < 6.
9958         * lib/math_.h [__DECC]: Likewise.
9959         * lib/stdio_.h [__DECC]: Likewise.
9960         * lib/stdlib_.h [__DECC]: Likewise.
9961         * lib/string_.h [__DECC]: Likewise.
9962         * lib/time_.h [__DECC]: Likewise.
9963         * lib/wchar_.h [__DECC]: Likewise.
9964         * lib/wctype_.h [__DECC]: Likewise.
9965
9966 2007-04-27  Bruno Haible  <bruno@clisp.org>
9967
9968         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
9969
9970 2007-04-27  Bruno Haible  <bruno@clisp.org>
9971
9972         * lib/fflush.c: Add comments.
9973         * modules/fpurge-tests (Depends-on): Add fflush.
9974         * modules/freadable-tests (Depends-on): Likewise.
9975         * modules/fwritable-tests (Depends-on): Likewise.
9976
9977 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
9978
9979         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
9980         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
9981         Report by Bruno Haible <bruno@clisp.org>.
9982
9983 2007-04-26  Eric Blake  <ebb9@byu.net>
9984
9985         Fix fflush on mingw.
9986         * modules/fflush (Depends-on): Add freading.
9987         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
9988         but unread data.
9989
9990 2007-04-26  Eric Blake  <ebb9@byu.net>
9991         and Bruno Haible  <bruno@clisp.org>
9992
9993         Implement freading and fwriting.
9994         * lib/freading.c: New file.
9995         * lib/freading.h: Likewise.
9996         * m4/freading.m4: Likewise.
9997         * modules/freading: Likewise.
9998         * modules/freading-tests: Likewise.
9999         * tests/test-freading.c: Likewise.
10000         * lib/fwriting.c: New file.
10001         * lib/fwriting.h: Likewise.
10002         * m4/fwriting.m4: Likewise.
10003         * modules/fwriting: Likewise.
10004         * modules/fwriting-tests: Likewise.
10005         * tests/test-fwriting.c: Likewise.
10006         * MODULES.html.sh (File stream based Input/Output): Mention them.
10007
10008 2007-04-26  Bruno Haible  <bruno@clisp.org>
10009
10010         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
10011         'long' when we assume it.
10012         Suggested by Eric Blake.
10013
10014 2007-04-26  Bruno Haible  <bruno@clisp.org>
10015
10016         Ensure fseeko, ftello are declared on glibc systems.
10017         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
10018         * modules/fseeko (configure.ac-early): Likewise.
10019         * modules/ftello (configure.ac-early): Likewise.
10020         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
10021         AC_FUNC_FSEEKO for this.
10022         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
10023         (gl_CHECK_FSEEKO): Remove macro.
10024
10025 2007-04-26  Bruno Haible  <bruno@clisp.org>
10026
10027         * tests/test-fflush.c (main): Also check the ftell result after
10028         fflush and fseek/fseeko.
10029         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
10030         file descriptor position cache in the stream.
10031         * lib/fseeko.c (rpl_fseeko): Likewise.
10032
10033 2007-04-26  Bruno Haible  <bruno@clisp.org>
10034
10035         * modules/fflush-tests (Depends-on): Add fseeko.
10036
10037 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
10038             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10039
10040         * lib/argz_.h: ensure error_t definition is obtained in same
10041         mechanism system argz.h would have.
10042         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
10043         argz facilities are known bad.  Err on the side of caution if
10044         cross-compiling.
10045
10046 2007-04-25  Eric Blake  <ebb9@byu.net>
10047
10048         * lib/fpurge.c (includes): Use stdlib.h for free.
10049         * tests/test-fflush.c (main): Also test fflush-fseeko.
10050
10051 2007-04-25  Bruno Haible  <bruno@clisp.org>
10052
10053         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
10054         * lib/fseeko.c: New file.
10055         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
10056         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
10057         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
10058         gl_FUNC_FSEEKO.
10059         (gl_FUNC_FSEEKO): Invoke it.
10060         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
10061         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
10062         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
10063
10064 2007-04-25  Bruno Haible  <bruno@clisp.org>
10065
10066         * modules/fflush (Depends-on): Add ftello.
10067
10068 2007-04-25  Bruno Haible  <bruno@clisp.org>
10069
10070         * modules/ftello-tests: New file.
10071         * tests/test-ftello.c: New file.
10072
10073         * modules/ftello: New file.
10074         * m4/ftello.m4: New file.
10075         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
10076         HAVE_FTELLO.
10077         * lib/stdio_.h (ftello): New declaration.
10078         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
10079         HAVE_FTELLO.
10080
10081 2007-04-25  Bruno Haible  <bruno@clisp.org>
10082
10083         * modules/fseeko-tests: New file.
10084         * tests/test-fseeko.c: New file.
10085
10086         * modules/fseeko: New file.
10087         * m4/fseeko.m4: New file.
10088         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
10089         HAVE_FSEEKO.
10090         * lib/stdio_.h (fseeko): New declaration.
10091         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
10092         HAVE_FSEEKO.
10093
10094 2007-04-25  Bruno Haible  <bruno@clisp.org>
10095
10096         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
10097
10098 2007-04-25  Bruno Haible  <bruno@clisp.org>
10099
10100         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
10101         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
10102         * tests/test-unistd.c: Likewise.
10103         * tests/test-fcntl.c: Likewise.
10104
10105 2007-04-23  Eric Blake  <ebb9@byu.net>
10106
10107         * lib/fflush.c: Fix missing include.
10108         Reported by Bruno Haible.
10109
10110 2007-04-23  Bruno Haible  <bruno@clisp.org>
10111
10112         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
10113         Reported by Eric Blake.
10114
10115 2007-04-23  Bruno Haible  <bruno@clisp.org>
10116
10117         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
10118
10119 2007-04-23  Bruno Haible  <bruno@clisp.org>
10120
10121         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
10122
10123 2007-04-23  Bruno Haible  <bruno@clisp.org>
10124
10125         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
10126         Needed on HP-UX 11.
10127
10128 2007-04-16  Eric Blake  <ebb9@byu.net>
10129
10130         Make fflush rely on fpurge.
10131         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
10132         open coding all variants.
10133         * modules/fflush (Depends-on): Add fpurge and unistd.
10134         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
10135         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
10136
10137         Fix --with-tests compilation on cygwin.
10138         * modules/argmatch-tests (Makefile.am): List gnulib library first
10139         in LDADD.
10140         * modules/argp-tests (Makefile.am): Likewise.
10141         * modules/array-list-tests (Makefile.am): Likewise.
10142         * modules/array-oset-tests (Makefile.am): Likewise.
10143         * modules/avltree-list-tests (Makefile.am): Likewise.
10144         * modules/avltree-oset-tests (Makefile.am): Likewise.
10145         * modules/avltreehash-list-tests (Makefile.am): Likewise.
10146         * modules/carray-list-tests (Makefile.am): Likewise.
10147         * modules/dirname-tests (Makefile.am): Likewise.
10148         * modules/frexp-tests (Makefile.am): Likewise.
10149         * modules/isnanl-tests (Makefile.am): Likewise.
10150         * modules/linked-list-tests (Makefile.am): Likewise.
10151         * modules/linkedhash-list-tests (Makefile.am): Likewise.
10152         * modules/lock-tests (Makefile.am): Likewise.
10153         * modules/rbtree-list-tests (Makefile.am): Likewise.
10154         * modules/rbtree-oset-tests (Makefile.am): Likewise.
10155         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
10156         * modules/tls-tests (Makefile.am): Likewise.
10157         * modules/tsearch-tests (Makefile.am): Likewise.
10158         * modules/xvasprintf-tests (Makefile.am): Likewise.
10159
10160         Fix fpurge for cygwin.
10161         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
10162         value.
10163         * modules/fpurge-tests (Depends-on): Clean up trash.
10164
10165 2007-04-16  Simon Josefsson  <simon@josefsson.org>
10166
10167         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
10168
10169         * m4/autobuild.m4: Re-indent.
10170
10171 2007-04-13  Bruno Haible  <bruno@clisp.org>
10172
10173         * modules/fpurge-tests: New file.
10174         * tests/test-fpurge.c: New file.
10175
10176         * modules/fpurge: New file.
10177         * lib/fpurge.h: New file.
10178         * lib/fpurge.c: New file.
10179         * m4/fpurge.m4: New file.
10180
10181 2007-04-13  Bruno Haible  <bruno@clisp.org>
10182
10183         * modules/fbufmode-tests: New file.
10184         * tests/test-fbufmode.c: New file.
10185
10186         * modules/fbufmode: New file.
10187         * lib/fbufmode.h: New file.
10188         * lib/fbufmode.c: New file.
10189         * m4/fbufmode.m4: New file.
10190
10191 2007-04-13  Bruno Haible  <bruno@clisp.org>
10192
10193         * modules/fwritable-tests: New file.
10194         * tests/test-fwritable.c: New file.
10195
10196         * modules/fwritable: New file.
10197         * lib/fwritable.h: New file.
10198         * lib/fwritable.c: New file.
10199         * m4/fwritable.m4: New file.
10200
10201 2007-04-13  Bruno Haible  <bruno@clisp.org>
10202
10203         * modules/freadable-tests: New file.
10204         * tests/test-freadable.c: New file.
10205
10206         * modules/freadable: New file.
10207         * lib/freadable.h: New file.
10208         * lib/freadable.c: New file.
10209         * m4/freadable.m4: New file.
10210
10211 2007-04-13  Bruno Haible  <bruno@clisp.org>
10212
10213         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
10214         MOSTLYCLEANFILES.
10215
10216 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
10217
10218         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
10219         gzip bootstrap.conf to avoid dragging in i18n machinery.
10220         (gnulib_tool_option): Use it.
10221
10222 2007-04-13  Bruno Haible  <bruno@clisp.org>
10223
10224         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
10225         %F directives.
10226         * tests/test-vasprintf-posix.c (test_function): Likewise.
10227         * tests/test-snprintf-posix.h (test_function): Likewise.
10228         * tests/test-sprintf-posix.h (test_function): Likewise.
10229         * tests/test-fprintf-posix.h (test_function): Likewise.
10230         * tests/test-printf-posix.h (test_function): Likewise.
10231         * tests/test-fprintf-posix.out: Likewise.
10232
10233 2007-04-13  Bruno Haible  <bruno@clisp.org>
10234
10235         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
10236         * modules/tls-tests (configure.ac): Likewise.
10237         Reported by Arto C. Nirkko <anirkko@insel.ch>.
10238
10239 2007-04-13  Bruno Haible  <bruno@clisp.org>
10240
10241         * lib/tls.c (glthread_tls_get): Fix return type.
10242         Patch by Arto C. Nirkko <anirkko@insel.ch>.
10243
10244 2007-04-12  Eric Blake  <ebb9@byu.net>
10245
10246         * modules/gettime (Depends-on): Remove gettime.
10247         Reported by Dmitry V. Levin.
10248
10249 2007-04-12  Bruno Haible  <bruno@clisp.org>
10250
10251         * modules/fflush (Include): Mention <stdio.h>.
10252         * modules/strtoimax (Include): Mention <inttypes.h>.
10253         * modules/strtoumax (Include): Likewise.
10254
10255 2007-04-12  Eric Blake  <ebb9@byu.net>
10256
10257         * .cvsignore: New file.
10258         * .gitignore: Likewise.
10259
10260 2007-04-12  Bruno Haible  <bruno@clisp.org>
10261
10262         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
10263         not before, since $(LDADD) often contains libgnu.a.
10264         * modules/striconv-tests (test_striconv_LDADD): Likewise.
10265         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
10266         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
10267         Needed on Cygwin.
10268
10269 2007-04-12  Eric Blake  <ebb9@byu.net>
10270
10271         Work around glibc's failure to flush stdin on fclose.
10272         * lib/closein.c (close_stdin): Flush stdin before closing.
10273
10274         Work around glibc's failure to reset seekable stdin on exit.
10275         * modules/closein: New module.
10276         * lib/closein.c: New file.
10277         * lib/closein.h: Likewise.
10278         * m4/closein.m4: Likewise.
10279         * MODULES.html.sh (File stream based Input/Output): Document it.
10280
10281 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10282
10283         * gnulib-tool: Rename generated 'autobuild' script to
10284         'do-autobuild' in --create-megatestdir output.
10285
10286         * doc/gnulib.texi (Build robot for gnulib): Fix.
10287
10288 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10289
10290         * modules/sysexits (Depends-on): Add absolute-header.
10291
10292 2007-04-12  Eric Blake  <ebb9@byu.net>
10293
10294         No need to preserve errno on success.
10295         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
10296         Reported by Bruno Haible.
10297
10298 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10299
10300         * MODULES.html.sh (Support for maintaining and releasing
10301         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
10302
10303 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10304
10305         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
10306
10307 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10308
10309         * modules/autobuild: New module.
10310
10311         * m4/autobuild.m4: New file.
10312
10313 2007-04-11  Bruno Haible  <bruno@clisp.org>
10314
10315         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
10316         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
10317         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
10318         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
10319         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10320         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10321         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10322         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10323         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10324         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10325         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
10326         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10327         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10328         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
10329         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10330         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10331         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
10332         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10333         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10334         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
10335         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10336         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10337         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
10338         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10339         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10340         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
10341         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10342         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10343         Reported by Eric Blake.
10344
10345 2007-04-11  Bruno Haible  <bruno@clisp.org>
10346
10347         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
10348
10349 2007-04-10  Bruno Haible  <bruno@clisp.org>
10350
10351         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
10352         for NaN and Infinity. Needed on FreeBSD 6.1.
10353         * tests/test-vasnprintf-posix.c (test_function): Undo last change
10354         regarding results for "%010a" of Infinity and NaN.
10355         * tests/test-vasprintf-posix.c (test_function): Likewise.
10356         * tests/test-snprintf-posix.h (test_function): Likewise.
10357         * tests/test-sprintf-posix.h (test_function): Likewise.
10358         * tests/test-fprintf-posix.h (test_function): Likewise.
10359         * tests/test-printf-posix.h (test_function): Likewise.
10360         * tests/test-fprintf-posix.out: Likewise.
10361
10362 2007-04-10  Bruno Haible  <bruno@clisp.org>
10363
10364         * modules/locale-tests: New file.
10365         * tests/test-locale.c: New file.
10366
10367         * modules/locale: New file.
10368         * lib/locale_.h: New file.
10369         * m4/locale_h.m4: New file.
10370
10371 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
10372             Bruno Haible  <bruno@clisp.org>
10373
10374         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
10375         be determined, test for availability of the copysignf, copysign,
10376         copysignl functions.
10377         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
10378         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
10379         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
10380
10381 2007-04-09  Eric Blake  <ebb9@byu.net>
10382
10383         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
10384         * modules/stdio (Makefile.am): Support fflush.
10385         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
10386         * modules/fflush: New file.
10387         * lib/fflush.c: Likewise.
10388         * m4/fflush.m4: Likewise.
10389         * modules/fflush-tests: New test.
10390         * tests/test-fflush.c: Likewise.
10391         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
10392
10393 2007-04-06  Bruno Haible  <bruno@clisp.org>
10394
10395         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
10396         (VASNPRINTF): Use signbit for faster determination whether to print a
10397         minus sign.
10398         * modules/vasnprintf (Files): Remove lib/float+.h.
10399         * modules/fprintf-posix (Depends-on): Add signbit.
10400         * modules/snprintf-posix (Depends-on): Likewise.
10401         * modules/sprintf-posix (Depends-on): Likewise.
10402         * modules/vasnprintf-posix (Depends-on): Likewise.
10403         * modules/vasprintf-posix (Depends-on): Likewise.
10404         * modules/vfprintf-posix (Depends-on): Likewise.
10405         * modules/vsnprintf-posix (Depends-on): Likewise.
10406         * modules/vsprintf-posix (Depends-on): Likewise.
10407
10408 2007-04-06  Bruno Haible  <bruno@clisp.org>
10409
10410         * tests/test-frexp.c (main): Test also the sign bit of zero results.
10411         * tests/test-frexpl.c (main): Likewise.
10412         * tests/test-ldexpl.c (main): Likewise.
10413         * modules/frexp-tests (Depends-on): Add signbit.
10414         * modules/frexpl-tests (Depdends-on): Likewise.
10415         * modules/ldexpl-tests (Depdends-on): Likewise.
10416
10417 2007-04-06  Bruno Haible  <bruno@clisp.org>
10418
10419         * modules/signbit-tests: New file.
10420         * tests/test-signbit.c: New file.
10421
10422         * modules/signbit: New file.
10423         * lib/signbitf.c: New file.
10424         * lib/signbitd.c: New file.
10425         * lib/signbitl.c: New file.
10426         * m4/signbit.m4: New file.
10427         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
10428         (signbit): New macro.
10429         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
10430         REPLACE_SIGNBIT.
10431         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
10432         REPLACE_FREXPL into math.h.
10433
10434 2007-04-06  Bruno Haible  <bruno@clisp.org>
10435
10436         * modules/isnanf-nolibm-tests: New file.
10437         * tests/test-isnanf.c: New file.
10438
10439         * modules/isnanf-nolibm: New file.
10440         * lib/isnanf.h: New file.
10441         * lib/isnanf.c: New file.
10442         * lib/isnan.c: Consider the USE_FLOAT macro.
10443         * m4/isnanf.m4: New file.
10444
10445 2007-04-06  Bruno Haible  <bruno@clisp.org>
10446
10447         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
10448         (Link): New section.
10449
10450         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
10451
10452 2007-04-06  Bruno Haible  <bruno@clisp.org>
10453
10454         Assume the 'long double' type.
10455         * m4/longdouble.m4: Remove file.
10456         * config/srclist.txt: Don't mention longdouble.m4.
10457         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
10458         * lib/float+.h: Likewise.
10459         * lib/frexp.c: Likewise.
10460         * lib/printf-args.h: Likewise.
10461         * lib/printf-args.c: Likewise.
10462         * lib/printf-frexp.c: Likewise.
10463         * lib/printf-parse.c: Likewise.
10464         * lib/vasnprintf.c: Likewise.
10465         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
10466         * m4/intl.m4: Likewise.
10467         * m4/isnanl.m4: Likewise.
10468         * m4/printf.m4: Likewise.
10469         * m4/printf-frexpl.m4: Likewise.
10470         * m4/vasnprintf.m4: Likewise.
10471         * modules/allocsa (Files): Remove m4/longdouble.m4.
10472         * modules/gettext (Files): Likewise.
10473         * modules/relocatable-prog-wrapper (Files): Likewise.
10474         * modules/vasnprintf (Files): Likewise.
10475         * modules/isnanl (Files): Likewise.
10476         (Include): Simplify.
10477         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
10478         (Include): Simplify.
10479         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
10480         (Include): Simplify.
10481         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
10482         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10483         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
10484         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10485         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
10486         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10487         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
10488         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10489         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
10490         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10491         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
10492         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10493         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
10494         * tests/test-isnanl.c: Likewise.
10495         * tests/test-snprintf-posix.h: Likewise.
10496         * tests/test-sprintf-posix.h: Likewise.
10497         * tests/test-vasnprintf-posix.c: Likewise.
10498         * tests/test-vasnprintf-posix2.c: Likewise.
10499         * tests/test-vasprintf-posix.c: Likewise.
10500
10501 2007-04-06  Bruno Haible  <bruno@clisp.org>
10502
10503         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
10504         * lib/math_.h [__DECC]: Include the overridden include file through
10505         #include_next, outside the double-inclusion guard.
10506         * lib/stdio_.h [__DECC]: Likewise.
10507         * lib/stdlib_.h [__DECC]: Likewise.
10508         * lib/string_.h [__DECC]: Likewise.
10509         * lib/time_.h [__DECC]: Likewise.
10510         * lib/wchar_.h [__DECC]: Likewise.
10511         * lib/wctype_.h [__DECC]: Likewise.
10512         * lib/inttypes_.h [__DECC]: Likewise.
10513         Reported by Albert Chin <china@thewrittenword.com> in
10514         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
10515
10516 2007-04-04  Eric Blake  <ebb9@byu.net>
10517
10518         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
10519         1.5.x.
10520
10521 2007-04-04  Bruno Haible  <bruno@clisp.org>
10522
10523         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
10524         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
10525
10526 2007-04-04  Bruno Haible  <bruno@clisp.org>
10527
10528         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
10529         results for "%010a" of Infinity and NaN.
10530         * tests/test-vasprintf-posix.c (test_function): Likewise.
10531         * tests/test-snprintf-posix.h (test_function): Likewise.
10532         * tests/test-sprintf-posix.h (test_function): Likewise.
10533         * tests/test-fprintf-posix.h (test_function): Remove these tests.
10534         * tests/test-printf-posix.h (test_function): Likewise.
10535         * tests/test-fprintf-posix.out: Update.
10536         Needed for FreeBSD 6.1.
10537
10538 2007-04-04  Bruno Haible  <bruno@clisp.org>
10539
10540         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
10541         directly used by the gnulib modules nor by gnulib-tool.
10542
10543 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
10544
10545         * DEPENDENCIES: Give overall description of version dependency
10546         desirability.  Use more-typical names for apps.
10547         Add shell, coreutils, diffutils, grep, tar, gzip.
10548
10549 2007-04-04  Simon Josefsson  <simon@josefsson.org>
10550
10551         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
10552
10553 2007-04-04  Karl Berry  <karl@gnu.org>
10554
10555         * MODULES.html.sh (func_module): missing '.
10556
10557 2007-04-03  Bruno Haible  <bruno@clisp.org>
10558
10559         * modules/argmatch-tests (Makefile.am): New variable
10560         test_argmatch_LDADD.
10561         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
10562         * modules/array-list-tests (Makefile.am): New variable
10563         test_array_list_LDADD.
10564         * modules/array-oset-tests (Makefile.am): New variable
10565         test_array_oset_LDADD.
10566         * modules/avltree-list-tests (Makefile.am): New variable
10567         test_avltree_list_LDADD.
10568         * modules/avltree-oset-tests (Makefile.am): New variable
10569         test_avltree_oset_LDADD.
10570         * modules/avltreehash-list-tests (Makefile.am): New variable
10571         test_avltreehash_list_LDADD.
10572         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
10573         test_canonicalize_lgpl_LDADD.
10574         * modules/carray-list-tests (Makefile.am): New variable
10575         test_carray_list_LDADD.
10576         * modules/dirname-tests (Makefile.am): New variable
10577         test_dirname_LDADD.
10578         * modules/linked-list-tests (Makefile.am): New variable
10579         test_linked_list_LDADD.
10580         * modules/linkedhash-list-tests (Makefile.am): New variable
10581         test_linkedhash_list_LDADD.
10582         * modules/rbtree-list-tests (Makefile.am): New variable
10583         test_rbtree_list_LDADD.
10584         * modules/rbtree-oset-tests (Makefile.am): New variable
10585         test_rbtree_oset_LDADD.
10586         * modules/rbtreehash-list-tests (Makefile.am): New variable
10587         test_rbtreehash_list_LDADD.
10588         * modules/xvasprintf-tests (Makefile.am): New variable
10589         test_xvasprintf_LDADD.
10590         Reported by Eric Blake.
10591
10592 2007-04-03  Eric Blake  <ebb9@byu.net>
10593
10594         * DEPENDENCIES: Weaken m4 requirements.
10595
10596 2007-04-03  Bruno Haible  <bruno@clisp.org>
10597
10598         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
10599         * modules/isnanl-tests (configure.ac): Likewise.
10600
10601 2007-04-03  Ben Pfaff  <blp@gnu.org>
10602
10603         * modules/iconv_open: Add $(srcdir)/ to source directory
10604         references in Makefile fragments that call gperf, to fix VPATH
10605         builds.
10606
10607 2007-04-03  Bruno Haible  <bruno@clisp.org>
10608
10609         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
10610         * lib/ldexpl.c: Undo last change.
10611
10612 2007-04-03  Bruno Haible  <bruno@clisp.org>
10613
10614         * modules/printf-frexpl (Depends-on): Undo last change.
10615         (Files): Add m4/ldexpl.m4.
10616
10617 2007-04-03  Bruno Haible  <bruno@clisp.org>
10618
10619         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
10620         * modules/isnanl (Link): New section.
10621
10622         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
10623         * modules/frexp (Link): New section.
10624
10625         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
10626         * modules/frexpl (Link): New section.
10627
10628         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
10629         * modules/ldexpl (Link): New section.
10630
10631 2007-04-03  Bruno Haible  <bruno@clisp.org>
10632
10633         * modules/TEMPLATE-EXTENDED: New file.
10634         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
10635
10636 2007-04-03  Bruno Haible  <bruno@clisp.org>
10637
10638         * DEPENDENCIES: New file.
10639         Suggested by Simon Josefsson.
10640
10641 2007-04-03  Bruno Haible  <bruno@clisp.org>
10642
10643         * doc/gnulib.texi: Escape @.
10644
10645 2007-04-03  James Youngman  <jay@gnu.org>
10646         and Paul Eggert  <eggert@cs.ucla.edu>
10647
10648         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
10649         birthtime on all systems that have birthtime, not just those which
10650         use st_birthtimensec rather than st_birthtim.  Putting zero in
10651         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
10652         that the birth time is not available for files on an NFS mount.
10653
10654 2007-04-03  Simon Josefsson  <simon@josefsson.org>
10655
10656         * modules/memxor: Move back from crypto/, suggested by Bruno.
10657         * modules/crypto/hmac-sha1: Fix memxor dependency.
10658
10659         * modules/crypto/gc: Moved from ../.
10660
10661 2007-04-02  Eric Blake  <ebb9@byu.net>
10662
10663         * lib/ldexpl.c (includes): Avoid libm.
10664
10665         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
10666
10667 2007-04-02  Bruno Haible  <bruno@clisp.org>
10668
10669         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
10670         on IRIX.
10671
10672 2007-04-02  Bruno Haible  <bruno@clisp.org>
10673
10674         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
10675         x86 or x86_64 platforms running MacOS X.
10676         Reported by Ryan Schmidt <@ryandesign.com>.
10677
10678 2007-04-02  Bruno Haible  <bruno@clisp.org>
10679
10680         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
10681         i386.
10682
10683 2007-04-01  Simon Josefsson  <simon@josefsson.org>
10684
10685         * modules/crypto/arcfour: Moved from ../.
10686         * modules/crypto/arcfour-tests: Moved from ../.
10687         * modules/crypto/arctwo: Moved from ../.
10688         * modules/crypto/arctwo-tests: Moved from ../.
10689         * modules/crypto/des: Moved from ../.
10690         * modules/crypto/des-tests: Moved from ../.
10691         * modules/crypto/gc-arcfour: Moved from ../.
10692         * modules/crypto/gc-arcfour-tests: Moved from ../.
10693         * modules/crypto/gc-arctwo: Moved from ../.
10694         * modules/crypto/gc-arctwo-tests: Moved from ../.
10695         * modules/crypto/gc-des: Moved from ../.
10696         * modules/crypto/gc-des-tests: Moved from ../.
10697         * modules/crypto/gc-hmac-md5: Moved from ../.
10698         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
10699         * modules/crypto/gc-hmac-sha1: Moved from ../.
10700         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
10701         * modules/crypto/gc-md2: Moved from ../.
10702         * modules/crypto/gc-md2-tests: Moved from ../.
10703         * modules/crypto/gc-md4: Moved from ../.
10704         * modules/crypto/gc-md4-tests: Moved from ../.
10705         * modules/crypto/gc-md5: Moved from ../.
10706         * modules/crypto/gc-md5-tests: Moved from ../.
10707         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
10708         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
10709         * modules/crypto/gc-random: Moved from ../.
10710         * modules/crypto/gc-rijndael: Moved from ../.
10711         * modules/crypto/gc-rijndael-tests: Moved from ../.
10712         * modules/crypto/gc-sha1: Moved from ../.
10713         * modules/crypto/gc-sha1-tests: Moved from ../.
10714         * modules/crypto/gc-tests: Moved from ../.
10715         * modules/crypto/hmac-md5: Moved from ../.
10716         * modules/crypto/hmac-md5-tests: Moved from ../.
10717         * modules/crypto/hmac-sha1: Moved from ../.
10718         * modules/crypto/hmac-sha1-tests: Moved from ../.
10719         * modules/crypto/md2: Moved from ../.
10720         * modules/crypto/md2-tests: Moved from ../.
10721         * modules/crypto/md4: Moved from ../.
10722         * modules/crypto/md4-tests: Moved from ../.
10723         * modules/crypto/md5: Moved from ../.
10724         * modules/crypto/md5-tests: Moved from ../.
10725         * modules/crypto/memxor: Moved from ../.
10726         * modules/crypto/rijndael: Moved from ../.
10727         * modules/crypto/rijndael-tests: Moved from ../.
10728         * modules/crypto/sha1: Moved from ../.
10729
10730 2007-03-30  James Youngman  <jay@gnu.org>
10731
10732         * tests/test-stat-time.c (prepare_test): use chmod() rather than
10733         rename() to change the ctime of a file (because ctime is unaffected
10734         by rename on jfs2 on AIX 5.1).
10735         (main): Start by doing cleanup, in case a previous run failed leaving
10736         test files behind.
10737
10738 2007-03-31  Bruno Haible  <bruno@clisp.org>
10739
10740         Support old proprietary implementations of iconv.
10741         * modules/iconv_open: New file.
10742         * lib/iconv_.h: New file.
10743         * m4/iconv_h.m4: New file.
10744         * lib/iconv_open.c: New file.
10745         * lib/iconv_open-aix.gperf: New file.
10746         * lib/iconv_open-hpux.gperf: New file.
10747         * lib/iconv_open-irix.gperf: New file.
10748         * lib/iconv_open-osf.gperf: New file.
10749         * m4/iconv_open.m4: New file.
10750         * modules/linebreak (Depends-on): Add iconv_open.
10751         * modules/striconv (Depends-on): Likewise.
10752         * modules/striconveh (Depends-on): Likewise.
10753         * modules/unicodeio (Depends-on): Likewise.
10754         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
10755         (iconv_t)(-1).
10756         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
10757         conversion if cd is (iconv_t)(-1).
10758         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
10759         is not possible.
10760
10761 2007-03-31  Bruno Haible  <bruno@clisp.org>
10762
10763         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
10764         work on Solaris either. Protect also second use of "autodetect_jp".
10765
10766 2007-03-31  Bruno Haible  <bruno@clisp.org>
10767
10768         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
10769         the function is not present.
10770
10771 2007-03-31  Bruno Haible  <bruno@clisp.org>
10772
10773         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
10774         the function is not present.
10775
10776 2007-03-31  Bruno Haible  <bruno@clisp.org>
10777
10778         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
10779         a bug in HP-UX iconv_open().
10780
10781 2007-03-31  Bruno Haible  <bruno@clisp.org>
10782
10783         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
10784         (Mathematics <math.h>): New section, add fpieee.
10785         (Input/output <stdio.h>): Add fseterr.
10786         (Mathematics <math.h>): New section, add printf-frexp.
10787         (Container data structures): Add sublist.
10788         (Core language properties): Add fpucw, inline.
10789         (Functions for greatest-width integer types <inttypes.h>): Add
10790         imaxabs, imaxdiv, inttypes.
10791         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
10792         isnanl-nolibm, ldexp.
10793         (Mathematics <math.h>): New section, add printf-frexpl.
10794         (Support for systems lacking POSIX:2001): Add fprintf-posix,
10795         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
10796         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
10797         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
10798         (Unicode string functions): Add unistr/u*-mbtoucr.
10799         (Java): Add javacomp-script, javaexec-script.
10800         (C#): Add csharpcomp-script, csharpexec-script.
10801         (Support for building libraries and executables): Add havelib,
10802         relocatable-*.
10803         (Support for maintaining and releasing projects): Renamed from
10804         'Support for maintaining and release projects'. Add announce-gen.
10805
10806 2007-03-31  Bruno Haible  <bruno@clisp.org>
10807
10808         * README: Talk primarily about git.
10809         (git and CVS): Renamed from CVS.
10810         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
10811         gnulib is available through git.
10812         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
10813
10814 2007-03-30  Bruno Haible  <bruno@clisp.org>
10815
10816         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
10817         * lib/poll_.h: Likewise.
10818         * lib/stat_.h: Likewise.
10819         * lib/sys_time_.h: Likewise.
10820         * lib/sysexit_.h: Likewise.
10821         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
10822         * lib/stdbool_.h: Likewise.
10823         * lib/byteswap_.h: Add double-inclusion guard.
10824
10825 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
10826
10827         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
10828
10829 2007-03-30  Karl Berry  <karl@gnu.org>
10830
10831         * config/srclist-update: double space after USA in the license
10832         substitution, since that's how it's usually (?) written.
10833
10834 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
10835
10836         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
10837         reported by Bruno Haible.
10838
10839 2007-03-29  Bruno Haible  <bruno@clisp.org>
10840
10841         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
10842         a bug in AIX iconv().
10843
10844 2007-03-29  Bruno Haible  <bruno@clisp.org>
10845
10846         * modules/ldexpl-tests: New file.
10847         * tests/test-ldexpl.c: New file.
10848
10849 2007-03-29  Bruno Haible  <bruno@clisp.org>
10850
10851         * lib/ldexpl.c: Include fpucw.h.
10852         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
10853         multiplication.
10854         * modules/ldexpl (Depends-on): Add fpucw.
10855
10856 2007-03-29  Bruno Haible  <bruno@clisp.org>
10857
10858         * modules/ldexpl: New file.
10859         * m4/ldexpl.m4: New file.
10860         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
10861         set.
10862         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
10863         REPLACE_LDEXPL.
10864         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
10865         REPLACE_LDEXPL.
10866         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
10867         gl_FUNC_LDEXPL_WORKS.
10868         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
10869         * modules/mathl (Files): Remove lib/ldexpl.c.
10870         (Depends-on): Add ldexpl.
10871
10872 2007-03-29  Bruno Haible  <bruno@clisp.org>
10873
10874         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
10875
10876 2007-03-29  Bruno Haible  <bruno@clisp.org>
10877
10878         * tests/test-striconveh.c (main): Don't assume that a direct conversion
10879         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
10880         and possibly also HP-UX.
10881         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
10882         work on AIX, IRIX, HP-UX, OSF/1.
10883         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
10884         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
10885         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
10886         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
10887         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
10888         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
10889
10890 2007-03-29  Bruno Haible  <bruno@clisp.org>
10891
10892         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
10893
10894 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
10895
10896         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
10897         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
10898
10899 2007-03-29  Eric Blake  <ebb9@byu.net>
10900
10901         * lib/acl-internal.h: Remove redundant include.
10902         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
10903         Cygwin when a file is locked.
10904
10905 2007-03-29  Bruno Haible  <bruno@clisp.org>
10906
10907         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
10908         file.
10909         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
10910
10911 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
10912
10913         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
10914         try to remove a parent directory if the child couldn't be removed
10915         (except for the first rmdir, which could fail because the child
10916         doesn't exist).  Problem reported by Jeff Blaine in
10917         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
10918
10919 2007-03-28  Bruno Haible  <bruno@clisp.org>
10920
10921         * lib/striconveh.c (utf8conv_carefully): New function.
10922         (mem_cd_iconveh_internal): Invoke it.
10923
10924 2007-03-28  Bruno Haible  <bruno@clisp.org>
10925
10926         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
10927         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
10928         input.
10929         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
10930         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
10931         unistr/u8-uctomb.
10932
10933 2007-03-28  Bruno Haible  <bruno@clisp.org>
10934
10935         * modules/unistr/u8-mbtoucr: New file.
10936         * lib/unistr/u8-mbtoucr.c: New file.
10937         * modules/unistr/u16-mbtoucr: New file.
10938         * lib/unistr/u16-mbtoucr.c: New file.
10939         * modules/unistr/u16-mbtoucr: New file.
10940         * lib/unistr/u16-mbtoucr.c: New file.
10941         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
10942
10943 2007-03-27  Simon Josefsson  <simon@josefsson.org>
10944             Bruno Haible  <bruno@clisp.org>
10945
10946         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
10947         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
10948         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
10949
10950         * m4/stdio_h.m4: Add stubs for vasprintf too.
10951
10952         * modules/stdio: Support vasprintf in sed command.
10953
10954         * modules/vasprintf: Depend on stdio for prototypes.  Remove
10955         vasprintf.h.  Add stdio module indicator.
10956
10957         * lib/stdio_.h: Declare asprintf and vasprintf, based on
10958         vasprintf.h.
10959
10960         * lib/vasprintf.h: File removed.
10961
10962         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
10963         * lib/vasprintf.c: Ditto.
10964         * lib/xvasprintf.c: Ditto.
10965         * tests/test-vasprintf-posix.c: Ditto.
10966         * tests/test-vasprintf.c: Ditto.
10967
10968 2007-03-27  Bruno Haible  <bruno@clisp.org>
10969
10970         Make vasnprintf multithread-safe.
10971         * lib/vasnprintf.c (decimal_point_char): New function.
10972         (VASNPRINTF): Use it.
10973         Suggested by Simon Josefsson.
10974
10975 2007-03-27  Eric Blake  <ebb9@byu.net>
10976
10977         Support sub-second birthtime on cygwin.
10978         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
10979         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
10980         (get_stat_birthtime): Also work with st_birthtim.
10981
10982 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
10983
10984         * lib/stat-time.h (USE_BIRTHTIME): Remove.
10985         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
10986         (get_stat_birthtime_ns): Do not try to use "spare" fields.
10987         (get_stat_birthtime_ns): Simplify compile-time tests.
10988         (get_stat_birthtime): Change the API to look like
10989         get_stat_mtime etc., except return a negative tv_nsec on error.
10990         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
10991         Don't check for "spare" fields.
10992         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
10993         or for struct stat.st_birthtime, as these tests aren't used.
10994         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
10995
10996 2007-03-27  Bruno Haible  <bruno@clisp.org>
10997
10998         * lib/stat-time.h: Include <sys/stat.h>.
10999
11000 2007-03-27  James Youngman  <jay@gnu.org>
11001
11002         * lib/stat-time.h (get_stat_birthtime): New function for
11003           retrieving st_birthtime as provided by UFS2 (hence *BSD).
11004         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
11005           and its variants.
11006         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
11007         * modules/stat-time-test: New file.
11008         * tests/test-stat-time.c: New test, devised by Bruno Haible.
11009
11010 2007-03-26  Bruno Haible  <bruno@clisp.org>
11011
11012         Better support of signalling NaNs.
11013         * lib/atanl.c: Include isnanl.h.
11014         (atanl): Perform test for NaN at the beginning of the function and
11015         through a call to isnanl.
11016         * lib/cosl.c: Include isnanl.h.
11017         (cosl): Perform test for NaN at the beginning of the function and
11018         through a call to isnanl.
11019         * lib/ldexpl.c: Include isnanl.h.
11020         (ldexpl): Perform test for NaN through a call to isnanl.
11021         * lib/logl.c: Include isnanl.h.
11022         (logl): Perform test for NaN at the beginning of the function and
11023         through a call to isnanl.
11024         * lib/sinl.c: Include isnanl.h.
11025         (sinl): Perform test for NaN at the beginning of the function and
11026         through a call to isnanl.
11027         * lib/sqrtl.c: Include isnanl.h.
11028         (sqrtl): Perform test for NaN at the beginning of the function and
11029         through a call to isnanl.
11030         * lib/tanl.c: Include isnanl.h.
11031         (tanl): Perform test for NaN at the beginning of the function and
11032         through a call to isnanl.
11033         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
11034         * modules/mathl (Depends-on): Add isnanl.
11035
11036 2007-03-26  Eric Blake  <ebb9@byu.net>
11037
11038         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
11039         regression in logic sense of previous patch.
11040
11041 2007-03-26  Bruno Haible  <bruno@clisp.org>
11042
11043         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
11044         unportable shell command "if ! ...".
11045         Reported by Ralf Wildenhues.
11046
11047 2007-03-25  Bruno Haible  <bruno@clisp.org>
11048
11049         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
11050         <sysexits.h> file, and only add EX_CONFIG.
11051         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
11052         absolute file name and whether it is sufficient. Substitute also
11053         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
11054         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
11055         ABSOLUTE_SYSEXITS_H into sysexits.h.
11056
11057 2007-03-25  Bruno Haible  <bruno@clisp.org>
11058
11059         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
11060         hints is NULL.
11061
11062 2007-03-25  Bruno Haible  <bruno@clisp.org>
11063
11064         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
11065         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
11066
11067 2007-03-25  Bruno Haible  <bruno@clisp.org>
11068
11069         * lib/vasnprintf.c: Include langinfo.h.
11070         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
11071         multithread-safe.
11072         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
11073         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
11074         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
11075         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11076         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11077         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11078         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11079         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
11080         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11081         Reported by Simon Josefsson.
11082
11083 2007-03-25  Bruno Haible  <bruno@clisp.org>
11084
11085         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
11086         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
11087         * modules/vasnprintf (Depends-on): Add stdint.
11088
11089 2007-03-25  Bruno Haible  <bruno@clisp.org>
11090
11091         * modules/fpieee: New file.
11092         * m4/fpieee.m4: New file.
11093         * modules/isnan-nolibm (Depends-on): Add fpieee.
11094         * modules/isnanl-nolibm (Depends-on): Add fpieee.
11095         * modules/isnanl (Depends-on): Add fpieee.
11096
11097 2007-03-25  Bruno Haible  <bruno@clisp.org>
11098
11099         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
11100
11101 2007-03-25  Bruno Haible  <bruno@clisp.org>
11102
11103         Avoid test failures on IRIX 6.5.
11104         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
11105         (main): Use it.
11106         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
11107         macros.
11108         (main): Use them.
11109
11110 2007-03-25  Bruno Haible  <bruno@clisp.org>
11111
11112         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
11113         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
11114         exists but doesn't work.
11115         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
11116         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
11117         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
11118         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
11119
11120 2007-03-25  Bruno Haible  <bruno@clisp.org>
11121
11122         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
11123         returns inf. Needed on IRIX 6.5.
11124
11125 2007-03-25  Bruno Haible  <bruno@clisp.org>
11126
11127         * tests/test-frexpl.c: Include isnanl-nolibm.h.
11128         (main): Use isnanl instead of x != x idiom.
11129         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
11130
11131         * tests/test-frexp.c: Include isnan.h.
11132         (main): Use isnan instead of x != x idiom.
11133         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
11134
11135 2007-03-25  Bruno Haible  <bruno@clisp.org>
11136
11137         * tests/test-frexp.c (NaN): New function/macro.
11138         (main): Use it instead of 0.0 / 0.0.
11139         * tests/test-isnan.c (NaN): New function/macro.
11140         (main): Use it instead of 0.0 / 0.0.
11141         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
11142         (test_function): Use it instead of 0.0 / 0.0.
11143         * tests/test-vasprintf-posix.c (NaN): New function/macro.
11144         (test_function): Use it instead of 0.0 / 0.0.
11145         * tests/test-snprintf-posix.h (NaN): New function/macro.
11146         (test_function): Use it instead of 0.0 / 0.0.
11147         * tests/test-sprintf-posix.h (NaN): New function/macro.
11148         (test_function): Use it instead of 0.0 / 0.0.
11149         * tests/test-fprintf-posix.h (NaN): New function/macro.
11150         (test_function): Use it instead of 0.0 / 0.0.
11151         * tests/test-printf-posix.h (NaN): New function/macro.
11152         (test_function): Use it instead of 0.0 / 0.0.
11153
11154         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
11155
11156 2007-03-25  Bruno Haible  <bruno@clisp.org>
11157
11158         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
11159
11160 2007-03-25  Bruno Haible  <bruno@clisp.org>
11161
11162         * lib/regexec.c (merge_state_with_log): Make static.
11163
11164 2007-03-25  Bruno Haible  <bruno@clisp.org>
11165
11166         * lib/trigl.c (kernel_rem_pio2): Make static.
11167
11168 2007-03-25  Bruno Haible  <bruno@clisp.org>
11169
11170         * lib/sincosl.c (sincosl_table): Make static.
11171
11172 2007-03-25  Bruno Haible  <bruno@clisp.org>
11173
11174         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
11175         if the compiler does not support C99.
11176
11177 2007-03-25  Bruno Haible  <bruno@clisp.org>
11178
11179         * modules/time (Makefile.am): Ensure all rule action lines start with a
11180         tab.
11181
11182 2007-03-24  Bruno Haible  <bruno@clisp.org>
11183
11184         * modules/tsearch-tests: New file.
11185         * tests/test-tsearch.sh: New file.
11186         * tests/test-tsearch.c: New file, mostly copied from glibc.
11187
11188         * modules/search-tests: New file.
11189         * tests/test-search.c: New file.
11190
11191         * modules/search: New file.
11192         * lib/search_.h: New file, incorporating lib/tsearch.h.
11193         * m4/search_h.m4: New file.
11194         * lib/tsearch.h: Remove file.
11195         * lib/tsearch.c: Include search.h instead of tsearch.h.
11196         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
11197         HAVE_TSEARCH.
11198         * modules/tsearch (Files): Remove lib/tsearch.h.
11199         (Depends-on): Add search.
11200         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
11201         (Include): Change tsearch.h into search.h.
11202
11203 2007-03-24  Bruno Haible  <bruno@clisp.org>
11204
11205         * modules/fpucw: New file.
11206         * lib/fpucw.h: New file.
11207         * lib/frexp.c: Include fpucw.h.
11208         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11209         (FUNC): Use them.
11210         * lib/printf-frexp.c: Include fpucw.h.
11211         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11212         (FUNC): Use them.
11213         * lib/vasnprintf.c: Include fpucw.h.
11214         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
11215         'long double' calculations.
11216         * tests/test-frexpl.c: Include fpucw.h.
11217         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11218         * tests/test-printf-frexpl.c: Include fpucw.h.
11219         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11220         * modules/frexpl (Depends-on): Add fpucw.
11221         * modules/printf-frexpl (Depends-on): Likewise.
11222         * modules/fprintf-posix (Depends-on): Likewise.
11223         * modules/snprintf-posix (Depends-on): Likewise.
11224         * modules/sprintf-posix (Depends-on): Likewise.
11225         * modules/vasnprintf-posix (Depends-on): Likewise.
11226         * modules/vasprintf-posix (Depends-on): Likewise.
11227         * modules/vfprintf-posix (Depends-on): Likewise.
11228         * modules/vsnprintf-posix (Depends-on): Likewise.
11229         * modules/vsprintf-posix (Depends-on): Likewise.
11230         * modules/frexpl-tests (Depends-on): Likewise.
11231         * modules/printf-frexpl-tests (Depends-on): Likewise.
11232
11233 2007-03-24  Bruno Haible  <bruno@clisp.org>
11234
11235         * lib/float+.h: New file.
11236         * lib/isnan.c: Include float+.h.
11237         (SIZE): New macro.
11238         (FUNC): Compare only SIZE bytes of the value.
11239         * lib/vasnprintf.c: Include float+.h.
11240         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
11241         SIZEOF_LDBL or SIZEOF_DBL bytes.
11242         * modules/isnan-nolibm (Files): Add lib/float+.h.
11243         * modules/isnanl-nolibm (Files): Add lib/float+.h.
11244         * modules/isnanl (Files): Add lib/float+.h.
11245         * modules/vasnprintf (Files): Add lib/float+.h.
11246
11247 2007-03-24  Bruno Haible  <bruno@clisp.org>
11248
11249         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
11250         include isnanl-nolibm.h.
11251
11252 2007-03-24  Bruno Haible  <bruno@clisp.org>
11253
11254         * tests/test-read-file.c (main): Don't produce spurious output for
11255         expected situations. Make the test fail if it encountered unexpected
11256         results.
11257
11258 2007-03-24  Bruno Haible  <bruno@clisp.org>
11259
11260         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
11261         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
11262
11263 2007-03-24  Bruno Haible  <bruno@clisp.org>
11264
11265         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
11266
11267 2007-03-24  Bruno Haible  <bruno@clisp.org>
11268
11269         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
11270         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
11271
11272         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
11273         * modules/utf8-ucs4: Turn into a symbolic link to module
11274         unistr/u8-mbtouc.
11275
11276         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
11277         utf8-ucs4-unsafe.
11278         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
11279         unistr/u8-mbtouc-unsafe.
11280
11281         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
11282         * modules/utf16-ucs4: Turn into a symbolic link to module
11283         unistr/u16-mbtouc.
11284
11285         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
11286         utf16-ucs4-unsafe.
11287         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
11288         unistr/u16-mbtouc-unsafe.
11289
11290         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
11291         * modules/ucs4-utf8: Turn into a symbolic link to module
11292         unistr/u8-ubtomb.
11293
11294         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
11295         * modules/ucs4-utf16: Turn into a symbolic link to module
11296         unistr/u16-ubtomb.
11297
11298 2007-03-24  Bruno Haible  <bruno@clisp.org>
11299
11300         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
11301         Enable the function only if HAVE_INLINE.
11302         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
11303         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11304         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
11305         Enable the function only if HAVE_INLINE.
11306         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
11307         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11308         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
11309         Enable the function only if HAVE_INLINE.
11310         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
11311         Enable the function only if HAVE_INLINE.
11312         * modules/utf8-ucs4: Update.
11313         * modules/utf8-ucs4-unsafe: Update.
11314         * modules/utf16-ucs4: Update.
11315         * modules/utf16-ucs4-unsafe: Update.
11316         * modules/ucs4-utf8: Update.
11317         * modules/ucs4-utf16: Update.
11318
11319 2007-03-24  Bruno Haible  <bruno@clisp.org>
11320
11321         * lib/utf8-ucs4.h: Remove file.
11322         * lib/utf8-ucs4-unsafe.h: Remove file.
11323         * lib/utf16-ucs4.h: Remove file.
11324         * lib/utf16-ucs4-unsafe.h: Remove file.
11325         * lib/ucs4-utf8.h: Remove file.
11326         * lib/ucs4-utf16.h: Remove file.
11327         * lib/unistr.h: Include their previous contents.
11328         * m4/utf-ucs4.m4: Remove file.
11329         * m4/ucs4-utf.m4: Remove file.
11330         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
11331         (Depends-on): Add unistr/base.
11332         (configure.ac): Remove gl_UTF_UCS4.
11333         (Makefile.am): Update.
11334         (Include): Change to unistr.h.
11335         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
11336         (Depends-on): Add unistr/base.
11337         (configure.ac): Remove gl_UTF_UCS4.
11338         (Makefile.am): Update.
11339         (Include): Change to unistr.h.
11340         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
11341         (Depends-on): Add unistr/base.
11342         (configure.ac): Remove gl_UTF_UCS4.
11343         (Makefile.am): Update.
11344         (Include): Change to unistr.h.
11345         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
11346         (Depends-on): Add unistr/base.
11347         (configure.ac): Remove gl_UTF_UCS4.
11348         (Makefile.am): Update.
11349         (Include): Change to unistr.h.
11350         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
11351         (Depends-on): Add unistr/base.
11352         (configure.ac): Remove gl_UCS4_UTF.
11353         (Makefile.am): Update.
11354         (Include): Change to unistr.h.
11355         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
11356         (Depends-on): Add unistr/base.
11357         (configure.ac): Remove gl_UCS4_UTF.
11358         (Makefile.am): Update.
11359         (Include): Change to unistr.h.
11360         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
11361         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
11362         utf8-ucs4-unsafe.h.
11363         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
11364         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
11365         utf16-ucs4-unsafe.h.
11366         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
11367         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
11368         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
11369         * lib/unistr/u8-strchr.c: Likewise.
11370         * lib/unistr/u8-strrchr.c: Likewise.
11371         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
11372         * lib/unistr/u16-strchr.c: Likewise.
11373         * lib/unistr/u16-strrchr.c: Likewise.
11374         * lib/striconveh.c: Update.
11375         * lib/linebreak.c: Update.
11376
11377 2007-03-24  Bruno Haible  <bruno@clisp.org>
11378
11379         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
11380         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
11381
11382 2007-03-22  Bruno Haible  <bruno@clisp.org>
11383
11384         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
11385
11386 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
11387
11388         * MODULES.html.sh (File system functions): New module write-any-file.
11389         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
11390         * m4/write-any-file.m4: New files.
11391
11392 2007-03-23  Eric Blake  <ebb9@byu.net>
11393
11394         * gnulib-tool: Rearrange space-tab sequences, since some editors
11395         like to eat them.
11396
11397 2007-03-23  Eric Blake  <ebb9@byu.net>
11398
11399         * lib/version-etc.c (version_etc_va): Update license wording to
11400         be more concise.  Recommended by Richard Stallman.
11401
11402 2007-03-22  Bruno Haible  <bruno@clisp.org>
11403
11404         * lib/poll.c (MSG_PEEK): New fallback definition.
11405
11406 2007-03-22  Bruno Haible  <bruno@clisp.org>
11407
11408         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
11409         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
11410         (main): Update.
11411         Fixes a compilation error on BeOS.
11412
11413 2007-03-22  Bruno Haible  <bruno@clisp.org>
11414
11415         * modules/frexpl-tests: New file.
11416         * tests/test-frexpl.c: New file.
11417
11418         * modules/frexpl: New file.
11419         * m4/frexpl.m4: New file.
11420         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
11421         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
11422         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
11423         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
11424         (Depends-on): Add frexpl. Remove isnanl-nolibm.
11425         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
11426
11427 2007-03-22  Bruno Haible  <bruno@clisp.org>
11428
11429         * lib/frexpl.c: Share code with lib/frexp.c.
11430         * modules/mathl (Files): Add lib/frexp.c.
11431         (Depends-on): Add isnanl-nolibm.
11432
11433 2007-03-22  Bruno Haible  <bruno@clisp.org>
11434
11435         * modules/printf-frexp (Files): Add m4/frexp.m4.
11436         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
11437         only if the found frexp function actually works.
11438
11439 2007-03-22  Bruno Haible  <bruno@clisp.org>
11440
11441         * lib/frexp.c: Remove older implementation that uses divisions.
11442
11443 2007-03-21  Bruno Haible  <bruno@clisp.org>
11444
11445         * modules/frexp-tests: New file.
11446         * tests/test-frexp.c: New file.
11447
11448         * modules/frexp: New file.
11449         * lib/frexp.c: New file.
11450         * m4/frexp.m4: New file.
11451         * lib/math_.h (frexp): New declaration.
11452         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
11453         REPLACE_FREXP.
11454         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
11455
11456 2007-03-21  Bruno Haible  <bruno@clisp.org>
11457
11458         * modules/isnanl-tests: New file.
11459         * tests/test-isnanl.c: New file.
11460
11461         * modules/isnanl: New file.
11462         * lib/isnanl.h: New file.
11463         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
11464         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
11465         gl_FUNC_ISNANL_WORKS.
11466         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
11467         New macros.
11468
11469 2007-03-21  Bruno Haible  <bruno@clisp.org>
11470
11471         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
11472         lib/isnanl.h.
11473         (Include): Update.
11474         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
11475         * lib/vasnprintf.c: Update.
11476         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
11477         tests/test-isnanl.h, remove tests/test-isnanl.c.
11478         (Makefile.am): Update.
11479         * tests/test-isnanl-nolibm.c: New file.
11480         * tests/test-isnanl.h: New file.
11481         * tests/test-isnanl.c: Remove file.
11482
11483 2007-03-21  Jim Meyering  <jim@meyering.net>
11484
11485         When trying to open ".", treat ESTALE like EACCES.
11486         * lib/savewd.c (savewd_save): Resort to forking not just upon
11487         failure with EACCES, but also when errno is ESTALE.
11488
11489 2007-03-20  Bruno Haible  <bruno@clisp.org>
11490
11491         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
11492         Needed on AIX 5.1. Reported by Matthew Woehlke.
11493
11494 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11495
11496         Suggestions by Bruno Haible:
11497         * lib/acl-internal.h: Include "gettext.h" rather than rolling
11498         our own.
11499         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
11500         * modules/acl (Depends-on): Add gettext.
11501
11502 2007-03-19  Bruno Haible  <bruno@clisp.org>
11503
11504         * modules/iconvme: Remove file.
11505         * lib/iconvme.h: Remove file.
11506         * lib/iconvme.c: Remove file.
11507         * m4/iconvme.m4: Remove file.
11508
11509 2007-03-19  Bruno Haible  <bruno@clisp.org>
11510
11511         * doc/relocatable-maint.texi: Break long shell script line.
11512         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
11513
11514 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11515
11516         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
11517         handle file_has_acl.
11518         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
11519         * lib/acl.c: Move header inclusions and related macro defns into
11520         lib/acl-internal.h.
11521         (S_ISLNK): Remove defn, since that's now done for us.
11522         (file_has_acl): Move to lib/file-has-acl.c.
11523         Call acl_trivial if available.  This is the crucial part of the fix.
11524         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
11525         shared within the library.  Rewrite a bit, partly to make it compatible
11526         with the GNU coding style.
11527         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
11528         Remove unnecessary double-quotes.
11529         Don't test for acl_to_text; the build will catch that.
11530         Replace acl_entries if it doesn't exist and it is needed.
11531         Check for -lsec and acl_trivial (as used on Solaris 10).
11532         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
11533         lib/file-has-acl.c.
11534         (Depends-on): Add sys_stat, for S_ISLNK.
11535
11536 2007-03-19  Ben Pfaff  <blp@gnu.org>
11537
11538         * doc/gnulib.texi: Fix typos.
11539         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
11540
11541 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11542
11543         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
11544         If size is zero here, buf must be zero.
11545
11546 2007-03-19  Simon Josefsson  <simon@josefsson.org>
11547
11548         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
11549         <bruno@clisp.org>.
11550
11551 2007-03-18  Bruno Haible  <bruno@clisp.org>
11552
11553         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
11554         Suggested by Eric Blake.
11555
11556 2007-03-18  Ben Pfaff  <blp@gnu.org>
11557
11558         * doc/relocatable.texi: Recommend using as prefix a directory
11559         that does not exist and will never be created.  Based on
11560         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
11561         and others.
11562
11563 2007-03-17  Bruno Haible  <bruno@clisp.org>
11564
11565         * lib/fchownat.c: Include lchown.h.
11566
11567 2007-03-17  Bruno Haible  <bruno@clisp.org>
11568
11569         Fix endless loop when the given allocated size was > INT_MAX.
11570         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
11571         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
11572         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
11573         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
11574         * lib/sprintf.c (sprintf): Likewise.
11575
11576 2007-03-17  Bruno Haible  <bruno@clisp.org>
11577
11578         * tests/test-argp-2.sh (func_compare): Output a context diff.
11579
11580 2007-03-17  Bruno Haible  <bruno@clisp.org>
11581
11582         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
11583         locale's decimal-point character.
11584
11585 2007-03-17  Bruno Haible  <bruno@clisp.org>
11586
11587         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
11588         before comparing it. Needed because on some platforms (e.g. x86) a
11589         'long double' occupies less bytes than sizeof (long double).
11590
11591 2007-03-17  Bruno Haible  <bruno@clisp.org>
11592
11593         * tests/test-crc.c (main): Make printf statements 64-bit clean.
11594         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
11595         * tests/test-getaddrinfo.c (simple): Likewise.
11596         * tests/test-read-file.c (main): Likewise.
11597
11598 2007-03-17  Bruno Haible  <bruno@clisp.org>
11599
11600         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
11601
11602 2007-03-17  Bruno Haible  <bruno@clisp.org>
11603
11604         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
11605         unused variable.
11606
11607 2007-03-17  Bruno Haible  <bruno@clisp.org>
11608
11609         * tests/test-c-strcasecmp.c: Include c-strcase.h.
11610         * tests/test-c-strncasecmp.c: Likewise.
11611
11612 2007-03-17  Bruno Haible  <bruno@clisp.org>
11613
11614         * modules/stdlib (Depends-on): Add unistd.
11615         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
11616         Needed for MacOS X 10.3.
11617
11618 2007-03-17  Bruno Haible  <bruno@clisp.org>
11619
11620         * lib/unistr/u-strdup.h: Include <stdlib.h>.
11621
11622 2007-03-17  Bruno Haible  <bruno@clisp.org>
11623
11624         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
11625
11626 2007-03-17  Bruno Haible  <bruno@clisp.org>
11627
11628         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
11629         to reflect files copied from gnulib (with or without modifications).
11630         Suggested by Jim Meyering.
11631
11632 2007-03-17  Eric Blake  <ebb9@byu.net>
11633
11634         * NEWS: Document stdlib change from 2007-02-18.
11635
11636 2007-03-17  Jim Meyering  <jim@meyering.net>
11637
11638         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
11639         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
11640         someone uses a name containing shell meta-characters.
11641         Reported by Alfred M. Szmidt.
11642
11643         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
11644
11645 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
11646
11647         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
11648         and copy gettext configuration files only if configure.ac contains
11649         a use of AM_GNU_GETTEXT_VERSION.
11650
11651 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
11652
11653         * build-aux/bootstrap (gnulib_name): New variable.
11654         (gnulib_tool_options): Use it.
11655
11656 2007-03-13  Simon Josefsson  <simon@josefsson.org>
11657
11658         * tests/test-des.c: Use new namespace.
11659
11660 2007-03-15  Bruno Haible  <bruno@clisp.org>
11661
11662         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
11663         Reported by James Youngman <jay@gnu.org>.
11664
11665 2007-03-15  Bruno Haible  <bruno@clisp.org>
11666
11667         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
11668         declared prototype. Needed with cc on OSF/1 5.1.
11669
11670 2007-03-15  Bruno Haible  <bruno@clisp.org>
11671
11672         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
11673         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
11674         (struct gl_list_implementation): Add dispose_fn argument to the
11675         'create_empty', 'create' methods.
11676         (struct gl_list_impl_base): Add field 'dispose_fn'.
11677         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
11678         argument.
11679         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
11680         dispose_fn argument.
11681         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
11682         dispose_fn on the dropped values.
11683         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
11684         dispose_fn argument.
11685         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
11686         dropped values.
11687         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
11688         (gl_tree_remove_node): Call dispose_fn on the dropped value.
11689         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
11690         (gl_tree_remove_node): Call dispose_fn on the dropped value.
11691         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
11692         argument.
11693         (gl_tree_list_free): Call dispose_fn on the dropped values.
11694         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
11695         the dropped values.
11696         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
11697         Add dispose_fn argument.
11698         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
11699         Call dispose_fn on the dropped values.
11700         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
11701         Add dispose_fn argument.
11702         (gl_sublist_create): Initialize the 'dispose_fn' field.
11703         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
11704         * tests/test-array_list.c (main): Update.
11705         * tests/test-carray_list.c (main): Update.
11706         * tests/test-avltree_list.c (main): Update.
11707         * tests/test-rbtree_list.c (main): Update.
11708         * tests/test-avltreehash_list.c (main): Update.
11709         * tests/test-rbtreehash_list.c (main): Update.
11710         * tests/test-linked_list.c (main): Update.
11711         * tests/test-linkedhash_list.c (main): Update.
11712         * tests/test-array_oset.c (main): Update.
11713
11714 2007-03-15  Bruno Haible  <bruno@clisp.org>
11715
11716         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
11717         (gl_oset_create_empty): Add dispose_fn argument.
11718         (struct gl_oset_implementation): Add dispose_fn argument to
11719         'create_empty' method.
11720         (struct gl_oset_impl_base): Add dispose_fn field.
11721         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
11722         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
11723         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
11724         values.
11725         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
11726         (gl_tree_oset_free): Call dispose_fn on the dropped values.
11727         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
11728         dropped value.
11729         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
11730         dropped value.
11731         * tests/test-array_oset.c (main): Update.
11732         * tests/test-avltree_oset.c (main): Update.
11733         * tests/test-rbtree_oset.c (main): Update.
11734         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
11735
11736 2007-03-13  Bruno Haible  <bruno@clisp.org>
11737
11738         * tests/test-stdbool.c (i): Update after last patch.
11739
11740 2007-03-12  Bruno Haible  <bruno@clisp.org>
11741
11742         * lib/quotearg.c: Include <wctype.h> early, before the definition of
11743         the iswprint macro. Needed on Solaris 2.5.1.
11744
11745 2007-03-12  Bruno Haible  <bruno@clisp.org>
11746
11747         * tests/test-printf-frexp.c (main): Declare x as volatile.
11748
11749 2007-03-12  Simon Josefsson  <simon@josefsson.org>
11750
11751         * doc/gnulib.texi (Build robot for gnulib): New section.
11752
11753 2007-03-12  Jim Meyering  <jim@meyering.net>
11754
11755         * build-aux/bootstrap: New file.
11756         * build-aux/bootstrap.conf: New file, from coreutils.
11757
11758 2007-03-11  Bruno Haible  <bruno@clisp.org>
11759
11760         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
11761
11762 2007-03-12  Simon Josefsson  <simon@josefsson.org>
11763
11764         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
11765         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
11766         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
11767
11768 2007-03-11  Bruno Haible  <bruno@clisp.org>
11769
11770         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
11771         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
11772
11773 2007-03-11  Bruno Haible  <bruno@clisp.org>
11774
11775         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
11776         formula. Needed for SunPRO C 5.0.
11777
11778 2007-03-11  Bruno Haible  <bruno@clisp.org>
11779
11780         * modules/long-options (Depends-on): Add getopt.
11781
11782 2007-03-11  Bruno Haible  <bruno@clisp.org>
11783
11784         * modules/modechange (Depends-on): Add stdbool.
11785
11786 2007-03-11  Bruno Haible  <bruno@clisp.org>
11787
11788         * modules/i-ring (Depends-on): Add stdbool.
11789
11790 2007-03-11  Bruno Haible  <bruno@clisp.org>
11791
11792         * modules/gc-des (Depends-on): Add stdbool.
11793
11794 2007-03-11  Bruno Haible  <bruno@clisp.org>
11795
11796         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
11797
11798 2007-03-11  Bruno Haible  <bruno@clisp.org>
11799
11800         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
11801
11802 2007-03-11  Bruno Haible  <bruno@clisp.org>
11803
11804         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
11805
11806 2007-03-11  Bruno Haible  <bruno@clisp.org>
11807
11808         * lib/vasnprintf.c (sprintf): Undefine.
11809
11810 2007-03-11  Bruno Haible  <bruno@clisp.org>
11811
11812         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
11813         initializers in SunPRO C and Compaq C compilers.
11814
11815 2007-03-11  Bruno Haible  <bruno@clisp.org>
11816
11817         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
11818         decrementing code ANSI C compliant.
11819
11820 2007-03-11  Bruno Haible  <bruno@clisp.org>
11821
11822         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
11823         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
11824
11825 2007-03-11  Bruno Haible  <bruno@clisp.org>
11826
11827         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
11828         <stdbool.h> substitute doesn't pass.
11829
11830 2007-03-11  Bruno Haible  <bruno@clisp.org>
11831
11832         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
11833
11834 2007-03-11  Bruno Haible  <bruno@clisp.org>
11835
11836         * gnulib-tool (func_create_megatestdir): Create also an autobuild
11837         script, for submission to autobuild.josefsson.org.
11838
11839 2007-03-10  Bruno Haible  <bruno@clisp.org>
11840
11841         * modules/canonicalize-lgpl-tests: New file.
11842         * tests/test-canonicalize-lgpl.sh: New file.
11843         * tests/test-canonicalize-lgpl.c: New file.
11844
11845         * modules/c-strcase-tests: New file.
11846         * tests/test-c-strcase.sh: New file.
11847         * tests/test-c-strcasecmp.c: New file.
11848         * tests/test-c-strncasecmp.c: New file.
11849
11850         * modules/atexit-tests: New file.
11851         * tests/test-atexit.sh: New file.
11852         * tests/test-atexit.c: New file.
11853
11854 2007-03-10  Bruno Haible  <bruno@clisp.org>
11855
11856         * tests/test-binary-io.sh: Use temporary filenames that are not so
11857         likely to clash with those of other tests (in a parallel make).
11858         * tests/test-binary-io.c: Likewise.
11859
11860 2007-03-10  Bruno Haible  <bruno@clisp.org>
11861
11862         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
11863         fallback; use #error instead.
11864         Suggested by Simon Josefsson.
11865
11866 2007-03-10  Bruno Haible  <bruno@clisp.org>
11867
11868         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
11869         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
11870         first and the last.
11871
11872 2007-03-10  Bruno Haible  <bruno@clisp.org>
11873
11874         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
11875
11876 2007-03-10  Bruno Haible  <bruno@clisp.org>
11877
11878         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
11879         "make distcheck".
11880         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
11881         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
11882         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
11883
11884 2007-03-10  Bruno Haible  <bruno@clisp.org>
11885
11886         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
11887         variable.
11888         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
11889         variable.
11890
11891 2007-03-09  Eric Blake  <ebb9@byu.net>
11892         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
11893
11894         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
11895         types are not being provided by gnulib.
11896         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
11897         types are supported.
11898
11899 2007-03-10  Bruno Haible  <bruno@clisp.org>
11900
11901         * lib/stdio_.h (__attribute__): New macro.
11902         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
11903         vsprintf): Specify __attribute__ __format__ for GCC.
11904         Suggested by Eric Blake.
11905
11906 2007-03-09  Bruno Haible  <bruno@clisp.org>
11907
11908         * modules/printf-posix-tests: New file.
11909         * tests/test-printf-posix.sh: New file.
11910         * tests/test-printf-posix.c: New file.
11911
11912         * modules/printf-posix: New file.
11913         * lib/printf.c: New file.
11914         * m4/printf-posix-rpl.m4: New file.
11915         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
11916         REPLACE_PRINTF.
11917         * lib/stdio_.h (printf): New declaration.
11918         (format, __format__, ____printf____, ____scanf____, ____strftime____,
11919         ____strfmon____): New macros.
11920         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
11921         REPLACE_PRINTF.
11922
11923 2007-03-09  Bruno Haible  <bruno@clisp.org>
11924
11925         * tests/test-vasnprintf-posix2.sh: New file.
11926         * tests/test-vasnprintf-posix2.c: New file.
11927         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
11928         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
11929         (Makefile.am): Activate test-vasnprintf-posix2.sh.
11930
11931         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
11932         a locale dependent decimal point, rather than always '.'.
11933
11934 2007-03-09  Eric Blake  <ebb9@byu.net>
11935
11936         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
11937         spite of platforms like Tandem/NSK that define it to -1.
11938
11939 2007-03-08  Bruno Haible  <bruno@clisp.org>
11940
11941         * modules/vprintf-posix-tests: New file.
11942         * tests/test-vprintf-posix.sh: New file.
11943         * tests/test-vprintf-posix.c: New file.
11944         * tests/test-printf-posix.h: New file.
11945
11946         * modules/vprintf-posix: New file.
11947         * lib/vprintf.c: New file.
11948         * m4/vprintf-posix.m4: New file.
11949         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
11950         REPLACE_VPRINTF.
11951         * lib/stdio_.h (vprintf): New declaration.
11952         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
11953         REPLACE_VPRINTF.
11954
11955 2007-03-08  Bruno Haible  <bruno@clisp.org>
11956
11957         * modules/fprintf-posix-tests: New file.
11958         * tests/test-fprintf-posix.sh: New file.
11959         * tests/test-fprintf-posix.c: New file.
11960
11961         * modules/fprintf-posix: New file.
11962         * lib/fprintf.c: New file.
11963         * m4/fprintf-posix.m4: New file.
11964         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
11965         REPLACE_FPRINTF.
11966         * lib/stdio_.h (fprintf): New declaration.
11967         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
11968         REPLACE_FPRINTF.
11969
11970 2007-03-08  Bruno Haible  <bruno@clisp.org>
11971
11972         * modules/vfprintf-posix-tests: New file.
11973         * tests/test-vfprintf-posix.sh: New file.
11974         * tests/test-vfprintf-posix.c: New file.
11975         * tests/test-fprintf-posix.h: New file.
11976         * tests/test-fprintf-posix.out: New file.
11977
11978         * modules/vfprintf-posix: New file.
11979         * lib/vfprintf.c: New file.
11980         * m4/vfprintf-posix.m4: New file.
11981         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
11982         REPLACE_VFPRINTF.
11983         * lib/stdio_.h (vfprintf): New declaration.
11984         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
11985         REPLACE_VFPRINTF.
11986
11987 2007-03-08  Bruno Haible  <bruno@clisp.org>
11988
11989         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
11990
11991 2007-03-08  Bruno Haible  <bruno@clisp.org>
11992
11993         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
11994         instead of 'expr' invocations.
11995         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11996         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11997         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11998         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11999         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12000         Suggested by Paul Eggert.
12001
12002 2007-03-08  Bruno Haible  <bruno@clisp.org>
12003
12004         * modules/fseterr-tests: New file.
12005         * tests/test-fseterr.c: New file.
12006
12007         * modules/fseterr: New file.
12008         * lib/fseterr.h: New file.
12009         * lib/fseterr.c: New file.
12010
12011 2007-03-08  Bruno Haible  <bruno@clisp.org>
12012
12013         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
12014         * lib/getopt_.h: Likewise.
12015         * lib/mbswidth.h: Likewise.
12016         * lib/setenv.h: Likewise.
12017         * lib/vasnprintf.h: Likewise.
12018         * lib/vasprintf.h: Likewise.
12019         * lib/verror.h: Likewise.
12020         * lib/xsetenv.h: Likewise.
12021         * lib/xvasprintf.h: Likewise.
12022
12023 2007-03-08  Jim Meyering  <jim@meyering.net>
12024
12025         * users.txt: Add parted.
12026
12027         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
12028
12029 2007-03-07  Bruno Haible  <bruno@clisp.org>
12030
12031         * m4/printf.m4: Make the shell script snippets copy&pastable.
12032
12033 2007-03-02  Bruno Haible  <bruno@clisp.org>
12034
12035         * lib/netinet_in_.h: New file.
12036         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
12037         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
12038         * modules/netinet_in (Files): Add lib/netinet_in_.h.
12039         (Depends-on): Add absolute-header.
12040         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
12041         into netinet/in.h.
12042
12043 2007-03-03  Bruno Haible  <bruno@clisp.org>
12044
12045         * lib/sys_select_.h: New file.
12046         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
12047         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
12048         * modules/sys_select (Files): Add lib/sys_select_.h.
12049         (Depends-on): Add absolute-header.
12050         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
12051         into sys/select.h.
12052
12053 2007-03-02  Bruno Haible  <bruno@clisp.org>
12054
12055         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
12056         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
12057         values.
12058         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
12059         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
12060         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
12061         * modules/sys_socket (Depends-on): Add absolute-header.
12062         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
12063         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
12064         (Include): Remove requirement of inclusion of <sys/types.h>.
12065
12066 2007-03-02  Bruno Haible  <bruno@clisp.org>
12067
12068         * lib/byteswap_.h (bswap_32): Fix formula.
12069
12070 2007-03-06  Bruno Haible  <bruno@clisp.org>
12071
12072         * modules/sprintf-posix-tests: New file.
12073         * tests/test-sprintf-posix.c: New file.
12074
12075         * modules/sprintf-posix: New file.
12076         * lib/sprintf.c: New file.
12077         * m4/sprintf-posix.m4: New file.
12078         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
12079         REPLACE_SPRINTF.
12080         * lib/stdio_.h (sprintf): New declaration.
12081         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
12082         REPLACE_SPRINTF.
12083
12084 2007-03-06  Bruno Haible  <bruno@clisp.org>
12085
12086         * modules/vsprintf-posix-tests: New file.
12087         * tests/test-vsprintf-posix.c: New file.
12088         * tests/test-sprintf-posix.h: New file.
12089
12090         * modules/vsprintf-posix: New file.
12091         * lib/vsprintf.c: New file.
12092         * m4/vsprintf-posix.m4: New file.
12093         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
12094         REPLACE_VSPRINTF.
12095         * lib/stdio_.h (vsprintf): New declaration.
12096         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
12097         REPLACE_VSPRINTF.
12098
12099 2007-03-06  Bruno Haible  <bruno@clisp.org>
12100
12101         * modules/vsnprintf (Depend-on): Remove minmax.
12102
12103 2007-03-06  Bruno Haible  <bruno@clisp.org>
12104
12105         * modules/snprintf-posix-tests: New file.
12106         * tests/test-snprintf-posix.c: New file.
12107
12108         * modules/snprintf-posix: New file.
12109         * m4/snprintf-posix.m4: New file.
12110         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
12111         gl_FUNC_SNPRINTF.
12112         (gl_FUNC_SNPRINTF): Invoke it.
12113         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
12114         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
12115         is set.
12116         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
12117
12118 2007-03-06  Bruno Haible  <bruno@clisp.org>
12119
12120         * modules/vsnprintf-posix-tests: New file.
12121         * tests/test-vsnprintf-posix.c: New file.
12122         * tests/test-snprintf-posix.h: New file.
12123
12124         * modules/vsnprintf-posix: New file.
12125         * m4/vsnprintf-posix.m4: New file.
12126         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
12127         gl_FUNC_VSNPRINTF.
12128         (gl_FUNC_VSNPRINTF): Invoke it.
12129         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
12130         * lib/stdio_.h (vsnprintf): Define as a replacement if
12131         REPLACE_VSNPRINTF is set.
12132         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
12133
12134 2007-03-06  Bruno Haible  <bruno@clisp.org>
12135
12136         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
12137         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
12138
12139 2007-03-06  Bruno Haible  <bruno@clisp.org>
12140
12141         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
12142         (asinl): Declare also if HAVE_DECL_ASINL is set.
12143         (atanl): Declare also if HAVE_DECL_ATANL is set.
12144         (ceill): Declare also if HAVE_DECL_CEILL is set.
12145         (cosl): Declare also if HAVE_DECL_COSL is set.
12146         (expl): Declare also if HAVE_DECL_EXPL is set.
12147         (floorl): Declare also if HAVE_DECL_FLOORL is set.
12148         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
12149         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
12150         (logl): Declare also if HAVE_DECL_LOGL is set.
12151         (sinl): Declare also if HAVE_DECL_SINL is set.
12152         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
12153         (tanl): Declare also if HAVE_DECL_TANL is set.
12154         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
12155         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
12156         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
12157         declaration of frexpl, ldexpl.
12158         * modules/printf-frexpl (Depends-on): Add math.
12159         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
12160
12161 2007-03-05  Bruno Haible  <bruno@clisp.org>
12162
12163         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
12164         frexpl and ldexpl are declared.
12165         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
12166
12167 2007-03-05  Bruno Haible  <bruno@clisp.org>
12168
12169         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
12170         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
12171
12172 2007-03-05  Bruno Haible  <bruno@clisp.org>
12173
12174         * lib/stdio_.h: Include <stddef.h>.
12175
12176 2007-03-05  Bruno Haible  <bruno@clisp.org>
12177
12178         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
12179
12180 2007-03-05  Bruno Haible  <bruno@clisp.org>
12181
12182         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
12183         NetBSD 4, from Ralf Wildenhues.
12184
12185 2007-03-04  Bruno Haible  <bruno@clisp.org>
12186
12187         * lib/vasprintf.h: Update #if logic for the case when the functions
12188         exist but are overridden.
12189
12190 2007-03-04  Bruno Haible  <bruno@clisp.org>
12191
12192         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
12193         implementations: glibc-2.4 and MacOS X 10.3.
12194         * tests/test-vasnprintf-posix.c (test_function): Test also the case
12195         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
12196         * tests/test-vasprintf-posix.c (test_function): Likewise.
12197
12198 2007-03-04  Bruno Haible  <bruno@clisp.org>
12199
12200         * modules/vasprintf-posix-tests: New file.
12201         * tests/test-vasprintf-posix.c: New file.
12202
12203         * modules/vasprintf-posix: New file.
12204         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
12205         defined.
12206         * m4/vasprintf-posix.m4: New file.
12207         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
12208         gl_FUNC_VASPRINTF.
12209         (gl_FUNC_VASPRINTF): Invoke it.
12210         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
12211         here.
12212         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
12213
12214 2007-03-04  Bruno Haible  <bruno@clisp.org>
12215
12216         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
12217         REPLACE_GETTIMEOFDAY.
12218         * modules/sys_time (Makefile.am): Likewise.
12219         * m4/sys_time_h.m4: Likewise.
12220         * m4/gettimeofday.m4: Likewise.
12221
12222 2007-03-04  Bruno Haible  <bruno@clisp.org>
12223
12224         * modules/vasnprintf-posix-tests: New file.
12225         * tests/test-vasnprintf-posix.c: New file.
12226
12227         * modules/vasnprintf-posix: New file.
12228         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
12229         printf-frexpl.h.
12230         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
12231         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
12232         REPLACE_VASNPRINTF is defined.
12233         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
12234         gl_FUNC_VASNPRINTF.
12235         (gl_FUNC_VASNPRINTF): Invoke it.
12236         * m4/vasnprintf-posix.m4: New file.
12237         * m4/printf.m4: New file.
12238
12239 2007-03-04  Bruno Haible  <bruno@clisp.org>
12240
12241         Compile progreloc.c only if --enable-relocatable is specified.
12242         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
12243         if --enable-relocatable was specified.
12244         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
12245         lib_SOURCES.
12246
12247 2007-03-04  Jim Meyering  <jim@meyering.net>
12248
12249         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
12250         Use it consistently, rather than enumerating errno constants.
12251
12252 2007-03-04  Bruno Haible  <bruno@clisp.org>
12253
12254         * modules/xvasprintf-tests: New file.
12255         * tests/test-xvasprintf.c: New file.
12256
12257         * modules/vasprintf-tests: New file.
12258         * tests/test-vasprintf.c: New file.
12259
12260         * modules/vasnprintf-tests: New file.
12261         * tests/test-vasnprintf.c: New file.
12262
12263         * modules/vsnprintf-tests: New file.
12264         * tests/test-vsnprintf.c: New file.
12265
12266         * modules/snprintf-tests: New file.
12267         * tests/test-snprintf.c: New file.
12268
12269 2007-03-04  Bruno Haible  <bruno@clisp.org>
12270
12271         Compile relocatable.c only if --enable-relocatable is specified.
12272         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
12273         gl_RELOCATABLE_LIBRARY.
12274         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
12275         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
12276         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
12277         gl_RELOCATABLE_LIBRARY.
12278         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
12279         (Makefile.am): Remove lib_SOURCES.
12280         * modules/relocatable-lib-lgpl (configure.ac): Invoke
12281         gl_RELOCATABLE_LIBRARY.
12282         (Makefile.am): Remove lib_SOURCES.
12283         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
12284         always.
12285         * modules/relocatable-prog-wrapper (configure.ac): Invoke
12286         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
12287
12288 2007-03-04  Bruno Haible  <bruno@clisp.org>
12289
12290         * modules/argmatch-tests: New file.
12291         * tests/test-argmatch.c: New file.
12292
12293         * tests/test-allocsa.c (main): Halve the number of loop runs.
12294
12295         * modules/alloca-opt-tests: New file.
12296         * tests/test-alloca-opt.c: New file.
12297
12298 2007-03-04  Jim Meyering  <jim@meyering.net>
12299
12300         Work around difference between Linux ACLs and Solaris 10 ZFS.
12301         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
12302         for EINVAL.
12303
12304 2007-03-03  Bruno Haible  <bruno@clisp.org>
12305
12306         * modules/relocatable-prog (Depends-on): Add back progreloc's
12307         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
12308
12309 2007-03-03  Bruno Haible  <bruno@clisp.org>
12310
12311         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
12312         * modules/relocatable-lib: New file.
12313
12314 2007-03-03  Bruno Haible  <bruno@clisp.org>
12315
12316         * modules/relocatable-prog: Renamed from modules/relocatable.
12317         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
12318
12319 2007-03-03  Bruno Haible  <bruno@clisp.org>
12320
12321         * modules/relocatable-script (Files): Add doc/relocatable.texi,
12322         m4/relocatable-lib.m4.
12323         (Depends-on): Remove 'relocatable'.
12324         (configure.ac): Add gl_RELOCATABLE_NOP.
12325
12326 2007-03-03  Bruno Haible  <bruno@clisp.org>
12327
12328         * modules/relocatable-prog-wrapper: New file.
12329         * modules/relocatable (Depends-on): Add it. Remove all other
12330         dependencies except progname.
12331         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
12332
12333         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
12334         (gl_FUNC_STRERROR): Nop.
12335         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
12336
12337         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
12338         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
12339
12340         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
12341         (gl_FUNC_READLINK): Update.
12342
12343         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
12344
12345 2007-03-03  Bruno Haible  <bruno@clisp.org>
12346
12347         * lib/xreadlink.c: Include <unistd.h> unconditionally.
12348         * modules/xreadlink (Depends-on): Add unistd.
12349         * modules/xreadlink-with-size (Depends-on): Likewise.
12350
12351 2007-03-03  Bruno Haible  <bruno@clisp.org>
12352
12353         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
12354         extracted from gt_FUNC_SETENV.
12355         (gt_FUNC_SETENV): Remove macro.
12356         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
12357         remove gt_FUNC_SETENV.
12358
12359 2007-03-03  Bruno Haible  <bruno@clisp.org>
12360
12361         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
12362         ENABLE_RELOCATABLE here.
12363         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
12364
12365 2007-03-03  Bruno Haible  <bruno@clisp.org>
12366
12367         * modules/rbtreehash-list-tests (Depends-on): Add progname.
12368         * tests/test-rbtreehash_list.c: Include progname.h.
12369         (main): Call set_program_name.
12370
12371         * modules/rbtree-oset-tests (Depends-on): Add progname.
12372         * tests/test-rbtree_oset.c: Include progname.h.
12373         (main): Call set_program_name.
12374
12375         * modules/rbtree-list-tests (Depends-on): Add progname.
12376         * tests/test-rbtree_list.c: Include progname.h.
12377         (main): Call set_program_name.
12378
12379         * modules/linked-list-tests (Depends-on): Add progname.
12380         * tests/test-linked_list.c: Include progname.h.
12381         (main): Call set_program_name.
12382
12383 2007-03-03  Bruno Haible  <bruno@clisp.org>
12384
12385         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
12386         All uses of __restrict changed to _Restrict_.
12387         * lib/glob_.h (__restrict): Remove macro.
12388
12389 2007-03-02  Bruno Haible  <bruno@clisp.org>
12390
12391         * modules/gettext (configure.ac): Require gettext infrastructure
12392         from version 0.16.1.
12393
12394 2007-03-02  Bruno Haible  <bruno@clisp.org>
12395
12396         * modules/linkedhash-list-tests (Depends-on): Add progname.
12397         * tests/test-linkedhash_list.c: Include progname.h.
12398         (main): Call set_program_name.
12399
12400         * modules/carray-list-tests (Depends-on): Add progname.
12401         * tests/test-carray_list.c: Include progname.h.
12402         (main): Call set_program_name.
12403
12404         * modules/avltreehash-list-tests (Depends-on): Add progname.
12405         * tests/test-avltreehash_list.c: Include progname.h.
12406         (main): Call set_program_name.
12407
12408         * modules/avltree-oset-tests (Depends-on): Add progname.
12409         * tests/test-avltree_oset.c: Include progname.h.
12410         (main): Call set_program_name.
12411
12412         * modules/avltree-list-tests (Depends-on): Add progname.
12413         * tests/test-avltree_list.c: Include progname.h.
12414         (main): Call set_program_name.
12415
12416         * modules/array-oset-tests (Depends-on): Add progname.
12417         * tests/test-array_oset.c: Include progname.h.
12418         (main): Call set_program_name.
12419
12420         * modules/array-list-tests (Depends-on): Add progname.
12421         * tests/test-array_list.c: Include progname.h.
12422         (main): Call set_program_name.
12423
12424         * modules/argp-tests (Depends-on): Add progname.
12425         * tests/test-argp.c: Include argp.h first. Include progname.h.
12426         (main): Call set_program_name.
12427
12428 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
12429
12430         * doc/gnulib-tool.texi (Initial import): Reword description of
12431         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
12432         limited effect even if defined after the first system include.
12433
12434 2007-03-01  Bruno Haible  <bruno@clisp.org>
12435
12436         * build-aux/config.libpath: Update to libtool-1.5.22.
12437         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12438
12439 2007-03-01  Bruno Haible  <bruno@clisp.org>
12440
12441         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
12442         foo_CFLAGS.
12443         Reported by Ralf Wildenhues.
12444
12445 2007-03-01  Bruno Haible  <bruno@clisp.org>
12446
12447         * build-aux/install-reloc: Remove object files left over by some
12448         compilers.
12449         Reported by Ralf Wildenhues.
12450
12451 2007-03-01  Bruno Haible  <bruno@clisp.org>
12452
12453         * build-aux/install-reloc: Break long lines.
12454
12455 2007-03-01  Bruno Haible  <bruno@clisp.org>
12456
12457         * doc/relocatable.texi: Document that it may not work on OpenBSD.
12458         Reported by Ralf Wildenhues.
12459
12460 2007-03-01  Bruno Haible  <bruno@clisp.org>
12461
12462         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
12463         include ordering constraints.
12464
12465 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12466
12467         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
12468         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
12469         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
12470         as another example.
12471         * lib/time_.h: Fix misspelling.
12472         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
12473         Require gl_HEADER_TIME_H_DEFAULTS.
12474         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
12475         * m4/time_r.m4 (gl_TIME_R): Likewise.
12476         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
12477
12478 2007-03-01  Bruno Haible  <bruno@clisp.org>
12479
12480         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
12481         * m4/utimens.m4 (gl_UTIMENS): Likewise.
12482
12483 2007-03-01  Jim Meyering  <jim@meyering.net>
12484
12485         * modules/xreadlink (Maintainer): Add my name.
12486         * modules/xreadlink-with-size (Depends-on): Alphabetize.
12487
12488 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
12489             Bruno Haible  <bruno@clisp.org>
12490
12491         * build-aux/install-reloc: Compile also c-ctype.c.
12492         * build-aux/relocatable.sh.in: New file.
12493         * doc/relocatable.texi: New file.
12494         * doc/relocatable-maint.texi: New file.
12495         * doc/gnulib.texi: Include relocatable-maint.texi.
12496         * lib/progreloc.c: Include unistd.h unconditionally.
12497         * lib/relocwrapper.c: Include unistd.h unconditionally.
12498         Include c-ctype.h.
12499         (add_dotbin): Use c_tolower.
12500         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
12501         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
12502         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
12503         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
12504         to m4/relocatable-lib.m4.
12505         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
12506         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
12507         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
12508         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
12509         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
12510         * modules/relocatable: New file.
12511         * modules/relocatable-lib: New file.
12512         * modules/relocatable-script: New file.
12513
12514 2007-02-28  Bruno Haible  <bruno@clisp.org>
12515
12516         Import --enable-relocatable infrastructure.
12517         * build-aux/config.libpath: New file, from GNU gettext.
12518         * build-aux/install-reloc: New file, from GNU gettext.
12519         * build-aux/reloc-ldflags: New file, from GNU gettext.
12520         * lib/relocatable.h: New file, from GNU gettext.
12521         * lib/relocatable.c: New file, from GNU gettext.
12522         * lib/relocwrapper.c: New file, from GNU gettext.
12523         * m4/relocatable.m4: New file, from GNU gettext.
12524
12525 2007-02-28  Bruno Haible  <bruno@clisp.org>
12526
12527         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
12528
12529         * modules/xreadlink: New file, from GNU gettext with modifications.
12530         * lib/xreadlink.c: New file, from GNU gettext.
12531         * lib/xreadlink.h: Add comments.
12532         (xreadlink): New declaration.
12533
12534         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
12535         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
12536         lib/xreadlink-with-size.c.
12537         (configure.ac): Remove gl_XREADLINK invocation.
12538         (Makefile.am): Augment lib_SOURCES.
12539         * m4/xreadlink.m4: Remove file.
12540         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
12541         (xreadlink_with_size): Renamed from xreadink.
12542         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
12543         * modules/canonicalize (Depends-on): Replace xreadlink with
12544         xreadlink-with-size.
12545         * lib/canonicalize.c (canonicalize_filename_mode): Update.
12546
12547 2007-02-25  Jim Meyering  <jim@meyering.net>
12548
12549         * build-aux/announce-gen: When complaining about excess arguments,
12550         list them.
12551
12552 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12553
12554         * README: Document signed integer overflow situation more
12555         accurately.
12556
12557 2007-02-25  Bruno Haible  <bruno@clisp.org>
12558
12559         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
12560         'a' or 'A' conversion.
12561
12562 2007-02-25  Bruno Haible  <bruno@clisp.org>
12563
12564         * modules/filename: Renamed from modules/pathname.
12565         (Files): Replace lib/pathname.h with lib/filename.h. Replace
12566         lib/concatpath.c with lib/concat-filename.c.
12567         (Makefile.am): Update.
12568         (Include): Replace pathname.h with filename.h.
12569         * lib/filename.h: Renamed from lib/pathname.h.
12570         (concatenated_filename): Renamed from concatenated_pathname.
12571         * lib/concat-filename.c: Renamed from lib/concatpath.c.
12572         (concatenated_filename): Renamed from concatenated_pathname.
12573         * lib/findprog.c: Include filename.h instead of pathname.h.
12574         (find_in_path): Update.
12575         * lib/javacomp.c: Include filename.h instead of pathname.h.
12576         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
12577         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
12578         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
12579         is_oldgcj_14_13_usable, is_javac_usable): Update.
12580         * lib/javaexec.c: Include filename.h instead of pathname.h.
12581         (execute_java_class): Update.
12582         * modules/findprog: Update.
12583         * modules/javacomp: Update.
12584         * modules/javaexec: Update.
12585         * MODULES.html.sh (File system functions): Add 'filename', remove
12586         'pathname'.
12587
12588 2007-02-25  Bruno Haible  <bruno@clisp.org>
12589
12590         * modules/printf-frexpl-tests: New file.
12591         * tests/test-printf-frexpl.c: New file.
12592
12593         * modules/printf-frexpl: New file.
12594         * lib/printf-frexpl.h: New file.
12595         * lib/printf-frexpl.c: New file.
12596         * m4/printf-frexpl.m4: New file.
12597
12598 2007-02-25  Bruno Haible  <bruno@clisp.org>
12599
12600         * modules/printf-frexp-tests: New file.
12601         * tests/test-printf-frexp.c: New file.
12602
12603         * modules/printf-frexp: New file.
12604         * lib/printf-frexp.h: New file.
12605         * lib/printf-frexp.c: New file.
12606         * m4/printf-frexp.m4: New file.
12607
12608 2007-02-25  Bruno Haible  <bruno@clisp.org>
12609
12610         Assume automake >= 1.10 for the tests.
12611         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
12612         * modules/arctwo-tests: Likewise.
12613         * modules/argp-tests: Likewise.
12614         * modules/avltree-list-tests: Likewise.
12615         * modules/avltree-oset-tests: Likewise.
12616         * modules/avltreehash-list-tests: Likewise.
12617         * modules/carray-list-tests: Likewise.
12618         * modules/crc-tests: Likewise.
12619         * modules/des-tests: Likewise.
12620         * modules/gc-arcfour-tests: Likewise.
12621         * modules/gc-arctwo-tests: Likewise.
12622         * modules/gc-des-tests: Likewise.
12623         * modules/gc-hmac-md5-tests: Likewise.
12624         * modules/gc-hmac-sha1-tests: Likewise.
12625         * modules/gc-md2-tests: Likewise.
12626         * modules/gc-md4-tests: Likewise.
12627         * modules/gc-md5-tests: Likewise.
12628         * modules/gc-pbkdf2-sha1-tests: Likewise.
12629         * modules/gc-rijndael-tests: Likewise.
12630         * modules/gc-sha1-tests: Likewise.
12631         * modules/gc-tests: Likewise.
12632         * modules/getaddrinfo-tests: Likewise.
12633         * modules/hmac-md5-tests: Likewise.
12634         * modules/hmac-sha1-tests: Likewise.
12635         * modules/linked-list-tests: Likewise.
12636         * modules/linkedhash-list-tests: Likewise.
12637         * modules/lock-tests: Likewise.
12638         * modules/md2-tests: Likewise.
12639         * modules/md4-tests: Likewise.
12640         * modules/md5-tests: Likewise.
12641         * modules/rbtree-list-tests: Likewise.
12642         * modules/rbtree-oset-tests: Likewise.
12643         * modules/rbtreehash-list-tests: Likewise.
12644         * modules/read-file-tests: Likewise.
12645         * modules/rijndael-tests: Likewise.
12646         * modules/stdint-tests: Likewise.
12647         * modules/tls-tests: Likewise.
12648
12649 2007-02-24  Bruno Haible  <bruno@clisp.org>
12650
12651         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
12652         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
12653         function; instead check whether isnan with a double argument links.
12654         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
12655         function; instead check whether isnan with a 'long double' argument
12656         links.
12657         Reported by Eric Blake <ebb9@byu.net>.
12658
12659 2007-02-24  Bruno Haible  <bruno@clisp.org>
12660
12661         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
12662         defined.
12663         * lib/isnanl.c: Remove all code. Just include isnan.c.
12664         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
12665
12666 2007-02-25  Jim Meyering  <jim@meyering.net>
12667
12668         Avoid conflicting types for 'unsetenv' on FreeBSD.
12669         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
12670         conflicting with FreeBSD's (5.0 and 6.1) function declaration
12671         in stdlib.h.
12672
12673 2007-02-24  Bruno Haible  <bruno@clisp.org>
12674
12675         * modules/isnanl-nolibm-tests: New file.
12676         * tests/test-isnanl.c: New file.
12677
12678         * modules/isnanl-nolibm: New file.
12679         * lib/isnanl.h: New file.
12680         * lib/isnanl.c: New file.
12681         * m4/isnanl.m4: New file.
12682
12683 2007-02-24  Bruno Haible  <bruno@clisp.org>
12684
12685         * modules/isnan-nolibm-tests: New file.
12686         * tests/test-isnan.c: New file.
12687
12688         * modules/isnan-nolibm: New file.
12689         * lib/isnan.h: New file.
12690         * lib/isnan.c: New file.
12691         * m4/isnan.m4: New file.
12692
12693 2007-02-24  Bruno Haible  <bruno@clisp.org>
12694
12695         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
12696         assume that an exponent fits in 20 bits.
12697
12698 2007-02-24  Jim Meyering  <jim@meyering.net>
12699
12700         * m4/regex.m4: Update the description of the configure-time option,
12701         --without-included-regex, to state accurately what the defaults are,
12702         and perhaps to give people an idea why using this option is risky.
12703
12704 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
12705
12706         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
12707         loops on small arguments.  This attempts to avoid the problem
12708         Bruno Haible reported for AIX 4.3.2 in
12709         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
12710
12711 2007-02-23  Bruno Haible  <bruno@clisp.org>
12712
12713         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
12714         Needed for help2man.
12715
12716 2007-02-23  Karl Berry  <karl@gnu.org>
12717
12718         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
12719         exists, foo.h should be cvs-ignored, not committed.
12720
12721 2007-02-23  Eric Blake  <ebb9@byu.net>
12722
12723         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
12724         * lib/stat-time.h (includes): Likewise.
12725         * lib/utimecmp.c (includes): Likewise.
12726         * lib/utimens.h (includes): Likewise.
12727         * lib/getdate.y (includes): Also include "timespec.h" for use
12728         internal to the module.
12729         * modules/utimens (Depends-on): Revert yesterday's patch.
12730         * modules/nanosleep (Depends-on): Add missing dependency.
12731
12732 2007-02-22  Bruno Haible  <bruno@clisp.org>
12733
12734         * lib/glob.c: Don't include getlogin_r.h.
12735
12736 2007-02-22  Jim Meyering  <jim@meyering.net>
12737
12738         * modules/utimens (Depends-on): Add timespec, required for
12739         utimens.h's inclusion of timespec.h.
12740
12741 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
12742
12743         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
12744         long unreadable paths in GNU/Linux.  Problem reported by Andreas
12745         Schwab in
12746         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
12747         I'll try to think of a better way to fix the Solaris problem.
12748
12749         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
12750         like glibc; on Solaris 10, it fails with errno == EINVAL.
12751         POSIX says the behavior is unspecified if the first argument is NULL,
12752         so play it safe and never pass NULL to the system getcwd.
12753
12754 2007-02-21  Jim Meyering  <jim@meyering.net>
12755
12756         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
12757         of gettimeofday.  It would conflict with the one now always
12758         provided via sys_time_.h.  Reported by Matthew Woehlke, as
12759         an IRIX 6.5 build failure.
12760
12761 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
12762
12763         Minor fixups to port to Solaris 10 with Sun C 5.8.
12764         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
12765         * modules/getcwd (Depends-on): Add dirfd.
12766         * lib/putenv.c (putenv): #undef it.
12767         (rpl_putenv): New decl.
12768         (malloc, free): Include <stdlib.h> rather than prototyping separately.
12769
12770 2007-02-20  Bruno Haible  <bruno@clisp.org>
12771
12772         * modules/stdio-tests: New file.
12773         * tests/test-stdio.c: New file.
12774
12775         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
12776         (Depends-on): Add stdio.
12777         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
12778         (Include): Use <stdio.h> instead of vsnprintf.h.
12779         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
12780         HAVE_DECL_VSNPRINTF.
12781         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
12782
12783         * modules/snprintf (Files): Remove lib/snprintf.h.
12784         (Depends-on): Add stdio.
12785         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
12786         (Include): Use <stdio.h> instead of snprintf.h.
12787         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
12788         HAVE_DECL_SNPRINTF.
12789         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
12790         * lib/getaddrinfo.c: Likewise.
12791
12792         * modules/stdio: New file.
12793         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
12794         * lib/snprintf.h: Remove file.
12795         * lib/vsnprintf.h: Remove file.
12796         * lib/.cppi-disable: Remove snprintf.h.
12797         * m4/stdio_h.m4: New file.
12798         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
12799
12800 2007-02-20  Jim Meyering  <jim@meyering.net>
12801
12802         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
12803         used by e.g., mingw.  From Bruno Haible.
12804
12805 2007-02-19  Bruno Haible  <bruno@clisp.org>
12806
12807         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
12808         warnings.
12809         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12810
12811 2007-02-19  Bruno Haible  <bruno@clisp.org>
12812
12813         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
12814         from mingw users.
12815
12816 2007-02-19  Bruno Haible  <bruno@clisp.org>
12817
12818         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
12819         warnings.
12820         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
12821
12822 2007-02-19  Jim Meyering  <jim@meyering.net>
12823
12824         Don't use FD after a successful "fdopendir (fd)".
12825         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
12826         Reset it by calling dirfd on the just-obtained DIR*.
12827
12828         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
12829         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
12830
12831 2007-02-18  Bruno Haible  <bruno@clisp.org>
12832
12833         * lib/readlink.c: Include <unistd.h>.
12834         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
12835         HAVE_READLINK.
12836         * modules/readlink (Depends-on): Add unistd.
12837         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12838         (Include): Add <unistd.h>.
12839
12840         * lib/getlogin_r.h: Remove file.
12841         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
12842         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
12843         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
12844         HAVE_DECL_GETLOGIN_R.
12845         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
12846         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12847         (Include): Use <unistd.h> instead of getlogin_r.h.
12848
12849         * lib/getcwd.h: Remove file.
12850         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
12851         * lib/xgetcwd.c: Likewise.
12852         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
12853         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
12854         * modules/getcwd (Files): Remove lib/getcwd.h.
12855         (Depends-on): Add unistd.
12856         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12857         (Include): Use <unistd.h> instad of getcwd.h.
12858
12859         * lib/ftruncate.c: Include <unistd.h> first.
12860         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
12861         Set HAVE_FTRUNCATE.
12862         * modules/ftruncate (Depends-on): Add unistd.
12863         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12864
12865         * lib/fchdir.c: Include <unistd.h> first.
12866         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
12867         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
12868         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
12869         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12870         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
12871
12872         * lib/dup2.c: Include <unistd.h> first.
12873         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
12874         HAVE_DUP2.
12875         * modules/dup2 (Depends-on): Add unistd.
12876         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12877
12878         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
12879         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
12880         REPLACE_CHOWN. Don't define chown as a macro here.
12881         * modules/chown (Depends-on): Add unistd.
12882         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12883
12884         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
12885         Add definition for GL_LINK_WARNING.
12886         (chown, dup2): New declarations.
12887         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
12888         link warning.
12889         (ftruncate): New declaration.
12890         (getcwd): New declaration, taken from old getcwd.h.
12891         (getlogin_r): New declaration, taken from old getlogin_r.h.
12892         (readlink): New declaration.
12893         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
12894         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
12895         (gl_PREREQ_UNISTD): Remove macro.
12896         (gl_UNISTD_MODULE_INDICATOR): New macro.
12897         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
12898         many new variables. Don't set UNISTD_H.
12899         * modules/unistd (Description): Change.
12900         (Depends-on): Add link-warning.
12901         (configure.ac): Update.
12902         (Makefile.am): Create unistd.h always. Substitute many new variables
12903         into it.
12904
12905 2007-02-18  Bruno Haible  <bruno@clisp.org>
12906
12907         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
12908         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
12909         HAVE_GETSUBOPT.
12910         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
12911         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
12912         * lib/getsubopt.h: Remove file.
12913         * modules/getsubopt (Files): Remove lib/getsubopt.h.
12914         (Depends-on): Add stdlib.
12915         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12916         (Includes): Use <stdlib.h> instead of getsubopt.h.
12917         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
12918         Set HAVE_GETSUBOPT.
12919         * lib/getsubopt.c: Don't include getsubopt.h.
12920
12921 2007-02-18  Bruno Haible  <bruno@clisp.org>
12922
12923         * modules/fchdir (Depends-on): Add dup2.
12924
12925 2007-02-18  Bruno Haible  <bruno@clisp.org>
12926
12927         * lib/stdlib_.h: Handle glibc's special invocation convention
12928         specially.
12929
12930 2007-02-18  Bruno Haible  <bruno@clisp.org>
12931
12932         * modules/stdlib-tests: New file.
12933         * tests/test-stdlib.c: New file.
12934
12935         * modules/mkstemp (Files): Remove lib/mkstemp.h.
12936         (Depends-on): Add stdlib.
12937         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12938         (Includes): Use <stdlib.h> instead of mkstemp.h.
12939         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
12940         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
12941         * lib/mkstemp.c: Don't include mkstemp.h.
12942         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
12943         * lib/stdlib--.h: Don't include mkstemp.h.
12944
12945         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
12946         (Depends-on): Add stdlib.
12947         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12948         (Includes): Use <stdlib.h> instead of mkdtemp.h.
12949         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
12950         HAVE_MKDTEMP.
12951         * lib/mkdtemp.c: Don't include mkdtemp.h.
12952         * lib/clean-temp.c: Don't include mkdtemp.h.
12953
12954         * modules/exit (Files): Remove lib/exit.h.
12955         (Depends-on): Add stdlib.
12956         (Makefile.am): Remove lib_SOURCES.
12957         (Include): Use <stdlib.h> instead of exit.h.
12958         * lib/argmatch.c: Don't include exit.h.
12959         * lib/execute.c: Likewise.
12960         * lib/pagealign_alloc.c: Likewise.
12961         * lib/pipe.c: Likewise.
12962         * lib/wait-process.c: Likewise.
12963         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
12964         * lib/exitfail.c: Likewise.
12965         * lib/savewd.c: Likewise.
12966         * lib/xsetenv.c: Likewise.
12967
12968         * modules/stdlib: New file.
12969         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
12970         and extra comments about mkstemp().
12971         * lib/exit.h: Remove file.
12972         * lib/mkdtemp.h: Remove file.
12973         * lib/mkstemp.h: Remove file.
12974         * m4/stdlib_h.m4: New file.
12975         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
12976
12977 2007-02-18  Bruno Haible  <bruno@clisp.org>
12978
12979         * modules/math-tests: New file.
12980         * tests/test-math.c: New file.
12981
12982         * modules/math: New file.
12983         * modules/mathl (Files): Remove lib/mathl.h.
12984         (Depends-on): Add math.
12985         (Makefile.am): Don't mention mathl.h.
12986         (Include): Use <math.h> instead of mathl.h.
12987         * lib/math_.h: New file.
12988         * lib/mathl.h: Remove file.
12989         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
12990         mathl.h.
12991         * lib/asinl.c: Likewise.
12992         * lib/atanl.c: Likewise.
12993         * lib/ceill.c: Likewise.
12994         * lib/cosl.c: Likewise.
12995         * lib/expl.c: Likewise.
12996         * lib/floorl.c: Likewise.
12997         * lib/frexpl.c: Likewise.
12998         * lib/ldexpl.c: Likewise.
12999         * lib/logl.c: Likewise.
13000         * lib/sincosl.c: Likewise.
13001         * lib/sinl.c: Likewise.
13002         * lib/sqrtl.c: Likewise.
13003         * lib/tanl.c: Likewise.
13004         * lib/trigl.c: Likewise.
13005         * m4/math_h.m4: New file.
13006         * MODULES.html.sh (Mathematics): Add math.
13007
13008 2007-02-17  Bruno Haible  <bruno@clisp.org>
13009
13010         * modules/wctype-tests: New file.
13011         * tests/test-wctype.c: New file.
13012
13013         * modules/wchar-tests: New file.
13014         * tests/test-wchar.c: New file.
13015
13016         * modules/unistd-tests: New file.
13017         * tests/test-unistd.c: New file.
13018
13019         * modules/time-tests: New file.
13020         * tests/test-time.c: New file.
13021
13022         * modules/sysexits-tests: New file.
13023         * tests/test-sysexits.c: New file.
13024
13025         * modules/sys_time-tests: New file.
13026         * tests/test-sys_time.c: New file.
13027
13028         * modules/sys_stat-tests: New file.
13029         * tests/test-sys_stat.c: New file.
13030
13031         * modules/sys_socket-tests: New file.
13032         * tests/test-sys_socket.c: New file.
13033
13034         * modules/sys_select-tests: New file.
13035         * tests/test-sys_select.c: New file.
13036
13037         * modules/string-tests: New file.
13038         * tests/test-string.c: New file.
13039
13040         * modules/stdbool-tests: New file.
13041         * tests/test-stdbool.c: New file.
13042
13043         * modules/netinet_in-tests: New file.
13044         * tests/test-netinet_in.c: New file.
13045
13046         * modules/inttypes-tests: New file.
13047         * tests/test-inttypes.c: New file.
13048
13049         * modules/fcntl-tests: New file.
13050         * tests/test-fcntl.c: New file.
13051
13052         * modules/byteswap-tests: New file.
13053         * tests/test-byteswap.c: New file.
13054
13055         * modules/arpa_inet-tests: New file.
13056         * tests/test-arpa_inet.c: New file.
13057
13058 2007-02-17  Bruno Haible  <bruno@clisp.org>
13059
13060         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
13061         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
13062         if the corresponding module is not enabled. Emit link warnings if
13063         the function is used nevertheless.
13064         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
13065         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
13066         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
13067         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
13068         * modules/inttypes (Depends-on): Add link-warning.
13069         (Makefile.am): Copy the contents of build-aux/link-warning.h into
13070         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
13071         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
13072         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
13073         * modules/imaxdiv (configure.ac): Likewise.
13074         * modules/strtoimax (configure.ac): Likewise.
13075         * modules/strtoumax (configure.ac): Likewise.
13076
13077 2007-02-17  Bruno Haible  <bruno@clisp.org>
13078
13079         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
13080         gl_STRING_MODULE_INDICATOR_DEFAULTS.
13081         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
13082         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
13083
13084 2007-02-17  Bruno Haible  <bruno@clisp.org>
13085
13086         * modules/link-warning: New file.
13087         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
13088         * lib/string_.h (GL_LINK_WARNING): Remove definition.
13089         * modules/string (Depends-on): Add link-warning.
13090         (Makefile.am): Copy the contents of build-aux/link-warning.h into
13091         string.h.
13092         * MODULES.html.sh (Support for building libraries and executables): Add
13093         link-warning.
13094
13095 2007-02-17  Bruno Haible  <bruno@clisp.org>
13096
13097         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
13098         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
13099         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
13100         long lines.
13101
13102 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
13103             Bruno Haible  <bruno@clisp.org>
13104
13105         * modules/tmpfile: New file.
13106         * lib/tmpfile.c: New file.
13107         * m4/tmpfile.m4: New file.
13108         * MODULES.html.sh (func_all_modules): New section "Input/output".
13109
13110 2007-02-15  Bruno Haible  <bruno@clisp.org>
13111
13112         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
13113         (supports_delete_on_close): New function.
13114         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
13115
13116 2007-02-14  Bruno Haible  <bruno@clisp.org>
13117
13118         * modules/mbspcasecmp-tests: New file.
13119         * tests/test-mbspcasecmp.sh: New file.
13120         * tests/test-mbspcasecmp.c: New file.
13121
13122         New module mbspcasecmp.
13123         * modules/mbspcasecmp: New file.
13124         * lib/mbspcasecmp.c: New file.
13125         * lib/string_.h (strncasecmp): Change warning message.
13126         (mbspcasecmp): New declaration.
13127         * m4/mbspcasecmp.m4: New file.
13128         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13129         GNULIB_MBSPCASECMP.
13130         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
13131         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
13132
13133 2007-02-14  Bruno Haible  <bruno@clisp.org>
13134
13135         * modules/mbsncasecmp-tests: New file.
13136         * tests/test-mbsncasecmp.sh: New file.
13137         * tests/test-mbsncasecmp.c: New file.
13138
13139         New module mbsncasecmp.
13140         * modules/mbsncasecmp: New file.
13141         * lib/mbsncasecmp.c: New file.
13142         * lib/string_.h (mbsncasecmp): New declaration.
13143         * m4/mbsncasecmp.m4: New file.
13144         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13145         GNULIB_MBSNCASECMP.
13146         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
13147         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
13148
13149 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
13150
13151         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
13152         Verify that it doesn't overlap with our flags.
13153         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
13154         do not have the desired effect in multibyte locales; instead, use
13155         mbscasecmp.
13156         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
13157         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
13158         we don't require GNU fnmatch ourselves (if our users require it, they
13159         should do so explicitly).
13160
13161         Fix regex code so it doesn't rely on strcasecmp.
13162         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
13163         Otherwise, include gnulib's langinfo.h.
13164         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
13165         undesirable behavior in non-C locales.  Instead, rely on localecharset.
13166         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
13167         * modules/regex (FILES): Remove m4/codeset.m4.
13168         (Depends-on): Add localcharset.  Remove strcase.
13169
13170 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13171
13172         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
13173         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
13174
13175 2007-02-13  Bruno Haible  <bruno@clisp.org>
13176
13177         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
13178         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13179
13180 2007-02-12  Bruno Haible  <bruno@clisp.org>
13181
13182         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
13183         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
13184         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
13185         time warning rather than a link error.
13186
13187 2007-02-12  Bruno Haible  <bruno@clisp.org>
13188
13189         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
13190         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
13191         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13192
13193 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13194
13195         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
13196         args, not 2.
13197
13198 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13199
13200         New module 'time', so that apps can include <time.h> as per
13201         POSIX and GNU instead of separate include files like time_r.h
13202         and timegm.h.  This implementation tries out a simpler approach
13203         for replacing decls in standard include files (as compared to
13204         the string module), somewhat as an experiment.
13205
13206         * config/srclist.txt: Comment out mktime.c for now.
13207         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
13208         since it doesn't apply any more.  Use generic wording instead.
13209         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
13210         'time'.
13211         * lib/time_.h, m4/time_h.m4, modules/time: New files.
13212         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
13213         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
13214         Don't include <sys/types.h>; no longer needed since we assume C89.
13215         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
13216         * lib/strftime.c: Likewise.
13217         * lib/time_r.c: Likewise.
13218         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
13219         * lib/nanosleep.c: Include <time.h> first, to check interface.
13220         * lib/strptime.c: Likewise.
13221         * lib/time_r.c: Likewise.
13222         * lib/timegm.c: Likewise.
13223         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
13224         needed.
13225         * lib/timegm.c: Don't include timegm.h; no longer needed.
13226         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
13227         time.h now handles any problems in that area.
13228         (struct timespec, nanosleep): Remove; time.h now arranges for these.
13229         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
13230         that time.h defines struct timespec.
13231         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
13232         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
13233         handles that.
13234         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
13235         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
13236         needed.  Set REPLACE_LOCALTIME.
13237         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
13238         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
13239         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
13240         nanosleep; time_h.m4 now does that.  Don't require
13241         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
13242         module handles this now.
13243         * modules/getdate (Depends-on): Remove timespec.  Add time.
13244         * modules/nanosleep (Depends-on): Likewise.
13245         * modules/stat-time (Depends-on): Likewise.
13246         * modules/nanosleep (Include): Include time.h, not timespec.h.
13247         * modules/strptime (Files): Remove lib/strptime.h.
13248         (Depends-on): Add extensions, time.
13249         (Include): Include time.h, not strptime.h.
13250         * modules/time_r (Files): Remove lib/time_r.h.
13251         (Depends-on): Add time.
13252         (Include): Include time.h, not time_r.h.
13253         * modules/timegm: Likewise.
13254         * modules/timespec (Description): Now does timespec-related decls
13255         of our own, instead of struct timespec itself.
13256         (Depends-on): Add time; remove extensions.
13257         (Maintainer): Add self.
13258         * modules/utimecmp (Depends-on): Add time; remove timespec.
13259         * modules/utimens (Depends-on): Likewise.
13260         * modules/xnanosleep (Depends-on): Likewise.
13261
13262 2007-02-11  Bruno Haible  <bruno@clisp.org>
13263
13264         * lib/c-strstr.c: Include allocsa.h.
13265         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13266         * lib/c-strcasestr.c: Include allocsa.h.
13267         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13268         * lib/strcasestr.c: Include allocsa.h.
13269         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13270         * lib/mbsstr.c: Include allocsa.h.
13271         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13272         allocsa/freesa instead of malloc/free.
13273         * lib/mbscasestr.c: Include allocsa.h.
13274         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13275         allocsa/freesa instead of malloc/free.
13276         * modules/c-strstr (Depends-on): Add allocsa.
13277         * modules/c-strcasestr (Depends-on): Likewise.
13278         * modules/strcasestr (Depends-on): Likewise.
13279         * modules/mbsstr (Depends-on): Likewise.
13280         * modules/mbscasestr (Depends-on): Likewise.
13281
13282 2007-02-11  Bruno Haible  <bruno@clisp.org>
13283
13284         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
13285
13286         * modules/mbsspn-tests: New file.
13287         * tests/test-mbsspn.sh: New file.
13288         * tests/test-mbsspn.c: New file.
13289
13290 2007-02-11  Bruno Haible  <bruno@clisp.org>
13291
13292         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
13293
13294         * modules/mbspbrk-tests: New file.
13295         * tests/test-mbspbrk.sh: New file.
13296         * tests/test-mbspbrk.c: New file.
13297
13298 2007-02-11  Bruno Haible  <bruno@clisp.org>
13299
13300         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
13301         unneeded cast.
13302
13303         * modules/mbscspn-tests: New file.
13304         * tests/test-mbscspn.sh: New file.
13305         * tests/test-mbscspn.c: New file.
13306
13307 2007-02-11  Bruno Haible  <bruno@clisp.org>
13308
13309         * modules/mbscasecmp-tests: New file.
13310         * tests/test-mbscasecmp.sh: New file.
13311         * tests/test-mbscasecmp.c: New file.
13312
13313 2007-02-11  Bruno Haible  <bruno@clisp.org>
13314
13315         Ensure O(n) worst-case complexity of mbscasestr.
13316         * lib/mbscasestr.c: Include stdbool.h.
13317         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13318         functions.
13319         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
13320         the bookkeeping indicates that it's worth it.
13321         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
13322
13323         * modules/mbscasestr-tests: New file.
13324         * tests/test-mbscasestr1.c: New file.
13325         * tests/test-mbscasestr2.sh: New file.
13326         * tests/test-mbscasestr2.c: New file.
13327         * tests/test-mbscasestr3.sh: New file.
13328         * tests/test-mbscasestr3.c: New file.
13329         * tests/test-mbscasestr4.sh: New file.
13330         * tests/test-mbscasestr4.c: New file.
13331         * m4/locale-tr.m4: New file.
13332
13333 2007-02-11  Bruno Haible  <bruno@clisp.org>
13334
13335         Ensure O(n) worst-case complexity of mbsstr.
13336         * lib/mbsstr.c: Include stdbool.h.
13337         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13338         functions.
13339         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
13340         bookkeeping indicates that it's worth it.
13341         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
13342
13343         * modules/mbsstr-tests: New file.
13344         * tests/test-mbsstr1.c: New file.
13345         * tests/test-mbsstr2.sh: New file.
13346         * tests/test-mbsstr2.c: New file.
13347         * tests/test-mbsstr3.sh: New file.
13348         * tests/test-mbsstr3.c: New file.
13349         * m4/locale-fr.m4: New file.
13350
13351 2007-02-11  Bruno Haible  <bruno@clisp.org>
13352
13353         * lib/mbsrchr.c (mbsrchr): Fix bug.
13354
13355         * modules/mbsrchr-tests: New file.
13356         * tests/test-mbsrchr.sh: New file.
13357         * tests/test-mbsrchr.c: New file.
13358
13359 2007-02-11  Bruno Haible  <bruno@clisp.org>
13360
13361         * lib/mbschr.c (mbschr): Fix bug.
13362
13363         * modules/mbschr-tests: New file.
13364         * tests/test-mbschr.sh: New file.
13365         * tests/test-mbschr.c: New file.
13366         * m4/locale-zh.m4: New file.
13367
13368 2007-02-11  Bruno Haible  <bruno@clisp.org>
13369
13370         Support for copying multibyte string iterators.
13371         * lib/mbiter.h: Include <string.h>.
13372         (mbiter_multi_copy): New function.
13373         (mbi_copy): New macro.
13374         * lib/mbuiter.h: Include <string.h>.
13375         (mbuiter_multi_copy): New function.
13376         (mbui_copy): New macro.
13377
13378 2007-02-11  Bruno Haible  <bruno@clisp.org>
13379
13380         New module mbslen.
13381         * modules/mbslen: New file.
13382         * lib/mbslen.c: New file.
13383         * lib/string_.h (mbslen): New declaration.
13384         * m4/mbslen.m4: New file.
13385         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13386         GNULIB_MBSLEN.
13387         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
13388         * MODULES.html.sh (Internationalization functions): Add mbslen.
13389
13390 2007-02-11  Bruno Haible  <bruno@clisp.org>
13391
13392         Ensure O(n) worst-case complexity of strcasestr substitute.
13393         * lib/strcasestr.c: Include stdbool.h.
13394         (knuth_morris_pratt): New function.
13395         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
13396         bookkeeping indicates that it's worth it.
13397         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
13398
13399         * modules/strcasestr-tests: New file.
13400         * tests/test-strcasestr.c: New file.
13401
13402 2007-02-11  Bruno Haible  <bruno@clisp.org>
13403
13404         Ensure O(n) worst-case complexity of c_strcasestr.
13405         * lib/c-strcasestr.c: Include stdbool.h, string.h.
13406         (knuth_morris_pratt): New function.
13407         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
13408         the bookkeeping indicates that it's worth it.
13409         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
13410
13411         * modules/c-strcasestr-tests: New file.
13412         * tests/test-c-strcasestr.c: New file.
13413
13414 2007-02-11  Bruno Haible  <bruno@clisp.org>
13415
13416         Ensure O(n) worst-case complexity of c_strstr.
13417         * lib/c-strstr.c: Include stdbool.h, string.h.
13418         (knuth_morris_pratt): New function.
13419         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
13420         bookkeeping indicates that it's worth it.
13421         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
13422
13423         * lib/c-strstr.c: Complete rewrite for maintainability.
13424
13425         * modules/c-strstr-tests: New file.
13426         * tests/test-c-strstr.c: New file.
13427
13428 2007-02-11  Bruno Haible  <bruno@clisp.org>
13429
13430         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
13431         5.2.1 and earlier, whereby \055 was treated just like the range
13432         delimiter '-'.
13433         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
13434
13435 2007-02-08  Bruno Haible  <bruno@clisp.org>
13436
13437         * modules/regex (Depends-on): Add stdbool.
13438         Reported by Dalibor Topic <robilad@kaffe.org>.
13439
13440 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13441
13442         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
13443         Prefer returning from main to exiting from it.
13444         Remove unnecessary parens after sizeof.
13445
13446 2007-02-05  Bruno Haible  <bruno@clisp.org>
13447
13448         New module mbssep.
13449         * modules/mbssep: New file.
13450         * lib/mbssep.c: New file.
13451         * lib/string_.h (strsep): Add a conditional link warning.
13452         (mbssep): New declaration.
13453         * m4/mbssep.m4: New file.
13454         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13455         GNULIB_MBSSEP.
13456         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
13457         * MODULES.html.sh (Internationalization functions): Add mbssep.
13458
13459 2007-02-05  Bruno Haible  <bruno@clisp.org>
13460
13461         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
13462         Optimize search in case of 1 delimiter.
13463
13464 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
13465
13466         * lib/acl.h: Include sys/types.h before sys/acl.h.
13467
13468 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
13469
13470         Merge upstream fix for glibc bugzilla #3957:
13471
13472         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
13473
13474         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
13475         bit for RE_HAT_LISTS_NOT_NEWLINE.
13476         (build_charclass_op): Remove bogus comment.
13477
13478 2007-02-05  Simon Josefsson  <simon@josefsson.org>
13479
13480         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
13481
13482 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
13483
13484         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
13485         * lib/memmem.c [!defined _LIBC]: Include config.h.
13486
13487 2007-02-04  Bruno Haible  <bruno@clisp.org>
13488
13489         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
13490         warning message.
13491
13492 2007-02-04  Bruno Haible  <bruno@clisp.org>
13493
13494         New module mbstok_r.
13495         * modules/mbstok_r: New file.
13496         * lib/mbstok_r.c: New file.
13497         * lib/string_.h (strtok_r): Change argument names to match the
13498         comments. Add a conditional link warning.
13499         (mbstok_r): New declaration.
13500         * m4/mbstok_r.m4: New file.
13501         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13502         GNULIB_MBSTOK_R.
13503         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
13504         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
13505
13506 2007-02-04  Bruno Haible  <bruno@clisp.org>
13507
13508         New module mbsspn.
13509         * modules/mbsspn: New file.
13510         * lib/mbsspn.c: New file.
13511         * lib/string_.h (strspn): Add a conditional link warning.
13512         (mbsspn): New declaration.
13513         * m4/mbsspn.m4: New file.
13514         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13515         GNULIB_MBSSPN.
13516         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
13517         * MODULES.html.sh (Internationalization functions): Add mbsspn.
13518
13519 2007-02-04  Bruno Haible  <bruno@clisp.org>
13520
13521         New module mbspbrk.
13522         * modules/mbspbrk: New file.
13523         * lib/mbspbrk.c: New file.
13524         * lib/string_.h (strpbrk): Add a conditional link warning.
13525         (mbspbrk): New declaration.
13526         * m4/mbspbrk.m4: New file.
13527         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13528         GNULIB_MBSPBRK.
13529         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
13530         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
13531
13532 2007-02-04  Bruno Haible  <bruno@clisp.org>
13533
13534         New module mbscspn.
13535         * modules/mbscspn: New file.
13536         * lib/mbscspn.c: New file.
13537         * lib/string_.h (strcspn): Add a conditional link warning.
13538         (mbscspn): New declaration.
13539         * m4/mbscspn.m4: New file.
13540         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13541         GNULIB_MBSCSPN.
13542         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
13543         * MODULES.html.sh (Internationalization functions): Add mbscspn.
13544
13545 2007-02-04  Bruno Haible  <bruno@clisp.org>
13546
13547         New module mbscasestr, reduced goal of strcasestr.
13548         * modules/mbscasestr: New file.
13549         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
13550         (mbscasestr): Renamed from strcasestr.
13551         * lib/strcasestr.c: Don't include mbuiter.h.
13552         (strcasestr): Remove support for multibyte locales.
13553         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
13554         Change the conditional link warning.
13555         (mbscasestr): New declaration.
13556         * m4/mbscasestr.m4: New file.
13557         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
13558         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
13559         REPLACE_STRCASESTR.
13560         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
13561         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13562         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
13563         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
13564         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
13565         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
13566         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
13567         (Depends-on): Remove mbuiter.
13568         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
13569
13570 2007-02-04  Bruno Haible  <bruno@clisp.org>
13571
13572         Simplify handling of strncasecmp.
13573         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
13574         the conditional link warning.
13575         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13576         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
13577         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
13578         * modules/strcase (configure.ac): Don't invoke
13579         gl_STRING_MODULE_INDICATOR.
13580         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
13581
13582 2007-02-04  Bruno Haible  <bruno@clisp.org>
13583
13584         New module mbscasecmp, reduced goal of strcasecmp.
13585         * modules/mbscasecmp: New file.
13586         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
13587         (mbscasecmp): Renamed from strcasecmp.
13588         * lib/strcasecmp.c: Don't include mbuiter.h.
13589         (strcasecmp): Remove support for multibyte locales.
13590         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
13591         Change the conditional link warning.
13592         (mbscasecmp): New declaration.
13593         * m4/mbscasecmp.m4: New file.
13594         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
13595         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
13596         REPLACE_STRCASECMP.
13597         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
13598         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13599         GNULIB_MBSCASECMP.
13600         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
13601         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
13602         * modules/strcase (Files): Remove m4/mbrtowc.m4.
13603         (Depends-on): Remove mbuiter.
13604         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
13605
13606 2007-02-04  Bruno Haible  <bruno@clisp.org>
13607
13608         New module mbsstr. Remove module strstr.
13609         * modules/mbsstr: New file.
13610         * modules/strstr: Remove file.
13611         * lib/mbsstr.c: Renamed from lib/strstr.c.
13612         (mbsstr): Renamed from strstr.
13613         * lib/string_.h (strstr): Remove declaration. Change the conditional
13614         link warning.
13615         (mbsstr): New declaration.
13616         * m4/mbsstr.m4: New file.
13617         * m4/strstr.m4: Remove file.
13618         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
13619         REPLACE_STRSTR.
13620         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
13621         Don't initialize GNULIB_STRSTR.
13622         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
13623         substitute GNULIB_STRSTR and REPLACE_STRSTR.
13624         * MODULES.html.sh (Internationalization functions): Add mbsstr.
13625         (Support for systems lacking ANSI C 89): Remove strstr.
13626
13627 2007-02-04  Bruno Haible  <bruno@clisp.org>
13628
13629         New module mbsrchr.
13630         * modules/mbsrchr: New file.
13631         * lib/mbsrchr.c: New file.
13632         * lib/string_.h (strrchr): Add a conditional link warning.
13633         (mbsrchr): New declaration.
13634         * m4/mbsrchr.m4: New file.
13635         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13636         GNULIB_MBSRCHR.
13637         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
13638         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
13639
13640 2007-02-04  Bruno Haible  <bruno@clisp.org>
13641
13642         New module mbschr.
13643         * modules/mbschr: New file.
13644         * lib/mbschr.c: New file.
13645         * lib/string_.h (strchr): Add a conditional link warning.
13646         (mbschr): New declaration.
13647         * m4/mbschr.m4: New file.
13648         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13649         GNULIB_MBSCHR.
13650         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
13651         * MODULES.html.sh (Internationalization functions): Add mbschr.
13652
13653 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
13654
13655         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
13656
13657         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
13658
13659 2007-02-04  Bruno Haible  <bruno@clisp.org>
13660
13661         New module description section 'configure.ac-early'.
13662         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
13663         (func_get_autoconf_early_snippet): New function.
13664         (func_import, func_create_testdir): Use it. Remove special cases for
13665         modules 'extensions' and 'lock'.
13666         * modules/extensions (configure.ac-early): Require
13667         gl_USE_SYSTEM_EXTENSIONS.
13668         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
13669
13670 2007-02-04  Bruno Haible  <bruno@clisp.org>
13671
13672         Make use of gcj-4.3's -fsource and -ftarget option.
13673         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
13674         and if so try the options -fsource and -ftarget.
13675         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
13676         source_version, ftarget_option, target_version arguments.
13677         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
13678         (is_envjavac_oldgcj_14_14_usable): Renamed from
13679         is_envjavac_gcj_14_14_usable.
13680         (is_envjavac_oldgcj_14_13_usable): Renamed from
13681         is_envjavac_gcj_14_13_usable.
13682         (is_gcj_present): Update.
13683         (is_gcj_43, is_gcj43_usable): New functions.
13684         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
13685         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
13686         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
13687         try the options -fsource and -ftarget.
13688
13689 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13690
13691         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
13692         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
13693         larger value.
13694
13695 2007-02-03  Jim Meyering  <jim@meyering.net>
13696
13697         Give tools a better chance to allocate space for very large buffers.
13698         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
13699
13700         Make pwd and readlink work also when run with an unreadable parent dir
13701         on systems with openat support.
13702         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
13703         provided getcwd function, even when we have openat support.
13704         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
13705
13706 2007-02-02  Bruno Haible  <bruno@clisp.org>
13707
13708         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
13709         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
13710         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
13711         portability problems if one of these functions is only used on specific
13712         platforms.
13713         Reported by Paul Eggert.
13714
13715 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
13716
13717         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
13718         is causing more trouble than it's curing.
13719         * lib/regex_internal.h (__mempcpy): Remove.
13720         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
13721         (and make the code a tad smaller to boot).
13722         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
13723
13724 2007-02-02  Jim Meyering  <jim@meyering.net>
13725
13726         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
13727         section, not in the Makefile.am: one.
13728
13729 2007-02-02  Eric Blake  <ebb9@byu.net>
13730
13731         * lib/strchrnul.c: Always include config.h first.
13732
13733         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
13734         gnulib strstr is not necessary here.
13735
13736 2007-02-02  Simon Josefsson  <simon@josefsson.org>
13737
13738         * m4/socklen.m4: Fix typo.
13739
13740 2007-02-02  Eric Blake  <ebb9@byu.net>
13741
13742         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
13743         * modules/netinet_in (Makefile.am): Likewise.
13744
13745 2007-02-01  Bruno Haible  <bruno@clisp.org>
13746
13747         * lib/string_.h (GL_LINK_WARNING): New macro.
13748         (strcasecmp, strstr, strcasestr): If provided by the system,
13749         conditionally define as a macro that leads to a warning instead of to
13750         an error.
13751         (strncasecmp): Conditionally define as a macro that leads to a warning.
13752
13753 2007-02-01  Karl Berry  <karl@gnu.org>
13754
13755         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
13756
13757 2007-02-01  Bruno Haible  <bruno@clisp.org>
13758
13759         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
13760         renamings.
13761
13762 2007-02-01  Eric Blake  <ebb9@byu.net>
13763
13764         * modules/regex (Depends-on): Revert dependence on mempcpy.
13765         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
13766         module's definition of mempcpy.
13767         Reported by Paul Eggert.
13768
13769 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13770
13771         * lib/string_.h: If the gnulib module XYZ is not present, undefine
13772         the symbol XYZ before redefining it.  This fixes a problem with
13773         programs that don't use XYZ, when compiled on systems that define
13774         XYZ to something else.
13775
13776 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
13777
13778         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
13779         occurs when "mkdir -m foo" creates a setgid directory that is (1)
13780         writeable to group or other and (2) is intended to have a special
13781         mode bit that is set or cleared.  In such a case, the directory
13782         should be neither group- nor other-writeable until the special
13783         mode bits are right.
13784
13785 2007-01-31  Eric Blake  <ebb9@byu.net>
13786
13787         * modules/mountlist (Depends-on): Add strstr.
13788
13789         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
13790         bug.
13791         * modules/string (Makefile.am): Remove redundant replacement.
13792         * modules/regex (Depends-on): Add mempcpy.
13793
13794 2007-01-31  Bruno Haible  <bruno@clisp.org>
13795
13796         New module description field 'Link'.
13797         * gnulib-tool (func_usage): Document --extract-link-directive.
13798         (sed_extract_prog): Recognize 'Link' directive.
13799         (func_get_link_directive): New function.
13800         (func_import): Show summary of link directives.
13801         Handle --extract-link-directive option.
13802         * modules/acl (Link): New section.
13803         * modules/clock-time (Link): New section.
13804         * modules/euidaccess (Link): New section.
13805         * modules/gettext (Link): New section.
13806         * modules/iconv (Link): New section.
13807         * modules/lock (Link): New section.
13808         * modules/nanosleep (Link): New section.
13809         * modules/readline (Link): New section.
13810
13811 2007-01-27  Bruno Haible  <bruno@clisp.org>
13812
13813         Enforce the use of gnulib modules for unportable <string.h> functions.
13814         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
13815         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
13816         (gl_HEADER_STRING_H_BODY): Require it.
13817         * lib/string_.h: If the gnulib module XYZ is not present, redefine
13818         the symbol XYZ to one that gives a link error.
13819         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
13820         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
13821         * modules/mempcpy (configure.ac): Likewise.
13822         * modules/memrchr (configure.ac): Likewise.
13823         * modules/stpcpy (configure.ac): Likewise.
13824         * modules/stpncpy (configure.ac): Likewise.
13825         * modules/strcase (configure.ac): Likewise.
13826         * modules/strcasestr (configure.ac): Likewise.
13827         * modules/strchrnul (configure.ac): Likewise.
13828         * modules/strdup (configure.ac): Likewise.
13829         * modules/strndup (configure.ac): Likewise.
13830         * modules/strnlen (configure.ac): Likewise.
13831         * modules/strpbrk (configure.ac): Likewise.
13832         * modules/strsep (configure.ac): Likewise.
13833         * modules/strstr (configure.ac): Likewise.
13834         * modules/strtok_r (configure.ac): Likewise.
13835
13836 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
13837
13838         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
13839
13840 2007-01-30  Jim Meyering  <jim@meyering.net>
13841
13842         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
13843
13844 2007-01-29  Bruno Haible  <bruno@clisp.org>
13845
13846         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
13847         * lib/execute.c: Likewise.
13848         * lib/pipe.c: Likewise.
13849         * lib/printf-args.h: Likewise.
13850         * lib/printf-args.c: Likewise.
13851         * lib/printf-parse.c: Likewise.
13852         * lib/vasnprintf.c: Likewise.
13853
13854 2007-01-29  Eric Blake  <ebb9@byu.net>
13855
13856         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
13857         declaration.
13858
13859 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
13860
13861         * lib/strptime.h (strptime): Use 'restrict' for args where
13862         POSIX requires this.
13863         * lib/strptime.c (strptime): Likewise.
13864         Change license notice from LGPL to GPL, since gnulib-tool will
13865         change this as needed.
13866         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
13867         defined.
13868         Include "strptime.h" first, to check interface.
13869         Do not #undef _LIBC and _NL_CURRENT.
13870         Do not include <stdlib.h>; no longer needed.
13871         Include "time_r.h" and declare ptime_locale_status
13872         only if _LIBC is not defined.
13873         (__P): Remove unused macro.
13874         (match_string): Bring back glibc version, but use it only if _LIBC
13875         is defined.
13876         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
13877         Remove unnecessary assertion and abort() call.
13878         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
13879         * m4/strptime.m4: Fix serial number comment.
13880         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
13881         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
13882         (Depends-on): Add time_r.
13883
13884 2007-01-29  Bruno Haible  <bruno@clisp.org>
13885
13886         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13887         strptime.
13888         * modules/strptime (Depends-on): Add stdbool.
13889         * lib/strptime.h: Include <time.h> always. Add comments.
13890
13891 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13892
13893         * modules/strptime: New file.
13894         * lib/strptime.h: New file.
13895         * lib/strptime.c: New file.
13896         * m4/strptime.m4: New file.
13897
13898 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13899
13900         * MODULES.html.sh: New module mpsort.
13901         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
13902
13903         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
13904         a circularity problem with HP-UX ia64 reported by Bob Proulx in
13905         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
13906         All uses changed.
13907         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
13908         All uses changed.
13909         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
13910         to _Restrict_.
13911         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
13912         the parameter matches the prototype.
13913
13914 2007-01-28  Jim Meyering  <jim@meyering.net>
13915
13916         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
13917         sys/time.h here, reverting that part of the previous patch:
13918         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
13919
13920 2007-01-28  Bruno Haible  <bruno@clisp.org>
13921
13922         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
13923         value of $(SYS_TIME_H).
13924         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
13925         remove it conditionally, too. [added by Jim Meyering]
13926         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
13927         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
13928         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
13929         GETTIMEOFDAY_REPLACEMENT to 1.
13930
13931 2007-01-28  Bruno Haible  <bruno@clisp.org>
13932
13933         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
13934         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
13935         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
13936         Set UNISTD_H instead of UNISTD_H2.
13937         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
13938
13939 2007-01-28  Bruno Haible  <bruno@clisp.org>
13940
13941         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
13942         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
13943
13944 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13945
13946         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
13947         (func_create_testdir): Ensure C locale for `grep' and `tr'
13948         character ranges.
13949         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
13950         ACLOCAL_AMFLAGS parsing state machine.
13951
13952 2007-01-27  Bruno Haible  <bruno@clisp.org>
13953
13954         * modules/unistr/base: Update.
13955
13956 2007-01-27  Bruno Haible  <bruno@clisp.org>
13957
13958         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
13959         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
13960         * modules/unistr/u32-mbtouc-unsafe: Renamed from
13961         modules/unistr/u32-mbtouc.
13962         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
13963         * lib/unistr.h: Update.
13964         * lib/linebreak.c: Update.
13965         * modules/unistr/u32-mbtouc: Renamed from
13966         modules/unistr/u32-mbtouc-safe.
13967         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
13968         * lib/unistr.h: Update.
13969         * lib/unistr/u32-to-u8.c: Update.
13970         * lib/unistr/u32-to-u16.c: Update.
13971
13972 2007-01-27  Bruno Haible  <bruno@clisp.org>
13973
13974         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
13975         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
13976         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
13977         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
13978         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
13979         * modules/unistr/u16-mbtouc-unsafe: Renamed from
13980         modules/unistr/u16-mbtouc.
13981         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
13982         * lib/unistr.h: Update.
13983         * lib/linebreak.c: Update.
13984         * modules/linebreak: Update.
13985         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
13986         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
13987         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
13988         * modules/unistr/u16-mbtouc: Renamed from
13989         modules/unistr/u16-mbtouc-safe.
13990         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
13991         * lib/unistr.h: Update.
13992         * lib/unistr/u16-to-u8.c: Update.
13993         * modules/unistr/u16-to-u8: Update.
13994         * lib/unistr/u16-to-u32.c: Update.
13995         * modules/unistr/u16-to-u32: Update.
13996
13997 2007-01-27  Bruno Haible  <bruno@clisp.org>
13998
13999         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
14000         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
14001         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
14002         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
14003         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
14004         * modules/unistr/u8-mbtouc-unsafe: Renamed from
14005         modules/unistr/u8-mbtouc.
14006         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
14007         * lib/unistr.h: Update.
14008         * lib/striconveh.c: Update.
14009         * modules/striconveh: Update.
14010         * lib/linebreak.c: Update.
14011         * modules/linebreak: Update.
14012         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
14013         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
14014         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
14015         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
14016         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
14017         * lib/unistr.h: Update.
14018         * lib/striconveh.c: Update.
14019         * modules/striconveh: Update.
14020         * lib/unistr/u8-to-u16.c: Update.
14021         * modules/unistr/u8-to-u16: Update.
14022         * lib/unistr/u8-to-u32.c: Update.
14023         * modules/unistr/u8-to-u32: Update.
14024
14025 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14026
14027         Sync from Libtool.
14028         * lib/argz.c: Do not include strings.h nor memory.h, include
14029         string.h unconditionally.  Patch by Simon Josefsson.
14030
14031 2007-01-27  Bruno Haible  <bruno@clisp.org>
14032
14033         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
14034         from gl_HEADER_STRING_H_BODY.
14035         (gl_HEADER_STRING_H_BODY): Require it.
14036         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
14037         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
14038         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
14039         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
14040         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
14041         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
14042         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
14043         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
14044         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
14045         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
14046         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
14047         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
14048         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
14049         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
14050         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
14051
14052 2007-01-27  Bruno Haible  <bruno@clisp.org>
14053
14054         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
14055         check_PROGRAMS into noinst_PROGRAMS.
14056         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
14057         check_PROGRAMS in this case.
14058         (func_import): Set for_test to false.
14059         (func_create_testdir): Set for_test to true.
14060
14061 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
14062             Bruno Haible  <bruno@clisp.org>
14063
14064         * modules/strcasestr (Files): Remove lib/strcasestr.h.
14065         (Depends-on): Add string.
14066         (Includes): Use <string.h> instead of strcasestr.h.
14067         * modules/string (Makefile.am): Also substitute the value of
14068         REPLACE_STRCASESTR.
14069         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
14070         assume strcasestr is declared in <string.h> not <strings.h>. Also
14071         set REPLACE_STRCASESTR.
14072         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
14073         REPLACE_STRCASESTR.
14074         * lib/strcasestr.h: Remove file.
14075         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
14076         * lib/string_.h (strcasestr): New declaration.
14077
14078 2007-01-27  Bruno Haible  <bruno@clisp.org>
14079
14080         * lib/string_.h: Use 'extern'.
14081
14082 2007-01-27  Jim Meyering  <jim@meyering.net>
14083
14084         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
14085         of set-but-not-used local, "q".
14086
14087         * lib/mempcpy.c: Include <config.h> before <string.h>.
14088         This fixes a compilation error on HP-UX, due to the system's
14089         "restrict"-using mempcpy prototype.
14090
14091 2007-01-26  Bruno Haible  <bruno@clisp.org>
14092
14093         Small optimization.
14094         * lib/javacomp.c: Include c-strstr.h.
14095          (is_envjavac_gcj): Use c_strstr instead of strstr.
14096         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
14097
14098 2007-01-26  Bruno Haible  <bruno@clisp.org>
14099
14100         * MODULES.html.sh (Unicode string functions): Add the new modules.
14101
14102         * modules/uniconv/u32-strconv-to-locale: New file.
14103         * lib/uniconv/u32-strconv-to-locale.c: New file.
14104
14105         * modules/uniconv/u16-strconv-to-locale: New file.
14106         * lib/uniconv/u16-strconv-to-locale.c: New file.
14107
14108         * modules/uniconv/u8-strconv-to-locale: New file.
14109         * lib/uniconv/u8-strconv-to-locale.c: New file.
14110
14111         * modules/uniconv/u32-strconv-from-locale: New file.
14112         * lib/uniconv/u32-strconv-from-locale.c: New file.
14113
14114         * modules/uniconv/u16-strconv-from-locale: New file.
14115         * lib/uniconv/u16-strconv-from-locale.c: New file.
14116
14117         * modules/uniconv/u8-strconv-from-locale: New file.
14118         * lib/uniconv/u8-strconv-from-locale.c: New file.
14119
14120         * modules/uniconv/u32-strconv-to-enc: New file.
14121         * lib/uniconv/u32-strconv-to-enc.c: New file.
14122         * modules/uniconv/u32-strconv-to-enc-tests: New file.
14123         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
14124
14125         * modules/uniconv/u16-strconv-to-enc: New file.
14126         * lib/uniconv/u16-strconv-to-enc.c: New file.
14127         * lib/uniconv/u-strconv-to-enc.h: New file.
14128         * modules/uniconv/u16-strconv-to-enc-tests: New file.
14129         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
14130
14131         * modules/uniconv/u8-strconv-to-enc: New file.
14132         * lib/uniconv/u8-strconv-to-enc.c: New file.
14133         * modules/uniconv/u8-strconv-to-enc-tests: New file.
14134         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
14135
14136         * modules/uniconv/u32-strconv-from-enc: New file.
14137         * lib/uniconv/u32-strconv-from-enc.c: New file.
14138         * modules/uniconv/u32-strconv-from-enc-tests: New file.
14139         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
14140
14141         * modules/uniconv/u16-strconv-from-enc: New file.
14142         * lib/uniconv/u16-strconv-from-enc.c: New file.
14143         * modules/uniconv/u16-strconv-from-enc-tests: New file.
14144         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
14145
14146         * modules/uniconv/u8-strconv-from-enc: New file.
14147         * lib/uniconv/u8-strconv-from-enc.c: New file.
14148         * lib/uniconv/u-strconv-from-enc.h: New file.
14149         * modules/uniconv/u8-strconv-from-enc-tests: New file.
14150         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
14151
14152         * modules/uniconv/u32-conv-from-enc: New file.
14153         * lib/uniconv/u32-conv-from-enc.c: New file.
14154         * modules/uniconv/u32-conv-from-enc-tests: New file.
14155         * tests/uniconv/test-u32-conv-from-enc.c: New file.
14156
14157         * modules/uniconv/u16-conv-from-enc: New file.
14158         * lib/uniconv/u16-conv-from-enc.c: New file.
14159         * lib/uniconv/u-conv-from-enc.h: New file.
14160         * modules/uniconv/u16-conv-from-enc-tests: New file.
14161         * tests/uniconv/test-u16-conv-from-enc.c: New file.
14162
14163         * modules/uniconv/u8-conv-from-enc: New file.
14164         * lib/uniconv/u8-conv-from-enc.c: New file.
14165         * modules/uniconv/u8-conv-from-enc-tests: New file.
14166         * tests/uniconv/test-u8-conv-from-enc.c: New file.
14167
14168         * modules/uniconv/base: New file.
14169         * lib/uniconv.h: New file.
14170
14171 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
14172
14173         * doc/gnulib-tool.texi (Initial import): Update to match current
14174         behavior with strdup module.
14175         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
14176         * lib/memmem.h: Remove; all uses removed.  This is now done
14177         by <string.h>.
14178         * lib/mempcpy.h: Likewise.
14179         * lib/memrchr.h: Likewise.
14180         * lib/stpcpy.h: Likewise.
14181         * lib/stpncpy.h: Likewise.
14182         * lib/strcase.h: Likewise.
14183         * lib/strchrnul.h: Likewise.
14184         * lib/strdup.h: Likewise.
14185         * lib/strndup.h: Likewise.
14186         * lib/strnlen.h: Likewise.
14187         * lib/strpbrk.h: Likewise.
14188         * lib/strsep.h: Likewise.
14189         * lib/strstr.h: Likewise.
14190         * lib/strtok_r.h: Likewise.
14191         * lib/string_.h: New file.
14192         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
14193         Rely on <string.h> instead.
14194         * lib/canon-host.c: Likewise.
14195         * lib/chdir-long.c: Likewise.
14196         * lib/concatpath.c: Likewise.
14197         * lib/exclude.c: Likewise.
14198         * lib/fchdir.c: Likewise.
14199         * lib/getaddrinfo.c: Likewise.
14200         * lib/getcwd.c: Likewise.
14201         * lib/getsubopt.c: Likewise.
14202         * lib/glob.c: Likewise.
14203         * lib/hard-locale.c: Likewise.
14204         * lib/iconvme.c: Likewise.
14205         * lib/javacomp.c: Likewise.
14206         * lib/mempcpy.c: Likewise.
14207         * lib/memrchr.c: Likewise.
14208         * lib/regex_internal.h: Likewise.
14209         * lib/stpncpy.c: Likewise.
14210         * lib/strcasecmp.c: Likewise.
14211         * lib/strchrnul.c: Likewise.
14212         * lib/strdup.c: Likewise.
14213         * lib/striconv.c: Likewise.
14214         * lib/striconveh.c: Likewise.
14215         * lib/striconveha.c: Likewise.
14216         * lib/strncasecmp.c: Likewise.
14217         * lib/strndup.c: Likewise.
14218         * lib/strnlen.c: Likewise.
14219         * lib/strsep.c: Likewise.
14220         * lib/strstr.c: Likewise.
14221         * lib/strtok_r.c: Likewise.
14222         * lib/userspec.c: Likewise.
14223         * lib/w32spawn.h: Likewise.
14224         * lib/xstrndup.c: Likewise.
14225         * lib/mountlist.c (strstr): Remove decl.
14226         * m4/string_h.m4: New file.
14227         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
14228         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
14229         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
14230         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
14231         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
14232         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
14233         Set REPLACE_STRCASECMP if necessary.
14234         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
14235         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
14236         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
14237         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
14238         HAVE_DECL_STRDUP if necessary.
14239         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
14240         since gl_FUNC_STRNDUP does that now.
14241         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
14242         Check for decl here...
14243         (gl_PREREQ_STRNLEN): ... not here.
14244         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
14245         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
14246         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
14247         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
14248         necessary.
14249         * modules/string: New file.
14250         * modules/memmem (Files): Remove special-purpose include file.
14251         (Depends-on): Add string.
14252         (Include): Include <string.h>, not the removed file.
14253         * modules/mempcpy: Likewise.
14254         * modules/memrchr: Likewise.
14255         * modules/stpcpy: Likewise.
14256         * modules/stpncpy: Likewise.
14257         * modules/strcase: Likewise.
14258         * modules/strchrnul: Likewise.
14259         * modules/strdup: Likewise.
14260         * modules/strndup: Likewise.
14261         * modules/strnlen: Likewise.
14262         * modules/strpbrk: Likewise.
14263         * modules/strsep: Likewise.
14264         * modules/strstr: Likewise.
14265         * modules/strtok_r: Likewise.
14266         * tests/test-dirname.c: Don't include "strdup.h", since
14267         <string.h> now suffices.
14268         * tests/test-memmem.c: Don't include "memmem.h", since
14269         <string.h> now suffices.
14270
14271 2007-01-25  Bruno Haible  <bruno@clisp.org>
14272
14273         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
14274         *resultp is 0.
14275
14276         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
14277         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
14278         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
14279         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
14280
14281         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
14282         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
14283         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
14284         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
14285         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
14286         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
14287
14288 2007-01-24  Bruno Haible  <bruno@clisp.org>
14289
14290         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
14291         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
14292         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
14293         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
14294         gl_FUNC_FTS_CORE.
14295         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
14296         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
14297         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
14298         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
14299         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
14300         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
14301         gl_FUNC_FCHOWNAT.
14302         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
14303         gl_FUNC_STRFTIME.
14304         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
14305         Reported by Ralf Wildenhues.
14306
14307 2007-01-24  Bruno Haible  <bruno@clisp.org>
14308
14309         Drop AC_REQUIRE calls that are redundant with the module dependencies.
14310         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
14311         gl_GETADDRINFO.
14312         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
14313         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
14314         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
14315
14316 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
14317
14318         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
14319         Don't use 'exit'; just return from 'main'.
14320         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
14321
14322         * lib/fnmatch_.h: Readjust white space and comments to match
14323         glibc, to avoid spurious diffs.
14324
14325 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14326
14327         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
14328         2004-12-01 change by Jakub Jelinek, since this code won't compile
14329         if !LIBC.  Problem reported by Bob Proulx.
14330
14331 2007-01-23  Bruno Haible  <bruno@clisp.org>
14332
14333         * lib/striconveh.c: Include c-strcaseeq.h.
14334         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
14335         * modules/striconveh (Depends-on): Add c-strcaseeq.
14336
14337 2007-01-23  Bruno Haible  <bruno@clisp.org>
14338
14339         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
14340
14341         * modules/c-strcaseeq: New file.
14342         * lib/c-strcaseeq.h: New file.
14343
14344         * modules/streq: New file.
14345         * lib/streq.h: New file.
14346
14347 2007-01-23  Bruno Haible  <bruno@clisp.org>
14348
14349         * modules/striconveha-tests: New file.
14350         * tests/test-striconveha.c: New file.
14351
14352         * lib/striconveha.h: Include <stdbool.h>.
14353         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
14354         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
14355         (mem_iconveha_notranslit): Renamed from mem_iconveha.
14356         (mem_iconveha): New function.
14357         (str_iconveha_notranslit): Renamed from str_iconveha.
14358         (str_iconveha): New function.
14359         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
14360         c-strcase.
14361
14362 2007-01-23  Bruno Haible  <bruno@clisp.org>
14363
14364         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
14365         encodings without forgiving before trying any encoding with handler.
14366         (str_iconveha): Try all encodings without forgiving before trying any
14367         encoding with handler.
14368
14369 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14370
14371         Import the following changes from libc.
14372
14373         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
14374
14375         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
14376
14377         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14378
14379         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
14380         normal_bracket label.
14381
14382         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
14383
14384         [BZ #361]
14385         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
14386         to normal_bracket after fetching the next character.
14387
14388 2007-01-22  Bruno Haible  <bruno@clisp.org>
14389
14390         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
14391         argument.
14392         * lib/striconveh.c (iconv_carefully_1): New function.
14393         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
14394         argument.
14395         (str_cd_iconveh): Update.
14396         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
14397         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
14398         * tests/test-striconveh.c (MAGIC): New macro.
14399         (new_offsets): New function.
14400         (main): Test call with and without offsets.
14401
14402 2007-01-22  Bruno Haible  <bruno@clisp.org>
14403
14404         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
14405         * modules/sys_select (Makefile.am): Likewise.
14406         * modules/sys_socket (Makefile.am): Likewise.
14407         * modules/sys_time (Makefile.am): Likewise.
14408
14409 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
14410
14411         * modules/gettimeofday (License): Change from GPL to LGPL, since
14412         gettimeofday is a library function.
14413
14414 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14415
14416         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
14417
14418 2007-01-21  Bruno Haible  <bruno@clisp.org>
14419
14420         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
14421
14422 2007-01-21  Bruno Haible  <bruno@clisp.org>
14423
14424         * modules/striconveha: New file.
14425         * lib/striconveha.h: New file.
14426         * lib/striconveha.c: New file.
14427         * MODULES.html.sh (Internationalization functions): Add striconveha.
14428         * lib/striconv.c (str_iconv): Optimize the case of an empty input
14429         string.
14430         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
14431
14432 2007-01-21  Bruno Haible  <bruno@clisp.org>
14433
14434         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
14435         * lib/striconveh.c (str_iconveh): Likewise.
14436
14437 2007-01-21  Bruno Haible  <bruno@clisp.org>
14438
14439         * lib/striconveh.h (mem_iconveh): New declaration.
14440         * lib/striconveh.c (mem_iconveh): New function.
14441         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
14442
14443 2007-01-21  Bruno Haible  <bruno@clisp.org>
14444
14445         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
14446
14447         * lib/striconveh.h (mem_cd_iconveh): Change specification.
14448         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
14449         original result buffer.
14450         (str_cd_iconveh): Update.
14451         * tests/test-striconveh.c (main): Update.
14452
14453         * lib/striconv.h (mem_cd_iconv): Change specification.
14454         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
14455         result buffer.
14456         (str_cd_iconv): Update.
14457         * tests/test-striconv.c (main): Update.
14458
14459 2007-01-21  Bruno Haible  <bruno@clisp.org>
14460
14461         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
14462
14463 2007-01-20  Jim Meyering  <jim@meyering.net>
14464
14465         * lib/userspec.c (parse_with_separator): If a user or group string
14466         starts with "+", skip the corresponding name-to-ID look-up, since
14467         such a look-up must fail: user and group names may not include "+".
14468
14469 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
14470
14471         * lib/poll.c: Include sys/time.h and time.h unconditionally,
14472         since we now assume the sys_time module.
14473         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
14474         check for sys/time.h; no longer needed.
14475         * modules/poll (Depends-on): Depend on sys_time.
14476
14477 2007-01-18  Bruno Haible  <bruno@clisp.org>
14478
14479         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
14480         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
14481
14482         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
14483         gettimeofday.
14484
14485         * tests/test-gettimeofday.c: Include <time.h>.
14486         (dummy): Remove variable.
14487
14488         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
14489         gl_HEADER_SYS_TIME_H.
14490         (gl_HEADER_SYS_TIME_H): New macro.
14491
14492         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
14493         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14494         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
14495         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
14496         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14497         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
14498         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
14499         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14500         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
14501         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
14502         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14503
14504         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
14505         last change; it caused a compilation error when cross-compiling to
14506         Cygwin.
14507
14508 2007-01-18  Jim Meyering  <jim@meyering.net>
14509
14510         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
14511         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
14512         than the race-prone "test -d sys || mkdir sys".
14513         (configure.ac): Use AC_PROG_MKDIR_P.
14514         * modules/sys_select: Likewise.
14515         * modules/sys_socket: Likewise.
14516         * modules/sys_time: Likewise.
14517
14518 2007-01-18  Eric Blake  <ebb9@byu.net>
14519
14520         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
14521         replace gettimeofday.
14522         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
14523         name, to avoid infinite recursion.
14524
14525 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
14526
14527         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
14528         module sys_time.
14529         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
14530         assume timespec.h defines struct timeval.
14531         * lib/settime.c: Likewise.
14532         * lib/utimens.c: Likewise.
14533         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
14534         since we now assume the gettimeofday module.
14535         * lib/tempname.c (__gen_tempname): Likewise.
14536         * lib/gettimeofday.h: Remove.
14537         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
14538         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
14539         Include <time.h>, for 'time()'.
14540         (localtime_buffer_addr): Also use this workaround if
14541         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
14542         to simplify the uses.  All uses changed.
14543         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
14544         that #undef is inside {}, and 'const' follows type name consistently.
14545         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
14546         (gettimeofday): Do not use the maximum possible value for
14547         tv->tv_usec, since that might break usages other than ls.c.
14548         Instead, we'll leave ls.c alone.  This undoes today's patch
14549         by Bruno.  Add a compile-time warning for 1s-clock resolution;
14550         we've never observed the problem but might as well keep the
14551         canary.
14552         * lib/nanosleep.c: Include timespec.h first, for interface check.
14553         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
14554         now assume the sys_time module.
14555         * lib/tempname.c: Likewise.
14556         * lib/timespec.h: Likewise.
14557         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
14558         needed.
14559         * lib/strftime.c: Likewise.
14560         * lib/timespec.h: Likewise.
14561         * lib/posixtm.c: Include posixtm.h first, for interface check.
14562         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
14563         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
14564         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
14565         * lib/sys_time_.h: New file.
14566         * lib/timespec.h (struct timespec): Use long int, not long.
14567         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
14568         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
14569         Remove obsolescent call to AC_HEADER_TIME.
14570         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
14571         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14572         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
14573         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
14574         Likewise.
14575         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
14576         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
14577         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
14578         into the sys_time module.  Check for gettimeofday just once.
14579         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
14580         for gettimeofday signature to just check the signature.  Merely
14581         compile it, since linking doesn't test signature.  Improve test for
14582         whether gettimeofday.o is actually needed.
14583         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
14584         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
14585         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
14586         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14587         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
14588         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
14589         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
14590         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
14591         than worrying about sys/time.h.
14592         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
14593         Don't bother worrying about TIME_WITH_SYS_TIME.
14594         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
14595         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
14596         * m4/sys_time_h.m4: New file.
14597         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
14598         Don't include sys/time.h.  Return from main rather than exiting.
14599         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
14600         all uses changed.
14601         * modules/gethrxtime (Depends-on): Add sys_time.
14602         * modules/gettime (Depends-on): Likewise.
14603         * modules/gettimeofday (Depends-on): Likewise.
14604         * modules/nanosleep (Depends-on): Likewise.
14605         * modules/settime (Depends-on): Likewise.
14606         * modules/tempname (Depends-on): Likewise.
14607         * modules/utimens (Depends-on): Likewise.
14608         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
14609         (Include:) Change back to <sys/time.h>.
14610         (Maintainer:) Add self.
14611         * modules/sys_time: New file.
14612         * modules/tempname (Depends-on): Add gettimeofday.
14613         * tests/test-gettimeofday.c: Include <sys/time.h>
14614         rather than gettimeofday.h.
14615
14616 2007-01-17  Bruno Haible  <bruno@clisp.org>
14617
14618         * gnulib-tool (func_get_license): Revert last patch. Instead, let
14619         the license default to GPL.
14620         (func_create_testdir): Don't complain if a module is LGPL and its
14621         tests module depends on GPLed modules.
14622
14623 2007-01-17  Bruno Haible  <bruno@clisp.org>
14624
14625         * lib/gettimeofday.c (gettimeofday): Add code for the case
14626         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
14627         maximum possible value for tv->tv_usec, rather than the minimum one.
14628
14629 2005-10-08  Martin Lambers  <marlam@marlam.de>
14630 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
14631 2007-01-16  Bruno Haible  <bruno@clisp.org>
14632
14633         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
14634         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
14635         gl_FUNC_GETTIMEOFDAY.
14636         (Include): Add gettimeofday.h.
14637         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
14638         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
14639         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
14640         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
14641         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
14642         * lib/gettimeofday.h: New file.
14643         * lib/gettimeofday.c: Include <sys/timeb.h>.
14644         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
14645         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14646         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
14647         fall back on time().
14648
14649         * tests/test-gettimeofday.c: New file.
14650         * modules/gettimeofday-tests: New file.
14651
14652 2007-01-16  Eric Blake  <ebb9@byu.net>
14653
14654         * modules/fnmatch (Depends-on): Depend on wchar.
14655         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
14656         * m4/fnmatch.m4: Likewise.
14657         * modules/mbchar (Makefile.am): Assume <wchar.h>.
14658         * m4/mbchar.m4: Likewise.
14659         * modules/mbswidth (Depends-on): Depend on wchar.
14660         * lib/mbswidth.c: Assume <wchar.h>.
14661         * m4/mbswidth.m4: Likewise.
14662         * modules/quotearg (Depends-on): Depend on wchar.
14663         * lib/quotearg.c: Assume <wchar.h>.
14664         * m4/quotearg.m4: Likewise.
14665         * modules/regex (Depends-on): Depend on wchar.
14666         * lib/regex_internal.h: Assume <wchar.h>.
14667         * m4/regex.m4: Likewise.
14668         * modules/stdint (Depends-on): Depend on wchar.
14669         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
14670         * m4/stdint.m4: Likewise.
14671         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
14672         * modules/strftime (Depends-on): Depend on wchar.
14673         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
14674         * modules/strtol (Depends-on): Depend on wchar.
14675         * lib/strtol.c: Assume <wchar.h>.
14676         * modules/wcwidth (Depends-on): Depend on wchar.
14677         * lib/wcwidth.h: Assume <wchar.h>.
14678         * m4/wcwidth.m4: Likewise.
14679
14680 2007-01-16  Bruno Haible  <bruno@clisp.org>
14681
14682         * modules/csharpexec-script: New, created from...
14683         * modules/csharpexec: ... this.
14684
14685 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
14686
14687         * modules/javaexec-script: New, created from...
14688         * modules/javaexec: ... this.
14689
14690 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14691
14692         * modules/poll (Dependencies): Add sys_select.
14693
14694 2007-01-15  Jim Meyering  <jim@meyering.net>
14695
14696         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
14697         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
14698         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
14699         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
14700
14701 2007-01-15  Bruno Haible  <bruno@clisp.org>
14702
14703         * modules/striconveh: New file.
14704         * lib/striconveh.h: New file.
14705         * lib/striconveh.c: New file.
14706         * MODULES.html.sh (Internationalization functions): Add striconveh.
14707
14708         * modules/striconveh-tests: New file.
14709         * tests/test-striconveh.c: New file.
14710
14711 2007-01-15  Bruno Haible  <bruno@clisp.org>
14712
14713         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
14714         not from GNU libiconv or GNU libc.
14715
14716 2007-01-15  Bruno Haible  <bruno@clisp.org>
14717
14718         * doc/gnulib-intro.texi (Copyright): Explain the different license
14719         terms for module descriptions, autoconf macros, tests, documentation.
14720
14721 2007-01-14  Bruno Haible  <bruno@clisp.org>
14722
14723         * modules/striconv-tests: New file.
14724         * tests/test-striconv.c: New file.
14725
14726 2007-01-14  Bruno Haible  <bruno@clisp.org>
14727
14728         * modules/iconv-tests: New file.
14729         * tests/test-iconv.c: New file.
14730
14731 2007-01-14  Bruno Haible  <bruno@clisp.org>
14732
14733         * gnulib-tool (func_get_license): For test modules, use the license of
14734         the main module.
14735
14736 2007-01-14  Bruno Haible  <bruno@clisp.org>
14737
14738         * modules/iconv (Include): Clarify that <iconv.h> can only be included
14739         if iconv is found to exist.
14740
14741 2007-01-14  Bruno Haible  <bruno@clisp.org>
14742
14743         * modules/c-ctype-tests: New file.
14744         * tests/test-c-ctype.c: New file.
14745
14746 2007-01-14  Bruno Haible  <bruno@clisp.org>
14747
14748         * modules/binary-io-tests: New file.
14749         * tests/test-binary-io.sh: New file.
14750         * tests/test-binary-io.c: New file.
14751
14752 2007-01-14  Bruno Haible  <bruno@clisp.org>
14753
14754         * modules/array-oset-tests: New file.
14755         * tests/test-array_oset.c: New file.
14756
14757 2007-01-14  Bruno Haible  <bruno@clisp.org>
14758
14759         * modules/array-list-tests: New file.
14760         * tests/test-array_list.c: New file.
14761
14762 2007-01-14  Bruno Haible  <bruno@clisp.org>
14763
14764         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
14765         and make.
14766         Reported by Simon Josefsson in
14767         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
14768
14769 2007-01-14  Bruno Haible  <bruno@clisp.org>
14770
14771         * modules/allocsa-tests: New file.
14772         * tests/test-allocsa.c: New file.
14773
14774 2007-01-14  Bruno Haible  <bruno@clisp.org>
14775
14776         * modules/fchdir (Depends-on): Add absolute-header.
14777         * modules/unistd (Depends-on): Likewise.
14778
14779 2006-12-30  Bruno Haible  <bruno@clisp.org>
14780
14781         * modules/fchdir: New file.
14782         * modules/unistd (Files): Add lib/unistd_.h.
14783         (Makefile.am): Generate unistd.h from unistd_.h.
14784         * lib/fchdir.c: New file.
14785         * lib/dirent_.h: New file.
14786         * lib/unistd_.h: New file.
14787         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
14788         * m4/fchdir.m4: New file.
14789         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
14790         (gl_HEADER_UNISTD): Invoke it.
14791         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
14792         function.
14793         * lib/backupfile.c (opendir, closedir): Undefine.
14794         * lib/chown.c (open, close): Undefine.
14795         * lib/clean-temp.c (open, close): Undefine.
14796         * lib/copy-file.c (open, close): Undefine.
14797         * lib/execute.c (open, close): Undefine.
14798         * lib/fsusage.c (open, close): Undefine.
14799         * lib/gc-gnulib.c (open, close): Undefine.
14800         * lib/getcwd.c (opendir, closedir): Undefine.
14801         * lib/glob.c (opendir, closedir): Undefine.
14802         * lib/javacomp.c (open, close): Undefine.
14803         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
14804         * lib/openat-proc.c (open, close): Undefine.
14805         * lib/pagealign_alloc.c (open, close): Undefine.
14806         * lib/pipe.c (open, close): Undefine.
14807         * lib/progreloc.c (open, close): Undefine.
14808         * lib/savedir.c (opendir, closedir): Undefine.
14809         * lib/utime.c (open, close): Undefine.
14810         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
14811
14812 2007-01-10  Bruno Haible  <bruno@clisp.org>
14813
14814         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
14815
14816 2007-01-12  Eric Blake  <ebb9@byu.net>
14817
14818         Provide a robust <wchar.h>.  Further simplifications are now
14819         possible in other modules, but not included here.
14820         * modules/wchar: New module.
14821         * m4/wchar.m4: New file.
14822         * lib/wchar_.h: Likewise.
14823         * modules/mbchar (Depends-on): Depend on wchar, as the first use
14824         of the new module.
14825         * MODULES.html.sh (Extended multibyte and wide character utilities):
14826         New section.
14827
14828 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
14829
14830         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
14831         to a reasonable default for memory allocation.
14832         (xreadlink): Don't allocate a huge buffer, to work around a buggy
14833         file system that reports garbage st_size values for symlinks.
14834         Problem reported by Liyang Hu.
14835
14836 2007-01-11  Simon Josefsson  <simon@josefsson.org>
14837
14838         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
14839         Emacs .#* auto-save files).
14840
14841 2007-01-11  Bruno Haible  <bruno@clisp.org>
14842
14843         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
14844         directory.
14845
14846 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14847
14848         Use @...@ consistently in lib/wctype_.h.
14849         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
14850         on it being set to 1 or 0.
14851         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
14852         go back to AC_SUBSTing it.
14853         * modules/wctype (Makefile.am): Undo previous change.
14854
14855 2007-01-10  Eric Blake  <ebb9@byu.net>
14856
14857         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
14858         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
14859         * modules/wctype (Makefile.am): Likewise.
14860         Reported by Chris McGuire.
14861
14862 2007-01-10  Jim Meyering  <jim@meyering.net>
14863
14864         fts.c: a small readability/maintainability improvement
14865         * lib/fts.c (fts_read): Make this code slightly more readable and
14866         maintainable by hoisting the "sp->fts_cur = p" assignments to
14867         immediately follow the statements that set P.  Derived from
14868         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
14869
14870 2007-01-10  Eric Blake  <ebb9@byu.net>
14871
14872         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
14873         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
14874         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
14875         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
14876         Reported by Chris McGuire.
14877
14878 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14879
14880         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
14881         in sed script.
14882
14883 2007-01-09  Bruno Haible  <bruno@clisp.org>
14884
14885         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
14886         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
14887         variables.
14888         (func_module): Use them.
14889
14890 2007-01-09  Bruno Haible  <bruno@clisp.org>
14891
14892         * modules/unistr/base: New file.
14893         * lib/unistr.h: New file.
14894
14895         * modules/unistr/u8-to-u16: New file.
14896         * lib/unistr/u8-to-u16.c: New file.
14897
14898         * modules/unistr/u8-to-u32: New file.
14899         * lib/unistr/u8-to-u32.c: New file.
14900
14901         * modules/unistr/u16-to-u8: New file.
14902         * lib/unistr/u16-to-u8.c: New file.
14903
14904         * modules/unistr/u16-to-u32: New file.
14905         * lib/unistr/u16-to-u32.c: New file.
14906
14907         * modules/unistr/u32-to-u8: New file.
14908         * lib/unistr/u32-to-u8.c: New file.
14909
14910         * modules/unistr/u32-to-u16: New file.
14911         * lib/unistr/u32-to-u16.c: New file.
14912
14913         * modules/unistr/u8-check: New file.
14914         * modules/unistr/u16-check: New file.
14915         * modules/unistr/u32-check: New file.
14916         * lib/unistr/u8-check.c: New file.
14917         * lib/unistr/u16-check.c: New file.
14918         * lib/unistr/u32-check.c: New file.
14919
14920         * modules/unistr/u8-chr: New file.
14921         * modules/unistr/u16-chr: New file.
14922         * modules/unistr/u32-chr: New file.
14923         * lib/unistr/u8-chr.c: New file.
14924         * lib/unistr/u16-chr.c: New file.
14925         * lib/unistr/u32-chr.c: New file.
14926
14927         * modules/unistr/u8-cmp: New file.
14928         * modules/unistr/u16-cmp: New file.
14929         * modules/unistr/u32-cmp: New file.
14930         * lib/unistr/u8-cmp.c: New file.
14931         * lib/unistr/u16-cmp.c: New file.
14932         * lib/unistr/u32-cmp.c: New file.
14933
14934         * modules/unistr/u8-cpy: New file.
14935         * modules/unistr/u16-cpy: New file.
14936         * modules/unistr/u32-cpy: New file.
14937         * lib/unistr/u8-cpy.c: New file.
14938         * lib/unistr/u16-cpy.c: New file.
14939         * lib/unistr/u32-cpy.c: New file.
14940         * lib/unistr/u-cpy.h: New file.
14941
14942         * modules/unistr/u8-cpy-alloc: New file.
14943         * modules/unistr/u16-cpy-alloc: New file.
14944         * modules/unistr/u32-cpy-alloc: New file.
14945         * lib/unistr/u8-cpy-alloc.c: New file.
14946         * lib/unistr/u16-cpy-alloc.c: New file.
14947         * lib/unistr/u32-cpy-alloc.c: New file.
14948         * lib/unistr/u-cpy-alloc.h: New file.
14949
14950         * modules/unistr/u8-endswith: New file.
14951         * modules/unistr/u16-endswith: New file.
14952         * modules/unistr/u32-endswith: New file.
14953         * lib/unistr/u8-endswith.c: New file.
14954         * lib/unistr/u16-endswith.c: New file.
14955         * lib/unistr/u32-endswith.c: New file.
14956         * lib/unistr/u-endswith.h: New file.
14957
14958         * modules/unistr/u8-mblen: New file.
14959         * modules/unistr/u16-mblen: New file.
14960         * modules/unistr/u32-mblen: New file.
14961         * lib/unistr/u8-mblen.c: New file.
14962         * lib/unistr/u16-mblen.c: New file.
14963         * lib/unistr/u32-mblen.c: New file.
14964
14965         * modules/unistr/u8-mbtouc: New file.
14966         * modules/unistr/u16-mbtouc: New file.
14967         * modules/unistr/u32-mbtouc: New file.
14968         * lib/unistr/u8-mbtouc.c: New file.
14969         * lib/unistr/u16-mbtouc.c: New file.
14970         * lib/unistr/u32-mbtouc.c: New file.
14971
14972         * modules/unistr/u8-mbtouc-safe: New file.
14973         * modules/unistr/u16-mbtouc-safe: New file.
14974         * modules/unistr/u32-mbtouc-safe: New file.
14975         * lib/unistr/u8-mbtouc-safe.c: New file.
14976         * lib/unistr/u16-mbtouc-safe.c: New file.
14977         * lib/unistr/u32-mbtouc-safe.c: New file.
14978
14979         * modules/unistr/u8-move: New file.
14980         * modules/unistr/u16-move: New file.
14981         * modules/unistr/u32-move: New file.
14982         * lib/unistr/u8-move.c: New file.
14983         * lib/unistr/u16-move.c: New file.
14984         * lib/unistr/u32-move.c: New file.
14985         * lib/unistr/u-move.h: New file.
14986
14987         * modules/unistr/u8-next: New file.
14988         * modules/unistr/u16-next: New file.
14989         * modules/unistr/u32-next: New file.
14990         * lib/unistr/u8-next.c: New file.
14991         * lib/unistr/u16-next.c: New file.
14992         * lib/unistr/u32-next.c: New file.
14993
14994         * modules/unistr/u8-prev: New file.
14995         * modules/unistr/u16-prev: New file.
14996         * modules/unistr/u32-prev: New file.
14997         * lib/unistr/u8-prev.c: New file.
14998         * lib/unistr/u16-prev.c: New file.
14999         * lib/unistr/u32-prev.c: New file.
15000
15001         * modules/unistr/u8-set: New file.
15002         * modules/unistr/u16-set: New file.
15003         * modules/unistr/u32-set: New file.
15004         * lib/unistr/u8-set.c: New file.
15005         * lib/unistr/u16-set.c: New file.
15006         * lib/unistr/u32-set.c: New file.
15007         * lib/unistr/u-set.h: New file.
15008
15009         * modules/unistr/u8-startswith: New file.
15010         * modules/unistr/u16-startswith: New file.
15011         * modules/unistr/u32-startswith: New file.
15012         * lib/unistr/u8-startswith.c: New file.
15013         * lib/unistr/u16-startswith.c: New file.
15014         * lib/unistr/u32-startswith.c: New file.
15015         * lib/unistr/u-startswith.h: New file.
15016
15017         * modules/unistr/u8-stpcpy: New file.
15018         * modules/unistr/u16-stpcpy: New file.
15019         * modules/unistr/u32-stpcpy: New file.
15020         * lib/unistr/u8-stpcpy.c: New file.
15021         * lib/unistr/u16-stpcpy.c: New file.
15022         * lib/unistr/u32-stpcpy.c: New file.
15023         * lib/unistr/u-stpcpy.h: New file.
15024
15025         * modules/unistr/u8-stpncpy: New file.
15026         * modules/unistr/u16-stpncpy: New file.
15027         * modules/unistr/u32-stpncpy: New file.
15028         * lib/unistr/u8-stpncpy.c: New file.
15029         * lib/unistr/u16-stpncpy.c: New file.
15030         * lib/unistr/u32-stpncpy.c: New file.
15031         * lib/unistr/u-stpncpy.h: New file.
15032
15033         * modules/unistr/u8-strcat: New file.
15034         * modules/unistr/u16-strcat: New file.
15035         * modules/unistr/u32-strcat: New file.
15036         * lib/unistr/u8-strcat.c: New file.
15037         * lib/unistr/u16-strcat.c: New file.
15038         * lib/unistr/u32-strcat.c: New file.
15039         * lib/unistr/u-strcat.h: New file.
15040
15041         * modules/unistr/u8-strchr: New file.
15042         * modules/unistr/u16-strchr: New file.
15043         * modules/unistr/u32-strchr: New file.
15044         * lib/unistr/u8-strchr.c: New file.
15045         * lib/unistr/u16-strchr.c: New file.
15046         * lib/unistr/u32-strchr.c: New file.
15047
15048         * modules/unistr/u8-strcmp: New file.
15049         * modules/unistr/u16-strcmp: New file.
15050         * modules/unistr/u32-strcmp: New file.
15051         * lib/unistr/u8-strcmp.c: New file.
15052         * lib/unistr/u16-strcmp.c: New file.
15053         * lib/unistr/u32-strcmp.c: New file.
15054
15055         * modules/unistr/u8-strcpy: New file.
15056         * modules/unistr/u16-strcpy: New file.
15057         * modules/unistr/u32-strcpy: New file.
15058         * lib/unistr/u8-strcpy.c: New file.
15059         * lib/unistr/u16-strcpy.c: New file.
15060         * lib/unistr/u32-strcpy.c: New file.
15061         * lib/unistr/u-strcpy.h: New file.
15062
15063         * modules/unistr/u8-strcspn: New file.
15064         * modules/unistr/u16-strcspn: New file.
15065         * modules/unistr/u32-strcspn: New file.
15066         * lib/unistr/u8-strcspn.c: New file.
15067         * lib/unistr/u16-strcspn.c: New file.
15068         * lib/unistr/u32-strcspn.c: New file.
15069         * lib/unistr/u-strcspn.h: New file.
15070
15071         * modules/unistr/u8-strdup: New file.
15072         * modules/unistr/u16-strdup: New file.
15073         * modules/unistr/u32-strdup: New file.
15074         * lib/unistr/u8-strdup.c: New file.
15075         * lib/unistr/u16-strdup.c: New file.
15076         * lib/unistr/u32-strdup.c: New file.
15077         * lib/unistr/u-strdup.h: New file.
15078
15079         * modules/unistr/u8-strlen: New file.
15080         * modules/unistr/u16-strlen: New file.
15081         * modules/unistr/u32-strlen: New file.
15082         * lib/unistr/u8-strlen.c: New file.
15083         * lib/unistr/u16-strlen.c: New file.
15084         * lib/unistr/u32-strlen.c: New file.
15085         * lib/unistr/u-strlen.h: New file.
15086
15087         * modules/unistr/u8-strmblen: New file.
15088         * modules/unistr/u16-strmblen: New file.
15089         * modules/unistr/u32-strmblen: New file.
15090         * lib/unistr/u8-strmblen.c: New file.
15091         * lib/unistr/u16-strmblen.c: New file.
15092         * lib/unistr/u32-strmblen.c: New file.
15093
15094         * modules/unistr/u8-strmbtouc: New file.
15095         * modules/unistr/u16-strmbtouc: New file.
15096         * modules/unistr/u32-strmbtouc: New file.
15097         * lib/unistr/u8-strmbtouc.c: New file.
15098         * lib/unistr/u16-strmbtouc.c: New file.
15099         * lib/unistr/u32-strmbtouc.c: New file.
15100
15101         * modules/unistr/u8-strncat: New file.
15102         * modules/unistr/u16-strncat: New file.
15103         * modules/unistr/u32-strncat: New file.
15104         * lib/unistr/u8-strncat.c: New file.
15105         * lib/unistr/u16-strncat.c: New file.
15106         * lib/unistr/u32-strncat.c: New file.
15107         * lib/unistr/u-strncat.h: New file.
15108
15109         * modules/unistr/u8-strncmp: New file.
15110         * modules/unistr/u16-strncmp: New file.
15111         * modules/unistr/u32-strncmp: New file.
15112         * lib/unistr/u8-strncmp.c: New file.
15113         * lib/unistr/u16-strncmp.c: New file.
15114         * lib/unistr/u32-strncmp.c: New file.
15115
15116         * modules/unistr/u8-strncpy: New file.
15117         * modules/unistr/u16-strncpy: New file.
15118         * modules/unistr/u32-strncpy: New file.
15119         * lib/unistr/u8-strncpy.c: New file.
15120         * lib/unistr/u16-strncpy.c: New file.
15121         * lib/unistr/u32-strncpy.c: New file.
15122         * lib/unistr/u-strncpy.h: New file.
15123
15124         * modules/unistr/u8-strnlen: New file.
15125         * modules/unistr/u16-strnlen: New file.
15126         * modules/unistr/u32-strnlen: New file.
15127         * lib/unistr/u8-strnlen.c: New file.
15128         * lib/unistr/u16-strnlen.c: New file.
15129         * lib/unistr/u32-strnlen.c: New file.
15130         * lib/unistr/u-strnlen.h: New file.
15131
15132         * modules/unistr/u8-strpbrk: New file.
15133         * modules/unistr/u16-strpbrk: New file.
15134         * modules/unistr/u32-strpbrk: New file.
15135         * lib/unistr/u8-strpbrk.c: New file.
15136         * lib/unistr/u16-strpbrk.c: New file.
15137         * lib/unistr/u32-strpbrk.c: New file.
15138         * lib/unistr/u-strpbrk.h: New file.
15139
15140         * modules/unistr/u8-strrchr: New file.
15141         * modules/unistr/u16-strrchr: New file.
15142         * modules/unistr/u32-strrchr: New file.
15143         * lib/unistr/u8-strrchr.c: New file.
15144         * lib/unistr/u16-strrchr.c: New file.
15145         * lib/unistr/u32-strrchr.c: New file.
15146
15147         * modules/unistr/u8-strspn: New file.
15148         * modules/unistr/u16-strspn: New file.
15149         * modules/unistr/u32-strspn: New file.
15150         * lib/unistr/u8-strspn.c: New file.
15151         * lib/unistr/u16-strspn.c: New file.
15152         * lib/unistr/u32-strspn.c: New file.
15153         * lib/unistr/u-strspn.h: New file.
15154
15155         * modules/unistr/u8-strstr: New file.
15156         * modules/unistr/u16-strstr: New file.
15157         * modules/unistr/u32-strstr: New file.
15158         * lib/unistr/u8-strstr.c: New file.
15159         * lib/unistr/u16-strstr.c: New file.
15160         * lib/unistr/u32-strstr.c: New file.
15161         * lib/unistr/u-strstr.h: New file.
15162
15163         * modules/unistr/u8-strtok: New file.
15164         * modules/unistr/u16-strtok: New file.
15165         * modules/unistr/u32-strtok: New file.
15166         * lib/unistr/u8-strtok.c: New file.
15167         * lib/unistr/u16-strtok.c: New file.
15168         * lib/unistr/u32-strtok.c: New file.
15169         * lib/unistr/u-strtok.h: New file.
15170
15171         * modules/unistr/u8-uctomb: New file.
15172         * modules/unistr/u16-uctomb: New file.
15173         * modules/unistr/u32-uctomb: New file.
15174         * lib/unistr/u8-uctomb.c: New file.
15175         * lib/unistr/u16-uctomb.c: New file.
15176         * lib/unistr/u32-uctomb.c: New file.
15177
15178         * MODULES.html.sh (Unicode string functions): Add the new modules.
15179
15180 2007-01-08  Bruno Haible  <bruno@clisp.org>
15181
15182         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
15183         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
15184         subdirectories.
15185
15186 2007-01-08  Karl Berry  <karl@gnu.org>
15187
15188         * doc/error.texi: mention that main() fns must set program_name
15189         when progname is used.
15190
15191 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
15192
15193         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
15194         WCTYPE_H is empty, for the benefit of builds from non-distclean
15195         directories.  Problem reported by Eric Blake in
15196         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
15197
15198 2007-01-08  Bruno Haible  <bruno@clisp.org>
15199
15200         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
15201         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
15202         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
15203         PROVIDE_CANONICALIZE_FILENAME_MODE.
15204         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
15205
15206 2007-01-08  Bruno Haible  <bruno@clisp.org>
15207
15208         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
15209         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
15210         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
15211         * lib/fts.c: Likewise.
15212         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
15213
15214 2006-12-25  Bruno Haible  <bruno@clisp.org>
15215
15216         * modules/utf8-ucs4-safe: New file.
15217         * lib/utf8-ucs4-safe.h: New file.
15218         * lib/unistr/utf8-ucs4-safe.c: New file.
15219
15220         * modules/utf16-ucs4-safe: New file.
15221         * lib/utf16-ucs4-safe.h: New file.
15222         * lib/unistr/utf16-ucs4-safe.c: New file.
15223
15224         * MODULES.html.sh (Unicode string functions): Add the new modules.
15225
15226 2007-01-08  Bruno Haible  <bruno@clisp.org>
15227
15228         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
15229         (Depends-on): Add unitypes.
15230         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15231         (u8_mbtouc_aux): Move out to separate file.
15232         (u8_mbtouc): Use ucs4_t, uint8_t types.
15233         * lib/unistr/utf8-ucs4.c: New file.
15234
15235         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
15236         (Depends-on): Add unitypes.
15237         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15238         (u16_mbtouc_aux): Move out to separate file.
15239         (u16_mbtouc): Use ucs4_t, uint16_t types.
15240         * lib/unistr/utf16-ucs4.c: New file.
15241
15242         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
15243         (Depends-on): Add unitypes.
15244         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
15245         (u8_uctomb_aux): Move out to separate file.
15246         (u8_uctomb): Use ucs4_t, uint8_t types.
15247         * lib/unistr/ucs4-utf8.c: New file.
15248
15249         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
15250         (Depends-on): Add unitypes.
15251         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
15252         (u16_uctomb_aux): Move out to separate file.
15253         (u16_uctomb): Use ucs4_t, uint16_t types.
15254         * lib/unistr/ucs4-utf16.c: New file.
15255
15256 2006-12-25  Bruno Haible  <bruno@clisp.org>
15257
15258         * modules/unitypes: New file.
15259         * lib/unitypes.h: New file.
15260         * MODULES.html.sh (func_all_modules): New section "Unicode string
15261         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
15262         this section. Add unitypes.
15263
15264 2007-01-08  Bruno Haible  <bruno@clisp.org>
15265
15266         Avoid variable names that conflict with those from libtool.
15267         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
15268         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
15269         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
15270         library_names_spec to acl_library_names_spec, hardcode_* to
15271         acl_hardcode_*.
15272         Reported by Ralf Wildenhues.
15273
15274 2007-01-08  Bruno Haible  <bruno@clisp.org>
15275
15276         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
15277         definition.
15278         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
15279         definition.
15280         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
15281         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
15282         definition.
15283         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
15284         definition.
15285         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
15286         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
15287         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
15288         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
15289         definition.
15290         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
15291         definition.
15292         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
15293         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
15294         GC_USE_<algorithm>.
15295         * lib/gc-libgcrypt.c: Likewise.
15296         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
15297         * modules/gc-arctwo (configure.ac): Likewise.
15298         * modules/gc-des (configure.ac): Likewise.
15299         * modules/gc-hmac-md5 (configure.ac): Likewise.
15300         * modules/gc-hmac-sha1 (configure.ac): Likewise.
15301         * modules/gc-md2 (configure.ac): Likewise.
15302         * modules/gc-md4 (configure.ac): Likewise.
15303         * modules/gc-md5 (configure.ac): Likewise.
15304         * modules/gc-random (configure.ac): Likewise.
15305         * modules/gc-rijndael (configure.ac): Likewise.
15306         * modules/gc-sha1 (configure.ac): Likewise.
15307
15308 2007-01-08  Bruno Haible  <bruno@clisp.org>
15309
15310         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
15311         macro definition.
15312         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
15313         definition.
15314         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
15315         definition.
15316         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
15317         * modules/fcntl-safer (configure.ac): Likewise.
15318         * modules/fopen-safer (configure.ac): Likewise.
15319         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
15320         GNULIB_FWRITEERROR macro definition.
15321
15322 2007-01-08  Bruno Haible  <bruno@clisp.org>
15323
15324         * m4/gnulib-common.m4: New file.
15325         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
15326         (func_get_filelist): Add m4/gnulib-common.m4.
15327
15328 2007-01-08  Bruno Haible  <bruno@clisp.org>
15329
15330         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
15331         command.
15332
15333 2007-01-08  Jim Meyering  <jim@meyering.net>
15334
15335         Use a more robust test for a "can't happen" condition.
15336         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
15337         narrowed the st_size value.  Presuming the "can't happen" condition
15338         is true, that narrowing could conceivably convert an invalid st_size
15339         value into a valid one.  Instead, use a change based on Matthew
15340         Woehlke's original patch.
15341
15342         Slight readability improvement: use an assert-like macro
15343         in place of literal "abort ()" uses.
15344         * lib/fts.c (fts_assert): Define.
15345         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
15346         Use this macro instead of a bare 'abort'.
15347
15348 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
15349
15350         Don't worry about using IRIX 5.3's wctype.h broken definitions;
15351         simply work around them.
15352         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
15353         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
15354         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
15355         declaring.
15356         Don't bother to define as macros, since the standard doesn't require it.
15357         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
15358         longer worry about IRIX 5.3.
15359         (HAVE_WCTYPE_CTMP_BUG): Remove.
15360
15361 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15362
15363         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
15364         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
15365         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
15366         Problems reported by Georg Schwarz for IRIX 5.3.
15367
15368         * gnulib-tool (autoconf_minversion): Take the maximum version number
15369         found, not the minimum.  Problem reported by James Youngman.
15370
15371 2007-01-03  Karl Berry  <karl@gnu.org>
15372
15373         * doc/error.texi: new file, explaining interaction with progname.
15374         * doc/gnulib.texi: include it.  Update copyright.
15375
15376 2007-01-03  Simon Josefsson  <simon@josefsson.org>
15377
15378         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
15379         AC_CANONICAL_HOST, to improve autobuild outputs.
15380
15381 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
15382             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
15383
15384         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
15385         sockets, server sockets, and other file descriptors.  Count errors
15386         to compute the return value.  Reorder the code a bit to be easier
15387         to follow.  Don't set event bits that were not requested (except
15388         POLLERR and POLLHUP).
15389
15390 2007-01-01  Bruno Haible  <bruno@clisp.org>
15391
15392         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
15393
15394 2007-01-03  Jim Meyering  <jim@meyering.net>
15395
15396         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
15397
15398 2007-01-02  Bruno Haible  <bruno@clisp.org>
15399
15400         * modules/settime (Include): Require timespec.h.
15401         * modules/nanosleep (Include): Likewise.
15402
15403 2007-01-01  Bruno Haible  <bruno@clisp.org>
15404
15405         * gnulib-tool (func_emit_copyright_notice): Bump year.
15406         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
15407
15408 2007-01-01  Bruno Haible  <bruno@clisp.org>
15409
15410         Improve support for OpenBSD.
15411         * build-aux/config.rpath (libname_spec): Export.
15412         (library_names_spec): New variable. Export.
15413         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
15414         library_names_spec from the config.rpath output. Locate shared library
15415         through the name pattern in library_names_spec.
15416
15417 2007-01-01  Eric Blake  <ebb9@byu.net>
15418
15419         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
15420
15421 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
15422
15423         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
15424         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
15425         assume the C locale, and avoid an "eval" that could cause trouble.
15426         Problem with SORT reported by Bob Proulx.
15427
15428         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
15429         Define.  Trivial patch from Henning Nielsen Lund, originally
15430         sent to bug-grep@gnu.org today.
15431
15432 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
15433
15434         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
15435         struct stat.  Problem reported by Henning Nielsen Lund.
15436         * lib/acl.c: Include acl.h first, to check interface.  Don't
15437         bother to include sys/types.h and sys/stat.h again.
15438
15439 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15440
15441         Import the following change from libc; problem reported by
15442         Sven Verdoolaege.
15443
15444         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
15445
15446         [BZ #1373]
15447         * lib/argp.h: Remove __NTH for __argp_usage inline function.
15448
15449 2006-12-28  Jim Meyering  <jim@meyering.net>
15450
15451         * build-aux/announce-gen: Do not assume that the package
15452         builds any of tar.gz, tar.bz2, and .xdelta files.
15453         Suggestion from Simon Josefsson.
15454
15455 2006-12-28  Simon Josefsson  <simon@josefsson.org>
15456
15457         * modules/announce-gen: New file.
15458
15459 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
15460
15461         * lib/mbchar.h: Just include <wctype.h>; the wctype module
15462         handles its gotchas now.
15463         * lib/mbswidth.c: Likewise.
15464         * lib/wcwidth.h: Likewise.
15465         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
15466         and iswcntrl; the wctype module does this stuff now.
15467         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
15468         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
15469         * modules/mbchar (Depends-on): Add wctype.
15470         * modules/mbswidth (Depends-on): Likewise.
15471         * modules/wcwidth (Depends-on): Likewise.
15472
15473 2006-12-27  Eric Blake  <ebb9@byu.net>
15474
15475         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
15476         module uses more than what <wctype.h> is required to provide.
15477
15478 2006-12-26  Eric Blake  <ebb9@byu.net>
15479
15480         * gnulib-tool (sed_extract_prog): Avoid space-tab.
15481
15482 2006-12-26  Eric Blake  <ebb9@byu.net>
15483
15484         * modules/absolute-header: New module.
15485         * modules/fcntl (Depends-on): Depend on it.
15486         * modules/inttypes (Depends-on): Likewise.
15487         * modules/stdint (Depends-on): Likewise.
15488         * modules/sys_stat (Depends-on): Likewise.
15489         * modules/wctype (Depends-on): Likewise.
15490         * MODULES.html.sh (Support for building libraries and
15491         executables): Document it.
15492
15493 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
15494
15495         * gnulib-tool (SED): Remove, undoing previous change.
15496         The problem was that it broke coreutils on Solaris, because
15497         "sed --posix" leaked into a makefile.
15498         (sed): New alias, if 'alias' and GNU sed.
15499
15500 2006-12-24  Jim Meyering  <jim@meyering.net>
15501
15502         Work around an fchownat bug in glibc-2.4:
15503         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
15504         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
15505         in spite of the -P option.
15506         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
15507         New macros.
15508         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
15509         * modules/openat (Files): Add lib/fchownat.c.
15510         * lib/openat.c (fchownat): Don't define here.  Move to...
15511         * lib/fchownat.c: ...this new file.
15512
15513 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15514
15515         Fix bug reported by Bruno Haible in
15516         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
15517         where quotearg.c didn't compile on Mac OS X 10.2 because it
15518         lacks <wchar.h> and wint_t.
15519         * lib/wctype_.h (__wctype_wint_t): New type.
15520         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
15521         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
15522         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
15523         Arg is now of type __wctype_wint_t, not wint_t.
15524         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
15525         substitute HAVE_WINT_T.
15526         * modules/wctype (Files): Add m4/wint_t.m4.
15527         (wctype.h): Substitute HAVE_WINT_T.
15528
15529 2006-12-23  Bruno Haible  <bruno@clisp.org>
15530
15531         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
15532
15533 2006-12-23  Bruno Haible  <bruno@clisp.org>
15534
15535         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
15536         S_ISLNK.
15537         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
15538         mingw.
15539
15540 2006-12-22  Bruno Haible  <bruno@clisp.org>
15541
15542         * lib/copy-file.c: Include acl.h.
15543         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
15544         Close the file descriptors only after being done with copy_acl.
15545         * modules/copy-file (Depends-on): Add acl.
15546
15547 2006-12-22  Bruno Haible  <bruno@clisp.org>
15548
15549         * gnulib-tool (SED): New variable.
15550         Use $SED instead of sed everywhere.
15551
15552 2006-12-22  Bruno Haible  <bruno@clisp.org>
15553
15554         * modules/no-c++: New file.
15555         * m4/no-c++.m4: New file.
15556         * MODULES.html.sh (Support for building libraries and executables):
15557         Add no-c++.
15558
15559 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
15560
15561         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
15562         Include <limits.h>, and use its INT_MAX to rewrite the
15563         j loop so that it does not overflow 'int'.  Problem reported by
15564         Ralf Wildenhues in
15565         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
15566         Play it safe by shifting left by 1 rather than multiplying by 2,
15567         as GCC is less likely to optimize this away when the value
15568         is signed (when it assumes overflow leads to undefined behavior).
15569         Also, don't assume time_t uses two's complement.
15570
15571 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
15572
15573         * MODULES.html.sh: New module wctype.
15574         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
15575         * lib/fnmatch.c: Don't bother to include <wchar.h> before
15576         <wctype.h>, since the new wctype module should fix this.
15577         * lib/quotearg.c: Include <wctype.h> unconditionally, since
15578         the wctype module should arrange for it.
15579         * lib/regex_internal.h: Likewise.
15580         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
15581         since the wctype module should handle this now.
15582         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
15583         * modules/fnmatch (Depends-on): Add wctype.
15584         * modules/quotearg (Depends-on): Likewise.
15585         * modules/regex (Depends-on): Likewise.
15586
15587 2006-12-19  Bruno Haible  <bruno@clisp.org>
15588
15589         * lib/strdup.h [C++]: Wrap definitions in extern "C".
15590         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
15591
15592 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15593
15594         * modules/savewd (Depends-on): Fix dependency on fcntl.
15595
15596 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15597
15598         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
15599         conforms to C99, rather than relying on the user's environment
15600         setting of STDINT_H.
15601
15602 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15603         and Eric Blake  <ebb9@byu.net>
15604
15605         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
15606         This is more consistent with the other defines here.
15607         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
15608         Port to z/OS.  Problem reported by Paul Gilmartin.
15609         Change local vars to use gl_ prefix rather than ac_.
15610         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
15611         with other defines.
15612         * modules/double-slash-root: New module.
15613         * modules/dirname (Files): Remove m4/double-slash-root.m4.
15614         (Depends-on): Add double-slash-root.
15615         * MODULES.html.sh (File system functions): Mention new module.
15616
15617 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
15618
15619         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
15620         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
15621         This is for the benefit of gzip, which doesn't do i18n.
15622
15623 2006-12-12  Jim Meyering  <jim@meyering.net>
15624
15625         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
15626         Reported by Andreas Schwab <schwab@suse.de>.
15627
15628 2006-12-12  Bruno Haible  <bruno@clisp.org>
15629
15630         Merge these changes.
15631         2006-09-05  Bruno Haible  <bruno@clisp.org>
15632         * lib/iconvme.c (iconv_string): No need to save and restore errno when
15633         iconv_alloc succeeded.
15634         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
15635         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
15636         test for " && dest " at the end - dest is always != NULL there. Call
15637         iconv with 4xNULL arguments initially, to reset the state. Call iconv
15638         with 2xNULL arguments, also to flush the state storage. Handle the
15639         IRIX iconv behaviour. Realloc the final result, to throw away unused
15640         memory.
15641
15642 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
15643
15644         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
15645         and fchmodat unconditionally, since glibc 2.4 has them.
15646         Problem reported by Arkadiusz Miskiewicz.
15647
15648 2006-12-10  Bruno Haible  <bruno@clisp.org>
15649
15650         * gnulib-tool (func_import): Show the include files only for those
15651         modules that are copied and specified.
15652         Reported by Karl Berry.
15653
15654 2006-12-08  Jim Meyering  <jim@meyering.net>
15655
15656         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
15657         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
15658
15659         * build-aux/announce-gen: Add two new options, both optional:
15660         --bootstrap-tools=TOOL_LIST
15661               a comma-separated list of tools, e.g.,
15662               autoconf,automake,bison,gnulib
15663         --gnulib-snapshot-date=DATE
15664               if gnulib is in the bootstrap tool list,
15665               then report this as the snapshot date.
15666               If not specified, use the current date/time.
15667               If you specify a date here, be sure it's UTC.
15668
15669 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15670
15671         * tests/test-argp-2.sh: Fix test to match actual output.
15672         (func_compare): Fix sed script to be portable.
15673
15674 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
15675
15676         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
15677         workaround for this case.  It is not autoconfigured now; offhand
15678         it's hard to see how to autoconfigure it.
15679
15680 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
15681
15682         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
15683         a directory that is about to be chowned.  Such a directory's
15684         initial file permissions should permit the owner only and this
15685         should not be changed until after the chown, since the group and
15686         other bits would be incorrect if they granted permission before
15687         the chown.
15688
15689         Fix porting problem for iswctype reported by Georg Schwarz in:
15690         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
15691         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
15692         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
15693         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
15694         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
15695
15696 2006-12-03  Jim Meyering  <jim@meyering.net>
15697
15698         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
15699         p->fts_statp may not yet be defined.
15700         (fts_read): Instead, set it in the caller, once p->fts_statp is
15701         sure to be defined, and corresponds to a top-level directory.
15702         This bug made du -x fail.  Here's the coreutils test case:
15703         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
15704         Reported by Mike Frysinger.
15705
15706 2006-12-01  Jim Meyering  <jim@meyering.net>
15707
15708         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
15709         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
15710         Reported by Simon Josefsson.
15711
15712 2006-11-30  Jim Meyering  <jim@meyering.net>
15713
15714         * m4/warning.m4: Use the all-permissive copyright notice
15715         recommended by RMS (rather than LGPL).
15716         * m4/vararrays.m4: Likewise.
15717         * m4/flexmember.m4: Likewise.
15718
15719 2006-11-29  Bruno Haible  <bruno@clisp.org>
15720
15721         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
15722         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
15723         using +=.
15724         Reported by Simon Josefsson <simon@josefsson.org>.
15725
15726 2006-11-28  James Youngman <jay@gnu.org>
15727
15728         * README: Advise users that they might find the bug-gnulib@gnu.org
15729         and autotools-announce@gnu.org mailing lists useful.
15730
15731 2006-11-28  Bruno Haible  <bruno@clisp.org>
15732
15733         * m4/ptrdiff_max.m4: Remove file.
15734
15735 2006-11-21  Bruno Haible  <bruno@clisp.org>
15736
15737         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
15738         _AC_COMPUTE_INT.
15739         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15740         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
15741         _AC_COMPUTE_INT.
15742         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15743         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
15744         _AC_COMPUTE_INT.
15745         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15746
15747 2006-11-28  Jim Meyering  <jim@meyering.net>
15748
15749         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
15750         warning from "gcc -Wshadow" about shadowing the builtin.
15751
15752 2006-11-27  Bruno Haible  <bruno@clisp.org>
15753
15754         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
15755         _AC_COMPUTE_INT.
15756         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15757
15758 2006-11-27  Bruno Haible  <bruno@clisp.org>
15759             Paul Eggert  <eggert@cs.ucla.edu>
15760
15761         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
15762
15763 2006-11-26  Bruno Haible  <bruno@clisp.org>
15764
15765         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
15766         noinst_LTLIBRARIES.
15767
15768 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15769             Bruno Haible  <bruno@clisp.org>
15770
15771         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
15772         if compiling with "gcc -ansi".
15773
15774 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15775
15776         Fix some incompatibilities with gcc -ansi -pedantic.
15777         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
15778         if compiling pedantically with GCC, unless it's C99 or later.
15779         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
15780         it mishandles gcc -ansi -pedantic as well.
15781         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
15782         if gcc -pedantic.
15783         * lib/regexec.c (check_node_accept_bytes): Don't use auto
15784         initializers for struct if -pedantic, unless it's C99 or later.
15785
15786 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
15787
15788         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
15789         Don't close an fd more than once. Identical atimes indicate
15790         success, not failure.
15791
15792 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
15793
15794         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
15795
15796 2006-11-23  Jim Meyering  <jim@meyering.net>
15797
15798         * build-aux/announce-gen: New file.  From coreutils.
15799
15800 2006-11-22  Jim Meyering  <jim@meyering.net>
15801
15802         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
15803         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
15804         (fts_read): Use a temporary to narrow the overused st_size member
15805         before using it in a switch statement.  Reported by Matthew Woehlke.
15806
15807         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
15808         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
15809
15810 2006-11-20  Bruno Haible  <bruno@clisp.org>
15811
15812         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
15813         changequote instead of pairs of brackets.
15814         Reported by Andreas Schwab <schwab@suse.de>.
15815
15816 2006-11-21  Jim Meyering  <jim@meyering.net>
15817
15818         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
15819         so as to remain compatible with older compilers.
15820         Patch from Michael Deutschmann.
15821
15822 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15823
15824         * MODULES.html.sh (File system functions): Add openat.
15825
15826         * lib/openat.h (rpl_fstatat): New macro, if
15827         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
15828         (fstatat): Define to rpl_fstatat under the same conditions,
15829         unless COMPILING_FSTATAT.
15830         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
15831         seems to have the bug.
15832         * lib/fstatat.c: New file.
15833         * modules/openat (Files): Add it.
15834
15835 2006-11-20  Bruno Haible  <bruno@clisp.org>
15836
15837         * Makefile: New file.
15838
15839 2006-11-20  Jim Meyering  <jim@meyering.net>
15840
15841         The beginnings of syntax-related checks for gnulib.
15842         * lib/Makefile: New file.
15843         * lib/t-idcache: New script.  Ensure that the two halves of
15844         idcache.c stay in sync.
15845
15846         * lib/idcache.c: Adjust comments in user- and group- portions to
15847         be more accurate, and to be consistent with one another.
15848
15849 2006-11-20  Jim Meyering  <jim@meyering.net>
15850
15851         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
15852         continue using the flexible array member (thus, this module performs
15853         half as many malloc calls), with the addition that...
15854         (getgroup, getuser): Consistently record a non-match via an empty
15855         "name" string, and map an empty string match to a NULL return value.
15856         * modules/idcache (Depends-on): Re-add flexmember.
15857
15858         * lib/idcache.c (getuser): Remove all uses of the register keyword.
15859         (getuidbyname, getgroup, getgidbyname): Likewise.
15860
15861         Use cleaner syntax: NULL rather than 0.
15862         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
15863
15864 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15865
15866         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
15867         It mishandled the case where the group was missing.
15868         Problem reported by Greg Schafer.
15869         * modules/idcache: Likewise.
15870
15871 2006-11-18  Jim Meyering  <jim@meyering.net>
15872
15873         * check-module (%exempt_header): Add exception for some
15874         conditionally-included headers.
15875
15876         * modules/i-ring (Depends-on): Add verify.
15877         (License): Change to LGPL.
15878
15879 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15880
15881         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
15882         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
15883         and inttostr.h.  Use snprintf rather than uinttostr, so that
15884         LGPLed code doesn't depend on GPLed.
15885
15886 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15887
15888         * modules/inline (License): Change from GPL to LGPL.
15889
15890 2006-11-17  Jim Meyering  <jim@meyering.net>
15891
15892         * modules/d-type (License): Switch to LGPL.
15893
15894 2006-11-15  Bruno Haible  <bruno@clisp.org>
15895
15896         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
15897
15898 2006-11-15  Eric Blake  <ebb9@byu.net>
15899
15900         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
15901         the module dependency.
15902
15903 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15904             Bruno Haible  <bruno@clisp.org>
15905
15906         * gnulib-tool (func_create_testdir): Add license consistency check.
15907
15908 2006-11-15  Eric Blake  <ebb9@byu.net>
15909
15910         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
15911         random "(cached)" in configure output.
15912
15913 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15914
15915         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
15916         test for conforming inttypes.h is both announced and cached.
15917
15918         * MODULES.html.sh (seen_modules, seen_files): New variables.
15919         (func_module): Rewrite to use a few less gnulib-tool and sed
15920         invocations.  Avoid a couple of quadratic algorithms for ...
15921         (missed_modules, missed_files): ... these, with ...
15922         (func_append, func_tmpdir): ... these new functions, from
15923         gnulib-tool.  Analogously, install traps for cleanup.
15924
15925         * tests/test-gc.c (main): Remove unused variables.
15926         * tests/test-read-file.c: Include stdlib.h, for 'free'.
15927
15928 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
15929
15930         * modules/inttostr (License): Change to LGPL.
15931
15932 2006-11-14  Eric Blake  <ebb9@byu.net>
15933
15934         * modules/tempname (License): Change to LGPL.
15935
15936 2006-11-14  Eric Blake  <ebb9@byu.net>
15937
15938         * doc/functions.texi (Function Portability): *printf functions on
15939         Cygwin now understand all POSIX size specifiers.
15940
15941 2006-11-14  Bruno Haible  <bruno@clisp.org>
15942
15943         * modules/c-ctype (License): Change to LGPL.
15944
15945 2006-11-12  Bruno Haible  <bruno@clisp.org>
15946
15947         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
15948         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
15949         for GNOME libraries, for which the include files are installed in
15950         subdirectories of $prefix/include.
15951
15952 2006-11-12  Bruno Haible  <bruno@clisp.org>
15953
15954         * m4/lib-link.m4: Require at least autoconf-2.54.
15955         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
15956         name to underscores for the --with option.
15957
15958 2006-11-13  Bruno Haible  <bruno@clisp.org>
15959
15960         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
15961         the tests directory.
15962         Reported by Ralf Wildenhues.
15963
15964 2006-11-13  Bruno Haible  <bruno@clisp.org>
15965
15966         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
15967         (func_emit_initmacro_end): Undo the override here.
15968         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
15969         Works around the famous automake error in coreutils.
15970
15971 2006-11-13  Eric Blake  <ebb9@byu.net>
15972
15973         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
15974         element, not its node.
15975
15976 2006-11-12  Bruno Haible  <bruno@clisp.org>
15977
15978         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
15979         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
15980
15981 2006-11-12  Bruno Haible  <bruno@clisp.org>
15982
15983         * gnulib-tool: New option --local-symlink.
15984         (func_usage): Document it.
15985         (lsymbolic): New variable.
15986         (func_import, func_create_testdir): If --symlink was not specified,
15987         test whether --local-symlink was specified and the file comes from
15988         the local_gnulib_dir.
15989
15990 2006-11-12  Bruno Haible  <bruno@clisp.org>
15991
15992         * gnulib-tool (func_ln): New function.
15993         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
15994
15995 2006-11-12  Bruno Haible  <bruno@clisp.org>
15996
15997         Finish support for source files in subdirectories.
15998         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
15999         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
16000         AUTOMAKE_OPTIONS.
16001         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
16002
16003 2006-11-12  Bruno Haible  <bruno@clisp.org>
16004
16005         * gnulib-tool (func_get_automake_snippet): Synthesize also an
16006         EXTRA_lib_SOURCES augmentation.
16007         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
16008
16009 2006-11-12  Jim Meyering  <jim@meyering.net>
16010
16011         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
16012         file descriptors.  This also averts a failure on systems with
16013         native openat support when a traversed directory lacks "x" access.
16014         * lib/fts_.h: Include "i-ring.h"
16015         (struct FTS) [fts_fd_ring]: New member.
16016         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
16017         (FCHDIR): Add parentheses.
16018         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
16019         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
16020         When descending, rather than simply closing the previous
16021         fts_cwd_fd value, push that file descriptor onto the ring.
16022         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
16023         (fts_open): Initialize the new fd_ring member.
16024         (fts_close): Clear the ring.
16025         (fts_safe_changedir): When possible, use our new fd_ring to skip
16026         the diropen and fstat and dev/ino comparison that would normally
16027         accompany a virtual `chdir ("..")'.
16028
16029         * modules/fts (Depends-on): Add i-ring.
16030         * modules/i-ring: New module.
16031         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
16032         * m4/i-ring.m4: New file.
16033
16034 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16035
16036         * gnulib-tool (func_create_testdir): Fix replacement of
16037         `build-aux' in configure.ac.  Run autotools in gltests
16038         subdirectory.
16039         (func_create_testdir, func_create_megatestdir, test): There is
16040         no need for '--force' in most autotool invocations in a new
16041         tree.  Actually fail the whole test if any of the tools, or the
16042         configure or make stages fail.
16043
16044         Sync from Automake.
16045         * build-aux/gnupload: Revert last change.  Add pointer to upload
16046         instructions of the GNU Maintenance Instructions.
16047         Suggestion by Karl Berry.
16048
16049 2006-11-10  Jim Meyering  <jim@meyering.net>
16050
16051         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
16052
16053 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16054
16055         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
16056         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
16057         (bind_textdomain_codeset) [! ENABLE_NLS]:
16058         Evaluate all the arguments.  That way, callers get compatible behavior
16059         if the arguments have side effects.  Also, it avoids some GCC
16060         diagnostics in some cases; Joel E. Denny reported problems when Bison
16061         was configured with --enable-gcc-warnigs.
16062
16063 2006-11-10  Jim Meyering  <jim@meyering.net>
16064
16065         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
16066         relevant options in CFLAGS (like -O, -fno-inline) are taken into
16067         account.
16068
16069 2006-11-10  Jim Meyering  <jim@meyering.net>
16070
16071         * modules/inline: New file/module.
16072         * modules/xalloc (Files): Remove m4/inline.m4.
16073         (Depends-on): Add inline, instead.
16074         * modules/oset: Likewise.
16075         * modules/list: Likewise.
16076
16077 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16078
16079         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
16080         Problem reported by Matthew Woehlke.
16081
16082 2006-11-09  Bruno Haible  <bruno@clisp.org>
16083
16084         * lib/tempname.c (gen_tempname): Remove variant that invokes
16085         __gen_tempname.
16086         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
16087         __gen_tempname.
16088
16089 2006-11-08  Bruno Haible  <bruno@clisp.org>
16090
16091         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
16092         to 'yes' instead of 'cross-compiling'.
16093
16094 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
16095
16096         * lib/quotearg.h (quotearg_free): New decl.
16097         * lib/quotearg.c (quotearg_free): New function.
16098         (slot0, nslots, slotvec0, slotvec):
16099         Now file-scope so that quotearg_free can get at them.
16100
16101 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16102
16103         Sync from Automake.
16104         * build-aux/gnupload: Add missing 'gnu' to example URL.
16105         Report by Karl Berry.
16106
16107 2006-11-08  Bruno Haible  <bruno@clisp.org>
16108
16109         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
16110         Suggested by Paul Eggert.
16111
16112 2006-11-08  Jim Meyering  <jim@meyering.net>
16113
16114         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
16115         It's already included if !_LIBC.
16116         (fts_safe_changedir): Add a comment.
16117
16118 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
16119
16120         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
16121         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
16122         Matthew Woehlke.
16123
16124         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
16125         definitions up, to avoid colliding with change below.
16126         (static_inline) [HAVE_INLINE]: New macro.
16127         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
16128         Provide extern decls when !HAVE_INLINE.  Do not define unless
16129         static_inline is defined, either by us or by xmalloc.c.  Use
16130         static_inline rather than static inline.
16131         (XCALLOC): Optimize sizeof(T) = 1 case.
16132         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
16133
16134 2006-11-07  Bruno Haible  <bruno@clisp.org>
16135
16136         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
16137         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
16138         AC_C_INLINE.
16139         * modules/xalloc (Files): Add m4/inline.m4.
16140
16141 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16142
16143         * README: Fix typo.
16144         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
16145         (Miscellanous Notes): ...from this.
16146
16147 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
16148
16149         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
16150         Mention that offsetof should be used instead of sizeof.
16151         From Bruno Haible.
16152
16153 2006-11-07  Bruno Haible  <bruno@clisp.org>
16154
16155         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
16156
16157 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16158
16159         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
16160         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
16161         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
16162         (gl_tree_add_before, gl_tree_add_after):
16163         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
16164         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
16165         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
16166         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
16167         (gl_linked_add_after, gl_linked_add_at): Likewise.
16168         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
16169         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
16170         (gl_tree_add_before, gl_tree_add_after): Likewise.
16171         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
16172         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
16173         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
16174
16175 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16176
16177         * lib/gl_oset.h: Use C comment style, not C++ comment style.
16178
16179 2006-11-06  Bruno Haible  <bruno@clisp.org>
16180
16181         * m4/inline.m4: New file.
16182         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
16183         * modules/list (Files): Add m4/inline.m4.
16184         * modules/oset (Files): Likewise.
16185
16186 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16187
16188         * lib/idcache.c: Include <stddef.h>, for offsetof.
16189         (struct userid.name): Change from char * to a flexible array member.
16190         All uses changed.
16191         * modules/idcache (Depends-on): Add flexmember.
16192
16193         * MODULES.html.sh (Core language properties): New module flexmember.
16194         * modules/flexmember, m4/flexmember.m4: New files.
16195
16196         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
16197         inline functions that are identical with the old xnmalloc_inline,
16198         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
16199         that we can avoid some unnecessary integer multiplications and
16200         divisions in the common case where the element size is known at
16201         compile time.
16202         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
16203         needed.
16204         (xnboundedmalloc): Remove.
16205         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
16206         arguments, for consistency with rest of this header.
16207         (xcharalloc): Rewrite using XNMALLOC.
16208         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
16209         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
16210         versions have been moved to lib/xalloc.h and renamed to be the
16211         non-*_inline versions.
16212         (xmalloc, xrealloc): Implement without reference to the xnmalloc
16213         and xnrealloc functions, since those functions are now inline and
16214         now call us.
16215         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
16216         renaming described above.
16217         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
16218         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
16219         captures the dependency in AC_C_INLINE.
16220
16221         New module canonicalize-lgpl, proposed by Charles Wilson in
16222         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
16223         with a few small changes afterwards.
16224         * MODULES.html.sh (File system functions): New module
16225         canonicalize-lgpl.
16226         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
16227         and canonicalize_file_name.
16228         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
16229         * modules/canonicalize-lgpl: New files.
16230
16231 2006-11-05  Bruno Haible  <bruno@clisp.org>
16232
16233         * gnulib-tool (func_import, func_create_testdir): Create directories
16234         also for files in subdirectories of lib/.
16235
16236 2006-11-05  Bruno Haible  <bruno@clisp.org>
16237
16238         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
16239         ANSI C compliant.
16240
16241 2006-11-03  Bruno Haible  <bruno@clisp.org>
16242
16243         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
16244         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
16245         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
16246         (xnboundedmalloc): New inline function.
16247         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
16248         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
16249         xmalloc.
16250         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
16251         xmalloc.
16252         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
16253         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
16254         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
16255         xmalloc.
16256         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16257         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
16258         xmalloc.
16259         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
16260         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16261         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
16262         xmalloc.
16263         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16264         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
16265         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16266         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
16267         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
16268         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
16269         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
16270
16271 2006-11-03  Bruno Haible  <bruno@clisp.org>
16272
16273         * lib/c-ctype.h [C++]: Define functions without name mangling.
16274         * lib/fwriteerror.h [C++]: Likewise.
16275         * lib/gcd.h [C++]: Likewise.
16276         * lib/linebreak.h [C++]: Likewise.
16277
16278 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
16279
16280         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
16281         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
16282         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
16283         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
16284         Check for functions and headers just once.
16285         Check for declaration of canonicalize_file_name.
16286         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
16287
16288 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
16289
16290         * gnulib-tool (func_import): Fix typo in actioncmd.
16291
16292 2006-11-02  Bruno Haible  <bruno@clisp.org>
16293
16294         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
16295         newline sequence in the Makefile.am snippet as a space, like "make"
16296         does.
16297         Reported by Roger Persson <perrog@gmail.com>.
16298
16299 2006-11-01  Bruno Haible  <bruno@clisp.org>
16300
16301         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
16302         already declared in <string.h>.
16303         * lib/strcase.h (strncasecmp): Don't declare it if yes.
16304
16305 2006-11-01  Bruno Haible  <bruno@clisp.org>
16306
16307         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
16308         * lib/strcase.h: Include <string.h>.
16309         (strcasecmp): Define to rpl_strcasecmp here.
16310
16311 2006-11-01  Bruno Haible  <bruno@clisp.org>
16312
16313         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
16314
16315 2006-11-01  Eric Blake  <ebb9@byu.net>
16316
16317         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
16318
16319         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
16320
16321 2006-10-29  Bruno Haible  <bruno@clisp.org>
16322
16323         Make it compile in C++ mode.
16324         * lib/full-write.c (full_rw): Add a cast.
16325
16326 2006-11-01  Bruno Haible  <bruno@clisp.org>
16327
16328         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
16329         be POSIX compliant.
16330         Reported by Roger Persson <perrog@gmail.com>.
16331
16332 2006-11-01  Eric Blake  <ebb9@byu.net>
16333
16334         * lib/getopt_.h: Fix comments.
16335
16336 2006-10-31  Eric Blake  <ebb9@byu.net>
16337
16338         * modules/tmpdir (Depends-on): Add sys_stat.
16339         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
16340         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
16341         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
16342         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
16343         tempname.
16344
16345 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
16346
16347         Avoid some C++ diagnostics reported by Bruno Haible.
16348         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
16349         xmalloc.
16350         (quotearg_alloc): Use xcharalloc rather than xmalloc.
16351         (struct slotvec): Move to top level.
16352         (quotearg_n_options): Rewrite to avoid xmalloc.
16353         * lib/xalloc.h (xcharalloc): New function.
16354         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
16355         [defined __cplusplus]: Add function template that provides result
16356         type propagation.  This part of the change is from Bruno Haible.
16357
16358 2006-10-29  Bruno Haible  <bruno@clisp.org>
16359
16360         Make it compile in C++ mode.
16361         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
16362         * lib/strnlen1.c (strnlen1): Cast memchr result.
16363         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
16364         * lib/clean-temp.c (string_equals, string_hash): Add casts.
16365         (create_temp_dir): Rename local variable 'template'.
16366         (compile_csharp_using_sscli): Add cast.
16367         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
16368         * lib/findprog.c (find_in_path): Likewise.
16369         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
16370         * lib/wait-process.c (register_slave_subprocess): Likewise.
16371
16372 2006-10-22  Bruno Haible  <bruno@clisp.org>
16373
16374         * modules/tsearch: New file.
16375         * lib/tsearch.h: New file.
16376         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
16377         * m4/tsearch.m4: New file.
16378         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
16379
16380 2006-10-29  Eric Blake  <ebb9@byu.net>
16381
16382         * lib/arcfour.c: Assume config.h.
16383         * lib/arctwo.c: Likewise.
16384         * lib/base64.c: Likewise.
16385         * lib/check-version.c: Likewise.
16386         * lib/crc.c: Likewise.
16387         * lib/des.c: Likewise.
16388         * lib/gc-gnulib.c: Likewise.
16389         * lib/gc-libgcrypt.c: Likewise.
16390         * lib/gc-pbkdf2-sha1.c: Likewise.
16391         * lib/getaddrinfo.c: Likewise.
16392         * lib/getdelim.c: Likewise.
16393         * lib/getline.c: Likewise.
16394         * lib/hmac-md5.c: Likewise.
16395         * lib/hmac-sha1.c: Likewise.
16396         * lib/iconvme.c: Likewise.
16397         * lib/md2.c: Likewise.
16398         * lib/md4.c: Likewise.
16399         * lib/memxor.c: Likewise.
16400         * lib/read-file.c: Likewise.
16401         * lib/readline.c: Likewise.
16402         * lib/rijndael-alg-fst.c: Likewise.
16403         * lib/rijndael-api-fst.c: Likewise.
16404         * lib/xgetdomainname.c: Likewise.
16405
16406 2006-10-28  Eric Blake  <ebb9@byu.net>
16407
16408         * lib/xstrndup.c: Assume config.h.
16409
16410 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
16411
16412         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
16413         stat-macros.h is now for our own macros, whereas stat_h is for
16414         macros in the <sys/stat.h> name space.
16415         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
16416         (STAT_MACROS_H): Remove.
16417         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
16418         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
16419         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
16420         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
16421         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
16422         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
16423         Move these macros to ...
16424         * lib/stat_.h: here.  Don't include stat-macros.h.
16425         * lib/canonicalize.c: Don't include stat-macros.h.
16426         * lib/chown.c: Likewise.
16427         * lib/euidaccess.c: Likewise.
16428         * lib/file-type.c: Likewise.
16429         * lib/filemode.c: Likewise.
16430         * lib/glob.c: Likewise.
16431         * lib/isapipe.c: Likewise.
16432         * lib/lchown.c: Likewise.
16433         * lib/lstat.c: Likewise.
16434         * lib/mkdir-p.c: Likewise.
16435         * lib/rmdir.c: Likewise.
16436         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
16437         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
16438         unless mkdir isn't declared, to speed up 'configure'.
16439         Always create sys/stat.h, since it's unlikely any real sys/stat.h
16440         would define all the S_* symbols.
16441         * modules/canonicalize (Depends-on):
16442         Depend on sys_stat, not stat-macros.
16443         * modules/chown: Likewise.
16444         * modules/euidaccess: Likewise.
16445         * modules/filemode: Likewise.
16446         * modules/file-type: Likewise.
16447         * modules/glob: Likewise.
16448         * modules/isapipe: Likewise.
16449         * modules/lchown: Likewise.
16450         * modules/lstat: Likewise.
16451         * modules/mkancesdirs: Likewise.
16452         * modules/rmdir: Likewise.
16453         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
16454         * modules/modechange: Likewise.
16455         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
16456         (configure.ac): Remove gl_STAT_MACROS.
16457         * modules/sys_stat (Depends-on): Remove stat-macros.
16458
16459 2006-10-27  Bruno Haible  <bruno@clisp.org>
16460
16461         * m4/signed.m4: Remove file.
16462         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
16463         invocation.
16464         * modules/vasnprintf (Files): Remove m4/signed.m4.
16465
16466 2006-10-27  Bruno Haible  <bruno@clisp.org>
16467
16468         Update to GNU gettext 0.16.
16469         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
16470         m4/inttypes-h.m4, m4/signed.m4.
16471         * m4/gettext.m4: Update to GNU gettext 0.16.
16472         * m4/intl.m4: New file, from GNU gettext.
16473         * m4/intldir.m4: New file, from GNU gettext.
16474         * config/srclist.txt: Update
16475
16476 2006-10-27  Eric Blake  <ebb9@byu.net>
16477
16478         * MODULES.html.sh: Document tempname.
16479         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
16480         dependencies.
16481         (Files): Move lib/tempname.c...
16482         * modules/tempname: ...to this new module.
16483         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
16484         (gl_PREREQ_TEMPNAME): Move...
16485         * m4/tempname.m4: ...to this new file.
16486         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
16487         * modules/sys_stat (Depends-on): Add stat-macros.
16488         * lib/stat_.h (includes): Pick up stat macros.
16489         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
16490         if stat macros are broken.
16491         * lib/tempname.c (includes): No need to include "stat-macros.h".
16492         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
16493         (direxists, __path_search) [!_LIBC]: Don't compile these in
16494         gnulib; the tmpdir module covers that.
16495         * lib/tempname.h: New file.
16496
16497 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
16498
16499         * COPYING: Explain how gnulib-tool converts licence headers.
16500         Almost all wording by Eric Blake.
16501
16502 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
16503
16504         * lib/mbchar.h (is_basic_table): Make read-only.
16505         * lib/mbchar.c (is_basic_table): Likewise.
16506         Reported by John Darrington.
16507
16508 2006-10-25  Bruno Haible  <bruno@clisp.org>
16509
16510         * lib/progname.h (set_program_name): Undefine before defining.
16511
16512 2006-10-25  Bruno Haible  <bruno@clisp.org>
16513
16514         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
16515         false for non-gcc C++ compilers.
16516         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
16517
16518 2006-10-24  Bruno Haible  <bruno@clisp.org>
16519
16520         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
16521         iconv implementations like Irix iconv.
16522
16523 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16524
16525         * modules/vararrays: New file.
16526         * m4/vararrays.m4: New file, taken from diffutils.
16527         * MODULES.html.sh: New module vararrays.
16528
16529 2006-10-24  Karl Berry  <karl@gnu.org>
16530
16531         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
16532         Don't call GNU Unix.
16533
16534 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16535
16536         * users.txt: Add Libtool.
16537
16538         Sync from Libtool:
16539
16540         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16541
16542         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
16543         to gnulib's policy of including config.h unconditionally.
16544
16545 2006-10-24  Bruno Haible  <bruno@clisp.org>
16546
16547         * modules/wcwidth (Files): Add m4/wint_t.m4.
16548         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
16549         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
16550
16551 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16552
16553         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
16554         to pacify GCC with some -W flags enabled.  Problem reported by
16555         Bruno Haible.
16556
16557 2006-10-24  Jim Meyering  <jim@meyering.net>
16558
16559         * MODULES.html.sh: Remove uinttostr.  It's not a module.
16560         Reported by Karl Berry.
16561
16562 2006-10-23  Bruno Haible  <bruno@clisp.org>
16563
16564         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
16565
16566 2006-10-24  Bruno Haible  <bruno@clisp.org>
16567
16568         * lib/gl_list.h: Use C comment style, not C++ comment style.
16569
16570 2006-10-23  Eric Blake  <ebb9@byu.net>
16571
16572         * lib/getaddrinfo.c (includes): Add missing include.
16573
16574 2006-10-23  Bruno Haible  <bruno@clisp.org>
16575             Paul Eggert  <eggert@cs.ucla.edu>
16576
16577         Ability to rename obstack_free.
16578         * lib/obstack.h (__obstack_free): New macro. Declare instead of
16579         obstack_free.
16580         (obstack_free): Invoke the __obstack_free macro.
16581         * lib/obstack.c (obstack_free): Use __obstack_free macro.
16582
16583 2006-10-23  Bruno Haible  <bruno@clisp.org>
16584             Paul Eggert  <eggert@cs.ucla.edu>
16585
16586         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
16587         __argc, __argv from the declaration. (They are defined as macros on
16588         mingw.)
16589
16590 2006-10-22  Bruno Haible  <bruno@clisp.org>
16591
16592         * doc/gnulib-intro.texi: New file.
16593         * doc/gnulib.texi: Include it.
16594
16595 2006-10-21  Bruno Haible  <bruno@clisp.org>
16596
16597         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
16598         "Introduction", "Miscellanous Notes", "Particular Modules".
16599
16600 2006-10-21  Bruno Haible  <bruno@clisp.org>
16601
16602         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16603         Change mostlyclean-local rule to avoid sh syntax error from bash
16604         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
16605
16606 2006-10-23  Jim Meyering  <jim@meyering.net>
16607
16608         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
16609         in place of snprintf.
16610
16611         * modules/inttostr (Files): Add lib/uinttostr.c.
16612         * lib/uinttostr.c (inttostr): New file/function.
16613         * lib/inttostr.h (uinttostr): Declare.
16614         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
16615         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
16616         Add uinttostr.
16617         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
16618
16619 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
16620
16621         * lib/canonicalize.c (ELOOP): Define if not already defined.
16622         Problem reported by Bruno Haible in
16623         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
16624
16625 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
16626
16627         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
16628         Problem reported by Perry Smith and Ville Laurikari.
16629
16630         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
16631         uses.
16632
16633 2006-10-19  Bruno Haible  <bruno@clisp.org>
16634
16635         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
16636         for mingw.
16637
16638 2006-10-19  Bruno Haible  <bruno@clisp.org>
16639
16640         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
16641         Needed for mingw.
16642
16643 2006-10-19  Bruno Haible  <bruno@clisp.org>
16644
16645         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
16646
16647 2006-10-19  Bruno Haible  <bruno@clisp.org>
16648
16649         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
16650         it.
16651
16652 2006-10-19  Bruno Haible  <bruno@clisp.org>
16653
16654         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
16655         invocation.
16656
16657 2006-10-19  Bruno Haible  <bruno@clisp.org>
16658
16659         * gnulib-tool (func_create_testdir): Don't include ftruncate and
16660         mountlist by default.
16661
16662 2006-10-16  Bruno Haible  <bruno@clisp.org>
16663
16664         * lib/c-strstr.c: Include c-strstr.h.
16665
16666 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
16667
16668         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
16669         in a slash.
16670
16671 2006-10-18  Bruno Haible  <bruno@clisp.org>
16672
16673         * lib/lock.h [C++]: Wrap definitions in extern "C".
16674
16675 2006-10-18  Bruno Haible  <bruno@clisp.org>
16676
16677         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
16678         gl_LIBOBJS list.
16679
16680 2006-10-18  Bruno Haible  <bruno@clisp.org>
16681
16682         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
16683
16684 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
16685
16686         * lib/xstrtol.h: Include gettext.h.
16687         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
16688         Problem reported by Eric Blake.
16689         * modules/xstrtol (Depends-on): Add gettext-h.
16690
16691 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
16692
16693         * lib/strftime.c (advance): New macro.
16694         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
16695         incomplete type, so you can't add 0 to it.  Problem and patch
16696         reported by Eelco Dolstra for dietlibc.
16697
16698 2006-10-18  Jim Meyering  <jim@meyering.net>
16699
16700         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
16701         type for a local, and rename it: s/up/user_proc/.
16702
16703 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
16704
16705         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
16706         READ_UTMP_USER_PROCESS.
16707         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
16708
16709 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16710
16711         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
16712         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
16713
16714 2006-10-17  Eric Blake  <ebb9@byu.net>
16715
16716         * lib/sigprocmask.c (sigprocmask): Fix typo.
16717
16718         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
16719
16720         * modules/clean-temp (Makefile.am): Don't add to make output...
16721         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
16722         config.h.
16723
16724 2006-10-17  Bruno Haible  <bruno@clisp.org>
16725
16726         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
16727         differently if DEFAULT_TEXT_DOMAIN is set.
16728
16729 2006-10-16  Bruno Haible  <bruno@clisp.org>
16730
16731         * lib/clean-temp.c: Include fwriteerror.h.
16732
16733 2006-10-16  Bruno Haible  <bruno@clisp.org>
16734
16735         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
16736
16737 2006-10-16  Bruno Haible  <bruno@clisp.org>
16738
16739         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
16740         * lib/sigprocmask.h: Include <sys/types.h>.
16741         (sigset_t): Use the system's definition if present.
16742
16743 2006-10-17  Eric Blake  <ebb9@byu.net>
16744
16745         * lib/xvasprintf.c (includes): Assume config.h.
16746         * lib/xasprintf.c (includes): Likewise.
16747
16748 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
16749
16750         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
16751         at least as wide as intmax_t.
16752
16753 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
16754
16755         (Imported from Automake.)
16756         * build-aux/gnupload: Update to version 1.1 of directive file.
16757
16758 2006-10-16  Eric Blake  <ebb9@byu.net>
16759
16760         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
16761         match Automake 1.10a.
16762
16763 2006-10-14  Bruno Haible  <bruno@clisp.org>
16764
16765         * modules/sigprocmask: New file.
16766         * lib/sigprocmask.h: New file.
16767         * lib/sigprocmask.c: New file.
16768         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
16769         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
16770         request sigprocmask.o.
16771         (gl_PREREQ_SIGPROCMASK): New macro.
16772         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
16773         (Depends-on): Add sigprocmask.
16774         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
16775         gt_SIGNALBLOCKING. Test for 'raise' only once.
16776         * lib/fatal-signal.c: Include sigprocmask.h.
16777         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
16778         unblock_fatal_signals): Define always.
16779         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16780         sigprocmask.
16781
16782 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16783
16784         Sync from Automake.
16785         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
16786         which incorrectly sets the mode of an existing destination
16787         directory.  In some cases the unpatched install-sh could do the
16788         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
16789         system.  We hope this is rare in practice, but it's clearly worth
16790         fixing.  Problem reported by Alex Unleashed in
16791         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
16792         Also, don't bother to check for -m bugs unless we're using -m;
16793         suggested by Stepan Kasal.
16794
16795 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16796
16797         Sync from Automake.
16798         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
16799         `-c' flag, so they appear at the same position as in %FASTDEP%
16800         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
16801         which ignores unknown options only after the first non-option.
16802         Bug report against M4 by Nelson H. F. Beebe.
16803
16804 2006-10-13  Jim Meyering  <jim@meyering.net>
16805
16806         Fix a bug in yesterday's change.
16807         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
16808         p->fts_statp->st_dev would be used uninitialized.
16809         Ensures that we always call fts_stat on the very first entry.
16810         Miklos Szeredi reported that find -xdev stopped working.
16811
16812 2006-10-12  Bruno Haible  <bruno@clisp.org>
16813
16814         * gnulib-tool (func_get_automake_snippet): Append an automatically
16815         computed EXTRA_DIST augmentation.
16816         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
16817         * modules/alloca-opt (Makefile.am): Likewise.
16818         * modules/allocsa (Makefile.am): Likewise.
16819         * modules/arcfour (Makefile.am): Likewise.
16820         * modules/arctwo (Makefile.am): Likewise.
16821         * modules/argmatch (Makefile.am): Likewise.
16822         * modules/argz (Makefile.am): Likewise.
16823         * modules/atexit (Makefile.am): Likewise.
16824         * modules/backupfile (Makefile.am): Likewise.
16825         * modules/byteswap (Makefile.am): Likewise.
16826         * modules/c-strtod (Makefile.am): Likewise.
16827         * modules/c-strtold (Makefile.am): Likewise.
16828         * modules/calloc (Makefile.am): Likewise.
16829         * modules/canon-host (Makefile.am): Likewise.
16830         * modules/canonicalize (Makefile.am): Likewise.
16831         * modules/chdir-long (Makefile.am): Likewise.
16832         * modules/chdir-safer (Makefile.am): Likewise.
16833         * modules/check-version (Makefile.am): Likewise.
16834         * modules/chown (Makefile.am): Likewise.
16835         * modules/cloexec (Makefile.am): Likewise.
16836         * modules/close-stream (Makefile.am): Likewise.
16837         * modules/closeout (Makefile.am): Likewise.
16838         * modules/crc (Makefile.am): Likewise.
16839         * modules/csharpexec (Makefile.am): Likewise.
16840         * modules/cycle-check (Makefile.am): Likewise.
16841         * modules/des (Makefile.am): Likewise.
16842         * modules/dev-ino (Makefile.am): Likewise.
16843         * modules/dirfd (Makefile.am): Likewise.
16844         * modules/dirname (Makefile.am): Likewise.
16845         * modules/dup2 (Makefile.am): Likewise.
16846         * modules/eealloc (Makefile.am): Likewise.
16847         * modules/error (Makefile.am): Likewise.
16848         * modules/euidaccess (Makefile.am): Likewise.
16849         * modules/exclude (Makefile.am): Likewise.
16850         * modules/exitfail (Makefile.am): Likewise.
16851         * modules/fcntl-safer (Makefile.am): Likewise.
16852         * modules/fcntl (Makefile.am): Likewise.
16853         * modules/file-type (Makefile.am): Likewise.
16854         * modules/fileblocks (Makefile.am): Likewise.
16855         * modules/filemode (Makefile.am): Likewise.
16856         * modules/filenamecat (Makefile.am): Likewise.
16857         * modules/fnmatch (Makefile.am): Likewise.
16858         * modules/fopen-safer (Makefile.am): Likewise.
16859         * modules/fpending (Makefile.am): Likewise.
16860         * modules/fprintftime (Makefile.am): Likewise.
16861         * modules/free (Makefile.am): Likewise.
16862         * modules/fsusage (Makefile.am): Likewise.
16863         * modules/ftruncate (Makefile.am): Likewise.
16864         * modules/fts (Makefile.am): Likewise.
16865         * modules/gc-arcfour (Makefile.am): Likewise.
16866         * modules/gc-des (Makefile.am): Likewise.
16867         * modules/gc-hmac-md5 (Makefile.am): Likewise.
16868         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
16869         * modules/gc-md4 (Makefile.am): Likewise.
16870         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
16871         * modules/gc-sha1 (Makefile.am): Likewise.
16872         * modules/gc (Makefile.am): Likewise.
16873         * modules/getaddrinfo (Makefile.am): Likewise.
16874         * modules/getcwd (Makefile.am): Likewise.
16875         * modules/getdelim (Makefile.am): Likewise.
16876         * modules/getdomainname (Makefile.am): Likewise.
16877         * modules/getgroups (Makefile.am): Likewise.
16878         * modules/gethostname (Makefile.am): Likewise.
16879         * modules/gethrxtime (Makefile.am): Likewise.
16880         * modules/getline (Makefile.am): Likewise.
16881         * modules/getloadavg (Makefile.am): Likewise.
16882         * modules/getlogin_r (Makefile.am): Likewise.
16883         * modules/getndelim2 (Makefile.am): Likewise.
16884         * modules/getopt (Makefile.am): Likewise.
16885         * modules/getpagesize (Makefile.am): Likewise.
16886         * modules/getpass-gnu (Makefile.am): Likewise.
16887         * modules/getpass (Makefile.am): Likewise.
16888         * modules/getsubopt (Makefile.am): Likewise.
16889         * modules/gettime (Makefile.am): Likewise.
16890         * modules/gettimeofday (Makefile.am): Likewise.
16891         * modules/getugroups (Makefile.am): Likewise.
16892         * modules/getusershell (Makefile.am): Likewise.
16893         * modules/glob (Makefile.am): Likewise.
16894         * modules/group-member (Makefile.am): Likewise.
16895         * modules/hard-locale (Makefile.am): Likewise.
16896         * modules/hash (Makefile.am): Likewise.
16897         * modules/hmac-md5 (Makefile.am): Likewise.
16898         * modules/hmac-sha1 (Makefile.am): Likewise.
16899         * modules/human (Makefile.am): Likewise.
16900         * modules/idcache (Makefile.am): Likewise.
16901         * modules/imaxabs (Makefile.am): Likewise.
16902         * modules/imaxdiv (Makefile.am): Likewise.
16903         * modules/inet_ntop (Makefile.am): Likewise.
16904         * modules/inet_pton (Makefile.am): Likewise.
16905         * modules/intprops (Makefile.am): Likewise.
16906         * modules/inttostr (Makefile.am): Likewise.
16907         * modules/inttypes (Makefile.am): Likewise.
16908         * modules/isapipe (Makefile.am): Likewise.
16909         * modules/javaversion (Makefile.am): Likewise.
16910         * modules/lchmod (Makefile.am): Likewise.
16911         * modules/lchown (Makefile.am): Likewise.
16912         * modules/localcharset (Makefile.am): Likewise.
16913         * modules/long-options (Makefile.am): Likewise.
16914         * modules/lstat (Makefile.am): Likewise.
16915         * modules/malloc (Makefile.am): Likewise.
16916         * modules/mathl (Makefile.am): Likewise.
16917         * modules/mbchar (Makefile.am): Likewise.
16918         * modules/md2 (Makefile.am): Likewise.
16919         * modules/md4 (Makefile.am): Likewise.
16920         * modules/md5 (Makefile.am): Likewise.
16921         * modules/memcasecmp (Makefile.am): Likewise.
16922         * modules/memchr (Makefile.am): Likewise.
16923         * modules/memcmp (Makefile.am): Likewise.
16924         * modules/memcoll (Makefile.am): Likewise.
16925         * modules/memcpy (Makefile.am): Likewise.
16926         * modules/memmem (Makefile.am): Likewise.
16927         * modules/memmove (Makefile.am): Likewise.
16928         * modules/mempcpy (Makefile.am): Likewise.
16929         * modules/memrchr (Makefile.am): Likewise.
16930         * modules/memset (Makefile.am): Likewise.
16931         * modules/memxor (Makefile.am): Likewise.
16932         * modules/mkancesdirs (Makefile.am): Likewise.
16933         * modules/mkdir-p (Makefile.am): Likewise.
16934         * modules/mkdir (Makefile.am): Likewise.
16935         * modules/mkdtemp (Makefile.am): Likewise.
16936         * modules/mkstemp (Makefile.am): Likewise.
16937         * modules/mktime (Makefile.am): Likewise.
16938         * modules/modechange (Makefile.am): Likewise.
16939         * modules/mountlist (Makefile.am): Likewise.
16940         * modules/nanosleep (Makefile.am): Likewise.
16941         * modules/obstack (Makefile.am): Likewise.
16942         * modules/openat (Makefile.am): Likewise.
16943         * modules/pagealign_alloc (Makefile.am): Likewise.
16944         * modules/pathmax (Makefile.am): Likewise.
16945         * modules/physmem (Makefile.am): Likewise.
16946         * modules/poll (Makefile.am): Likewise.
16947         * modules/posixtm (Makefile.am): Likewise.
16948         * modules/posixver (Makefile.am): Likewise.
16949         * modules/putenv (Makefile.am): Likewise.
16950         * modules/quote (Makefile.am): Likewise.
16951         * modules/quotearg (Makefile.am): Likewise.
16952         * modules/raise (Makefile.am): Likewise.
16953         * modules/read-file (Makefile.am): Likewise.
16954         * modules/readline (Makefile.am): Likewise.
16955         * modules/readlink (Makefile.am): Likewise.
16956         * modules/readtokens (Makefile.am): Likewise.
16957         * modules/readutmp (Makefile.am): Likewise.
16958         * modules/realloc (Makefile.am): Likewise.
16959         * modules/regex (Makefile.am): Likewise.
16960         * modules/rename-dest-slash (Makefile.am): Likewise.
16961         * modules/rename (Makefile.am): Likewise.
16962         * modules/rijndael (Makefile.am): Likewise.
16963         * modules/rmdir (Makefile.am): Likewise.
16964         * modules/rpmatch (Makefile.am): Likewise.
16965         * modules/safe-read (Makefile.am): Likewise.
16966         * modules/safe-write (Makefile.am): Likewise.
16967         * modules/same-inode (Makefile.am): Likewise.
16968         * modules/same (Makefile.am): Likewise.
16969         * modules/save-cwd (Makefile.am): Likewise.
16970         * modules/savedir (Makefile.am): Likewise.
16971         * modules/setenv (Makefile.am): Likewise.
16972         * modules/settime (Makefile.am): Likewise.
16973         * modules/sha1 (Makefile.am): Likewise.
16974         * modules/sig2str (Makefile.am): Likewise.
16975         * modules/snprintf (Makefile.am): Likewise.
16976         * modules/stat-macros (Makefile.am): Likewise.
16977         * modules/stat-time (Makefile.am): Likewise.
16978         * modules/stdbool (Makefile.am): Likewise.
16979         * modules/stdint (Makefile.am): Likewise.
16980         * modules/stdlib-safer (Makefile.am): Likewise.
16981         * modules/stpcpy (Makefile.am): Likewise.
16982         * modules/stpncpy (Makefile.am): Likewise.
16983         * modules/strcase (Makefile.am): Likewise.
16984         * modules/strcasestr (Makefile.am): Likewise.
16985         * modules/strchrnul (Makefile.am): Likewise.
16986         * modules/strcspn (Makefile.am): Likewise.
16987         * modules/strdup (Makefile.am): Likewise.
16988         * modules/strerror (Makefile.am): Likewise.
16989         * modules/strftime (Makefile.am): Likewise.
16990         * modules/strndup (Makefile.am): Likewise.
16991         * modules/strnlen (Makefile.am): Likewise.
16992         * modules/strpbrk (Makefile.am): Likewise.
16993         * modules/strsep (Makefile.am): Likewise.
16994         * modules/strstr (Makefile.am): Likewise.
16995         * modules/strtod (Makefile.am): Likewise.
16996         * modules/strtoimax (Makefile.am): Likewise.
16997         * modules/strtok_r (Makefile.am): Likewise.
16998         * modules/strtol (Makefile.am): Likewise.
16999         * modules/strtoll (Makefile.am): Likewise.
17000         * modules/strtoul (Makefile.am): Likewise.
17001         * modules/strtoull (Makefile.am): Likewise.
17002         * modules/strtoumax (Makefile.am): Likewise.
17003         * modules/strverscmp (Makefile.am): Likewise.
17004         * modules/sys_socket (Makefile.am): Likewise.
17005         * modules/sys_stat (Makefile.am): Likewise.
17006         * modules/sysexits (Makefile.am): Likewise.
17007         * modules/time_r (Makefile.am): Likewise.
17008         * modules/timegm (Makefile.am): Likewise.
17009         * modules/timespec (Makefile.am): Likewise.
17010         * modules/tmpfile-safer (Makefile.am): Likewise.
17011         * modules/trim (Makefile.am): Likewise.
17012         * modules/unistd-safer (Makefile.am): Likewise.
17013         * modules/unlinkdir (Makefile.am): Likewise.
17014         * modules/unlocked-io (Makefile.am): Likewise.
17015         * modules/userspec (Makefile.am): Likewise.
17016         * modules/utime (Makefile.am): Likewise.
17017         * modules/utimecmp (Makefile.am): Likewise.
17018         * modules/utimens (Makefile.am): Likewise.
17019         * modules/vasnprintf (Makefile.am): Likewise.
17020         * modules/vasprintf (Makefile.am): Likewise.
17021         * modules/vsnprintf (Makefile.am): Likewise.
17022         * modules/xalloc (Makefile.am): Likewise.
17023         * modules/xgetcwd (Makefile.am): Likewise.
17024         * modules/xnanosleep (Makefile.am): Likewise.
17025         * modules/xreadlink (Makefile.am): Likewise.
17026         * modules/xstrtod (Makefile.am): Likewise.
17027         * modules/xstrtol (Makefile.am): Likewise.
17028         * modules/xstrtold (Makefile.am): Likewise.
17029         * modules/yesno (Makefile.am): Likewise.
17030         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
17031
17032 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17033
17034         * modules/error (Makefile.am): Distribute files through
17035         EXTRA_DIST, not lib_SOURCES.
17036
17037 2006-10-12  Eric Blake  <ebb9@byu.net>
17038
17039         * modules/error (Makefile.am): Distribute files in /lib.
17040         * modules/obstack (Makefile.am): Likewise.
17041
17042 2006-10-12  Bruno Haible  <bruno@clisp.org>
17043
17044         * modules/acl (Makefile.am): Distribute all files in lib/ through
17045         EXTRA_DIST.
17046         * modules/arcfour (Makefile.am): Likewise.
17047         * modules/arctwo (Makefile.am): Likewise.
17048         * modules/argmatch (Makefile.am): Likewise.
17049         * modules/argz (Makefile.am): Likewise.
17050         * modules/atexit (Makefile.am): Likewise.
17051         * modules/backupfile (Makefile.am): Likewise.
17052         * modules/c-strtod (Makefile.am): Likewise.
17053         * modules/c-strtold (Makefile.am): Likewise.
17054         * modules/calloc (Makefile.am): Likewise.
17055         * modules/canon-host (Makefile.am): Likewise.
17056         * modules/canonicalize (Makefile.am): Likewise.
17057         * modules/chdir-long (Makefile.am): Likewise.
17058         * modules/chdir-safer (Makefile.am): Likewise.
17059         * modules/check-version (Makefile.am): Likewise.
17060         * modules/chown (Makefile.am): Likewise.
17061         * modules/cloexec (Makefile.am): Likewise.
17062         * modules/close-stream (Makefile.am): Likewise.
17063         * modules/closeout (Makefile.am): Likewise.
17064         * modules/crc (Makefile.am): Likewise.
17065         * modules/cycle-check (Makefile.am): Likewise.
17066         * modules/des (Makefile.am): Likewise.
17067         * modules/dirfd (Makefile.am): Likewise.
17068         * modules/dirname (Makefile.am): Likewise.
17069         * modules/dup2 (Makefile.am): Likewise.
17070         * modules/euidaccess (Makefile.am): Likewise.
17071         * modules/exclude (Makefile.am): Likewise.
17072         * modules/exitfail (Makefile.am): Likewise.
17073         * modules/fcntl-safer (Makefile.am): Likewise.
17074         * modules/file-type (Makefile.am): Likewise.
17075         * modules/fileblocks (Makefile.am): Likewise.
17076         * modules/filemode (Makefile.am): Likewise.
17077         * modules/filenamecat (Makefile.am): Likewise.
17078         * modules/fnmatch (Makefile.am): Likewise.
17079         * modules/fopen-safer (Makefile.am): Likewise.
17080         * modules/fpending (Makefile.am): Likewise.
17081         * modules/fprintftime (Makefile.am): Likewise.
17082         * modules/free (Makefile.am): Likewise.
17083         * modules/fsusage (Makefile.am): Likewise.
17084         * modules/ftruncate (Makefile.am): Likewise.
17085         * modules/fts (Makefile.am): Likewise.
17086         * modules/gc (Makefile.am): Likewise.
17087         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
17088         * modules/getaddrinfo (Makefile.am): Likewise.
17089         * modules/getcwd (Makefile.am): Likewise.
17090         * modules/getdelim (Makefile.am): Likewise.
17091         * modules/getdomainname (Makefile.am): Likewise.
17092         * modules/getgroups (Makefile.am): Likewise.
17093         * modules/gethostname (Makefile.am): Likewise.
17094         * modules/gethrxtime (Makefile.am): Likewise.
17095         * modules/getline (Makefile.am): Likewise.
17096         * modules/getloadavg (Makefile.am): Likewise.
17097         * modules/getlogin_r (Makefile.am): Likewise.
17098         * modules/getopt (Makefile.am): Likewise.
17099         * modules/getpass (Makefile.am): Likewise.
17100         * modules/getpass-gnu (Makefile.am): Likewise.
17101         * modules/getsubopt (Makefile.am): Likewise.
17102         * modules/gettime (Makefile.am): Likewise.
17103         * modules/gettimeofday (Makefile.am): Likewise.
17104         * modules/getugroups (Makefile.am): Likewise.
17105         * modules/getusershell (Makefile.am): Likewise.
17106         * modules/glob (Makefile.am): Likewise.
17107         * modules/group-member (Makefile.am): Likewise.
17108         * modules/hard-locale (Makefile.am): Likewise.
17109         * modules/hash (Makefile.am): Likewise.
17110         * modules/hmac-md5 (Makefile.am): Likewise.
17111         * modules/hmac-sha1 (Makefile.am): Likewise.
17112         * modules/human (Makefile.am): Likewise.
17113         * modules/idcache (Makefile.am): Likewise.
17114         * modules/imaxabs (Makefile.am): Likewise.
17115         * modules/imaxdiv (Makefile.am): Likewise.
17116         * modules/inet_ntop (Makefile.am): Likewise.
17117         * modules/inet_pton (Makefile.am): Likewise.
17118         * modules/inttostr (Makefile.am): Likewise.
17119         * modules/isapipe (Makefile.am): Likewise.
17120         * modules/lchown (Makefile.am): Likewise.
17121         * modules/long-options (Makefile.am): Likewise.
17122         * modules/lstat (Makefile.am): Likewise.
17123         * modules/malloc (Makefile.am): Likewise.
17124         * modules/mathl (Makefile.am): Likewise.
17125         * modules/mbchar (Makefile.am): Likewise.
17126         * modules/md2 (Makefile.am): Likewise.
17127         * modules/md4 (Makefile.am): Likewise.
17128         * modules/md5 (Makefile.am): Likewise.
17129         * modules/memcasecmp (Makefile.am): Likewise.
17130         * modules/memchr (Makefile.am): Likewise.
17131         * modules/memcmp (Makefile.am): Likewise.
17132         * modules/memcoll (Makefile.am): Likewise.
17133         * modules/memcpy (Makefile.am): Likewise.
17134         * modules/memmem (Makefile.am): Likewise.
17135         * modules/memmove (Makefile.am): Likewise.
17136         * modules/mempcpy (Makefile.am): Likewise.
17137         * modules/memrchr (Makefile.am): Likewise.
17138         * modules/memset (Makefile.am): Likewise.
17139         * modules/memxor (Makefile.am): Likewise.
17140         * modules/mkancesdirs (Makefile.am): Likewise.
17141         * modules/mkdir (Makefile.am): Likewise.
17142         * modules/mkdir-p (Makefile.am): Likewise.
17143         * modules/mkdtemp (Makefile.am): Likewise.
17144         * modules/mkstemp (Makefile.am): Likewise.
17145         * modules/mktime (Makefile.am): Likewise.
17146         * modules/modechange (Makefile.am): Likewise.
17147         * modules/mountlist (Makefile.am): Likewise.
17148         * modules/nanosleep (Makefile.am): Likewise.
17149         * modules/openat (Makefile.am): Likewise.
17150         * modules/pagealign_alloc (Makefile.am): Likewise.
17151         * modules/physmem (Makefile.am): Likewise.
17152         * modules/poll (Makefile.am): Likewise.
17153         * modules/posixtm (Makefile.am): Likewise.
17154         * modules/posixver (Makefile.am): Likewise.
17155         * modules/putenv (Makefile.am): Likewise.
17156         * modules/quote (Makefile.am): Likewise.
17157         * modules/quotearg (Makefile.am): Likewise.
17158         * modules/raise (Makefile.am): Likewise.
17159         * modules/read-file (Makefile.am): Likewise.
17160         * modules/readline (Makefile.am): Likewise.
17161         * modules/readlink (Makefile.am): Likewise.
17162         * modules/readtokens (Makefile.am): Likewise.
17163         * modules/readutmp (Makefile.am): Likewise.
17164         * modules/realloc (Makefile.am): Likewise.
17165         * modules/regex (Makefile.am): Likewise.
17166         * modules/rename (Makefile.am): Likewise.
17167         * modules/rename-dest-slash (Makefile.am): Likewise.
17168         * modules/rijndael (Makefile.am): Likewise.
17169         * modules/rmdir (Makefile.am): Likewise.
17170         * modules/rpmatch (Makefile.am): Likewise.
17171         * modules/safe-read (Makefile.am): Likewise.
17172         * modules/safe-write (Makefile.am): Likewise.
17173         * modules/same (Makefile.am): Likewise.
17174         * modules/save-cwd (Makefile.am): Likewise.
17175         * modules/savedir (Makefile.am): Likewise.
17176         * modules/setenv (Makefile.am): Likewise.
17177         * modules/settime (Makefile.am): Likewise.
17178         * modules/sha1 (Makefile.am): Likewise.
17179         * modules/sig2str (Makefile.am): Likewise.
17180         * modules/snprintf (Makefile.am): Likewise.
17181         * modules/stdlib-safer (Makefile.am): Likewise.
17182         * modules/stpcpy (Makefile.am): Likewise.
17183         * modules/stpncpy (Makefile.am): Likewise.
17184         * modules/strcase (Makefile.am): Likewise.
17185         * modules/strcasestr (Makefile.am): Likewise.
17186         * modules/strchrnul (Makefile.am): Likewise.
17187         * modules/strcspn (Makefile.am): Likewise.
17188         * modules/strdup (Makefile.am): Likewise.
17189         * modules/strerror (Makefile.am): Likewise.
17190         * modules/strftime (Makefile.am): Likewise.
17191         * modules/strndup (Makefile.am): Likewise.
17192         * modules/strnlen (Makefile.am): Likewise.
17193         * modules/strpbrk (Makefile.am): Likewise.
17194         * modules/strsep (Makefile.am): Likewise.
17195         * modules/strstr (Makefile.am): Likewise.
17196         * modules/strtod (Makefile.am): Likewise.
17197         * modules/strtoimax (Makefile.am): Likewise.
17198         * modules/strtok_r (Makefile.am): Likewise.
17199         * modules/strtol (Makefile.am): Likewise.
17200         * modules/strtoll (Makefile.am): Likewise.
17201         * modules/strtoul (Makefile.am): Likewise.
17202         * modules/strtoull (Makefile.am): Likewise.
17203         * modules/strtoumax (Makefile.am): Likewise.
17204         * modules/strverscmp (Makefile.am): Likewise.
17205         * modules/time_r (Makefile.am): Likewise.
17206         * modules/timegm (Makefile.am): Likewise.
17207         * modules/tmpfile-safer (Makefile.am): Likewise.
17208         * modules/unistd-safer (Makefile.am): Likewise.
17209         * modules/unlinkdir (Makefile.am): Likewise.
17210         * modules/userspec (Makefile.am): Likewise.
17211         * modules/utime (Makefile.am): Likewise.
17212         * modules/utimecmp (Makefile.am): Likewise.
17213         * modules/utimens (Makefile.am): Likewise.
17214         * modules/vasnprintf (Makefile.am): Likewise.
17215         * modules/vasprintf (Makefile.am): Likewise.
17216         * modules/vsnprintf (Makefile.am): Likewise.
17217         * modules/xalloc (Makefile.am): Likewise.
17218         * modules/xgetcwd (Makefile.am): Likewise.
17219         * modules/xnanosleep (Makefile.am): Likewise.
17220         * modules/xreadlink (Makefile.am): Likewise.
17221         * modules/xstrtod (Makefile.am): Likewise.
17222         * modules/xstrtol (Makefile.am): Likewise.
17223         * modules/xstrtold (Makefile.am): Likewise.
17224         * modules/yesno (Makefile.am): Likewise.
17225
17226 2006-10-12  Jim Meyering  <jim@meyering.net>
17227
17228         * m4/getloadavg.m4: Revert the change below.
17229
17230         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
17231         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
17232         fail with a symlink, which is what coreutils' ./bootstrap now
17233         creates by default.
17234
17235 2006-10-12  Bruno Haible  <bruno@clisp.org>
17236
17237         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
17238         mingw.
17239         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
17240         MSVC and mingw explicitly.
17241
17242 2006-10-11  Simon Josefsson  <jas@extundo.com>
17243             Bruno Haible  <bruno@clisp.org>
17244
17245         Add support for multiple gnulib-tool invocations in the scope of a
17246         single configure.ac file.
17247         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
17248         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
17249         with the same contents as the _LIBADD variable.
17250         (func_emit_initmacro_start, func_emit_initmacro_end,
17251         func_emit_initmacro_done): New functions.
17252         (func_import, func_create_testdir): Invoke them. Allow the identifiers
17253         gl_LIBOBJS and gl_LTLIBOBJS.
17254
17255 2006-10-11  Bruno Haible  <bruno@clisp.org>
17256
17257         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
17258         (func_create_testdir): Don't create po/Makefile.am, don't invoke
17259         autoreconf. Instead, invoke autopoint explicitly but move back the
17260         *.m4 files from gnulib.
17261
17262 2006-10-11  Bruno Haible  <bruno@clisp.org>
17263
17264         * gnulib-tool (func_usage): Make module names after --create-testdir
17265         optional.
17266         (func_create_testdir): If no module was specified, use nearly all
17267         modules.
17268
17269 2006-10-12  Jim Meyering  <jim@meyering.net>
17270
17271         Big performance improvement for fts-based tools that use FTS_NOSTAT.
17272         Avoid spurious inode-mismatch problems on non-POSIX file systems.
17273         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
17274         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
17275         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
17276         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
17277         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
17278         (fts_set_stat_required): New function.
17279         (fts_open): Defer the calls to fts_stat, if possible or requested.
17280         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
17281         into fts_stat itself.
17282         (fts_read): Perform any required (deferred) fts_stat call.
17283         (fts_build): Likewise, for the directory we're about to open and read.
17284         In the readdir loop, carefully decide whether each entry will require
17285         an eventual call to fts_stat, using dirent.d_type info if available.
17286         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
17287         a command line argument into this function.  Update all callers.
17288         Map a return value of FTS_DOT to FTS_D for a command line argument.
17289         * modules/fts (Depends-on): Add d-type.  Alphabetize.
17290         Thanks to Miklos Szeredi for his tenacity and for the initial
17291         bug report about "find" failing on a FUSE-based file system.
17292
17293         * lib/fts.c (fts_open): Use consistent indentation.
17294
17295 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17296
17297         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
17298         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
17299         reported by Jim Meyering.  All uses of cache variables renamed
17300         to match Autoconf's.
17301         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
17302         the other one.
17303
17304         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
17305         Fix misspelling in diagnostic.
17306
17307 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17308
17309         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
17310         defined.  Problem reported by Matthew Woehlke.
17311
17312         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
17313         Add support for Tandem NonStop R series.
17314         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
17315         Use new macro.
17316
17317         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
17318         (has_trailing_slash): Omit size arg; all callers changed.
17319         Omit 'inline', since it doesn't help performance and we'd
17320         need to configure it.
17321         Don't count //, ///, etc. as having a trailing slash.
17322         As a side effect, this removes a C99ism reported by Matthew Woehlke.
17323         (rpl_rename_dest_slash): On failure, use rename's errno rather
17324         than (in some cases) an incorrect or junk errno.
17325         Simplify code by removing need to compute length; this does
17326         cause it to make two passes instead of one over the file name,
17327         but it's worth it.
17328
17329         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
17330         change, since Autoconf's version may no longer be appropriate now
17331         that we are using CVS Autoconf's version.  Add support for Tandem.
17332
17333 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17334             Bruno Haible  <bruno@clisp.org>
17335
17336         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
17337         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
17338         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
17339         gl_AC_TYPE_LONG_LONG.
17340
17341         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
17342         instead of HAVE_LONG_LONG.
17343         * lib/printf-args.c (printf_fetchargs): Likewise.
17344         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
17345         * lib/vasnprintf.c (VASNPRINTF): Likewise.
17346         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
17347         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
17348         gl_AC_TYPE_LONG_LONG.
17349
17350 2006-10-11  Bruno Haible  <bruno@clisp.org>
17351
17352         * m4/longlong.m4: Add comments.
17353         * m4/ulonglong.m4: Likewise.
17354
17355 2006-10-10  Bruno Haible  <bruno@clisp.org>
17356
17357         Make it possible to #define stpcpy, strdup to aliases.
17358         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
17359         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
17360
17361 2006-10-10  Bruno Haible  <bruno@clisp.org>
17362
17363         Make it possible to #define gcd to an alias.
17364         * lib/gcd.c: Include config.h.
17365
17366 2006-10-10  Bruno Haible  <bruno@clisp.org>
17367
17368         Make it possible to #define c_isascii to an alias.
17369         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
17370         defined. Undefine the macros before defining them, to avoid gcc
17371         warnings.
17372         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
17373         define NO_C_CTYPE_MACROS early.
17374
17375 2006-10-10  Bruno Haible  <bruno@clisp.org>
17376
17377         Make it possible to #define set_program_name to an alias.
17378         * lib/progname.c: Don't undefine set_program_name; instead, undefine
17379         ENABLE_RELOCATABLE early.
17380
17381 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
17382
17383         Port to Tandem NSK OSS, which has 64-bit signed int but at most
17384         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
17385         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
17386         More generally, don't assume that 64-bit signed int is available
17387         if unsigned int is, and vice versa.
17388         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
17389         unsigned symbols, not on their signed counterparts.
17390         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
17391         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
17392         (UINT64_C, UINTMAX_C):
17393         Likewise.
17394         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
17395         unsigned counterparts.
17396         (Have_long_long, Unsigned): New macros.
17397         (Int): Renamed from INT.
17398         (strtoimax): Use the new macros.
17399         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
17400         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
17401         * modules/inttypes (inttypes.h): Substitute
17402         HAVE_UNSIGNED_LONG_LONG_INT.
17403         * modules/stdint (stdint.h): Likewise.
17404         (Files): Add m4/ulonglong.m4.
17405
17406 2006-10-10  Bruno Haible  <bruno@clisp.org>
17407
17408         Fix a gcc -Wshadow warning.
17409         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
17410         to 'bucket'.
17411         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
17412         gl_linked_indexof_from_to): Likewise.
17413         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
17414         Likewise.
17415         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
17416         Likewise.
17417         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
17418         Reported by Eric Blake.
17419
17420 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
17421
17422         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
17423         for NetBSD.  Problem reported by Bruno Haible.
17424
17425 2006-10-09  Jim Meyering  <jim@meyering.net>
17426
17427         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
17428         Patch from Bruno Haible.
17429
17430 2006-10-09  Jim Meyering  <jim@meyering.net>
17431
17432         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
17433         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
17434         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
17435
17436 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
17437
17438         Don't include <config.h> twice; this doesn't work in some cases,
17439         e.g., when config.h has "#define intmax_t long long int" and
17440         we include <config.h>, <inttypes.h>, <config.h> in that order.
17441         Problem reported by Matthew Woehlke in:
17442         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
17443         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
17444         * lib/fts-cycle.c: Don't include config.h.
17445         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
17446         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
17447         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
17448         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
17449         inttypes.h.
17450         * lib/xstrtoumax.c: Likewise.
17451         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
17452         __strtol and the like, so that this module is more like its siblings.
17453         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
17454         Remove; no longer needed now that we assume gnulib inttypes.h.
17455
17456 2006-10-08  Bruno Haible  <bruno@clisp.org>
17457
17458         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
17459         option.
17460
17461 2006-10-07  Jim Meyering  <jim@meyering.net>
17462
17463         * modules/inttypes (inttypes.h): Revert what seems to have been
17464         an inadvertent part of today's change: use "|", not "/" in the
17465         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
17466
17467 2006-10-07  Bruno Haible  <bruno@clisp.org>
17468
17469         * modules/sublist: New file.
17470
17471 2006-10-07  Bruno Haible  <bruno@clisp.org>
17472
17473         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
17474         * modules/argz (argz.h): Likewise.
17475         * modules/arpa_inet (arpa/inet.h): Likewise.
17476         * modules/byteswap (byteswap.h): Likewise.
17477         * modules/configmake (configmake.h): Likewise.
17478         * modules/fcntl (fcntl.h): Likewise.
17479         * modules/fnmatch (fnmatch.h): Likewise.
17480         * modules/getopt (getopt.h): Likewise.
17481         * modules/glob (glob.h): Likewise.
17482         * modules/inttypes (inttypes.h): Likewise.
17483         * modules/netinet_in (netinet/in.h): Likewise.
17484         * modules/poll (poll.h): Likewise.
17485         * modules/stdbool (stdbool.h): Likewise.
17486         * modules/stdint (stdint.h): Likewise.
17487         * modules/sys_select (sys/select.h): Likewise.
17488         * modules/sys_socket (sys/socket.h): Likewise.
17489         * modules/sys_stat (sys/stat.h): Likewise.
17490         * modules/sysexits (sysexits.h): Likewise.
17491         * modules/unistd (unistd.h): Likewise.
17492         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17493         Add a "DO NOT EDIT" comment to the generated file.
17494         (func_import): Likewise for gnulib-comp.m4.
17495
17496 2006-10-07  Bruno Haible  <bruno@clisp.org>
17497
17498         * lib/gl_sublist.h: New file.
17499         * lib/gl_sublist.c: New file.
17500
17501 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
17502
17503         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
17504         name (relative to the original working directory) and the file
17505         name component (relative to the temporary working directory).  All
17506         callers changed.
17507         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
17508         * lib/mkdir-p.c (make_dir_parents): Likewise.
17509         * lib/mkdir-p.h (make_dir_parents): Likewise.
17510
17511 2006-10-06  Eric Blake  <ebb9@byu.net>
17512
17513         Define several macros for use by the clean-temp module.
17514         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
17515         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
17516         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
17517
17518         * lib/clean-temp.h (close_stream_temp): New declaration.
17519         * lib/clean-temp.c (includes): Pull in headers according to what
17520         other modules are in use.
17521         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
17522
17523 2006-10-06  Bruno Haible  <bruno@clisp.org>
17524
17525         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
17526         instead of fopen, fwriteerror.
17527
17528 2006-10-06  Bruno Haible  <bruno@clisp.org>
17529
17530         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
17531         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
17532         int.
17533         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
17534         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
17535         Return an error indicator.
17536         Suggested by Eric Blake.
17537
17538 2006-10-06  Bruno Haible  <bruno@clisp.org>
17539
17540         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
17541         Reported by Eric Blake.
17542
17543 2006-10-06  Bruno Haible  <bruno@clisp.org>
17544
17545         * modules/closeout (Description): Mention stderr too.
17546
17547 2006-10-06  Bruno Haible  <bruno@clisp.org>
17548         and Paul Eggert  <eggert@cs.ucla.edu>
17549
17550         * lib/closeout.c (close_stdout): Also close stderr.
17551         * lib/closeout.h: Update comment.
17552
17553 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
17554
17555         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
17556         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
17557         * lib/dirchownmod.c: Include lchown.h.
17558         * lib/lchown.c: Don't include files that lchown.h now includes.
17559         Don't declare chown, since lchown.h now does that.
17560         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
17561         (lchown): Define to rpl_chown if lchown is declared but
17562         does not exist.  Declare using a prototype if lchown is not
17563         declared.  Add a copyright notice.
17564         * lib/mkstemp.h: Include <unistd.h>.
17565         * lib/openat.c: Include lchown.h.
17566
17567         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
17568         we now test for that separately.
17569         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
17570         rather than O_NOFOLLOW, when testing whether it's possible to
17571         avoid a race condition reliably.
17572         * lib/savewd.c (savewd_chdir): Likewise.
17573
17574         Remove macros that are no longer needed now that stdint.h is
17575         reliable.
17576         * lib/fsusage.c (UINTMAX_MAX): Remove.
17577         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
17578         * lib/utimecmp.c (SIZE_MAX): Remove.
17579
17580         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
17581
17582         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
17583         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
17584         O_NOATIME works.
17585
17586 2006-10-05  Bruno Haible  <bruno@clisp.org>
17587
17588         * lib/gl_list.h (gl_sortedlist_search_from_to,
17589         gl_sortedlist_indexof_from_to): New declarations.
17590         (gl_list_implementation): New fields sortedlist_search_from_to,
17591         sortedlist_indexof_from_to.
17592         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
17593         inline functions.
17594         * lib/gl_list.c (gl_sortedlist_search_from_to,
17595         gl_sortedlist_indexof_from_to): New functions.
17596         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
17597         function.
17598         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
17599         (gl_array_sortedlist_search_from_to): New function.
17600         (gl_array_list_implementation): Update.
17601         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
17602         function.
17603         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
17604         (gl_carray_sortedlist_search_from_to): New function.
17605         (gl_carray_list_implementation): Update.
17606         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
17607         gl_linked_sortedlist_indexof_from_to): New functions.
17608         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
17609         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
17610         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
17611         gl_tree_sortedlist_indexof_from_to): New functions.
17612         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
17613         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
17614         Update.
17615         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
17616         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
17617         Update.
17618
17619 2006-10-05  Bruno Haible  <bruno@clisp.org>
17620
17621         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
17622         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
17623         (struct gl_list_implementation): Add fields search_from_to,
17624         indexof_from_to. Remove fields search, indexof.
17625         (gl_list_search): Use the search_from_to method.
17626         (gl_list_search_from, gl_list_search_from_to): New functions.
17627         (gl_list_indexof): Use the indexof_from_to method.
17628         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
17629         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
17630         (gl_list_search_from, gl_list_search_from_to): New functions.
17631         (gl_list_indexof): Use the indexof_from_to method.
17632         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
17633         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
17634         gl_array_indexof. Add start_index, end_index arguments.
17635         (gl_array_search_from_to): Renamed from gl_array_search. Add
17636         start_index, end_index arguments.
17637         (gl_array_remove, gl_array_list_implementation): Update.
17638         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
17639         gl_carray_indexof. Add start_index, end_index arguments.
17640         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
17641         start_index, end_index arguments.
17642         (gl_carray_remove, gl_carray_list_implementation): Update.
17643         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
17644         gl_linked_search. Add start_index, end_index arguments.
17645         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
17646         start_index, end_index arguments.
17647         (gl_linked_remove): Update.
17648         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
17649         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
17650         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
17651         field to 'size_t'.
17652         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
17653         gl_tree_search. Add start_index, end_index arguments.
17654         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
17655         start_index, end_index arguments.
17656         (gl_tree_remove): Update.
17657         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
17658         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
17659         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
17660         function.
17661         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
17662         gl_tree_search. Add start_index, end_index arguments.
17663         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
17664         start_index, end_index arguments.
17665         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
17666         Update.
17667         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
17668
17669 2006-10-05  Bruno Haible  <bruno@clisp.org>
17670
17671         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
17672
17673         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
17674         fwriteerror_temp): New declarations.
17675         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
17676         (descriptors): New variable.
17677         (cleanup): First, close the descriptors.
17678         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
17679         fclose_temp, fwriteerror_temp): New functions.
17680
17681 2006-10-04  Jim Meyering  <jim@meyering.net>
17682
17683         * lib/fts.c (fts_open): Tiny comment change.
17684
17685 2006-10-04  Bruno Haible  <bruno@clisp.org>
17686
17687         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
17688         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
17689         gl_LOCK_BODY.
17690         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
17691         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
17692         gl_LOCK_EARLY_BODY.
17693         (gl_LOCK): Require gl_LOCK_BODY.
17694
17695 2006-10-04  Bruno Haible  <bruno@clisp.org>
17696
17697         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
17698         (gl_oset_search_atleast): New declaration.
17699         (struct gl_oset_implementation): Add field 'search_atleast'.
17700         (gl_oset_search_atleast): New inline function.
17701         * lib/gl_oset.c (gl_oset_search_atleast): New function.
17702         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
17703         (gl_array_oset_implementation): Update.
17704         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
17705         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
17706         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
17707
17708 2006-10-04  Bruno Haible  <bruno@clisp.org>
17709
17710         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
17711
17712 2006-10-03  Bruno Haible  <bruno@clisp.org>
17713
17714         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
17715         from gl_avltreehash_list_implementation.
17716
17717 2006-10-03  Bruno Haible  <bruno@clisp.org>
17718
17719         * lib/gl_oset.c (gl_oset_add): Fix return type.
17720
17721 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
17722
17723         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
17724
17725 2006-10-02  Eric Blake  <ebb9@byu.net>
17726
17727         * modules/strnlen (Depends-on): Add extensions.
17728
17729 2006-10-02  Eric Blake  <ebb9@byu.net>
17730
17731         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
17732         definition in 2.60+.
17733
17734 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
17735
17736         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
17737         checks.
17738
17739 2006-10-02  Bruno Haible  <bruno@clisp.org>
17740
17741         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
17742         to the AUTOMAKE_OPTIONS.
17743         Reported by Jim Meyering.
17744
17745 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
17746
17747         Work around bug in Solaris 10 /proc file system:
17748         /proc/self/fd/NNN/.. isn't the parent directory of
17749         the directory whose file descriptor is NNN.  This needs to
17750         be worked around at run time, not compile time, since a
17751         program might be built on Solaris 8, where things work, and
17752         run on Solaris 10.
17753         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
17754         to use the following interface instead:
17755         (OPENAT_BUFFER_SIZE): New macro.
17756         (openat_proc_name): New function.
17757         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
17758         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
17759         Likewise.
17760         * lib/openat-proc.c: New file.
17761         * modules/openat (Files): Add lib/openat-proc.c.
17762         (Depends-on): Add same-inode, stdbool.
17763         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
17764
17765 2006-09-29  Bruno Haible  <bruno@clisp.org>
17766
17767         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
17768         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
17769         argument. Set stdout_closed before testing for ferror, not after.
17770         (fwriteerror, fwriteerror_no_ebadf): New functions.
17771
17772 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17773
17774         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
17775
17776 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
17777
17778         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
17779         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
17780
17781 2006-09-28  Jim Meyering  <jim@meyering.net>
17782
17783         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
17784         Include <unistd.h>.
17785
17786 2006-09-28  Bruno Haible  <bruno@clisp.org>
17787
17788         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
17789         * modules/linkedhash-list (Depends-on): Likewise.
17790         * modules/rbtreehash-list (Depends-on): Likewise.
17791
17792 2006-09-28  Bruno Haible  <bruno@clisp.org>
17793
17794         * lib/strndup.h: Simplify the redefinition of strndup.
17795         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
17796         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
17797
17798 2006-09-28  Bruno Haible  <bruno@clisp.org>
17799
17800         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
17801         * lib/gl_linkedhash_list.c: Likewise.
17802         * lib/gl_rbtreehash_list.c: Likewise.
17803
17804 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
17805
17806         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
17807         getaddrinfo.
17808
17809         * lib/__fpending.h: Don't include <stdio_ext.h> unless
17810         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
17811         it causes <stdio_ext.h> to cause a compile-time error.
17812         Problem reported by Nelson H. F. Beebe.
17813         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
17814         of HAVE_DECL___PENDING.
17815
17816         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
17817         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
17818         declaration.
17819
17820 2006-09-27  Jim Meyering  <jim@meyering.net>
17821
17822         This file could end up with a definition for a function
17823         named __strndup, rather than rpl_strndup on a system with
17824         incomplete weak_alias support.
17825         * lib/strndup.c (strndup): Rename from __strndup.
17826         Remove #defines that used to map __strndup to strndup.
17827         Don't use K&R prototypes.
17828         Remove LIBC-related code, since this file is not sync'd with glibc.
17829         * lib/strndup.h: Revamp, accordingly.
17830         * m4/strndup.m4: Modernize.
17831
17832 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
17833
17834         * modules/savewd (Depends-on): Add 'raise'.
17835         * lib/savewd.c: Include <signal.h>, for 'raise'.
17836
17837 2006-09-26  Jim Meyering  <jim@meyering.net>
17838
17839         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
17840         when we detect Darwin 8.7.0's acl_get_file bug.
17841         Rearrange to perform the new (below) run-test while $LIBS
17842         contains any acl-related library.  Set USE_ACL at the end.
17843         (gl_ACL_GET_FILE): New function.
17844
17845 2006-09-26  Eric Blake  <ebb9@byu.net>
17846
17847         * lib/verror.c: Include <config.h> unconditionally.
17848
17849 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
17850
17851         * modules/clock-time (Maintainer): Add self.
17852         * modules/getlogin_r (Depends-on): Add extensions.
17853
17854 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17855
17856         * modules/clock-time: New module.
17857         * modules/nanosleep (Depends-on): Add clock-time.
17858         * modules/gethrxtime (Depends-on): Likewise.
17859         * modules/gettime (Depends-on): Likewise.
17860         * modules/settime (Depends-on): Likewise.
17861
17862         * modules/fts-lgpl: Depend on openat.
17863         * modules/mkancesdirs: Depend on savewd.
17864         * modules/mkdir-p: Likewise.
17865
17866 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17867
17868         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
17869
17870         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
17871         `gl_have_arbitrary_file_name_length_limit' to
17872         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
17873         actually works between configure runs.
17874
17875 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17876             Bruno Haible  <bruno@clisp.org>
17877
17878         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
17879
17880 2006-09-25  Jim Meyering  <jim@meyering.net>
17881
17882         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
17883         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
17884
17885 2006-09-25  Eric Blake  <ebb9@byu.net>
17886
17887         * gnulib-tool (func_import, func_create_testdir): Fix typos in
17888         exec's in 2006-09-18 patch when shuffling fds.
17889
17890 2006-09-25  Bruno Haible  <bruno@clisp.org>
17891
17892         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
17893         Reported by Jim Meyering.
17894
17895 2006-09-24  Jim Meyering  <jim@meyering.net>
17896
17897         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
17898         compare a pointer against a literal "0".  That caused failures with
17899         at least HP-UX's hpcc.
17900
17901 2006-09-22  Simon Josefsson  <jas@extundo.com>
17902
17903         * modules/gc-sha1:
17904         * modules/gc-md4:
17905         * modules/gc-hmac-sha1:
17906         * modules/gc-hmac-md5:
17907         * modules/gc-des:
17908         * modules/gc-arcfour: Distribute more files.
17909
17910 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17911
17912         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
17913         (gl_linked_iterator_from_to): Initialize struct completely.
17914         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
17915         (gl_tree_iterator_from_to): Likewise
17916         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
17917         * lib/gl_array_list.c [lint] (gl_array_iterator)
17918         (gl_array_iterator_from_to): Likewise.
17919         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
17920         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
17921         (gl_carray_iterator_from_to): Likewise.
17922
17923         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
17924         * lib/md4.c (md4_process_block): Remove unused variable.
17925         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
17926         parentheses for clarity.
17927
17928 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17929
17930         * modules/bison-i18n (Depends-on): Add gettext.
17931
17932 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17933
17934         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
17935         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
17936         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
17937         also add missing comma that caused broken test.
17938         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
17939         stdlib.h, for `abort'.
17940         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
17941         variables.
17942         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
17943         include unistd.h if present, for `rmdir'.
17944         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
17945         variables.
17946         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
17947         in the process include standard headers for prototypes.
17948         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
17949         gets declared on GNU/Linux.
17950         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
17951         unistd.h, for `rmdir'.
17952         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
17953
17954         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
17955         always true.
17956         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
17957
17958         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
17959
17960 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17961
17962         * gnulib-tool (func_version): Create output all at once.  This
17963         may help avoid triggering unnecessary SIGPIPEs, and at any
17964         rate it doesn't hurt.
17965
17966 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17967             Bruno Haible  <bruno@clisp.org>
17968
17969         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
17970         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
17971         * m4/signed.m4 (bh_C_SIGNED): Likewise.
17972
17973         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
17974         (gl_FUNC_VASPRINTF): Invoke it.
17975
17976 2006-09-22  Bruno Haible  <bruno@clisp.org>
17977
17978         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
17979         getloadavg.c as first argument.
17980
17981 2006-09-22  Bruno Haible  <bruno@clisp.org>
17982
17983         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
17984         at the beginning of the gl_INIT macro.
17985         * modules/getloadavg (configure.ac): Pass $gl_source_base to
17986         gl_GETLOADAVG.
17987
17988 2006-09-22  Bruno Haible  <bruno@clisp.org>
17989
17990         * gnulib-tool (func_create_megatestdir): Don't include the config-h
17991         module.
17992         Suggested by Ralf Wildenhues.
17993
17994 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
17995
17996         Import this patch from libc:
17997
17998         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
17999
18000         * lib/regex_internal.c (re_string_reconstruct): Handle
18001         offset < pstr->valid_raw_len && pstr->offsets_needed case.
18002         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
18003         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
18004         re_string_context_at.
18005
18006         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
18007         now requires it.
18008         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
18009         gl_REGEX now does it for us.
18010         (gl_REGEX): Add test taken from
18011         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
18012
18013         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
18014         Check that large offsets work.  Modernize Autoconf usages.
18015         Prefer "yes" to mean a good thing rather than a bad.
18016         Don't put "#define mkstemp" in config.h, as this might interfere
18017         with standard system headers that "#define mkstemp mkstemp64".
18018
18019         * modules/mkstemp (Depends-on): Add extensions, so that
18020         mkstemp is visible on some platforms.
18021         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
18022         (Include): Change to "mkstemp.h" from <stdlib.h>.
18023         (Files): Add mkstemp.h.
18024
18025         * lib/mkstemp.h: New file, since some standard headers
18026         #define mkstemp.
18027         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
18028         Include "mkstemp.h".
18029         Make the _LIBC code resemble glibc original more,
18030         e.g., use K&R style.
18031         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
18032         (mkstemp): Remove, since mkstemp.h does this for us.
18033         * lib/stdlib--.h: Include mkstemp.h.
18034
18035         Import this patch from libc:
18036
18037         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
18038
18039         * lib/tempname.c (__gen_tempname): Change attempts_min
18040         into a macro.  Use preprocessor to decide how to initialize
18041         attempts [Coverity CID 67].
18042
18043 2006-09-20  Bruno Haible  <bruno@clisp.org>
18044
18045         * lib/mkdtemp.c: Import from libc.
18046         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
18047                 * sysdeps/posix/tempname.c (__gen_tempname): Change
18048                 attempts_min into a macro.  Use preprocessor to decide how to
18049                 initialize attempts [Coverity CID 67].
18050         2001-11-27  Paul Eggert  <eggert@twinsun.com>
18051                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
18052                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
18053
18054 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18055
18056         * gnulib-tool (func_exit): New function, to allow to pass the
18057         exit status portably through the trap.  Use everywhere.
18058         (--help, --version): Signal a write error.
18059         (trap): catch SIGPIPE, for write errors.
18060         Exit at the end of the trap, with the correct exit status.
18061
18062 2006-09-19  Karl Berry  <karl@gnu.org>
18063
18064         * doc/gnulib.texi: note about the license texinfo files.
18065
18066 2006-09-19  Eric Blake  <ebb9@byu.net>
18067
18068         * gnulib-tool: Avoid space-tab.
18069
18070 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
18071
18072         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
18073         that prevented coreutils 6.1 from building.  Problem reported
18074         by Petter Reinholdtsen.
18075
18076 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
18077
18078         * gnulib-tool (avoidlist): Fix typo that broke options like
18079         --avoid=lock that are used by coreutils bootstrap.
18080
18081 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
18082
18083         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
18084         more systematically.
18085
18086 2006-09-18  Jim Meyering  <jim@meyering.net>
18087
18088         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
18089
18090 2006-09-18  Bruno Haible  <bruno@clisp.org>
18091
18092         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
18093
18094 2006-09-18  Bruno Haible  <bruno@clisp.org>
18095
18096         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
18097         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
18098         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
18099         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
18100         * m4/gettext.m4: Require autoconf >= 2.52.
18101         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
18102         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
18103         of gl_cv_header_inttypes_h.
18104
18105 2006-09-18  Bruno Haible  <bruno@clisp.org>
18106
18107         * lib/javaversion.c: Include configmake.h.
18108
18109 2006-09-18  Bruno Haible  <bruno@clisp.org>
18110
18111         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
18112         avoid that the while loops be executed in a subshell.
18113
18114 2006-09-18  Bruno Haible  <bruno@clisp.org>
18115
18116         * MODULES.html.sh (func_module): Break long lines.
18117         Suggested by Bruce Korb <bkorb@gnu.org>.
18118
18119 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18120
18121         Speed up by a factor of 1.12.
18122         * gnulib-tool (nl): New variable.
18123         (func_import): Rewrite include directive extraction to only read each
18124         directive once.
18125
18126 2006-09-17  Bruno Haible  <bruno@clisp.org>
18127
18128         * modules/javaversion (Makefile.am): Remove DEFS setting.
18129         (Depends-on): Add configmake, for PKGDATADIR definition.
18130
18131 2006-09-17  Bruno Haible  <bruno@clisp.org>
18132
18133         * gnulib-tool (func_create_testdir): Rewrite all files at once.
18134
18135 2006-09-17  Bruno Haible  <bruno@clisp.org>
18136
18137         * gnulib-tool (func_append): New function, stolen from libtool.m4.
18138         (func_modules_transitive_closure, func_modules_add_dummy,
18139         func_modules_to_filelist, func_import, func_create_testdir,
18140         func_create_megatestdir, ...): Use it wherever possible.
18141         Suggested by Ralf Wildenhues.
18142
18143 2006-09-16  Karl Berry  <karl@gnu.org>
18144
18145         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
18146         to avoid sectioning errors.
18147         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
18148         [ifinfo]: blank line after @center-ed titles.
18149         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
18150         Spell FSF address consistently with others.
18151         (These changes approved by rms.)
18152
18153 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18154
18155         Speed up by a factor of 1.61.
18156         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
18157         already checked module names again.
18158
18159 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18160
18161         Speed up by a factor of 1.13.
18162         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
18163         for new_files, and the input to func_add_or_update.
18164
18165 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18166
18167         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
18168         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
18169
18170 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18171
18172         * modules/mkancesdirs (Depends-on): Add fcntl.
18173         * modules/savewd: New file.
18174         * MODULES.html.sh (File system functions): Add savewd.
18175
18176         * modules/configmake (Makefile.am): Add support for the
18177         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
18178
18179 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18180
18181         * m4/savewd.m4: New file.
18182
18183 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18184
18185         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
18186         (dirchownmod): New arg FD.  All callers changed.
18187         Use FD rather than opening the directory ourself, as opening is
18188         now the caller's responsibility.
18189         * lib/dirchownmod.h: Likewise.
18190         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
18191         hosts that require <sys/types.h> before <sys/stat.h>.  Include
18192         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
18193         (test_dir): Remove.
18194         (mkancesdirs): Return length of prefix of FILE that has already
18195         been made, or -2 if there is a child doing the work.  Redo
18196         algorithm so that it is O(N) rather than O(N**2).  Optimize away
18197         ".", and treat ".." specially since it might stray back into
18198         already-created areas.  Use a subprocess if necessary.  New arg
18199         WD; all users changed.  MAKE_DIR function should now return 1
18200         if it creates a directory that is not readable.  Return -2 if
18201         a child process is spun off.
18202         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
18203         Adjust signature to match code.
18204         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
18205         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
18206         all users changed.
18207         * lib/savewd.c, lib/savewd.h: New files.
18208
18209 2006-09-15  Jim Meyering  <jim@meyering.net>
18210
18211         * modules/rename-dest-slash: New module.
18212         * MODULES.html.sh (posix_compat): Add it here.
18213
18214         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
18215
18216 2006-09-15  Jim Meyering  <jim@meyering.net>
18217
18218         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
18219         file.
18220
18221         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
18222
18223 2006-09-15  Jim Meyering  <jim@meyering.net>
18224
18225         * lib/rename-dest-slash.c (has_trailing_slash): Use
18226         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
18227         (rpl_rename_dest_slash): Perform the cheaper trailing slash
18228         test before testing whether SRC is a directory.
18229         Suggestions from Bruno Haible.
18230
18231         Avoid a warning about an unused variable.
18232         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
18233         into the #ifdef block where it's used.
18234
18235         * lib/rename-dest-slash.c: New file.
18236
18237 2006-09-14  Bruno Haible  <bruno@clisp.org>
18238
18239         * lib/allocsa.c: Include <config.h> unconditionally.
18240         * lib/asnprintf.c: Likewise.
18241         * lib/asprintf.c: Likewise.
18242         * lib/c-strcasecmp.c: Likewise.
18243         * lib/c-strcasestr.c: Likewise.
18244         * lib/c-strncasecmp.c: Likewise.
18245         * lib/c-strstr.c: Likewise.
18246         * lib/classpath.c: Likewise.
18247         * lib/clean-temp.c: Likewise.
18248         * lib/concatpath.c: Likewise.
18249         * lib/copy-file.c: Likewise.
18250         * lib/csharpcomp.c: Likewise.
18251         * lib/csharpexec.c: Likewise.
18252         * lib/execute.c: Likewise.
18253         * lib/fatal-signal.c: Likewise.
18254         * lib/findprog.c: Likewise.
18255         * lib/fwriteerror.c: Likewise.
18256         * lib/gl_array_list.c: Likewise.
18257         * lib/gl_array_oset.c: Likewise.
18258         * lib/gl_avltree_list.c: Likewise.
18259         * lib/gl_avltree_oset.c: Likewise.
18260         * lib/gl_avltreehash_list.c: Likewise.
18261         * lib/gl_carray_list.c: Likewise.
18262         * lib/gl_linked_list.c: Likewise.
18263         * lib/gl_linkedhash_list.c: Likewise.
18264         * lib/gl_list.c: Likewise.
18265         * lib/gl_oset.c: Likewise.
18266         * lib/gl_rbtree_list.c: Likewise.
18267         * lib/gl_rbtree_oset.c: Likewise.
18268         * lib/gl_rbtreehash_list.c: Likewise.
18269         * lib/imaxabs.c: Likewise.
18270         * lib/imaxdiv.c: Likewise.
18271         * lib/javacomp.c: Likewise.
18272         * lib/javaexec.c: Likewise.
18273         * lib/javaversion.c: Likewise.
18274         * lib/linebreak.c: Likewise.
18275         * lib/localcharset.c: Likewise.
18276         * lib/lock.c: Likewise.
18277         * lib/mbchar.c: Likewise.
18278         * lib/mbswidth.c: Likewise.
18279         * lib/mkdtemp.c: Likewise.
18280         * lib/pipe.c: Likewise.
18281         * lib/printf-args.c: Likewise.
18282         * lib/printf-parse.c: Likewise.
18283         * lib/progname.c: Likewise.
18284         * lib/progreloc.c: Likewise.
18285         * lib/readlink.c: Likewise.
18286         * lib/sh-quote.c: Likewise.
18287         * lib/stpcpy.c: Likewise.
18288         * lib/stpncpy.c: Likewise.
18289         * lib/strcasecmp.c: Likewise.
18290         * lib/strcasestr.c: Likewise.
18291         * lib/strcspn.c: Likewise.
18292         * lib/striconv.c: Likewise.
18293         * lib/strncasecmp.c: Likewise.
18294         * lib/strnlen1.c: Likewise.
18295         * lib/strstr.c: Likewise.
18296         * lib/strtok_r.c: Likewise.
18297         * lib/tls.c: Likewise.
18298         * lib/tmpdir.c: Likewise.
18299         * lib/unicodeio.c: Likewise.
18300         * lib/unsetenv.c: Likewise.
18301         * lib/vasnprintf.c: Likewise.
18302         * lib/vasprintf.c: Likewise.
18303         * lib/wait-process.c: Likewise.
18304         * lib/xallocsa.c: Likewise.
18305         * lib/xsetenv.c: Likewise.
18306         * lib/xstriconv.c: Likewise.
18307
18308 2006-09-13  Simon Josefsson  <jas@extundo.com>
18309
18310         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
18311         that internally, suggested by Ralf Wildenhues
18312         <Ralf.Wildenhues@gmx.de>.
18313
18314 2006-09-13  Simon Josefsson  <jas@extundo.com>
18315
18316         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
18317         @LIBOBJS@.
18318         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18319
18320 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
18321
18322         * lib/_fpending.c: Include <config.h> unconditionally, since we no
18323         longer worry about uses that don't define HAVE_CONFIG_H.
18324         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
18325         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
18326         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
18327         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
18328         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
18329         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
18330         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
18331         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
18332         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
18333         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
18334         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
18335         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
18336         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
18337         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
18338         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
18339         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
18340         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
18341         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
18342         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
18343         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
18344         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
18345         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
18346         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
18347         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
18348         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
18349         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
18350         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
18351         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
18352         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
18353         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
18354         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
18355         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
18356         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
18357         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
18358         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
18359         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
18360         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
18361         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
18362         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
18363         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
18364         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
18365         Likewise.
18366
18367 2006-09-13  Eric Blake  <ebb9@byu.net>
18368
18369         * lib/getopt.c: Fix typo in last commit.
18370
18371 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
18372
18373         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
18374         dgettext.
18375
18376 2006-09-12  Jim Meyering  <jim@meyering.net>
18377
18378         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
18379         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
18380         Reported by Nelson H. F. Beebe.
18381
18382 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
18383
18384         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
18385         program_invocation_name and program_invocation_short_name are
18386         initialized.
18387         * lib/argp-namefrob.h: Move declarations of program_invocation_name
18388         and program_invocation_short_name to argp.h, so they are visible
18389         to user programs.
18390         * lib/argp.h: Likewise
18391
18392 2006-09-10  Bruno Haible  <bruno@clisp.org>
18393
18394         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
18395         m4/inttypes_h.m4, m4/uintmax_t.m4.
18396
18397 2006-09-10  Bruno Haible  <bruno@clisp.org>
18398
18399         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
18400         gl_AC_TYPE_UINTMAX_T.
18401
18402 2006-09-10  Bruno Haible  <bruno@clisp.org>
18403
18404         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
18405
18406 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18407
18408         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
18409         convention.  Text proposed by Bruno Haible.
18410         (struct argp_option): Document the use of N_() wrappers.
18411
18412         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
18413         '\v', and translate the two parts separately, instead of feeding
18414         the whole string to gettext.  This allows to exclude
18415         '\v' from the strings visible to the translator by writing doc
18416         strings as N_("..") "\v" N_("..").
18417
18418 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
18419
18420         * config/srclist.txt: Undo latest change; the bug was fixed.
18421
18422 2006-09-09  Bruno Haible  <bruno@clisp.org>
18423
18424         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
18425         assignments if building a library without libtool.
18426         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
18427         in func_emit_lib_Makefile_am.
18428         (func_import): When building a static library libfoo.a, arrange to
18429         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
18430         (func_create_testdir): Likewise.
18431         * modules/gc (configure.ac, Makefile.am): If building statically,
18432         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
18433         * modules/iconvme (configure.ac, Makefile.am): Likewise.
18434         * modules/striconv (configure.ac, Makefile.am): Likewise.
18435         Based on a suggestion by Ralf Wildenhues.
18436
18437 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18438
18439         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
18440         Check for unistd.h too, since Autoconf doesn't assume POSIX.
18441         Also:
18442
18443         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18444         Add year_2050_test to catch glibc bug 2821
18445         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
18446
18447         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
18448         Prefer #ifdef to #if.
18449
18450         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
18451         Return from 'main' instead of calling 'exit'.
18452
18453 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18454
18455         * lib/mktime.c (guess_time_tm): Fix bug where mktime
18456         returned the maximum time_t value rather than (time_t) -1.
18457         Problem originally reported by William Bardwell
18458         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
18459
18460         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
18461         Moved to here ...
18462         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
18463         ... from here.
18464
18465 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18466
18467         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
18468         2821 is fixed.
18469
18470 2006-09-08  Jim Meyering  <jim@meyering.net>
18471
18472         Don't make generated files read-only.  That would bother too many
18473         people.  However, do retain the ability to work when targets are
18474         read-only: remove the destination and temporary files before writing
18475         them (when generated via sed or echo), or by using the -f option for
18476         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
18477         * modules/alloca-opt, modules/argz, modules/arpa_inet:
18478         * modules/byteswap, modules/configmake, modules/fcntl:
18479         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
18480         * modules/localcharset, modules/netinet_in, modules/poll:
18481         * modules/stdbool, modules/stdint, modules/sys_select:
18482         * modules/sys_socket, modules/sys_stat, modules/sysexits:
18483
18484 2006-09-08  Jim Meyering  <jim@meyering.net>
18485
18486         Avoid new build failure on FreeBSD 6.0.
18487         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
18488         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
18489         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
18490
18491 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18492
18493         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
18494
18495 2006-09-07  Jim Meyering  <jim@meyering.net>
18496
18497         Fix global typo in last change: use chmod u-w, not chmod u-x.
18498         Spotted by Paul Eggert and Bruce Korb.
18499         * modules/alloca-opt, modules/argz, modules/arpa_inet:
18500         * modules/byteswap, modules/configmake, modules/fcntl:
18501         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
18502         * modules/localcharset, modules/netinet_in, modules/poll:
18503         * modules/stdbool, modules/stdint, modules/sys_select:
18504         * modules/sys_socket, modules/sys_stat, modules/sysexits:
18505
18506 2006-09-06  Jim Meyering  <jim@meyering.net>
18507
18508         Make generated files be read-only.
18509         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
18510         Ensure that each generated file is now read-only.
18511         * modules/argz: Likewise.
18512         * modules/arpa_inet: Likewise.
18513         * modules/byteswap: Likewise.
18514         * modules/configmake: Likewise.
18515         * modules/fcntl: Likewise.
18516         * modules/fnmatch: Likewise.
18517         * modules/getopt: Likewise.
18518         * modules/glob: Likewise.
18519         * modules/inttypes: Likewise.
18520         * modules/netinet_in: Likewise.
18521         * modules/poll: Likewise.
18522         * modules/stdbool: Likewise.
18523         * modules/stdint: Likewise.
18524         * modules/sys_select: Likewise.
18525         * modules/sys_socket: Likewise.
18526         * modules/sys_stat: Likewise.
18527         * modules/sysexits: Likewise.
18528         * modules/localcharset: Same as above, but continue using temporary
18529         file named "t-$@" (why different?) rather than the "$@-t" used
18530         everywhere else.
18531
18532         * modules/sysexits (Makefile.am): Replace literal occurrences
18533         of "sysexit.h" more readable, and more consistent, "$@".
18534
18535 2006-09-06  Bruno Haible  <bruno@clisp.org>
18536
18537         * modules/striconv: New file.
18538         * modules/xstriconv: New file.
18539         * MODULES.html.sh (Internationalization functions): Add striconv,
18540         xstriconv.
18541
18542 2006-09-06  Bruno Haible  <bruno@clisp.org>
18543
18544         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
18545         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
18546         not using libtool correctly.
18547
18548 2006-09-06  Bruno Haible  <bruno@clisp.org>
18549
18550         * lib/striconv.h: New file.
18551         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
18552         iconvstring.c.
18553         * lib/xstriconv.h: New file.
18554         * lib/xstriconv.c: New file.
18555
18556 2006-09-06  Bruno Haible  <bruno@clisp.org>
18557
18558         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
18559         lib_..._LDFLAGS.
18560
18561 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18562
18563         * lib/argz_.h: Sync from Libtool.
18564
18565         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
18566                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
18567
18568         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
18569
18570 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
18571
18572         * modules/trim: New file.
18573
18574 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
18575
18576         * lib/trim.h: New file.
18577         * lib/trim.c: New file.
18578
18579 2006-09-05  Bruno Haible  <bruno@clisp.org>
18580
18581         * MODULES.html.sh (String handling): Add trim.
18582
18583 2006-09-04  Karl Berry  <karl@gnu.org>
18584
18585         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
18586         until next release.
18587
18588 2006-09-03  Bruno Haible  <bruno@clisp.org>
18589
18590         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
18591         correctly.
18592
18593 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18594
18595         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
18596         not gl_GETLOADAVG.  Omit unneeded semicolons.
18597         Problems reported by Ralf Wildenhues in
18598         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
18599         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
18600         at the end, which is the usual gnulib style.
18601
18602         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
18603         of doing all the work ourselves.
18604         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
18605         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
18606
18607 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18608
18609         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
18610         Problem reported by Ralf Wildenhues in
18611         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
18612
18613         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
18614         HAVE_STRUCT_STATFS_F_FSTYPENAME.
18615
18616 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18617
18618         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
18619         yesterday's patch by changing test -n to test -z.
18620
18621 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18622
18623         * modules/getloadavg (Files): Add m4/getloadavg.m4.
18624         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
18625         the former is now obsolescent.
18626
18627         * modules/chdir-long (Depends-on): Add fcntl.
18628
18629 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18630
18631         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
18632         obsolescent, and programs should use gnulib instead.
18633         * m4/getloadavg.m4: New file, with contents taken from Autoconf
18634         but with prefixes changed.
18635
18636 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18637
18638         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
18639         or stdbool.h, because they might not exist while configuring.
18640
18641         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
18642         Don't include unistd.h or limits.h; not needed, since chdir-long.h
18643         does that for us.
18644         (O_DIRECTORY): Remove.
18645
18646 2006-08-31  Eric Blake  <ebb9@byu.net>
18647
18648         * gnulib-tool: Don't let emacs change spaces to TAB.
18649
18650 2006-08-31  Bruno Haible  <bruno@clisp.org>
18651
18652         * gnulib-tool: When calling func_import more than once, do it in a
18653         subshell.
18654         Reported by Eric Blake <ebb9@byu.net>.
18655
18656 2006-08-31  Bruno Haible  <bruno@clisp.org>
18657
18658         * gnulib-tool (nl): Remove variable.
18659         (sed_transform_lib_file): Use more robust test for config-h module.
18660         (func_import): Fix typo in 2006-08-25 patch.
18661
18662 2006-08-31  Bruno Haible  <bruno@clisp.org>
18663
18664         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
18665         specified, augment Makefile.am variables instead of assigning them.
18666
18667 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18668
18669         Work around a bug in both the Linux and SunOS 64-bit kernels:
18670         nanosleep mishandles sleeps for longer than 2**31 seconds.
18671         Problem reported by Frank v Waveren in
18672         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
18673         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
18674         Check for nanosleep bug.
18675         (LIB_NANOSLEEP): Append clock_gettime library if needed.
18676
18677 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18678
18679         Work around a bug in both the Linux and SunOS 64-bit kernels:
18680         nanosleep mishandles sleeps for longer than 2**31 seconds.
18681         Problem reported by Frank v Waveren in
18682         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
18683         * lib/nanosleep.c (BILLION): New constant.
18684         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
18685         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
18686         implementation.
18687
18688 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18689
18690         * modules/nanosleep (Depends-on): Add gettime.
18691
18692 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18693         and Simon Josefsson  <jas@extundo.com>
18694         and Oskar Liljeblad  <oskar@osk.mine.nu>
18695
18696         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
18697         * gnulib-tool (func_import): New license type 'unmodifiable license
18698         text'.
18699         * modules/fdl: Use it.  Longer description.
18700         * module/gpl, module/lgpl: New files.
18701
18702 2006-08-30  Jim Meyering  <jim@meyering.net>
18703
18704         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
18705         shadowing the parameter.
18706
18707 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18708
18709         Sync from Libtool:
18710
18711         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18712
18713         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
18714         sharing with gnulib.  Report by Eric Blake.
18715
18716 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18717
18718         * modules/isapipe: New file.
18719         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
18720
18721 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18722
18723         * modules/configmake (Makefile.am): Add a comment, and omit
18724         the CONFIGMAKE_ prefix from generated macro names.  Suggested
18725         by Bruno Haible.
18726
18727 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18728
18729         * m4/isapipe.m4: New file.
18730
18731 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18732
18733         * lib/isapipe.c, lib/isapipe.h: New files.
18734
18735 2006-08-29  Jim Meyering  <jim@meyering.net>
18736
18737         * modules/configmake (Makefile.am): Make configmake.h depend on
18738         Makefile.  Otherwise, a stale configmake.h could hang around.
18739
18740 2006-08-29  Eric Blake  <ebb9@byu.net>
18741
18742         * lib/error.c (error_at_line, print_errno_message): Match libc, after
18743         resolution of upstream bug 3044.
18744
18745 2006-08-29  Bruno Haible  <bruno@clisp.org>
18746
18747         * modules/localcharset (Depends-on): Add configmake.
18748         (Makefile.am): Remove setting of LIBDIR through DEFS.
18749
18750 2006-08-29  Bruno Haible  <bruno@clisp.org>
18751
18752         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
18753         defined.
18754
18755 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18756
18757         * modules/fcntl: New file.
18758         * modules/chdir-safer (Depends-on): Add fcntl.
18759         * modules/fts: Likewise.
18760         * modules/mkdir-p: Likewise.
18761
18762         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
18763         This undoes the most recent change, since we're now addressing the
18764         problem in a different way.
18765
18766         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
18767         into output, since the output might be called Makefile.am even
18768         if $makefile_name is something different.
18769         (func_import): Use $makefile_am rather than
18770         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
18771         empty.
18772
18773         * modules/inttypes (Files): Add m4/inttypes-h.m4.
18774
18775 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18776
18777         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
18778         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
18779         recent change to stdint.m4, since we're now addressing the problem in a
18780         different way.
18781
18782 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18783
18784         * m4/fcntl_h.m4: New file.
18785
18786 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18787
18788         * lib/fcntl_.h: New file.
18789         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
18790         the fcntl module.
18791         * lib/dirchownmod.c: Likewise.
18792         * lib/fts.c: Likewise.
18793
18794         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
18795         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
18796         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
18797         just before including <inttypes.h>, to avoid circular inclusion.
18798
18799 2006-08-28  Jim Meyering  <jim@meyering.net>
18800
18801         * doc/visibility.texi: Actually read and correct the grammar of the
18802         sentence affected by yesterday's change.
18803
18804 2006-08-28  Eric Blake  <ebb9@byu.net>
18805
18806         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
18807         needs wrapper.
18808
18809 2006-08-28  Eric Blake  <ebb9@byu.net>
18810
18811         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
18812
18813 2006-08-28  Eric Blake  <ebb9@byu.net>
18814
18815         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
18816
18817 2006-08-28  Bruno Haible  <bruno@clisp.org>
18818
18819         * modules/c-strstr: New file, from GNU gettext.
18820         * MODULES.html.sh (String handling): Add c-strstr.
18821
18822 2006-08-28  Bruno Haible  <bruno@clisp.org>
18823
18824         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
18825         macros.
18826         Reported by Eric Blake.
18827
18828 2006-08-28  Bruno Haible  <bruno@clisp.org>
18829
18830         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
18831         (VASNPRINTF): Return a string of length > INT_MAX without failing.
18832         * lib/vasprintf.c: Include errno.h, limits.h.
18833         (EOVERFLOW): New fallback definition.
18834         (vasprintf): Test here whether the string length is > INT_MAX.
18835         * lib/vsnprintf.c: Include errno.h, limits.h.
18836         (EOVERFLOW): New fallback definition.
18837         (vsnprintf): Fix bug when generated string was too long for the buffer.
18838         Test here whether the string length is > INT_MAX.
18839
18840 2006-08-28  Bruno Haible  <bruno@clisp.org>
18841
18842         * lib/inttypes_.h (SCNX*): Remove definitions.
18843         Reported by Eric Blake.
18844
18845 2006-08-28  Bruno Haible  <bruno@clisp.org>
18846
18847         * lib/c-strstr.h: New file, from GNU gettext.
18848         * lib/c-strstr.c: New file, from GNU gettext.
18849
18850 2006-08-28  Bruno Haible  <bruno@clisp.org>
18851
18852         * gnulib-tool: Reorder some statements.
18853
18854 2006-08-28  Bruno Haible  <bruno@clisp.org>
18855
18856         * gnulib-tool: New option --makefile-name.
18857         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
18858         $makefile_name.
18859         (func_import): Write $makefile_name to the cache file, and read it from
18860         there unless explicitly specified. Use $makefile_name as file name
18861         instead of Makefile.am. Adjust the recommendations accordingly.
18862
18863 2006-08-28  Bruno Haible  <bruno@clisp.org>
18864
18865         * gnulib-tool (func_verify_module): Check against misapplying patch.
18866
18867 2006-08-28  Bruno Haible  <bruno@clisp.org>
18868
18869         * gnulib-tool (func_relativize, func_relconcat): New functions.
18870         Give an error if --local-dir is given with --update.
18871         Remove trailing slashes from $local_gnulib_dir.
18872         (func_import): Store the relativized $local_gnulib_dir in
18873         gnulib-cache.m4, and read it from there if not specified explicitly.
18874
18875 2006-08-28  Bruno Haible  <bruno@clisp.org>
18876
18877         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
18878         is the current directory. Respect also $local_gnulib_dir.
18879
18880 2006-08-28  Bruno Haible  <bruno@clisp.org>
18881             Simon Josefsson  <jas@extundo.com>
18882
18883         BeOS portability.
18884         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
18885
18886 2006-08-27  Jim Meyering  <jim@meyering.net>
18887
18888         * doc/visibility.texi: Remove duplicate word: "pointer".
18889
18890 2006-08-26  Bruno Haible  <bruno@clisp.org>
18891
18892         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
18893         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
18894         (Makefile.am): Create inttypes.h from inttypes_.h.
18895         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
18896
18897         * modules/imaxabs: New file.
18898
18899         * modules/imaxdiv: New file.
18900
18901 2006-08-26  Bruno Haible  <bruno@clisp.org>
18902
18903         * m4/inttypes.m4: New file.
18904         * m4/_inttypes_h.m4: Remove file.
18905         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
18906         PRI_MACROS_BROKEN.
18907         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
18908
18909         * m4/imaxabs.m4: New file.
18910
18911         * m4/imaxdiv.m4: New file.
18912
18913 2006-08-26  Bruno Haible  <bruno@clisp.org>
18914
18915         * lib/inttypes_.h: New file.
18916         * lib/inttypes.h: Remove file.
18917         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
18918
18919         * lib/imaxabs.c: New file.
18920
18921         * lib/imaxdiv.c: New file.
18922
18923 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18924
18925         New config-h module, so that "make" output needn't be cluttered
18926         by -DHAVE_CONFIG_H.
18927         * MODULES.html.sh (Support for building libraries and executables):
18928         Add config-h.
18929         * modules/config-h: New file.
18930         * gnulib-tool (nl, sed_transform_lib_file): New vars.
18931         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
18932         the config-h module is used.
18933
18934         New configmake module, so that "make" output needn't be cluttered
18935         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
18936         * MODULES.html.sh (Support for building libraries and executables):
18937         Add configmake.
18938         * modules/configmake: New file.
18939
18940 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18941
18942         * m4/config-h.m4: New file.
18943
18944 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18945
18946         * config/srclist.txt: Add elisp-comp.
18947
18948 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18949
18950         * MODULES.html.sh (Support for building libraries and executables):
18951         Add elisp-comp.
18952         * build-aux/elisp-comp: New file.
18953         * modules/elisp-comp: New file.
18954
18955 2006-08-24  Bruno Haible  <bruno@clisp.org>
18956
18957         * gnulib-tool (func_create_testdir): Use non-default values of
18958         sourcebase and m4base.
18959
18960 2006-08-24  Bruno Haible  <bruno@clisp.org>
18961
18962         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
18963         HTML structure.
18964
18965 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18966
18967         * modules/openat (Depends-on): Add lchown.
18968
18969 2006-08-23  Bruno Haible  <bruno@clisp.org>
18970
18971         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
18972         of gl_LOCK_EARLY instead of gl_LOCK.
18973
18974 2006-08-23  Bruno Haible  <bruno@clisp.org>
18975
18976         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
18977         on OSF/1 to no.
18978         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
18979
18980 2006-08-23  Bruno Haible  <bruno@clisp.org>
18981
18982         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
18983         as unusable.
18984
18985         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
18986         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
18987         (gl_LOCK): New macro.
18988
18989 2006-08-22  Simon Josefsson  <jas@extundo.com>
18990
18991         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
18992         to md5 module.
18993
18994 2006-08-22  Simon Josefsson  <jas@extundo.com>
18995
18996         * MODULES.html.sh: Add "Support for maintaining and release
18997         projects".
18998
18999         * build-aux/gnupload: New file, from coreutils.
19000
19001 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19002
19003         Avoid the need for AC_LIBSOURCES in m4 macros.
19004         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
19005         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
19006         * modules/check-version (EXTRA_DIST): Add check-version.h.
19007         * modules/crc (EXTRA_DIST): Add crc.h.
19008         * modules/des (EXTRA_DIST): Add des.h.
19009         * modules/gc (EXTRA_DIST): Add gc.h.
19010         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
19011         * modules/getline (EXTRA_DIST): Add getline.h.
19012         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
19013         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
19014         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
19015         * modules/md2 (EXTRA_DIST): Add md2.h.
19016         * modules/md4 (EXTRA_DIST): Add md4.h.
19017         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
19018         * modules/read-file (EXTRA_DIST): Add read-file.h.
19019         * modules/readline (EXTRA_DIST): Add readline.h.
19020         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
19021         rijndael-api-fst.h.
19022
19023 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19024
19025         * m4/rijndael.m4 (gl_ARCFOUR):
19026         * m4/arctwo.m4 (gl_ARCTWO):
19027         * m4/check-version.m4 (gl_CHECK_VERSION):
19028         * m4/crc.m4 (gl_CRC):
19029         * m4/des.m4 (gl_DES):
19030         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
19031         * m4/gc.m4 (gl_GC):
19032         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
19033         * m4/getline.m4 (gl_FUNC_GETLINE):
19034         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
19035         * m4/hmac-md5.m4 (gl_HMAC_MD5):
19036         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
19037         * m4/md2.m4 (gl_MD2):
19038         * m4/md4.m4 (gl_MD4):
19039         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
19040         * m4/read-file.m4 (gl_FUNC_READ_FILE):
19041         * m4/readline.m4 (gl_FUNC_READLINE):
19042         * m4/rijndael.m4 (gl_RIJNDAEL):
19043         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
19044         to get the necessary .h files and whatnot.
19045
19046 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19047
19048         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
19049         gnulib rather than the other way around.
19050         * config/srclistvars.sh (COREUTILS): Remove.
19051
19052 2006-08-22  Jim Meyering  <jim@meyering.net>
19053
19054         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
19055
19056         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
19057
19058 2006-08-22  Eric Blake  <ebb9@byu.net>
19059
19060         * modules/regexprops-generic: New file.
19061         * MODULES.html.sh (Support for building documentation): List it.
19062
19063 2006-08-22  Eric Blake  <ebb9@byu.net>
19064
19065         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
19066         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
19067         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
19068         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
19069
19070 2006-08-22  Bruno Haible  <bruno@clisp.org>
19071
19072         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
19073         and lib_LTLIBRARIES like the other lib_* variables.
19074
19075 2006-08-22  Bruno Haible  <bruno@clisp.org>
19076
19077         * build-aux/x-to-1.in: New file, from GNU gettext.
19078
19079 2006-08-22  Bruno Haible  <bruno@clisp.org>
19080
19081         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
19082         <utmpx.h> exists.
19083
19084 2006-08-22  Bruno Haible  <bruno@clisp.org>
19085
19086         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
19087         <utmpx.h> exists.
19088
19089 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19090
19091         BeOS portability.
19092         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
19093         exist.
19094         Problem reported by Bruno Haible.
19095
19096 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19097
19098         Avoid the need for AC_LIBSOURCES in m4 macros.
19099         * modules/acl (EXTRA_DIST): Add acl.h.
19100         * modules/argmatch (Files): Add m4/argmatch.m4.
19101         (configure.ac): Add gl_ARGMATCH.
19102         (EXTRA_DIST): Renamed from lib_SOURCES, for
19103         consistency with the other modules.  Remove argmatch.c.
19104         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
19105         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
19106         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
19107         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
19108         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
19109         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
19110         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
19111         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
19112         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
19113         * modules/closeout (EXTRA_DIST): Add closeout.h.
19114         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
19115         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
19116         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
19117         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
19118         dirname.h; remove basename.c and stripslash.c.
19119         * modules/exclude (EXTRA_DIST): Add exclude.h.
19120         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
19121         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
19122         * modules/file-type (EXTRA_DIST): Add file-type.h.
19123         * modules/filemode (EXTRA_DIST): Add filemode.h.
19124         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
19125         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
19126         * modules/fpending (EXTRA_DIST): Add __fpending.h.
19127         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
19128         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
19129         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
19130         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
19131         * modules/getdate (EXTRA_DIST): Add getdate.c.
19132         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
19133         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
19134         * modules/getpass (EXTRA_DIST): Add getpass.h.
19135         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
19136         * modules/group-member (EXTRA_DIST): Add group-member.h.
19137         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
19138         * modules/hash (EXTRA_DIST): Add hash.h.
19139         * modules/human (EXTRA_DIST): Add human.h.
19140         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
19141         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
19142         * modules/lchown (EXTRA_DIST): Add lchown.h.
19143         * modules/long-options (EXTRA_DIST): Add long-options.h.
19144         * modules/lstat (EXTRA_DIST): Add lstat.h.
19145         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
19146         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
19147         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
19148         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
19149         * modules/memxor (EXTRA_DIST): Add memxor.h.
19150         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
19151         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
19152         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
19153         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
19154         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
19155         * modules/physmem (EXTRA_DIST): Add physmem.h.
19156         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
19157         * modules/posixver (EXTRA_DIST): Add posixver.h.
19158         * modules/quote (EXTRA_DIST): Add quote.h.
19159         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
19160         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
19161         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
19162         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
19163         regex_internal.h regexec.c.
19164         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
19165         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
19166         * modules/same (EXTRA_DIST): Add same.h.
19167         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
19168         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
19169         * modules/savedir (EXTRA_DIST): Add savedir.h.
19170         * modules/sha1 (EXTRA_DIST): Add sha1.h.
19171         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
19172         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
19173         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
19174         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
19175         * modules/strdup (EXTRA_DIST): Add strdup.h.
19176         * modules/strftime (EXTRA_DIST): Add strftime.h.
19177         * modules/strndup (EXTRA_DIST): Add strndup.h.
19178         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
19179         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
19180         * modules/time_r (EXTRA_DIST): Add time_r.h.
19181         * modules/timespec (EXTRA_DIST): Add timespec.h.
19182         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
19183         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
19184         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
19185         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
19186         * modules/userspec (EXTRA_DIST): Add userspec.h.
19187         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
19188         * modules/utimens (EXTRA_DIST): Add utimens.h.
19189         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
19190         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
19191         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
19192         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
19193         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
19194         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
19195         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
19196         * modules/yesno (EXTRA_DIST): Add yesno.h.
19197
19198 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19199
19200         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
19201
19202         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
19203         * m4/dev-ino.m4, same-inode.m4: Remove.
19204
19205         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
19206         * m4/acl.m4 (AC_FUNC_ACL):
19207         * m4/backupfile.m4 (gl_BACKUPFILE):
19208         * m4/c-strtod.m4 (gl_C99_STRTOLD):
19209         * m4/canon-host.m4 (gl_CANON_HOST):
19210         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
19211         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
19212         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
19213         * m4/cloexec.m4 (gl_CLOEXEC):
19214         * m4/close-stream.m4 (gl_CLOSE_STREAM):
19215         * m4/closeout.m4 (gl_CLOSEOUT):
19216         * m4/dirfd.m4 (gl_FUNC_DIRFD):
19217         * m4/dirname.m4 (gl_DIRNAME):
19218         * m4/exclude.m4 (gl_EXCLUDE):
19219         * m4/exitfail.m4 (gl_EXITFAIL):
19220         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
19221         * m4/file-type.m4 (gl_FILE_TYPE):
19222         * m4/filemode.m4 (gl_FILEMODE):
19223         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
19224         * m4/fpending.m4 (gl_FUNC_FPENDING):
19225         * m4/fprintftime.m4 (gl_FPRINTFTIME):
19226         * m4/fts.m4 (gl_FUNC_FTS):
19227         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
19228         * m4/getdate.m4 (gl_GETDATE):
19229         * m4/gethrxtime.m4 (gl_GETHRXTIME):
19230         * m4/getpagesize.m4 (gl_GETPAGESIZE):
19231         * m4/getpass.m4 (gl_FUNC_GETPASS):
19232         * m4/gettime.m4 (gl_GETTIME):
19233         * m4/getugroups.m4 (gl_GETUGROUPS):
19234         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
19235         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
19236         * m4/hard-locale.m4 (gl_HARD_LOCALE):
19237         * m4/hash.m4 (gl_HASH):
19238         * m4/idcache.m4 (gl_IDCACHE):
19239         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
19240         * m4/lchown.m4 (gl_FUNC_LCHOWN):
19241         * m4/long-options.m4 (gl_LONG_OPTIONS):
19242         * m4/lstat.m4 (gl_FUNC_LSTAT):
19243         * m4/md5.m4 (gl_MD5):
19244         * m4/memcasecmp.m4 (gl_MEMCASECMP):
19245         * m4/memcoll.m4 (gl_MEMCOLL):
19246         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
19247         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
19248         * m4/memxor.m4 (gl_MEMXOR):
19249         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
19250         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
19251         * m4/modechange.m4 (gl_MODECHANGE):
19252         * m4/mountlist.m4 (gl_MOUNTLIST):
19253         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
19254         * m4/openat.m4 (gl_FUNC_OPENAT):
19255         * m4/pathmax.m4 (gl_PATHMAX):
19256         * m4/physmem.m4 (gl_PHYSMEM):
19257         * m4/posixtm.m4 (gl_POSIXTM):
19258         * m4/posixver.m4 (gl_POSIXVER):
19259         * m4/quote.m4 (gl_QUOTE):
19260         * m4/quotearg.m4 (gl_QUOTEARG):
19261         * m4/readtokens.m4 (gl_READTOKENS):
19262         * m4/readutmp.m4 (gl_READUTMP):
19263         * m4/regex.m4 (gl_REGEX):
19264         * m4/safe-read.m4 (gl_SAFE_READ):
19265         * m4/safe-write.m4 (gl_SAFE_WRITE):
19266         * m4/same.m4 (gl_SAME):
19267         * m4/save-cwd.m4 (gl_SAVE_CWD):
19268         * m4/savedir.m4 (gl_SAVEDIR):
19269         * m4/settime.m4 (gl_SETTIME):
19270         * m4/sha1.m4 (gl_SHA1):
19271         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
19272         * m4/stat-macros.m4 (gl_STAT_MACROS):
19273         * m4/stat-time.m4 (gl_STAT_TIME):
19274         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
19275         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
19276         * m4/strdup.m4 (gl_FUNC_STRDUP):
19277         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
19278         * m4/strndup.m4 (gl_FUNC_STRNDUP):
19279         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
19280         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
19281         * m4/time_r.m4 (gl_TIME_R):
19282         * m4/timespec.m4 (gl_TIMESPEC):
19283         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
19284         * m4/unlinkdir.m4 (gl_UNLINKDIR):
19285         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
19286         * m4/userspec.m4 (gl_USERSPEC):
19287         * m4/utimecmp.m4 (gl_UTIMECMP):
19288         * m4/utimens.m4 (gl_UTIMENS):
19289         * m4/xalloc.m4 (gl_XALLOC):
19290         * m4/xgetcwd.m4 (gl_XGETCWD):
19291         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
19292         * m4/xreadlink.m4 (gl_XREADLINK):
19293         * m4/xstrtod.m4 (gl_XSTRTOD):
19294         * m4/yesno.m4 (gl_YESNO):
19295         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
19296         to get the necessary .h files and whatnot.
19297
19298 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
19299             Bruno Haible  <bruno@clisp.org>
19300
19301         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
19302         /bin/sh understanding of '!' conditional negation.
19303
19304 2006-08-21  Jim Meyering  <jim@meyering.net>
19305
19306         * modules/openat (Depends-on): Really alphabetize.
19307
19308         * modules/acl (Depends-on): Add error and quote.
19309
19310         * check-module (find_included_lib_files): Add at-func.c to the
19311         ok-to-include-more-than-once white list.
19312
19313         * modules/openat (Depends-on): Add lstat.  Alphabetize.
19314
19315 2006-08-21  Bruno Haible  <bruno@clisp.org>
19316
19317         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19318         Emit a pkgdata_DATA variable only if some snippets add contents to it.
19319         Reported by Martin Lambers <marlam@marlam.de>.
19320
19321 2006-08-21  Bruno Haible  <bruno@clisp.org>
19322
19323         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
19324         specify an installation location, don't emit a noinst_LIBRARIES or
19325         noinst_LTLIBRARIES assignment.
19326
19327 2006-08-21  Bruno Haible  <bruno@clisp.org>
19328
19329         BeOS portability.
19330         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
19331         BeOS has mbrtowc() but no <wctype.h>.
19332
19333 2006-08-21  Bruno Haible  <bruno@clisp.org>
19334
19335         BeOS portability.
19336         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
19337         exist.
19338
19339 2006-08-21  Bruno Haible  <bruno@clisp.org>
19340
19341         BeOS portability.
19342         * lib/mbchar.h: Include <wctype.h> only if it exists.
19343
19344 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19345
19346         Remove files that are no longer needed by their respective modules.
19347         * m4/obstack.m4: Remove.
19348         * m4/strerror_r.m4: Remove.
19349         * m4/uint32_t.m4: Remove.
19350         * m4/uintptr_t.m4: Remove.
19351         * m4/ullong_max.m4: Remove.
19352         * m4/xstrtoimax.m4: Remove.
19353         * m4/xstrtoumax.m4: Remove.
19354
19355         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
19356         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
19357         dependencies now capture this.
19358
19359         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
19360         Do not use AC_LIBSOURCES, since gnulib modules now do this.
19361         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
19362         * m4/human.m4 (gl_HUMAN): Likewise.
19363         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
19364         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
19365
19366         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
19367
19368         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
19369         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
19370         stdint.
19371         * m4/human.m4 (gl_HUMAN): Likewise.
19372         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
19373         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
19374         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
19375         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
19376         * m4/xstrtol (gl_XSTRTOL): Likewise.
19377
19378         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
19379         AC_TYPE_LONG_LONG_INT.
19380         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
19381         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
19382         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
19383         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
19384
19385         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
19386         on stdbool.
19387
19388         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
19389         (gl_PREREQ_XSTRTOUL): Remove.
19390
19391         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
19392
19393         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
19394         mode.
19395
19396 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19397
19398         Add and change modules to make it easier for coreutils to use
19399         gnulib-tool.
19400         * modules/backupfile (Files): Remove m4/d-ino.m4.
19401         (Depends-on): Add d-ino.
19402         * modules/cycle-check (Depends-on): Add stdint.
19403         (lib_SOURCES): Add cycle-check.h.
19404         * modules/d-ino: New module.
19405         * modules/d-type: New module.
19406         * modules/error (Files): Remove m4/strerror_r.m4.
19407         * modules/filemode (Files): Add m4/st_dm_mode.m4.
19408         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
19409         m4/inttypes_h.m4, m4/uintmax_t.m4.
19410         (Depends-on): Add stdint.
19411         (lib_SOURCES): Add fsusage.h.
19412         * modules/getcwd (Files): Remove d-ino.m4.
19413         (Depends-on): Add d-ino.
19414         * modules/getndelim2 (Depends-on): Add stdint.
19415         * modules/glob (Files): Remove m4/d-type.m4.
19416         (Depends-on): Add d-type.
19417         * modules/host-os: New module.
19418         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
19419         m4/inttypes_h.m4, m4/uintmax_t.m4.
19420         * Depends-on: Add stdint.
19421         (lib_SOURCES): Add human.h.
19422         * modules/inttostr (Files): Remove m4/intmax_t.m4,
19423         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
19424         m4/uintmax_t.m4, m4/ulonglong.m4.
19425         (Depends-on): Add stdint.
19426         (EXTRA_DIST): Add inttostr.h.
19427         * modules/lchmod: New module.
19428         * modules/link-follow: New module.
19429         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
19430         (Depends-on): Add lchmod.
19431         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
19432         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
19433         (Depends-on): Add stdint.
19434         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
19435         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
19436         (Depends-on): Add stdint.
19437         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
19438         * modules/perl: New module.
19439         * modules/regex (Depends-on): Add stdint.
19440         * modules/rmdir-errno: New module.
19441         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
19442         m4/intmax_t.m4.
19443         (Depends-on): Add stdint.
19444         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
19445         m4/uintmax_t.m4.
19446         (Depends-on): Add stdint.
19447         * modules/unlink-busy: New module.
19448         * modules/utimecmp (Depends-on): Add stdint.
19449         * modules/uptime: New module.
19450         * modules/winsz-ioctl: New module.
19451         * modules/winsz-termios: New module.
19452         * modules/xnanosleep (Depends-on): Add nanosleep.
19453         * modules/ullong_max: Remove.
19454         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
19455         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
19456         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
19457         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
19458         (Depends-on): Add inttypes.
19459         (lib_SOURCES): Add xstrtol.h.
19460         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
19461         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
19462         * MODULES.html.sh: Move 'assert' into the assert section.
19463         Move 'dummy' into the linking section.
19464         Remove ullong_max.
19465         Add section for compatibility checks for POSIX:2001 functions,
19466         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
19467         winsz-ioctl, and winsz-termios into it.
19468         Add lchmod.
19469         Add top-level Misc section and put host-os, perl, and uptime
19470         into it.
19471
19472 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19473
19474         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
19475         now assume the stdint module.  Do not include inttypes.h.
19476         * lib/fsusage.h: Likewise.
19477         * lib/getndelim2.c: Likewise.
19478         * lib/human.h: Likewise.
19479         * lib/inttostr.h: Likewise.
19480         * lib/obstack.c: Likewise.
19481         * lib/regex_internal.h: Likewise.
19482         * lib/tempname.c: Likewise.
19483         * lib/utimecmp.c: Likewise.
19484         * lib/xstrtol.h: Likewise.
19485
19486         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
19487
19488         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
19489         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
19490         * lib/xtime.h: Likewise.
19491
19492 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
19493
19494         * modules/openat (Files): Add lib/fchmodat.c.
19495         Fixes problem reported by Jay Youngman.
19496
19497 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
19498
19499         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
19500         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
19501
19502 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
19503             Bruno Haible  <bruno@clisp.org>
19504
19505         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
19506         and is a script that invokes bison. Tighten the code. Add comments.
19507
19508 2006-08-18  Jim Meyering  <jim@meyering.net>
19509
19510         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
19511         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
19512         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
19513         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
19514
19515 2006-08-18  Bruno Haible  <bruno@clisp.org>
19516
19517         * modules/bison-i18n: New file.
19518         * MODULES.html.sh (Internationalization functions): Add it.
19519
19520 2006-08-18  Bruno Haible  <bruno@clisp.org>
19521
19522         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
19523         sys/statvfs.h. When getmntinfo was found, check its declaration and
19524         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
19525
19526 2006-08-18  Bruno Haible  <bruno@clisp.org>
19527
19528         * m4/bison-i18n.m4: New file, from bison.
19529
19530 2006-08-18  Bruno Haible  <bruno@clisp.org>
19531
19532         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
19533         (ME_DUMMY): Treat "kernfs" as a dummy.
19534         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
19535
19536 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
19537
19538         Update from coreutils.
19539
19540         2006-08-15  Jim Meyering  <jim@meyering.net>
19541
19542         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
19543
19544         2006-01-17  Jim Meyering  <jim@meyering.net>
19545
19546         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
19547
19548         2006-01-11  Jim Meyering  <jim@meyering.net>
19549
19550         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
19551         Check for the lchmod function.
19552
19553 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
19554
19555         Update from coreutils.
19556
19557         * lib/__fpending.h: Add copyright notice.
19558         * lib/fprintftime.h: Likewise.
19559         * lib/savedir.c: Use (C) in copyright notice.
19560         * lib/savedir.h: Likewise.
19561
19562         2006-08-15  Jim Meyering  <jim@meyering.net>
19563
19564         * lib/at-func.c: New file, with the logic of all emulated at-functions.
19565         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
19566         in support of the EXPECTED_ERRNO macro.
19567         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
19568         definitions.  Instead, define the appropriate symbols and include
19569         "at-func.c".
19570         * lib/mkdirat.c (mkdirat): Likewise.
19571         * lib/fchmodat.c (fchmodat): Likewise.
19572         (ENOSYS): Remove definition.
19573         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
19574         it.  Don't include "unistd--.h" -- it wasn't ever used.
19575
19576         2006-01-17  Jim Meyering  <jim@meyering.net>
19577
19578         Rewrite fts.c not to change the current working directory,
19579         by using openat, fstatat, fdopendir, etc..
19580
19581         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
19582         (HAVE_OPENAT_SUPPORT): Define.
19583         [_LIBC] (fchdir): Don't undef or define; no longer used.
19584         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
19585         Now, this `function' always succeeds, and consumes its file descriptor
19586         parameter -- so callers must not close such FDs.  Update callers.
19587         (diropen_fd, opendirat, cwd_advance_fd): New functions.
19588         (diropen): Add parameter, SP.  Adjust all callers.
19589         Implement using diropen_fd, rather than open.
19590         (fts_open): Initialize new member, fts_cwd_fd.
19591         Remove fts_rft-setting code.
19592         (fts_close): Close fts_cwd_fd, if necessary.
19593         (__opendir2): Define in terms of opendir or opendirat,
19594         depending on whether the FST_NOCHDIR flag is set.
19595         (fts_build): Since fts_safe_changedir consumes its FD, and since
19596         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
19597         and close the dup'd file descriptor upon failure.
19598         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
19599         (fts_safe_changedir): Tweak semantics to reflect that this function
19600         now calls cwd_advance_fd and hence consumes its FD argument.
19601         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
19602         [struct FTS] (fts_rft): Remove now-unused member.
19603         [struct FTS] (fts_cycle.state): Improve comment.
19604
19605         * lib/openat.c (openat_needs_fchdir): New function.
19606         * lib/openat.h (openat_needs_fchdir): Declare it.
19607
19608 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
19609
19610         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
19611         Problem and fix reported by Pádraig Brady in
19612         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
19613
19614 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19615
19616         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
19617
19618 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19619
19620         * lib/memcoll.c (memcoll): Optimize for the common case where the
19621         arguments are bytewise equal.
19622
19623 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19624
19625         * doc/regexprops-generic.texi: Add a copyright notice.
19626
19627 2006-08-15  Bruno Haible  <bruno@clisp.org>
19628
19629         * modules/tmpdir (License): Change to LGPL.
19630
19631 2006-08-15  Bruno Haible  <bruno@clisp.org>
19632
19633         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
19634         module.
19635
19636 2006-08-14  Simon Josefsson  <jas@extundo.com>
19637
19638         * config/srclist.txt: Add gnupload.
19639
19640 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19641
19642         Change copyright notice from LGPL 2 to GPL 2, since that's the
19643         standard form used in the gnulib repository.
19644         * tests/test-lock.c: Likewise.
19645         * tests/test-stdint.c: Likewise.
19646         * tests/test-tls.c: Likewise.
19647
19648         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
19649         prelude-manager.  User shorter URLs for GNU projects, without '?'.
19650         Add copyright notice.
19651
19652         * check-module: Add copyright notice.  Output a copyright
19653         notice if "--version" is specified.
19654         * modules/COPYING: New file.
19655         * tests/test-getaddrinfo.c: Add copyright notice.
19656         * tests/test-verify.c: Likewise.
19657
19658 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19659
19660         Change copyright notice from LGPL 2 to GPL 2, since that's the
19661         standard form used in the gnulib repository.
19662         * lib/lock.c: LGPL -> GPL.
19663         * lib/lock.h: Likewise.
19664         * lib/strnlen1.c: Likewise.
19665         * lib/strnlen1.h: Likewise.
19666         * lib/tls.c: Likewise.
19667         * lib/tls.h: Likewise.
19668         * lib/tmpdir.c: Likewise.
19669
19670         * lib/TODO: Remove; this belongs only in coreutils.
19671
19672 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19673
19674         Add copyright notices to long-enough files that lack them, since
19675         otherwise the files aren't clearly free.  Use the same notice that
19676         getdate.texi already uses.
19677         * doc/alloca-opt.texi: Add copyright notice.
19678         * doc/alloca.texi: Likewise.
19679         * doc/ctime.texi: Likewise.
19680         * doc/functions.texi: Likewise.
19681         * doc/gcd.texi: Likewise.
19682         * doc/gnulib-tool.texi: Likewise.
19683         * doc/inet_ntoa.texi: Likewise.
19684         * doc/visibility.texi: Likewise.
19685
19686         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
19687         * doc/quote.texi: Add copyright notice.
19688
19689         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
19690         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
19691         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
19692         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
19693         is now obsolete, and give a pointer to the Sun list.
19694         Add copyright notice.
19695
19696 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19697
19698         * config/srclistvars.sh: Add copyright notice.
19699
19700 2006-08-14  Eric Blake  <ebb9@byu.net>
19701
19702         Import the following change from libc:
19703
19704         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
19705
19706         Upstream bug 2997.
19707         * lib/misc/error.c: Add space between program name and message if file
19708         name is missing.
19709
19710 2006-08-12  Karl Berry  <karl@gnu.org>
19711
19712         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
19713         remove, these originate in gnulib now.
19714
19715 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19716
19717         * doc/Makefile (standards.info standards.html standards.dvi):
19718         Also depend on make-stds.texi.
19719
19720 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
19721
19722         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
19723         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
19724
19725         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
19726         in wchar_t.  Problem reported by Eric Blake.
19727
19728         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
19729         LEN is smaller than SIZE.  Suggested by Bruno Haible.
19730         Also, help the compiler to keep LEN in a register.
19731
19732 2006-08-11  Eric Blake  <ebb9@byu.net>
19733
19734         * users.txt: Sort.  Add tar.
19735
19736 2006-08-11  Bruno Haible  <bruno@clisp.org>
19737
19738         * users.txt: New file.
19739
19740 2006-08-11  Bruno Haible  <bruno@clisp.org>
19741
19742         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
19743         before <wchar.h>. Needed for OSF/1 and BSD/OS.
19744
19745 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
19746
19747         * modules/snprintf (Depends-on): Remove minmax.
19748         (Maintainer): Add self and Bruno.
19749
19750 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
19751
19752         * lib/.cppi-disable: Add snprintf.h, socket_.h.
19753         * lib/snprintf.c: Include <errno.h> and <limits.h>.
19754         (EOVERFLOW): Define if the system does not.
19755         Do not include "minmax.h"; it wasn't used.
19756         (snprintf): Don't assume size_t promotes to an unsigned type.
19757         Fix bug when generated string was too long for the buffer: the
19758         buffer's contents are supposed to be the initial prefix of the
19759         output.  Don't assume vasnprintf returns EOVERFLOW if the size
19760         exceeds INT_MAX; do the check ourselves.
19761
19762         Import the following changes from libc:
19763
19764         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
19765
19766         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
19767         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
19768         set wc to the byte which couldn't be converted.
19769         (re_string_reconstruct): Don't clear valid_raw_len before calling
19770         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
19771         tip_context using re_string_context_at.
19772
19773         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
19774
19775         * lib/posix/regex.h: g++ still cannot handled [restrict].
19776
19777         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
19778
19779         * lib/posix/regex.h: Remove special handling for VMS.
19780
19781 2006-08-10  Jim Meyering  <jim@meyering.net>
19782
19783         * modules/same-inode: New module.
19784         * modules/dev-ino: New module.
19785         * modules/cycle-check: Depend on these modules, rather than simply
19786         including their .h files.
19787         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
19788         required via m4/cycle-check.m4.
19789         * modules/same: Depend on new same-inode module, rather than
19790         including same-inode.h.
19791         * modules/chdir-safer: New file.
19792
19793         * modules/chown (Depends-on): Add stat-macros.
19794
19795 2006-08-10  Jim Meyering  <jim@meyering.net>
19796
19797         * m4/cycle-check.m4: New file.
19798         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
19799         * m4/dev-ino.m4, m4/same-inode.m4: New files.
19800
19801 2006-08-10  Eric Blake  <ebb9@byu.net>
19802
19803         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
19804         in from original proposal.
19805
19806 2006-08-10  Eric Blake  <ebb9@byu.net>
19807         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
19808
19809         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
19810         namespace.
19811
19812 2006-08-10  Bruno Haible  <bruno@clisp.org>
19813
19814         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
19815         as well.
19816
19817 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19818
19819         Sync from coreutils.
19820
19821         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
19822
19823         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
19824         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
19825
19826 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19827
19828         * modules/restrict: Remove; no longer needed now that we assume
19829         Autoconf 2.59 or later.
19830         * MODULES.html.sh: Remove 'restrict'.
19831         * modules/argp (Depends-on): Remove 'restrict'.
19832         * modules/base64 (Depends-on): Likewise.
19833         * modules/gc (Depends-on): Likewise.
19834         * modules/getaddrinfo (Depends-on): Likewise.
19835         * modules/glob (Depends-on): Likewise.
19836         * modules/inet_ntop (Depends-on): Likewise.
19837         * modules/inet_pton (Depends-on): Likewise.
19838         * modules/memxor (Depends-on): Likewise.
19839         * modules/regex (Depends-on): Likewise.
19840         * modules/strtok_r (Depends-on): Likewise.
19841         * modules/time_r (Depends-on): Likewise.
19842
19843 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19844
19845         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
19846         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
19847         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
19848         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
19849         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
19850         * m4/memxor.m4 (gl_MEMXOR): Likewise.
19851         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
19852         gl_C_RESTRICT replaced by AC_C_RESTRICT.
19853
19854         Merge from coreutils.
19855         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
19856         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
19857         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
19858         * m4/time_r.m4 (gl_TIME_R): Likewise.
19859
19860 2006-08-09  Karl Berry  <karl@gnu.org>
19861
19862         * config/srclist.txt: no more gettext-tools, per Bruno.
19863
19864 2006-08-08  Eric Blake  <ebb9@byu.net>
19865
19866         * modules/verror: New module.
19867         * MODULES.html.sh: Document it.
19868
19869 2006-08-08  Eric Blake  <ebb9@byu.net>
19870
19871         * lib/verror.h, lib/verror.c: New files.
19872
19873 2006-08-08  Eric Blake  <ebb9@byu.net>
19874
19875         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
19876         verror_at_line output complies with GNU Coding Standards even when
19877         file is NULL.
19878
19879 2006-08-07  Bruno Haible  <bruno@clisp.org>
19880
19881         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
19882         versions of AIX.
19883         Reported by Ralf Wildenhues.
19884
19885 2006-08-07  Bruno Haible  <bruno@clisp.org>
19886
19887         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
19888         in an AC_DEFUN. Needed so that the autoconf snippets can use
19889         AC_REQUIRE.
19890
19891 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19892
19893         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19894         Initialize pkgdata_DATA.
19895         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
19896         overriding it.
19897
19898 2006-08-06  Eric Blake  <ebb9@byu.net>
19899
19900         * lib/error.h: Fold in some upstream changes from glibc.
19901         * lib/error.c: Likewise.
19902
19903 2006-08-04  Bruno Haible  <bruno@clisp.org>
19904
19905         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19906         Make the mostlyclean-local rule depend on mostlyclean-generic.
19907         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
19908
19909 2006-07-31  Bruno Haible  <bruno@clisp.org>
19910
19911         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
19912         <stdlib.h>, <string.h>.
19913
19914 2006-07-30  Bruno Haible  <bruno@clisp.org>
19915
19916         * modules/readlink (License): Change to LGPL.
19917
19918 2006-07-30  Bruno Haible  <bruno@clisp.org>
19919
19920         * modules/javaversion (Makefile.am): Distribute javaversion.java and
19921         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
19922         set PKGDATADIR to point to it.
19923
19924 2006-07-30  Bruno Haible  <bruno@clisp.org>
19925
19926         * modules/csharpexec (configure.ac): Comment out macro invocation.
19927         * modules/javaexec (configure.ac): Likewise.
19928         * modules/javacomp-script (configure.ac): Likewise.
19929
19930         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
19931
19932 2006-07-30  Bruno Haible  <bruno@clisp.org>
19933
19934         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
19935         linked-list.
19936
19937 2006-07-30  Bruno Haible  <bruno@clisp.org>
19938
19939         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
19940
19941 2006-07-30  Bruno Haible  <bruno@clisp.org>
19942
19943         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19944         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
19945         get removed.
19946
19947 2006-07-29  Bruno Haible  <bruno@clisp.org>
19948
19949         Make it possible for gnulib-tool to work with locally modified or
19950         augmented gnulib repositories.
19951         * gnulib-tool (func_usage): Document --local-dir option.
19952         (local_gnulib_dir): New variable.
19953         Handle --local-dir option.
19954         (func_lookup_file): New function.
19955         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
19956         (func_get_description, func_get_filelist, func_get_description,
19957         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
19958         func_get_automake_snippet, func_get_include_directive,
19959         func_get_license, func_get_maintainer): Use func_lookup_file.
19960         (func_import, func_create_testdir): Use func_lookup_file.
19961
19962 2006-07-29  Bruno Haible  <bruno@clisp.org>
19963
19964         * modules/setenv (Depends-on): Add unistd.
19965
19966 2006-07-29  Bruno Haible  <bruno@clisp.org>
19967
19968         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
19969
19970 2006-07-29  Bruno Haible  <bruno@clisp.org>
19971
19972         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
19973
19974 2006-07-29  Bruno Haible  <bruno@clisp.org>
19975
19976         * gnulib-tool (import, update): If there is no Makefile.am, look at
19977         aclocal.m4, instead of bailing out.
19978
19979 2006-07-29  Bruno Haible  <bruno@clisp.org>
19980
19981         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
19982         Categorize the options by when they are useful.
19983
19984 2006-07-29  Bruno Haible  <bruno@clisp.org>
19985
19986         * gnulib-tool (func_usage): Document option --no-libtool.
19987         Handle option --no-libtool.
19988         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
19989         for changed semantics of $libtool variable.
19990         (func_import): Likewise. If libtool is not used, show this through
19991         an option --no-libtool.
19992         (func_create_testdir): Update.
19993
19994 2006-07-29  Bruno Haible  <bruno@clisp.org>
19995
19996         * gnulib-tool (func_import): Extend error message about missing
19997         --doc-base.
19998
19999 2006-07-29  Bruno Haible  <bruno@clisp.org>
20000
20001         * gnulib-tool (func_import): Don't create the $docbase directory if
20002         there is no file to store there.
20003
20004 2006-07-29  Bruno Haible  <bruno@clisp.org>
20005
20006         * gnulib-tool (autoconf_minversion): If a --dir option is given and
20007         relevant, look for configure.ac there, not in the current directory.
20008         Also use a simple search for AC_PREREQ, not "autoconf --trace".
20009
20010 2006-07-29  Bruno Haible  <bruno@clisp.org>
20011
20012         * gnulib-tool (SORT): New variable.
20013         (func_usage): Undocument --assume-autoconf option.
20014         Remove --assume-autoconf option handling.
20015         (autoconf_minversion): Determine from the contents of configure.ac.
20016         (func_import): Remove autoconf_minversion handling.
20017         Suggested by Eric Blake.
20018
20019 2006-07-29  Bruno Haible  <bruno@clisp.org>
20020
20021         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
20022
20023 2006-07-29  Bruno Haible  <bruno@clisp.org>
20024
20025         * config/srclist.txt (*setenv.[ch]): Remove rules.
20026
20027 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20028
20029         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
20030
20031 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20032
20033         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
20034         arpa/inet.h.
20035
20036 2006-07-28  Simon Josefsson  <jas@extundo.com>
20037
20038         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
20039         * modules/inet_pton (Depends-on): Likewise.
20040
20041 2006-07-28  Simon Josefsson  <jas@extundo.com>
20042
20043         * m4/netinet_in_h.m4: New file.
20044
20045 2006-07-28  Simon Josefsson  <jas@extundo.com>
20046
20047         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
20048         #include's.
20049
20050 2006-07-28  Simon Josefsson  <jas@extundo.com>
20051
20052         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
20053         #include's.
20054
20055 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
20056
20057         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
20058         setgid on directories only if they set these bits.
20059         * lib/modechange.h: Remove obsolete comment about masks.
20060
20061 2006-07-28  Eric Blake  <ebb9@byu.net>
20062
20063         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
20064         macro expansion.
20065
20066 2006-07-28  Bruno Haible  <bruno@clisp.org>
20067
20068         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
20069
20070 2006-07-28  Bruno Haible  <bruno@clisp.org>
20071
20072         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
20073
20074 2006-07-28  Bruno Haible  <bruno@clisp.org>
20075
20076         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
20077         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
20078         Define fallbacks.
20079         Avoids link error on FreeBSD 4.x.
20080         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20081
20082         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
20083         encoding.
20084         * lib/mbswidth.c (iswcntrl): Likewise.
20085
20086 2006-07-27  Bruno Haible  <bruno@clisp.org>
20087
20088         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
20089         test.
20090
20091 2006-07-27  Bruno Haible  <bruno@clisp.org>
20092
20093         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
20094         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
20095         defined.
20096
20097 2006-07-26  Eric Blake  <ebb9@byu.net>
20098
20099         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
20100
20101 2006-07-26  Eric Blake  <ebb9@byu.net>
20102
20103         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
20104         like mingw that lack mkstemp.
20105         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
20106         avoid compilation warning on mingw.
20107
20108 2006-07-26  Bruno Haible  <bruno@clisp.org>
20109
20110         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
20111         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
20112         INT_FAST*_MIN, INTPTR_MIN.
20113
20114 2006-07-25  Bruno Haible  <bruno@clisp.org>
20115
20116         * modules/version-etc (Depends-on): Add stdarg.
20117
20118 2006-07-25  Bruno Haible  <bruno@clisp.org>
20119
20120         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
20121         complex commands.
20122
20123 2006-07-25  Bruno Haible  <bruno@clisp.org>
20124
20125         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
20126         defined in <stdarg.h> or config.h.
20127
20128 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
20129
20130         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
20131         (gl_STDIO_SAFER): Remove.
20132
20133 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
20134
20135         * MODULES.html.sh (File stream based Input/Output):
20136         Add fopen-safer, tmpfile-safer; remove stdio-safer.
20137         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
20138         * modules/fopen-safer, modules/tmpfile-safer: New files.
20139         * modules/stdio-safer: Remove.
20140
20141 2006-07-24  Bruno Haible  <bruno@clisp.org>
20142
20143         * modules/tmpdir: New file.
20144         * MODULES.html.sh (File system functions): Add it.
20145
20146 2006-07-24  Bruno Haible  <bruno@clisp.org>
20147
20148         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
20149         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
20150
20151 2006-07-24  Bruno Haible  <bruno@clisp.org>
20152
20153         * modules/clean-temp: New file.
20154
20155 2006-07-24  Bruno Haible  <bruno@clisp.org>
20156
20157         * m4/tmpdir.m4: New file, from GNU gettext.
20158
20159 2006-07-24  Bruno Haible  <bruno@clisp.org>
20160
20161         * lib/tmpdir.h: New file, from GNU gettext.
20162         * lib/tmpdir.c: New file, from GNU gettext.
20163
20164 2006-07-24  Bruno Haible  <bruno@clisp.org>
20165
20166         * lib/clean-temp.h: New file, from GNU gettext.
20167         * lib/clean-temp.c: New file, from GNU gettext.
20168
20169 2006-07-23  Eric Blake  <ebb9@byu.net>
20170
20171         * modules/stdio-safer (Files): Add tmpfile-safer.c.
20172         (Depends-on): Add binary-io.
20173
20174 2006-07-23  Eric Blake  <ebb9@byu.net>
20175
20176         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
20177
20178 2006-07-23  Eric Blake  <ebb9@byu.net>
20179
20180         * lib/tmpfile-safer.c: New file.
20181         * lib/stdio-safer.h (fopen_safer): Add prototype.
20182         * lib/stdio--.h (tmpfile): Make safer.
20183
20184 2006-07-23  Bruno Haible  <bruno@clisp.org>
20185
20186         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
20187         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
20188         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
20189         gl_linked_remove_at): Use it.
20190
20191 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20192         and Simon Josefsson <jas@extundo.com>
20193
20194         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
20195
20196         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
20197
20198 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20199
20200         * modules/close-stream: New file.
20201         * modules/closeout (Description): Make it clear that it exits
20202         with a diagnostic on error.
20203         (Depends-on): Add close-stream.  Remove fpending, stdbool.
20204         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
20205
20206 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20207
20208         * m4/close-stream.m4: New file.
20209
20210 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20211
20212         * lib/close-stream.c, lib/close-stream.h: New files.
20213
20214 2006-07-22  Bruno Haible  <bruno@clisp.org>
20215
20216         Merge from GNU gettext 0.15.
20217
20218         2006-05-01  Bruno Haible  <bruno@clisp.org>
20219
20220                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
20221
20222         2006-07-22  Bruno Haible  <bruno@clisp.org>
20223
20224                 * modules/javaversion: New file.
20225                 * MODULES.html.sh (Java): Add javaversion.
20226
20227         2006-03-12  Bruno Haible  <bruno@clisp.org>
20228
20229                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
20230
20231         2005-12-04  Bruno Haible  <bruno@clisp.org>
20232
20233                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
20234                 (untested).
20235
20236         2006-06-21  Bruno Haible  <bruno@clisp.org>
20237
20238                 Avoid warnings from recent versions of mcs.
20239                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
20240                 -o, -L, -r any more. Use options documented since mcs-1.0
20241                 instead. Similarly for -g.
20242
20243         2005-12-04  Bruno Haible  <bruno@clisp.org>
20244
20245                 * build-aux/csharpcomp.sh.in: Suffix for resources is
20246                 .resources, not .resource.
20247
20248         2005-07-09  Bruno Haible  <bruno@clisp.org>
20249
20250                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
20251                 add a .dll suffix.
20252                 Reported by Mark Junker <mjscod@gmx.de>.
20253
20254         2006-07-22  Bruno Haible  <bruno@clisp.org>
20255
20256                 * modules/gettext: Upgrade to gettext-0.15.
20257                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
20258                 m4/visibility.m4.
20259                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
20260
20261 2006-07-22  Bruno Haible  <bruno@clisp.org>
20262
20263         Merge from GNU gettext 0.15.
20264
20265         2006-03-25  Bruno Haible  <bruno@clisp.org>
20266
20267                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
20268
20269         2006-07-21  Bruno Haible  <bruno@clisp.org>
20270
20271                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
20272                 "1.1".
20273
20274         2006-05-09  Bruno Haible  <bruno@clisp.org>
20275
20276                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
20277                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
20278                 for the conftestver execution.
20279
20280         2006-05-01  Bruno Haible  <bruno@clisp.org>
20281
20282                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
20283                 optional target-version argument. Verify that the compiler
20284                 groks source of the specified source-version, or add -source
20285                 option as necessary. Verify that the compiler produces
20286                 bytecode in the specified target-version, or add -target and
20287                 -source options as necessary. Make the result of the test
20288                 available as variable CONF_JAVAC. Also log error output in
20289                 config.log.
20290
20291         2006-03-11  Bruno Haible  <bruno@clisp.org>
20292
20293                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
20294
20295         2006-05-09  Bruno Haible  <bruno@clisp.org>
20296
20297                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
20298                 CLASSPATH_SEPARATOR to a semicolon.
20299
20300         2006-03-12  Bruno Haible  <bruno@clisp.org>
20301
20302                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
20303                 available as variable CONF_JAVA, for subsequent autoconf
20304                 tests. Also log error output in config.log.
20305
20306         2006-07-19  Bruno Haible  <bruno@clisp.org>
20307
20308                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
20309                 that getline works on glibc2 systems. Needed to avoid trouble
20310                 in relocatable.c.
20311                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
20312
20313         2005-12-04  Bruno Haible  <bruno@clisp.org>
20314
20315                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
20316                 launcher (untested).
20317
20318         2005-12-04  Bruno Haible  <bruno@clisp.org>
20319
20320                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
20321
20322         2006-07-22  Bruno Haible  <bruno@clisp.org>
20323
20324                 * gettext.m4: Update from GNU gettext-0.15.
20325                 * nls.m4: Likewise.
20326                 * po.m4: Likewise.
20327                 * inttypes-pri.m4: Likewise.
20328                 * inttypes-h.m4: Renamed from inttypes.m4.
20329                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
20330
20331 2006-07-22  Bruno Haible  <bruno@clisp.org>
20332
20333         Merge from GNU gettext 0.15.
20334
20335         2005-07-05  Bruno Haible  <bruno@clisp.org>
20336
20337                 * printf-args.c (printf_fetchargs): Work around broken
20338                 definition of wint_t on mingw.
20339
20340         2005-02-12  Bruno Haible  <bruno@clisp.org>
20341
20342                 * xallocsa.h: Add extern "C" for C++.
20343
20344         2006-05-17  Bruno Haible  <bruno@clisp.org>
20345
20346                 Cygwin portability.
20347                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
20348
20349         2006-04-30  Bruno Haible  <bruno@clisp.org>
20350
20351                 * progreloc.c: Include <mach-o/dyld.h> if available.
20352                 (find_executable): Use _NSGetExecutablePath when possible.
20353
20354         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20355
20356                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
20357                 function.
20358
20359         2005-12-29  Bruno Haible  <bruno@clisp.org>
20360
20361                 * progreloc.c (set_program_name_and_installdir): Fix
20362                 compilation error.
20363
20364         2005-12-04  Bruno Haible  <bruno@clisp.org>
20365
20366                 Cygwin portability.
20367                 * progreloc.c: Include <windows.h> also on Cygwin.
20368                 (find_executable): Add support for Cygwin.
20369                 (set_program_name_and_installdir): Handle also platforms with
20370                 nonempty EXEEXT.
20371
20372         2006-07-11  Bruno Haible  <bruno@clisp.org>
20373
20374                 * javacomp.c: Fix a comment.
20375                 Reported by Jim Meyering.
20376
20377         2006-04-30  Bruno Haible  <bruno@clisp.org>
20378
20379                 * javacomp.h (compile_java_class): Add source_version,
20380                 target_version arguments.
20381                 * javacomp.c: Rewritten to choose only a compiler that
20382                 respects the specified source_version and target_version.
20383
20384         2006-06-27  Bruno Haible  <bruno@clisp.org>
20385
20386                 Assume correct S_ISDIR macro.
20387                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
20388
20389         2006-07-22  Bruno Haible  <bruno@clisp.org>
20390
20391                 * javaversion.h: New file, from GNU gettext.
20392                 * javaversion.c: New file, from GNU gettext.
20393                 * javaversion.java: New file, from GNU gettext.
20394                 * javaversion.class: New file, from GNU gettext.
20395
20396         2006-05-17  Bruno Haible  <bruno@clisp.org>
20397
20398                 Cygwin portability.
20399                 * javaexec.c (execute_java_class): Test for jview program
20400                 also on Cygwin.
20401
20402         2006-04-09  Bruno Haible  <bruno@clisp.org>
20403
20404                 * fatal-signal.c: Don't include string.h.
20405                 (at_fatal_signal): Use a copying loop instead of memcpy.
20406
20407         2005-12-04  Bruno Haible  <bruno@clisp.org>
20408
20409                 * csharpexec.c: Add support for 'clix' launcher (untested).
20410                 (execute_csharp_using_sscli): New function.
20411                 (execute_csharp_program): Call it.
20412
20413         2006-06-21  Bruno Haible  <bruno@clisp.org>
20414
20415                 Avoid warnings from recent versions of mcs.
20416                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
20417                 -o, -L, -r any more. Use options documented since mcs-1.0
20418                 instead. Similarly for -g.
20419
20420         2005-07-09  Bruno Haible  <bruno@clisp.org>
20421
20422                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
20423                 add a .dll suffix.
20424                 Reported by Mark Junker <mjscod@gmx.de>.
20425
20426         2006-06-17  Bruno Haible  <bruno@clisp.org>
20427
20428                 * config.charset: Update for NetBSD 3.0.
20429
20430         2006-05-17  Bruno Haible  <bruno@clisp.org>
20431
20432                 Cygwin portability.
20433                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
20434
20435         2006-05-16  Bruno Haible  <bruno@clisp.org>
20436
20437                 * localcharset.c [CYGWIN]: Include <windows.h>.
20438                 (get_charset_aliases): For Cygwin, return the same CPxxx
20439                 aliases list as under WIN32.
20440                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
20441                 the environment variables. Fall back to GetACP().
20442
20443         2006-04-05  Bruno Haible  <bruno@clisp.org>
20444
20445                 * config.charset: Update Juan Manuel Guerrero's address.
20446
20447         2005-02-12  Bruno Haible  <bruno@clisp.org>
20448
20449                 * allocsa.h: Add extern "C" for C++.
20450
20451         2005-02-10  Bruno Haible  <bruno@clisp.org>
20452
20453                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
20454                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
20455
20456         2006-07-22  Bruno Haible  <bruno@clisp.org>
20457
20458                 * gettext.h: Update to GNU gettext-0.15.
20459
20460 2006-07-22  Bruno Haible  <bruno@clisp.org>
20461
20462         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
20463         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
20464         lib-prefix.m4, longdouble.m4, ssize_t.m4.
20465
20466 2006-07-21  Eric Blake  <ebb9@byu.net>
20467
20468         * modules/stdlib-safer: New file.
20469         * MODULES.html.sh (File stream based Input/Output): Add
20470         stdlib-safer.
20471
20472 2006-07-21  Eric Blake  <ebb9@byu.net>
20473
20474         * lib/stdlib-safer.h: New file from coreutils, required by
20475         stdlib--.h.
20476
20477 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
20478
20479         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
20480
20481 2006-07-20  Bruno Haible  <bruno@clisp.org>
20482
20483         * gnulib-tool: Recognize new option --assume-autoconf.
20484         (autoconf_minversion): New variable.
20485         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
20486
20487 2006-07-20  Bruno Haible  <bruno@clisp.org>
20488
20489         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
20490
20491 2006-07-19  Derek R. Price  <derek@ximbiot.com>
20492
20493         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
20494         Reindent and repaginate.
20495
20496 2006-07-19  Derek Price  <derek@ximbiot.com>
20497
20498         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
20499         Correct grammar.
20500
20501 2006-07-17  Bruno Haible  <bruno@clisp.org>
20502
20503         * modules/list: New file.
20504         * modules/array-list: New file.
20505         * modules/carray-list, modules/carray-list-tests: New files.
20506         * modules/linked-list, modules/linked-list-tests: New files.
20507         * modules/avltree-list, modules/avltree-list-tests: New files.
20508         * modules/rbtree-list, modules/rbtree-list-tests: New files.
20509         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
20510         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
20511         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
20512         * modules/oset: New file.
20513         * modules/array-oset: New file.
20514         * modules/avltree-oset, modules/avltree-oset-tests: New files.
20515         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
20516         * tests/test-carray_list.c: New file.
20517         * tests/test-linked_list.c: New file.
20518         * tests/test-avltree_list.c: New file.
20519         * tests/test-rbtree_list.c: New file.
20520         * tests/test-linkedhash_list.c: New file.
20521         * tests/test-avltreehash_list.c: New file.
20522         * tests/test-rbtreehash_list.c: New file.
20523         * tests/test-avltree_oset.c: New file.
20524         * tests/test-rbtree_oset.c: New file.
20525         * MODULES.html.sh (Container data structures): New section.
20526
20527 2006-07-17  Bruno Haible  <bruno@clisp.org>
20528
20529         * m4/gl_list.m4: New file.
20530
20531 2006-07-17  Bruno Haible  <bruno@clisp.org>
20532
20533         * lib/gl_list.h: New file.
20534         * lib/gl_list.c: New file.
20535         * lib/gl_array_list.h: New file.
20536         * lib/gl_array_list.c: New file.
20537         * lib/gl_carray_list.h: New file.
20538         * lib/gl_carray_list.c: New file.
20539         * lib/gl_linked_list.h: New file.
20540         * lib/gl_linked_list.c: New file.
20541         * lib/gl_anylinked_list1.h: New file.
20542         * lib/gl_anylinked_list2.h: New file.
20543         * lib/gl_avltree_list.h: New file.
20544         * lib/gl_avltree_list.c: New file.
20545         * lib/gl_anyavltree_list1.h: New file.
20546         * lib/gl_anyavltree_list2.h: New file.
20547         * lib/gl_rbtree_list.h: New file.
20548         * lib/gl_rbtree_list.c: New file.
20549         * lib/gl_anyrbtree_list1.h: New file.
20550         * lib/gl_anyrbtree_list2.h: New file.
20551         * lib/gl_anytree_list1.h: New file.
20552         * lib/gl_anytree_list2.h: New file.
20553         * lib/gl_linkedhash_list.h: New file.
20554         * lib/gl_linkedhash_list.c: New file.
20555         * lib/gl_anyhash_list1.h: New file.
20556         * lib/gl_anyhash_list2.h: New file.
20557         * lib/gl_avltreehash_list.h: New file.
20558         * lib/gl_avltreehash_list.c: New file.
20559         * lib/gl_rbtreehash_list.h: New file.
20560         * lib/gl_rbtreehash_list.c: New file.
20561         * lib/gl_anytreehash_list1.h: New file.
20562         * lib/gl_anytreehash_list2.h: New file.
20563
20564         * lib/gl_oset.h: New file.
20565         * lib/gl_oset.c: New file.
20566         * lib/gl_array_oset.h: New file.
20567         * lib/gl_array_oset.c: New file.
20568         * lib/gl_avltree_oset.h: New file.
20569         * lib/gl_avltree_oset.c: New file.
20570         * lib/gl_rbtree_oset.h: New file.
20571         * lib/gl_rbtree_oset.c: New file.
20572         * lib/gl_anytree_oset.h: New file.
20573
20574 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20575
20576         * m4/mkancesdirs.m4: New file.
20577         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
20578         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
20579         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
20580         it.
20581
20582 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20583
20584         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
20585         * lib/mkancesdirs.h: New files.
20586         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
20587         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
20588         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
20589         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
20590         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
20591         callers changed.  Revamp internals significantly, by not
20592         attempting to create directories that are temporarily more
20593         permissive than the final results.  Do not attempt to use
20594         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
20595         This removes some race conditions, fixes some bugs, and simplifies
20596         things.  Use new dirchownmod function to do owner and mode changes.
20597         * lib/mkdir-p.h: Likewise.
20598         * lib/modechange.c (octal_to_mode): New function.
20599         (struct mode_change): New member mentioned.
20600         (make_node_op_equals): New arg mentioned.  All callers changed.
20601         (mode_compile): Keep track of which mode bits the user has explicitly
20602         mentioned.
20603         (mode_adjust): New arg DIR, so that we implement the X op correctly.
20604         New arg PMODE_BITS, to keep track of which mode bits the user
20605         mentioned; it treats S_ISUID and S_ISGID speciall.
20606         All callers changed.
20607         * lib/modechange.h: Likewise.
20608
20609 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20610
20611         * MODULES.html.sh: Add mkancestors.
20612         * modules/mkancesdirs: New module.
20613         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
20614         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
20615         The chdir-safer and afs files are now orphans; I'll remove them
20616         unless someone speaks up.
20617         Add lib/dirchownmod.c, lib/dirchownmod.h.
20618         (Depends-on): Remove alloca, chown, save-cwd, dirname.
20619         Add lchown, mkancesdirs.
20620         (Maintainer): Add self.
20621
20622 2006-07-15  Karl Berry  <karl@gnu.org>
20623
20624         * gnulib-tool: help message wording/arrangement.
20625
20626 2006-07-14  Simon Josefsson  <jas@extundo.com>
20627
20628         * doc/gnulib.texi (Libtool and Windows): New section.
20629
20630 2006-07-12  Simon Josefsson  <jas@extundo.com>
20631
20632         * modules/gendocs (License): Fix license, approved by Karl.
20633
20634 2006-07-12  Eric Blake  <ebb9@byu.net>
20635
20636         * MODULES.html.sh: Add gendocs.
20637
20638 2006-07-11  Eric Blake  <ebb9@byu.net>
20639
20640         * modules/fdl: New module, to install doc/fdl.texi.
20641         * MODULES.html.sh: Add new section for documentation modules.
20642         * gnulib-tool: Avoid space-tab.
20643         (--doc-base): New option, to manage files from doc.
20644
20645 2006-07-11  Eric Blake  <ebb9@byu.net>
20646
20647         * m4/absolute-header.m4: Fix comments to match recent change.
20648
20649 2006-07-11  Eric Blake  <ebb9@byu.net>
20650
20651         * gnulib-tool: List --doc-base before --tests-base.
20652
20653 2006-07-11  Derek R. Price  <derek@ximbiot.com>
20654
20655         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
20656
20657 2006-07-11  Bruno Haible  <bruno@clisp.org>
20658
20659         * README: Mention where to put documentation.
20660
20661 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20662
20663         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
20664
20665 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
20666
20667         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
20668         to stdint.m4.
20669
20670 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
20671
20672         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
20673         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
20674         "no/such/file/stdint.h" when there is no such file, so that
20675         the resulting C code can be parsed by dodgy compilers.
20676         Problems reported by Bob Proulx.
20677
20678 2006-07-10  Derek R. Price  <derek@ximbiot.com>
20679
20680         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
20681         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
20682         macros into the GNU _D_EXACT_NAMLEN.
20683         * lib/savedir.c:  Likewise.
20684         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
20685
20686 2006-07-10  Derek R. Price  <derek@ximbiot.com>
20687         and Paul Eggert  <eggert@cs.ucla.edu>
20688
20689         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
20690         * m4/savedir.m4:
20691         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
20692         macros into the GNU _D_EXACT_NAMLEN.
20693
20694 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20695
20696         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
20697         around the absolute name, to work around a problem with the HP-UX
20698         11.23 native C compiler, reported by Bob Proulx.
20699
20700 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20701
20702         * doc/maintain.texi, make-stds.texi: Sync from
20703         <http://savannah.gnu.org/projects/gnustandards>.
20704
20705 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20706
20707         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
20708
20709 2006-07-09  Jim Meyering  <jim@meyering.net>
20710
20711         * m4/glob.m4: Remove a doubled word in a comment.
20712
20713 2006-07-09  Jim Meyering  <jim@meyering.net>
20714
20715         * lib/argp-pv.c: Remove a doubled word in a comment.
20716         * lib/check-version.c (check_version): Likewise.
20717         * lib/javacomp.c (compile_java_class): Likewise.
20718
20719 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
20720
20721         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
20722         for the benefit of people using Autoconf 2.60.  If you want to
20723         support older Autoconf versions you can copy m4/onceonly_2_57.m4
20724         (or m4/onceonly.m4, if pre-2.57) manually.
20725
20726 2006-07-08  Jim Meyering  <jim@meyering.net>
20727
20728         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
20729         comment.
20730         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
20731         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
20732         comment.
20733
20734 2006-07-08  Jim Meyering  <jim@meyering.net>
20735
20736         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
20737
20738 2006-07-07  Simon Josefsson  <jas@extundo.com>
20739
20740         * tests/test-crc.c: Change expected crc value, the test vector
20741         were probably computed using the old broken crc.c?
20742
20743 2006-07-06  Simon Josefsson  <jas@extundo.com>
20744
20745         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
20746         now the canonical place for the M4 file).
20747
20748         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
20749         from the sys_socket dependency now.
20750
20751         * modules/inet_pton (Files): Ditto.
20752
20753         * modules/inet_ntop (Files): Ditto.
20754
20755 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
20756
20757         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
20758         not gl_PREREQ_GETUSERSHELL.
20759
20760 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20761
20762         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
20763         with only one argument, for Autoconf 2.60.
20764         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
20765         expand to nothing, so add a shell command to avoid syntax error.
20766         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
20767
20768 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20769
20770         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
20771
20772 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20773
20774         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
20775         no longer needed.  Check for isblank decl.
20776         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
20777         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
20778         of existence.
20779
20780 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20781
20782         * lib/getloadavg.c: Use __VMS, not VMS.
20783         * lib/getopt.c: Likewise.
20784         * lib/getpagesize.h: Likewise.
20785         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
20786         and probably does not work.
20787
20788 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20789
20790         * lib/.cppi-disable: Add wcwidth.
20791         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
20792         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
20793         (ISGRAPH): Remove.  All uses changed to isgraph.
20794         (FOLD) [!defined _LIBC]: Remove special case.
20795         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
20796         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
20797         HAVE_ISBLANK.
20798         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
20799         case.
20800
20801 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
20802
20803         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
20804         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
20805         brackets.  Other minor changes to suppress some compiler
20806         warnings.
20807
20808 2006-07-06  Derek R. Price  <derek@ximbiot.com>
20809         and Paul Eggert  <eggert@cs.ucla.edu>
20810
20811         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
20812         of invoking obsolescent AC_HEADER_DIRENT macro.
20813         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
20814         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
20815         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
20816         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
20817         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
20818         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
20819         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
20820         * m4/readdir.m4: Remove; no longer needed.
20821
20822 2006-07-06  Derek R. Price  <derek@ximbiot.com>
20823         and Paul Eggert  <eggert@cs.ucla.edu>
20824
20825         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
20826         Don't worry about this obsolete case any more.
20827         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
20828         directories.
20829         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
20830         worry about this obsolete case any more.
20831         * lib/fts.c: Likewise.
20832         * lib/getcwd.c: Likewise.
20833         * lib/glob.h: Likewise.
20834         * lib/savedir.c: Likewise.
20835
20836 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
20837
20838         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
20839         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
20840         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
20841         needed.
20842         All uses removed.
20843         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20844         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
20845         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
20846         needed.
20847         * m4/getdate.m4 (gl_GETDATE): Likewise.
20848         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
20849         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
20850         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
20851         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20852         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
20853         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20854         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
20855         needed.
20856
20857 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
20858
20859         * lib/memcasecmp.c: Include <limits.h>.
20860         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
20861         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
20862         Don't assume isdigit succeeds only on '0' through '9'.
20863
20864 2006-07-05  Eric Blake  <ebb9@byu.net>
20865
20866         * modules/getaddrinfo (Depends-on): Add snprintf.
20867
20868 2006-07-05  Eric Blake  <ebb9@byu.net>
20869
20870         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
20871         to avoid 'header present but could not be compiled' on cygwin.
20872
20873 2006-07-05  Eric Blake  <ebb9@byu.net>
20874
20875         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
20876         missing from netdb.h.
20877         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
20878
20879 2006-07-05  Derek R. Price  <derek@ximbiot.com>
20880
20881         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
20882         no longer needed.
20883         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
20884         * m4/getdate.m4 (gl_GETDATE): Likewise.
20885         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
20886         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
20887         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
20888         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20889         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20890
20891 2006-07-05  Derek R. Price  <derek@ximbiot.com>
20892
20893         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
20894         All uses of is_space replaced by isspace.
20895         * lib/exit.h: Don't talk about STDC_HEADERS.
20896         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
20897         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
20898         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
20899         replaced by isprint etc.
20900         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
20901         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
20902         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
20903         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
20904         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
20905         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
20906
20907 2006-07-05  Bruno Haible  <bruno@clisp.org>
20908
20909         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
20910         the function exists, before testing against AIX.
20911         Reported by Martin Lambers <marlam@marlam.de>.
20912
20913 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
20914
20915         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
20916         From Mark D. Baushke.
20917
20918 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
20919
20920         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
20921         to the absolute name, not just one, to bypass Sun C 5.8's
20922         "warning: #include of /usr/include/... may be non-portable".
20923
20924 2006-07-04  Eric Blake  <ebb9@byu.net>
20925
20926         * modules/dirname-tests: New test module.
20927         * tests/test-dirname.c: New file, replacing dirname.c
20928         TEST_DIRNAME section that was recently deleted.
20929
20930 2006-07-04  Bruno Haible  <bruno@clisp.org>
20931
20932         Assume ANSI C header files and <ctype.h> functions.
20933         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
20934         (mbsnwidth): Use isprint, iscntrl instead.
20935
20936 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
20937
20938         Merge from coreutils.
20939         * MODULES.html.sh: Add xstrtold.
20940         * modules/xstrtold: New file.
20941         * modules/cycle-check (Files): Add lib/same-inode.h.
20942         * modules/dirname (Files): Add m4/double-slash-root.m4.
20943         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
20944         * modules/mkdir-p (Files): Add lib/same-inode.h.
20945         * modules/same (Files): Add lib/same-inode.h.
20946
20947 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
20948
20949         * m4/absolute-header.m4: Renamed from full-header-path.m4.
20950         This is to keep the terminology clean; POSIX talks about
20951         "absolute pathnames", not "full pathnames", but the GNU
20952         Coding Standards say to use "path" for something else;
20953         so use "absolute" to keep both sides happy.
20954         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
20955         Set gl_absolute_header, not gl_full_header_path.
20956         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
20957         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
20958         All uses changed.
20959
20960         Merge from coreutils.
20961
20962         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
20963
20964         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
20965         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
20966         want to require the building of c-strtod.o.
20967         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
20968         needs -lm directly.
20969         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
20970
20971         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
20972
20973         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
20974         --as-needed option if available.  Problem reported by Albert Chin in
20975         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
20976         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
20977         cc merely issues a bunch of annoying warnings for --as-needed
20978         (this problem was reported by Bob Proulx).  Also, try linking with
20979         -lm to detect a bug in binutils 2.16 (this problem was reported
20980         by Ralf Wildenhues).
20981
20982         2006-06-18  Jim Meyering  <jim@meyering.net>
20983
20984         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
20985         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
20986         macro.
20987         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
20988         also check for glibc-2.4's abort-inducing bug.
20989
20990         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
20991         Low-probability clean-up should be to use rmdir to get rid of
20992         the just-created directory, not unlink.
20993
20994         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
20995         configure fail, and request a bug report to inform us about it.
20996         Add a comment that, barring reports to the contrary, in 2007 we'll
20997         assume ftruncate is universally available.
20998
20999         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
21000
21001         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
21002
21003         2006-03-12  Jim Meyering  <jim@meyering.net>
21004
21005         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
21006         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
21007         * m4/same.m4 (gl_SAME): Likewise.
21008         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
21009
21010         2006-03-11  Eric Blake  <ebb9@byu.net>
21011
21012         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
21013         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
21014         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
21015         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
21016
21017 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21018
21019         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
21020         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
21021         reported by Mark D. Baushke, one in
21022         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
21023
21024         Merge from coreutils.
21025
21026         * lib/.cppi-disable: Add stdint_.h.
21027         * lib/.cvsignore: Add stdint.h.
21028
21029         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
21030
21031         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
21032         both double and long double versions.
21033         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
21034         * lib/xstrtold.c: New file.
21035         * lib/xstrtod.h (xstrtold): New decl.
21036
21037         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
21038
21039         * lib/filemode.c (setst): Remove.
21040         (strmode): Rewrite to avoid setst.  This makes the code shorter,
21041         (arguably) clearer, and the generated code is a bit smaller on my
21042         Debian GNU/Linux stable x86 host.
21043
21044         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
21045
21046         * lib/filemode.c: Include "filemode.h" first, to test the interface.
21047         Assume that filemode.h includes sys/types.h and sys/stat.h.
21048         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
21049         (ftypelet): Reorder to put common cases first, for efficiency.
21050         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
21051         to do 'M'.
21052         (strmode): Renamed from mode_string, and now stores 12 bytes instead
21053         of 10, for compatibility with FreeBSD.  All callers changed.
21054         (filemodestring): Now stores 12 bytes instead of 10, and sets file
21055         types that can't be deduced solely from st_mode.  First arg is now a
21056         const pointer.
21057         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
21058         (strmode): Renamed from mode_string.
21059         (filemodestring): New decl.
21060         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
21061         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
21062         needed.
21063         (S_ISPORT, S_ISWHT): New macros, if not already defined.
21064
21065         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
21066
21067         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
21068         fsusage.h now does that.  Include fsusage.h first, to test interface.
21069         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
21070         at most one method (the old code could have generated decls that
21071         didn't conform to C89, not that this was ever exercised).
21072         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
21073
21074         2006-03-19  Jim Meyering  <jim@meyering.net>
21075
21076         Work even in a chroot where d_ino values for entries in "/"
21077         don't match the stat.st_ino values for the same names.
21078         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
21079         number, iterate through all entries again, using lstat instead.
21080         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
21081         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
21082
21083         * lib/getcwd.c (__getcwd): Clarify a comment.
21084         Use memcpy in place of a call to strcpy.
21085
21086         2006-03-12  Jim Meyering  <jim@meyering.net>
21087
21088         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
21089         matches that of the current directory (which we're about to chdir ".."
21090         out of), then save the dev-ino of the parent, instead.
21091
21092         * lib/same-inode.h (SAME_INODE): New file/macro.
21093         * lib/chdir-safer.c (SAME_INODE): Remove definition.
21094         Include "same-inode.h", instead.
21095         * lib/same.c: Likewise.
21096         * lib/cycle-check.h: Include "same-inode.h".
21097         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
21098         * lib/cycle-check.c (SAME_INODE): Remove definition.
21099         * lib/root-dev-ino.h: Include "same-inode.h".
21100
21101         2006-03-11  Eric Blake  <ebb9@byu.net>
21102
21103         * lib/same.c (same_name): s/base_name/last_component/
21104         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
21105         * lib/filenamecat.c (file_name_concat): Likewise.
21106
21107         2006-03-11  Eric Blake  <ebb9@byu.net>,
21108                     Paul Eggert  <eggert@cs.ucla.edu>
21109
21110         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
21111         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
21112         drive prefix.
21113         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
21114         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
21115         (last_component): New method.
21116         * lib/dirname.c (dir_len): Determine when drive letters need a
21117         subsequent slash.  Preserve // when it is special.
21118         (dir_name): Don't append dot when drive letter is absolute.
21119         [TEST_DIRNAME]: Move into a full-blown gnulib test.
21120         * lib/basename.c (base_name): New semantics - malloc the result.
21121         Preserve // when it is special.  Preserve relative files that look
21122         like drive letters.
21123         (base_len): Preserve // when it is special.
21124         (last_component): New method, similar to old base_name semantics.
21125         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
21126         base_name.  Strip redundant slashes from ///.
21127
21128 2006-07-03  Jim Meyering  <jim@meyering.net>
21129
21130         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
21131         macro is used before the first cycle_check call.
21132
21133 2006-07-03  Eric Blake  <ebb9@byu.net>
21134
21135         * modules/dirname (Depends-on): Add xstrndup.
21136
21137 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
21138
21139         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
21140         test cases, so that config.log is a bit easier to follow.
21141
21142 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
21143
21144         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
21145         both are 64 bits, since this seems to be the tradition, and this
21146         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
21147         we ever run into a host that prefers long long to long in this
21148         case, we'll need another configure-time test.  Problem reported by
21149         Jim Meyering.
21150
21151 2006-07-02  Eric Blake  <ebb9@byu.net>
21152
21153         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
21154
21155 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21156
21157         * modules/inttypes (Depends-on): No longer depends on stdint.
21158         * modules/stdint (Description): Say more about assumptions.
21159         Say that the fast types might differ.  Say macros are used.
21160         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
21161         (Makefile.am): Revise list of substituted symbols to match
21162         new stdint.m4.
21163         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
21164         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
21165         * tests/test-stdint.c (verify_same_types)
21166         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
21167         the code conforms to C99/C89.
21168         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
21169         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
21170
21171 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21172
21173         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
21174         but fix a bug, by requiring at least 64 bits.
21175         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
21176         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
21177         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
21178         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
21179
21180         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
21181         changes.  Make 2.59 a prerequisite.  Check and substitute for
21182         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
21183         inttypes.h.  Do not use special include files; just use the
21184         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
21185         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
21186         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
21187         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
21188         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
21189         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
21190         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
21191         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
21192         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
21193         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
21194         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
21195         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
21196         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
21197         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
21198         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
21199         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
21200         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
21201         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
21202         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
21203         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
21204         WINT_MAX.  Check for C99 conformance more strictly, by detecting
21205         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
21206         not check for things that C99 does not require, e.g., int8_t.  If
21207         a test isn't needed unless <stdint.h> isn't working, and is
21208         unlikely to be needed for any other reason, then don't do it
21209         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
21210         size_t, since we assume C89 freestanding at least.  Do not check
21211         for sig_atomic_t, wchar_t, or wint_t, since the code now does
21212         the right thing even if the types are not defined.  Instead use:
21213         (gl_STDINT_TYPE_PROPERTIES): New macro.
21214         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
21215         testing whether <sys/types.h> clashes, as Autoconf does this for
21216         us now.  All uses removed.
21217         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
21218         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
21219         (gl_CHECK_TYPE_SAME):
21220         Remove; no longer needed.
21221         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
21222         exists, since we'll return 0 anyway in that case.
21223         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
21224
21225 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21226
21227         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
21228         possible collision with system files.
21229         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
21230         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
21231         WCHAR_MIN and WCHAR_MAX in this case.
21232         (<stddef.h>): Do not include; no longer needed.
21233         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
21234         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
21235         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
21236         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
21237         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
21238         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
21239         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
21240         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
21241         !defined(__c99))]: Include in this case too, since it's harmless
21242         now.
21243         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
21244         dangerous to do so.
21245         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
21246         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
21247         (_STDINT_MIN, _STDINT_MAX): New macros.
21248         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
21249         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
21250         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
21251         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
21252         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
21253         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
21254         macros, not typedefs; this simplifies things quite a bit.
21255         Use long int for all types narrower than int64_t.
21256         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
21257         Define in terms of long long int or int64_t or long int,
21258         not int64_t or int32_t.  This saves some compile-time testing.
21259         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
21260         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
21261         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
21262         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
21263         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
21264         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
21265         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
21266         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
21267         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
21268         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
21269         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21270         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21271         undef any previous version and define our own version, for
21272         simplicity and consistency with the new macros for types.
21273         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21274         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21275         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
21276         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
21277         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
21278         @WINT_T_SUFFIX@ to keep things simple here.
21279         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
21280         Simplify by assuming typical 8/16/32/64 host, since we're
21281         already doing that elsewhere anyway.
21282         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
21283         and assume long long int is 64 bits if available.  This
21284         speeds up 'configure'.
21285
21286 2006-07-01  Eric Blake  <ebb9@byu.net>
21287
21288         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
21289         Reported by Andreas Buening.
21290
21291 2006-07-01  Eric Blake  <ebb9@byu.net>
21292
21293         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
21294
21295 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
21296
21297         * lib/getaddrinfo.c: fixed typo
21298
21299 2006-06-29  Jim Meyering  <jim@meyering.net>
21300
21301         * modules/strftime (Maintainer): Add my name, since with the
21302         FPRINTFTIME changes strftime.c has forked from glibc.
21303
21304 2006-06-29  Eric Blake  <ebb9@byu.net>
21305
21306         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
21307
21308 2006-06-29  Eric Blake  <ebb9@byu.net>
21309
21310         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
21311
21312 2006-06-29  Eric Blake  <ebb9@byu.net>
21313
21314         * lib/stat_.h: New file.
21315
21316 2006-06-29  Eric Blake  <ebb9@byu.net>
21317
21318         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
21319         unused static function.
21320
21321 2006-06-29  Eric Blake  <ebb9@byu.net>
21322
21323         * doc/functions.texi (Function Portability): Document missing lstat
21324         on mingw.
21325
21326 2006-06-29  Eric Blake  <ebb9@byu.net>
21327
21328         * MODULES.html.sh: Add sys_stat.
21329         * modules/sys_stat: New module.
21330         * modules/mkstemp (Depends-on): Add sys_stat.
21331
21332 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21333
21334         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
21335
21336 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21337
21338         * m4/c-bs-a.m4: Removed.
21339
21340 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21341
21342         * lib/strftime.c: Assume strftime() exists.
21343
21344 2006-06-29  Derek Price  <derek@ximbiot.com>
21345
21346         * modules/c-bs-a: Removed - \a is C89.
21347         * MODULES.html.sh: Remove c-bs-a.
21348
21349 2006-06-29  Bruno Haible  <bruno@clisp.org>
21350
21351         * modules/wcwidth (License): Change to LGPL.
21352
21353 2006-06-28  Simon Josefsson  <jas@extundo.com>
21354
21355         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
21356         on _WIN32.
21357
21358         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
21359         getnameinfo.
21360
21361 2006-06-28  Simon Josefsson  <jas@extundo.com>
21362
21363         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
21364
21365 2006-06-28  Simon Josefsson  <jas@extundo.com>
21366
21367         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
21368         functions there.  It will succeed on Windows XP, but on Windows
21369         2000 and (presumably) earlier, it will fail, and use the internal
21370         re-implementation.
21371         (use_win32_p): New function.
21372         (getaddrinfo): Use strtoul on servname, to support numeric ports.
21373         Support AI_NUMERICSERV to disable getservbyname.
21374         (getnameinfo): New function, only supports
21375         NI_NUMERICHOST|NI_NUMERICSERV for now.
21376
21377         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
21378         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
21379         getnameinfo.
21380
21381 2006-06-28  Eric Blake  <ebb9@byu.net>
21382
21383         * modules/wcwidth: New file.
21384         * modules/mbchar (Depends-on): Add wcwidth.
21385         * modules/mbswidth (Depends-on): Add wcwidth.
21386         * MODULES.html.sh: Add wcwidth.
21387
21388 2006-06-28  Eric Blake  <ebb9@byu.net>
21389
21390         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
21391         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
21392
21393 2006-06-28  Eric Blake  <ebb9@byu.net>
21394
21395         * lib/xvasprintf.h: Fix comments.
21396
21397 2006-06-28  Eric Blake  <ebb9@byu.net>
21398
21399         * lib/mbchar.h (wcwidth): Include wcwidth.h.
21400         * lib/mbswidth.c (wcwidth): Move from here...
21401         * lib/wcwidth.h: ...to this new file.
21402
21403 2006-06-28  Derek R. Price  <derek@ximbiot.com>
21404
21405         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
21406
21407         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
21408         it's obsolete.
21409         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
21410
21411 2006-06-28  Derek R. Price  <derek@ximbiot.com>
21412
21413         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
21414         Autoconf 2.60 says this stuff was obsolete.
21415
21416 2006-06-28  Bruno Haible  <bruno@clisp.org>
21417
21418         * modules/wcwidth (Files): Add m4/wchar_t.m4.
21419
21420 2006-06-28  Bruno Haible  <bruno@clisp.org>
21421
21422         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
21423         gt_TYPE_WCHAR_T.
21424
21425 2006-06-28  Bruno Haible  <bruno@clisp.org>
21426
21427         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
21428         declaration for wcwidth.
21429         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
21430
21431 2006-06-28  Bruno Haible  <bruno@clisp.org>
21432
21433         * lib/mkdtemp.c [MINGW]: Include <io.h>.
21434         (mkdir): Define using _mkdir.
21435
21436 2006-06-28  Bruno Haible  <bruno@clisp.org>
21437
21438         * lib/getaddrinfo.h: Fix POSIX URL.
21439         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
21440         _WIN32.
21441         (use_win32_p): Make static.
21442         (getaddrinfo): Reject service name if it is empty or does not consist
21443         solely of decimal digits, or if its value is > 65535.
21444         (getnameinfo): Remove useless casts.
21445
21446 2006-06-27  Simon Josefsson  <jas@extundo.com>
21447
21448         * modules/sys_select: New file, suggested by Bruno Haible, Paul
21449         Eggert and Martin Lambers.
21450
21451 2006-06-27  Simon Josefsson  <jas@extundo.com>
21452
21453         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
21454         Eggert and Martin Lambers.
21455
21456 2006-06-27  Bruno Haible  <bruno@clisp.org>
21457
21458         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
21459         result to 0, not to empty.
21460         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
21461
21462 2006-06-27  Bruno Haible  <bruno@clisp.org>
21463
21464         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
21465
21466 2006-06-26  Simon Josefsson  <jas@extundo.com>
21467
21468         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
21469         present.
21470
21471 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
21472
21473         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
21474         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
21475         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
21476
21477 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
21478
21479         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
21480
21481 2006-06-26  Bruno Haible  <bruno@clisp.org>
21482
21483         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
21484
21485 2006-06-26  Bruno Haible  <bruno@clisp.org>
21486
21487         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
21488
21489 2006-06-26  Bruno Haible  <bruno@clisp.org>
21490
21491         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
21492         SGI C compiler in pre-C99 mode.
21493         Suggested by Mark D. Baushke and Larry Jones.
21494
21495 2006-06-26  Bruno Haible  <bruno@clisp.org>
21496
21497         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
21498         WCHAR_MAX.
21499         Reported by Mark D. Baushke and Larry Jones.
21500
21501 2006-06-26  Bruno Haible  <bruno@clisp.org>
21502
21503         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
21504         in pre-C99 mode.
21505         Suggested by Mark D. Baushke and Larry Jones.
21506
21507 2006-06-23  Simon Josefsson  <jas@extundo.com>
21508             Bruno Haible  <bruno@clisp.org>
21509
21510         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
21511         Emit mostlyclean-local rule.
21512         (func_emit_tests_Makefile_am): Likewise.
21513         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
21514
21515 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
21516
21517         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
21518
21519 2006-06-23  Bruno Haible  <bruno@clisp.org>
21520
21521         * tests/test-stdint.c: Update to match ISO C 99 Technical
21522         Corrigendum 1.
21523
21524 2006-06-23  Bruno Haible  <bruno@clisp.org>
21525
21526         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
21527
21528 2006-06-23  Bruno Haible  <bruno@clisp.org>
21529
21530         * lib/stdint_.h: Treat IRIX like OpenBSD.
21531
21532 2006-06-23  Bruno Haible  <bruno@clisp.org>
21533
21534         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
21535         ISO C 99 Technical Corrigendum 1.
21536
21537 2006-06-22  Simon Josefsson  <jas@extundo.com>
21538
21539         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
21540         MinGW.
21541
21542 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21543
21544         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
21545         needed.  Some compiler complained about some of them.  Problem reported
21546         by Larry Jones in
21547         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
21548
21549 2006-06-21  Simon Josefsson  <jas@extundo.com>
21550
21551         * tests/test-getaddrinfo.c: New file.
21552
21553         * modules/getaddrinfo-tests: New file.
21554
21555         * MODULES.html.sh: Add inet_pton.
21556
21557         * modules/inet_pton: New file.
21558
21559 2006-06-21  Simon Josefsson  <jas@extundo.com>
21560
21561         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
21562         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
21563         of using the (limited) gnulib implementation on Windows XP.
21564
21565         * m4/inet_pton.m4: New file.
21566
21567 2006-06-21  Simon Josefsson  <jas@extundo.com>
21568
21569         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
21570         variable.
21571
21572         * lib/socket_.h: Don't define WINVER.
21573
21574         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
21575         slightly modified to work in gnulib.
21576
21577 2006-06-21  Simon Josefsson  <jas@extundo.com>
21578
21579         * doc/gnulib.texi (Windows sockets): Add.
21580
21581 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
21582
21583         * lib/read-file.c (fread_file): Start with buffer allocation of
21584         0 bytes rather than 1 byte; this simplifies the code.
21585         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
21586         code to free buffer and save/restore errno.
21587         (internal_read_file): Remove unused local.
21588
21589 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
21590
21591         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
21592         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
21593         Problem reported by Denis Excoffier in
21594         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
21595
21596 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21597
21598         * modules/sys_socket, modules/socklen: Include sys/types since
21599         FreeBSD 4.x's sys/socket.h needs it.
21600
21601 2006-06-19  Simon Josefsson  <jas@extundo.com>
21602
21603         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
21604
21605 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
21606
21607         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
21608
21609 2006-06-19  Bruno Haible  <bruno@clisp.org>
21610
21611         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
21612         and FULL_PATH_INTTYPES_H in angle brackets.
21613         Reported by Mark D. Baushke <mdb@gnu.org>.
21614
21615 2006-06-17  Eric Blake  <ebb9@byu.net>
21616
21617         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
21618         errno.
21619
21620 2006-06-17  Bruno Haible  <bruno@clisp.org>
21621
21622         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
21623         <sys/inttypes.h>.
21624
21625 2006-06-17  Bruno Haible  <bruno@clisp.org>
21626
21627         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
21628         whether errno is declared. Assume <errno.h> declares errno.
21629
21630 2006-06-17  Bruno Haible  <bruno@clisp.org>
21631
21632         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
21633
21634 2006-06-17  Bruno Haible  <bruno@clisp.org>
21635
21636         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
21637         problem on Solaris 2.5.1.
21638
21639 2006-06-16  Eric Blake  <ebb9@byu.net>
21640
21641         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
21642         * lib/unicodeio.c [!defined errno]: Likewise.
21643         * lib/strtol.c [!defined errno]: Likewise.
21644         * lib/strtod.c [!defined errno]: Likewise.
21645
21646 2006-06-15  Eric Blake  <ebb9@byu.net>
21647
21648         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
21649
21650 2006-06-15  Eric Blake  <ebb9@byu.net>
21651
21652         * config/srclist.txt (ssize_t.m4): Lose sync.
21653
21654 2006-06-15  Bruno Haible  <bruno@clisp.org>
21655
21656         * modules/stdint (Files): Include m4/full-header-path.m4,
21657         m4/size_max.m4, m4/wchar_t.m4.
21658         (Makefile.am): Many more substitutions.
21659         * modules/stdint-tests: New file.
21660         * tests/test-stdint.c: New file.
21661
21662 2006-06-15  Bruno Haible  <bruno@clisp.org>
21663
21664         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
21665         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
21666         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
21667         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
21668         gl_CHECK_TYPE_SAME): New macros.
21669
21670 2006-06-15  Bruno Haible  <bruno@clisp.org>
21671
21672         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
21673
21674 2006-06-15  Bruno Haible  <bruno@clisp.org>
21675
21676         * lib/stdint_.h: Rewritten to be fully auto-configured.
21677         Fixes bug on HP-UX/IA64.
21678
21679 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
21680
21681         * lib/getdate.y (__attribute__): Don't define if already defined.
21682         Problem reported by Larry Jones.
21683         * lib/utimens.c (__attribute__): Likewise.
21684
21685 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
21686
21687         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
21688         reported by Andreas Schwab.
21689
21690 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21691             Bruno Haible  <bruno@clisp.org>
21692
21693         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
21694         check for the declaration of strnlen and a run test that exposes the
21695         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
21696         rpl_strndup.
21697
21698 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21699             Bruno Haible  <bruno@clisp.org>
21700
21701         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
21702
21703 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21704
21705         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
21706         compile test, for Tru64 4.0D.
21707
21708 2006-05-28  Karl Berry  <karl@gnu.org>
21709
21710         * config/srclist.txt (printf-args.c): lose sync.
21711
21712 2006-05-26  Martin Lambers  <marlam@marlam.de>
21713
21714         * lib/getpass.c: Updates the test for the native W32 API, and adds
21715         missing includes, thus fixing compilation warnings.
21716
21717 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
21718
21719         * lib/exclude.c (exclude_fnmatch): New function.
21720         (excluded_file_name): Call exclude_fnmatch.
21721         * lib/exclude.h (excluded_file_name): New prototype
21722
21723 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
21724
21725         * lib/tempname.c (small_open, large_open): New macros.
21726         (__open, __open64) [!_LIBC]: Remove.
21727         (__gen_tempname): Use small_open and large_open instead of __open
21728         and __open64.  This fixes a portability bug on HP-UX 11.11i
21729         reported by Simon Wing-Tang in
21730         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
21731
21732 2006-05-24  Bruno Haible  <bruno@clisp.org>
21733
21734         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
21735         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
21736         Reported by Thorsten Maerz <torte@netztorte.de> via
21737         Aaron Stone <aaron@serendipity.cx>.
21738
21739 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21740
21741         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
21742         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
21743         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
21744         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
21745         not really conditional on the cache.
21746         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
21747
21748 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21749
21750         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
21751         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
21752         (my_usleep): Don't mishandle maximum value.
21753
21754 2006-05-19  Jim Meyering  <jim@meyering.net>
21755
21756         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
21757
21758 2006-05-17  Bruno Haible  <bruno@clisp.org>
21759
21760         Cygwin portability.
21761         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
21762
21763 2006-05-17  Bruno Haible  <bruno@clisp.org>
21764
21765         * lib/stdint_.h: Fix recognition of Cygwin.
21766
21767 2006-05-15  Bruno Haible  <bruno@clisp.org>
21768
21769         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
21770         on libtool patch by Ralf Wildenhues.
21771
21772 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
21773
21774         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
21775         test for C99 conformance; (bool) 0.5 is an integer constant
21776         expression, but (bool) -0.5 is not.  Problem reported by Fedor
21777         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
21778
21779 2006-05-11  Simon Josefsson  <jas@extundo.com>
21780
21781         * m4/xvasprintf.m4: Fix obvious typo.
21782
21783 2006-05-11  Jim Meyering  <jim@meyering.net>
21784
21785         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
21786         James Lemley.
21787
21788 2006-05-10  Simon Josefsson  <jas@extundo.com>
21789
21790         * lib/md4.c: Typo fix, update copyright years.
21791         (K1, K2): Don't use L because it turn computations into 64-bit on
21792         64-bit platforms.
21793
21794 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
21795
21796         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
21797         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
21798         unwanted sign propagation, e.g., on hosts with 64-bit int.
21799         There still are some problems with reeelly weird theoretical hosts
21800         (e.g., 33-bit int) but it's not worth worrying about now.
21801         * lib/sha1.c (rol): Likewise.
21802         (K1, K2, K3, K4): Remove unnecessary L suffix.
21803
21804 2006-05-10  Bruno Haible  <bruno@clisp.org>
21805
21806         * lib/des.c: Cast to avoid warnings.
21807
21808 2006-05-09  Bruno Haible  <bruno@clisp.org>
21809
21810         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
21811         (Depends-on): Depend also on xsize, stdarg.
21812         (configure.ac): Add gl_XVASPRINTF.
21813
21814 2006-05-09  Bruno Haible  <bruno@clisp.org>
21815
21816         * m4/xvasprintf.m4: New file.
21817
21818 2006-05-09  Bruno Haible  <bruno@clisp.org>
21819
21820         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
21821         (EOVERFLOW): Define fallback value.
21822         (xstrcat): New function.
21823         (xvasprintf): Recognize the special case of a string concatenation.
21824
21825 2006-05-08  Eric Blake  <ebb9@byu.net>
21826
21827         * gnulib-tool (func_version): Base copyright year on CVS date.
21828         (func_emit_copyright_notice): New function.
21829         (func_emit_lib_Makefile_am): Use it.
21830         (func_emit_tests_Makefile_am): Likewise.
21831         (func_import): Likewise.
21832
21833 2006-05-08  Bruno Haible  <bruno@clisp.org>
21834
21835         * modules/stdarg: New file.
21836         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
21837
21838 2006-05-08  Bruno Haible  <bruno@clisp.org>
21839
21840         * m4/stdarg.m4: New file, from GNU gettext.
21841
21842 2006-05-08  Bruno Haible  <bruno@clisp.org>
21843
21844         * config/srclist.txt (build-aux/config.rpath): different from latest
21845         release.
21846
21847 2006-05-08  Bruno Haible  <bruno@clisp.org>
21848
21849         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
21850
21851 2006-05-05  Jim Meyering  <jim@meyering.net>
21852
21853         * m4/warning.m4: New file, derived from bison's file by the same name.
21854
21855 2006-05-03  Bruno Haible  <bruno@clisp.org>
21856
21857         * lib/stdint_.h: Shorter URL.
21858         * lib/inttypes.h: Likewise.
21859
21860 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21861
21862         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
21863
21864 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21865
21866         * lib/verify.h: Document the internals better.  Most of this change
21867         was written by Bruno Haible.
21868
21869 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21870
21871         * doc/verify.texi: New file, partly based on a proposal by
21872         Bruno Haible.
21873
21874 2006-05-02  Bruno Haible  <bruno@clisp.org>
21875
21876         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
21877         test from here...
21878         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
21879
21880 2006-04-29  Bruno Haible  <bruno@clisp.org>
21881
21882         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
21883         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
21884
21885 2006-04-29  Bruno Haible  <bruno@clisp.org>
21886
21887         * gnulib-tool: Make --update option actually work.
21888
21889 2006-04-29  Bruno Haible  <bruno@clisp.org>
21890
21891         * doc/gcd.texi: New file.
21892         * doc/gnulib.texi: Include it.
21893
21894 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
21895
21896         * lib/getdate.y (get_date): When adding relative date, start with the
21897         initial time, not with the result of the first mktime call.
21898
21899 2006-04-25  Bruno Haible  <bruno@clisp.org>
21900
21901         * gnulib-tool (func_import): Output the include directives in three
21902         blocks, sorted separately.
21903         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21904
21905 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
21906
21907         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
21908         to define main with arguments, for C++.  Reported by Eric Blake.
21909         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
21910         Prefer 'int main ()' to 'int main (void)', for C++.
21911         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
21912         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
21913         for 'main', for C99 and C++.
21914
21915 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
21916
21917         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
21918         Don't assume that exit status -1 is valid.
21919         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
21920         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
21921         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
21922         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
21923         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
21924         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
21925         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
21926         functions can be used without declaring them, or that you can
21927         exit with status -1.
21928         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
21929
21930 2006-04-24  Karl Berry  <karl@gnu.org>
21931
21932         * config/srclist.txt (longdouble.m4): sync lost.
21933
21934 2006-04-24  Eric Blake  <ebb9@byu.net>
21935
21936         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
21937
21938 2006-04-24  Bruno Haible  <bruno@clisp.org>
21939
21940         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
21941         poll() implementation in AIX.
21942         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21943
21944 2006-04-24  Bruno Haible  <bruno@clisp.org>
21945
21946         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
21947         assigned exactly once.
21948
21949 2006-04-23  Claudio Fontana  <claudio@gnu.org>
21950             Bruno Haible  <bruno@clisp.org>
21951
21952         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
21953         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
21954         for AM_CPPFLAGS.
21955
21956 2006-04-23  Bruno Haible  <bruno@clisp.org>
21957
21958         * modules/copy-file: Depend on unistd.
21959         * modules/execute: Likewise.
21960         * modules/fatal-signal: Likewise.
21961         * modules/findprog: Likewise.
21962         * modules/mkdtemp : Likewise.
21963         * modules/pipe: Likewise.
21964         * modules/wait-process: Likewise.
21965
21966 2006-04-23  Bruno Haible  <bruno@clisp.org>
21967
21968         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
21969         condition was already detected.
21970         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21971
21972 2006-04-23  Bruno Haible  <bruno@clisp.org>
21973
21974         * lib/copy-file.c: Include <unistd.h> unconditionally.
21975         * lib/execute.c: Likewise.
21976         * lib/fatal-signal.c: Likewise.
21977         * lib/findprog.c: Likewise.
21978         * lib/mkdtemp.c: Likewise.
21979         * lib/pipe.h: Likewise.
21980         * lib/pipe.c: Likewise.
21981         * lib/wait-process.h: Likewise.
21982
21983 2006-04-23  Bruno Haible  <bruno@clisp.org>
21984
21985         * gnulib-tool (func_usage): Fix --import description. Document
21986         --update.
21987         (func_import): Create temporary file in a temporary directory, if
21988         --dry-run is specified. Silence errors from 'grep' when there are no
21989         m4 files in $m4dir.
21990         (func_create_testdir): Silence errors from 'grep' when there are no
21991         m4 files in $m4dir.
21992         Reported by Karl Berry <karl@freefriends.org>.
21993
21994 2006-04-20  Bruno Haible  <bruno@clisp.org>
21995
21996         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
21997         one argument, so that the code will be portable to Autoconf 2.60.
21998         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
21999         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
22000         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
22001
22002 2006-04-19  Derek Price  <derek@ximbiot.com>
22003             Eric Blake  <ebb9@byu.net>
22004
22005         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
22006         rather than "/full/path.h".  Update comment to match.  Shorten &
22007         generalize m4_translit call via AS_TR_CPP.
22008
22009 2006-04-19  Derek Price  <derek@ximbiot.com>
22010             Eric Blake  <ebb9@byu.net>
22011
22012         * lib/inttypes.h: Correct grammar in comment.
22013
22014 2006-04-18  Derek Price  <derek@ximbiot.com>
22015             Paul Eggert  <eggert@cs.ucla.edu>
22016
22017         * modules/inttypes: New file.
22018         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
22019
22020 2006-04-18  Derek Price  <derek@ximbiot.com>
22021             Paul Eggert  <eggert@cs.ucla.edu>
22022
22023         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
22024         New files.
22025
22026 2006-04-18  Derek Price  <derek@ximbiot.com>
22027             Paul Eggert  <eggert@cs.ucla.edu>
22028
22029         * lib/inttypes.h: New file.
22030         * lib/strtoimax.c: Assume <inttypes.h>.
22031
22032 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
22033
22034         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
22035         isn't mounted.  Problem reported by Kir Kolyshkin.
22036
22037 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
22038
22039         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
22040         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
22041         Derek R. Price.
22042         * lib/regex.h (RE_DUP_MAX): Update comment to match current
22043         implementation.
22044
22045 2006-04-12  Eric Blake  <ebb9@byu.net>
22046
22047         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
22048         is now done automatically by the corresponding Autoconf macro.
22049
22050 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
22051
22052         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
22053         time_r.h.
22054
22055 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22056
22057         Merge regex changes from libc, removing some of our
22058         POSIX-conformance changes that were rejected and redoing them in a
22059         less-intrusive way.
22060
22061         * lib/regcomp.c (re_compile_internal, init_dfa):
22062         Length arg is now size_t, not Idx.  All uses changed.
22063         (peek_token): Forward decl now says internal_function.
22064         (__re_error_msgid, __re_error_msgid_idx):
22065         Now static rather than extern with attribute_hidden.
22066         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
22067         For some reason libc prefers K&R style defns for external functions.
22068         (regerror) [!defined _LIBC]: Likewise.
22069         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
22070         (seek_collating_symbol_entry, lookup_collation_sequence_value):
22071         (build_range_exp, build_collating_symbol):
22072         Use K&R-style defn.
22073         (re_compile_fastmap): Use '\0' to memset, not 0.
22074         (utf8_sb_map): Make the calculations more obvious.
22075         (init_dfa, parse_bracket_exp, build_charclass_op):
22076         Call calloc and cast result, as glibc does.
22077         (init_word_char, fetch_token, peek_token, peek_token_bracket):
22078         (build_range_exp, build_collating_symbol):
22079         Now internal functions.
22080
22081         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
22082
22083         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
22084         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
22085         Don't depend on VMS; depend on __VMS instead, for POSIX
22086         namespace cleanness.
22087         (regoff_t): Define to ssize_t, not long int.
22088
22089         Remove the REG_ macros named below.  Instead, make the old names
22090         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
22091         __USE_GNU_REGEX.
22092         (REG_BACKSLASH_ESCAPE_IN_LISTS):
22093         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
22094         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
22095         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
22096         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
22097         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
22098         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
22099         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
22100         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
22101         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
22102         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
22103         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
22104         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
22105         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
22106         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
22107         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
22108         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
22109         (REG_NREGS):
22110         Remove.  All uses replaced by the old RE_* names.
22111         (RE_BACKSLASH_ESCAPE_IN_LISTS):
22112         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
22113         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
22114         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
22115         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
22116         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
22117         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
22118         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
22119         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
22120         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
22121         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
22122         Don't bother having these macros be independent of each others'
22123         values, since they no longer exist in the POSIX name space.
22124
22125         Rename the following member names back to their old names,
22126         unless !__USE_GNU_REGEX.  All uses changed back.
22127         (buffer): Renamed from re_buffer.
22128         (allocated): Renamed from re_allocated.
22129         (used): Renamed from re_used.
22130         (syntax): Renamed from re_syntax.
22131         (fastmap): Renamed from re_fastmap.
22132         (translate): Renamed from re_translate.
22133         (can_be_null): Renamed from re_can_be_null.
22134         (regs_allocated): Renamed from re_regs_allocated.
22135         (fastmap_accurate): Renamed from re_fastmap_accurate.
22136         (no_sub): Renamed from re_no_sub.
22137         (not_bol): Renamed from re_not_bol.
22138         (not_eol): Renamed from re_not_eol.
22139         (newline_anchor): Renamed from re_newline_anchor.
22140         (num_regs): Renamed from rm_num_regs.
22141         (start): Renamed from rm_start.
22142         (end): Renamed from rm_end.
22143
22144         (free_state): Move up a bit.
22145
22146         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
22147         #define to be empty.
22148         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
22149         when that is what is intended.
22150         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
22151         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
22152         (MAX): New macro.
22153         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
22154         All uses changed back to re_malloc, etc.  It's now the caller's
22155         responsibility to check for overflow; all callers changed.
22156         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
22157         (re_x2nrealloc): Remove.
22158         (free_state): Remove decl.
22159
22160         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
22161         (re_set_registers, re_exec):
22162         Use K&R-style defn.
22163
22164         2006-01-31  Roland McGrath  <roland@redhat.com>
22165
22166         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
22167         Reported by Mike Frysinger <vapier@gentoo.org>.
22168
22169         2006-01-15  Andreas Jaeger  <aj@suse.de>
22170
22171         [BZ #1950]
22172         * lib/regex_internal.c (re_string_reconstruct): Adjust for
22173         build_wcs_upper_buffer change.
22174         (build_wcs_upper_buffer): Change return type.
22175
22176         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
22177
22178         * lib/regex_internal.h: Include <stdint.h> if available.
22179
22180         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
22181
22182         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
22183
22184         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
22185
22186         * lib/regcomp.c: Adjust for changed secondary hash function.
22187
22188         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
22189
22190         * lib/regex.h: Pretty printing.
22191         Clean up namespace a bit.
22192
22193         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
22194
22195         * lib/regexec.c (update_cur_sifted_state, check_arrival,
22196         check_arrival_add_next_nodes): Avoid using uninitialized variable.
22197
22198         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
22199                     Ulrich Drepper  <drepper@redhat.com>
22200
22201         [BZ #1302]
22202         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
22203         changed.
22204         (bitset_word_t): Renamed from bitset_word.  All uses changed.
22205
22206         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
22207
22208         [BZ #281]
22209         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
22210         * lib/regcomp.c: Remove unnecessary uses of
22211         unsigned RE_TRANSLATE_TYPE.
22212         * lib/regex_internal.h: Likewise.
22213         * lib/regex_internal.c: Likewise.
22214         * lib/regexec.c: Likewise.
22215         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
22216
22217         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
22218
22219         * lib/regexec.c (find_recover_state): Remove unnecessary
22220         initialization.
22221         (transit_state_bkref): Make DFA a const pointer.
22222         (get_subexp): Likewise.
22223         (check_arrival): Likewise.
22224         (update_cur_sifted_state): Likewise.
22225         (re_search_internal): Likewise.
22226         (prune_impossible_nodes): Likewise.
22227         (acquire_init_state_context): Likewise.
22228         (proceed_next_node): Likewise.
22229         (set_regs): Likewise.
22230         (free_fail_stack_return): Likewise.
22231         (check_arrival_expand_ecl): Mark DFA parameter as const.
22232         (check_arrival_expand_ecl_sub): Likewise.
22233         (check_subexp_limits): Likewise.
22234         (sub_epsilon_src_nodes):  Likewise.
22235         (add_epsilon_src_nodes):  Likewise.
22236         (merge_state_array): Likewise.
22237         (update_regs): Likewise.
22238         (build_trtable): Likewise.
22239         (sift_states_backward): Mark MCTX parameter as const.
22240         (build_sifted_states): Likewise.
22241         (update_cur_sifted_state): Likewise.
22242         (sift_states_mkref): Likewise.
22243         (check_arrival_expand_ecl): Mark eclosure as const.
22244         (check_dst_limits_calc_pos_1): Likewise.
22245         * lib/regex_internal.h (re_match_context_t): Make dfa a const
22246         pointer.
22247
22248         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
22249
22250         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
22251         (transit_state_sb): Likewise.
22252         (transit_state_mb): Likewise.
22253         (sift_states_iter_mb): Likewise.
22254         (check_arrival_add_next_nodes): Likewise.
22255         (check_node_accept_bytes): Change first parameter to pointer-to-const.
22256         [_LIBC] (re_search_2_stub): Use mempcpy.
22257
22258         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
22259         mbrtowc for very simple UTF-8 case.
22260
22261         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
22262         a pointer-to-const.
22263         (re_acquire_state_context): Likewise.
22264         * lib/regex_internal.h: Adjust prototypes.
22265
22266         * lib/regex.c: Prevent using C++ compilers.
22267
22268         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
22269         (re_acquire_state_context): Likewise.
22270
22271 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22272
22273         * modules/regex (Depends-on): Add ssize_t.
22274
22275 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22276
22277         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
22278         translation table.
22279
22280 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22281
22282         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
22283
22284 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
22285             Bruno Haible  <bruno@clisp.org>
22286
22287         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
22288         <sys/types.h> and <inttypes.h>.
22289
22290 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22291
22292         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
22293         `__error_t_defined', so argp.h will not typedef the former.
22294
22295 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
22296
22297         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
22298         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
22299         glibc names.  Even if glibc is changed to conform to POSIX, the
22300         traditional names will be available anyway, since regex depends on
22301         the extensions module.  Also, fix a longstanding typo in the
22302         implementation of Spencer ERE test #75 from grep 2.3.  Problems
22303         reported by Emanuele Giaquinta.  Also, change sense of cached
22304         variable, so that the message makes sense.
22305
22306 2006-03-24  Simon Josefsson  <jas@extundo.com>
22307
22308         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
22309         including some doc fixes.
22310         (base64_encode_alloc): Fix +1 bug on allocation failures.
22311
22312 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22313
22314         * lib/base64.c (base64_encode): Do not read past end of array with
22315         unsanitized input on systems with CHAR_BIT > 8.
22316
22317 2006-03-24  Eric Blake  <ebb9@byu.net>
22318
22319         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
22320
22321 2006-03-22  Karl Berry  <karl@gnu.org>
22322
22323         * config/srclist.txt (*setenv.[ch]): get from coreutils.
22324         * config/srclistvars.sh (COREUTILS): new var.
22325
22326 2006-03-17  Jim Meyering  <jim@meyering.net>
22327
22328         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
22329         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
22330
22331 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22332
22333         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
22334         no longer needs it.  Instead, check that regoff_t is as least
22335         as wide as ptrdiff_t.
22336
22337         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
22338         so that our regex.h stays compatible with the installed regex.
22339         This is helpful for installers who configure --without-included-regex.
22340         Problem reported by Emanuele Giaquinta.
22341
22342 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22343
22344         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
22345         Typedef to long int, not to off_, as POSIX will likely change
22346         in that direction.
22347
22348 2006-03-15  Eric Blake  <ebb9@byu.net>
22349
22350         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
22351
22352 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
22353
22354         * lib/argp-help.c (validate_uparams): Fix typo
22355         * lib/argp-parse.c (argp_default_options): Consistently begin help
22356         messages with a lowercase letter.
22357
22358 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
22359
22360         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
22361         overrun buffers and shouldn't be used (much as gets shouldn't be
22362         used).
22363         * lib/time_r.c (asctime_r, ctime_r): Likewise.
22364
22365 2006-03-08  Simon Josefsson  <jas@extundo.com>
22366
22367         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
22368         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22369
22370 2006-03-08  Simon Josefsson  <jas@extundo.com>
22371
22372         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
22373         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22374
22375 2006-03-08  Simon Josefsson  <jas@extundo.com>
22376
22377         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
22378         signal that configure disabled the device.
22379
22380 2006-03-08  Simon Josefsson  <jas@extundo.com>
22381
22382         * build-aux/maint.mk: Fix refresh-po, to handle no translated
22383         languages.
22384
22385 2006-03-07  Simon Josefsson  <jas@extundo.com>
22386
22387         * modules/getopt (Depends-on): Add unistd.
22388
22389         * modules/unistd: New file.
22390
22391 2006-03-07  Simon Josefsson  <jas@extundo.com>
22392
22393         * modules/gc-random: New file.
22394
22395 2006-03-07  Simon Josefsson  <jas@extundo.com>
22396
22397         * m4/unistd_h.m4: New file.
22398
22399 2006-03-07  Simon Josefsson  <jas@extundo.com>
22400
22401         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
22402         test to be side-effect free by storing the result in the cache
22403         variable gl_cv_lib_readline, and moving the assignment of
22404         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
22405         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22406
22407 2006-03-07  Simon Josefsson  <jas@extundo.com>
22408
22409         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
22410         error on missing devices (the functions will return an error).
22411
22412         * m4/gc.m4: Move random stuff to gc-random.m4
22413
22414 2006-03-07  Simon Josefsson  <jas@extundo.com>
22415
22416         * lib/unistd_.h: New file.
22417
22418 2006-03-07  Simon Josefsson  <jas@extundo.com>
22419
22420         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
22421
22422 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22423
22424         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
22425         Problem reported by Juan Manuel Guerrero.
22426
22427 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22428
22429         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
22430         the unistd module.
22431         * lib/getlogin_r.c: Likewise.
22432         * lib/getlogin_r.h: Likewise.
22433         * lib/glob.c: Likewise.
22434         * lib/pagealign_alloc.c: Likewise.
22435         * lib/unistd_.h: Remove; no longer needed.
22436
22437 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22438
22439         * MODULES.html.sh (Support for systems lacking POSIX:2001):
22440         Add unistd.
22441         * modules/c-stack (Depends-on): Add unistd.
22442         * modules/getlogin_r: Likewise.
22443         * modules/glob: Likewise.
22444         * modules/pagealign_alloc: Likewise.
22445         * modules/unistd (Files): Remove lib/unistd_.h.
22446         (EXTRA_DIST): Remove.
22447         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
22448         need unistd_.h.
22449         (MOSTLYCLEANFILES): Remove unistd.h-t.
22450
22451 2006-03-03  Simon Josefsson  <jas@extundo.com>
22452
22453         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
22454
22455 2006-03-03  Simon Josefsson  <jas@extundo.com>
22456
22457         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
22458         libidn and bison.
22459
22460 2006-03-03  Simon Josefsson  <jas@extundo.com>
22461
22462         * build-aux/maint.mk: Add indent target.
22463
22464 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
22465
22466         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
22467         our replacement poll.h in any case, to avoid a differing
22468         declaration from a system header.  Seen on AIX.
22469
22470 2006-03-01  Simon Josefsson  <jas@extundo.com>
22471
22472         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
22473         <kasal@ucw.cz>.
22474
22475 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22476
22477         * modules/gettime (Depends-on): Add extensions module.
22478         * modules/nanosleep (Depends-on): Likewise.
22479         * modules/settime (Depends-on): Likewise.
22480
22481 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22482
22483         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
22484         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
22485         pedantically.
22486         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
22487         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
22488
22489         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
22490         not "==".  Reported by Ralf Wildenhues.
22491
22492 2006-03-01  Karl Berry  <karl@gnu.org>
22493
22494         * doc/Copyright/request-*: new files, synced from gnuorg.
22495
22496 2006-03-01  Karl Berry  <karl@gnu.org>
22497
22498         * config/srclist.txt (Copyright/*): new entries.
22499
22500 2006-02-28  Simon Josefsson  <jas@extundo.com>
22501
22502         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
22503
22504 2006-02-27  Simon Josefsson  <jas@extundo.com>
22505
22506         * lib/base64.h: Indent #define's.  From Jim Meyering
22507         <jim@meyering.net>.
22508
22509 2006-02-27  Jim Meyering  <jim@meyering.net>
22510
22511         Revert the change of 2006-02-24, so these files can continue
22512         to be sync'd from gettext.
22513         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
22514         of `config.h'.
22515
22516 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
22517
22518         * modules/intprops: New file.
22519         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
22520         Add intprops.
22521         * modules/getloadavg (Files): Remove lib/intprops.h.
22522         (Depends-on): Add intprops.
22523         * modules/human: Likewise.
22524         * modules/inttostr: Likewise.
22525         * modules/openat: Likewise.
22526         * modules/sig2str: Likewise.
22527         * modules/userspec: Likewise.
22528         * modules/utimecmp: Likewise.
22529         * modules/xnanosleep: Likewise.
22530         * modules/xstrtol: Likewise.
22531
22532 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
22533
22534         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
22535         * modules/lock-tests (TESTS): Use $(EXEEXT).
22536         * modules/tls-tests: Likewise.
22537         * modules/argp-tests: Likewise.
22538         (check_PROGRAMS): New var, replacing...
22539         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
22540
22541 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22542
22543         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
22544         `config.h'.
22545
22546 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
22547
22548         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
22549
22550 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22551
22552         Sync from coreutils.
22553         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
22554         gl_CHDIR_SAFER.
22555
22556 2006-02-22  Jim Meyering  <jim@meyering.net>
22557
22558         Sync from coreutils.
22559         * m4/chdir-safer.m4: New file.
22560
22561 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
22562
22563         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
22564         AT_FDCWD exceeds INT_MAX.
22565         * lib/openat.h (AT_FDCWD): Likewise.
22566
22567 2006-02-17  Eric Blake  <address@hidden>
22568
22569         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
22570
22571 2006-02-16  Simon Josefsson  <jas@extundo.com>
22572
22573         * modules/getaddrinfo (Depends-on): Add sys_socket.
22574
22575 2006-02-15  Simon Josefsson  <jas@extundo.com>
22576
22577         * build-aux/maint.mk: Add dsyntax-check rule.
22578
22579 2006-02-15  Eric Blake  <ebb9@byu.net>
22580
22581         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
22582         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
22583         'present but cannot compile' warnings on cygwin.
22584         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
22585         use ws2tcpip.h if sys/socket.h works.
22586         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
22587         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
22588
22589 2006-02-14  Simon Josefsson  <jas@extundo.com>
22590
22591         * modules/maintainer-makefile (Files): Rename.
22592
22593         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
22594         and (the local) Makefile.cfg to maint-cfg.mk.
22595
22596         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
22597         to the latter.
22598
22599         * modules/maintainer-makefile: New module.
22600
22601         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
22602         severaly stripped to make it possible to build it up from scratch
22603         with reliable tests.
22604
22605         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
22606         fixes to permit overriding the default actions when configure and
22607         makefile are not available.
22608
22609 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
22610
22611         Sync from coreutils.
22612         * modules/lstat (Depends-on): Don't depend on xalloc.
22613         (License): Change from GPL to LGPL, since this is now simply a
22614         replacement for a libc function.
22615
22616 2006-02-14  Jim Meyering  <jim@meyering.net>
22617
22618         Sync from coreutils.
22619
22620         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
22621         failure on deficient systems, and simplify gnulib lgpl dependencies.
22622         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
22623         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
22624
22625         * lib/xalloc-die.c: Remove unused definition of N_.
22626
22627 2006-02-14  Jim Meyering  <jim@meyering.net>
22628
22629         Sync from coreutils.
22630         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
22631         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
22632         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
22633         double-quote uses of that variable, to accommodate the rare case in
22634         which getmntent is available in none of the libraries checked.  This
22635         happens at least on FreeBSD 5.0.
22636
22637 2006-02-13  Simon Josefsson  <jas@extundo.com>
22638
22639         * gnulib-tool (Usage): Fix --import, from
22640         karl@freefriends.org (Karl Berry).
22641
22642 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
22643
22644         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
22645
22646 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
22647
22648         * lib/argp-namefrob.h: Restore changes accidentally lost during the
22649         "autoupdate" on 2005-12-12.
22650
22651 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
22652
22653         * modules/closeout (Depends-on): Remove atexit.
22654
22655 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
22656
22657         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
22658         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
22659
22660 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
22661
22662         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
22663         __EXTENSIONS__ if this causes compilation to fail.  Problem
22664         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
22665         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
22666
22667 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
22668
22669         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
22670         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
22671         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
22672         All uses changed.
22673
22674 2006-01-26  Simon Josefsson  <jas@extundo.com>
22675
22676         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
22677         prototype is visible on mingw32.
22678
22679         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
22680         for mingw32.
22681
22682         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
22683         mingw32).
22684
22685 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
22686
22687         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
22688         attempt to open for write; this always fails, at least on POSIX
22689         hosts.  This reinstates the 2006-01-09 change, which was
22690         inadvertently removed.
22691
22692 2006-01-26  Bruno Haible  <bruno@clisp.org>
22693
22694         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
22695         Reported by Paul Eggert.
22696
22697 2006-01-26  Bruno Haible  <bruno@clisp.org>
22698             Paul Eggert  <eggert@cs.ucla.edu>
22699
22700         * lib/stdbool_.h (_Bool)
22701         [(! (defined __cplusplus || defined __BEOS__)
22702           && !defined __GNUC__
22703           && !(defined __HP_cc || defined __xlc__
22704                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
22705                || defined __sgi))]:
22706         #define to signed char in these cases too; this simplifies
22707         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
22708         etc., separately) and makes it more conservative.
22709
22710 2006-01-25  Simon Josefsson  <jas@extundo.com>
22711
22712         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
22713         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
22714         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
22715
22716 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
22717
22718         * lib/argp-namefrob.h: Bugfix. Remove stray #
22719
22720 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
22721
22722         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
22723         so that we test the test.
22724         Check for yet another HP-UX cc bug involving *bool |= bool.
22725
22726 2006-01-25  Karl Berry  <karl@gnu.org>
22727
22728         * config/srclist.txt (vasnprintf.c): sync lost.
22729
22730 2006-01-25  Jim Meyering  <jim@meyering.net>
22731
22732         Sync from the stable (b5) branch of coreutils:
22733
22734         * lib/fts.c (fts_children): Don't let close() clobber errno from
22735         failed fchdir().
22736
22737         * lib/fts.c (fts_stat): When following a symlink-to-directory,
22738         don't necessarily interpret stat-fails+lstat-succeeds as indicating
22739         a dangling symlink.  That can also happen at least for ELOOP.
22740         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
22741         FYI, this bug predates the inclusion of fts.c in coreutils.
22742
22743         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
22744         in their own block, so pre-c99 compilers don't object.
22745
22746         Avoid the double-free (first in fts_read, second in fts_close) that
22747         would occur when an `active' directory is made inaccessible (e.g.,
22748         via chmod a-x) during a traversal.
22749         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
22750         before returning.  Reproduce this failure by
22751         mkdir -p a/b; cd a; chmod a-x . b
22752         Reported by Stavros Passas.
22753
22754 2006-01-25  Jim Meyering  <jim@meyering.net>
22755
22756         * lib/fileblocks.c: Remove more useless parentheses.
22757         * lib/readutmp.h: Likewise.
22758
22759 2006-01-25  Bruno Haible  <bruno@clisp.org>
22760
22761         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
22762         warnings.
22763         Reported by Paul Eggert.
22764
22765 2006-01-25  Bruno Haible  <bruno@clisp.org>
22766
22767         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
22768         rid of a trap command. For Solaris sh.
22769         Reported by Mark D. Baushke <mdb@gnu.org>.
22770
22771 2006-01-24  Simon Josefsson  <jas@extundo.com>
22772
22773         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
22774         Bruno.
22775
22776 2006-01-24  Karl Berry  <karl@gnu.org>
22777
22778         * config/srclist.txt (argp-namefrob.h): sync lost.
22779
22780 2006-01-24  Jim Meyering  <jim@meyering.net>
22781
22782         * modules/openat (Files): Add lib/intprops.h.
22783         From Mark D. Baushke.
22784
22785 2006-01-24  Jim Meyering  <jim@meyering.net>
22786
22787         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
22788         Reported by Mark D. Baushke.
22789
22790 2006-01-24  Jim Meyering  <jim@meyering.net>
22791
22792         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
22793
22794 2006-01-24  Bruno Haible  <bruno@clisp.org>
22795
22796         * modules/strnlen (Maintainer): Change from glibc to all.
22797
22798 2006-01-24  Bruno Haible  <bruno@clisp.org>
22799
22800         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
22801         Patch by Paul Eggert.
22802
22803 2006-01-24  Bruno Haible  <bruno@clisp.org>
22804
22805         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
22806         already has it.
22807         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
22808         2005-11-26.
22809
22810         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
22811         'signed char' to avoid problems with the built-in _Bool type.
22812         Reported by Paul Eggert on 2005-11-26.
22813
22814 2006-01-24  Bruno Haible  <bruno@clisp.org>
22815
22816         * gnulib-tool (func_import): Avoid constructing complicated sed
22817         expressions inside backquote.
22818         Report and solution by Mark D. Baushke <mdb@gnu.org>.
22819
22820 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
22821
22822         These changes imported from libc.
22823         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
22824         test and two separate function calls.
22825         * lib/strndup.c (__strndup): Add libc_hidden_def.
22826
22827 2006-01-23  Simon Josefsson  <jas@extundo.com>
22828
22829         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
22830         Remove the test_*_SOURCES variable: automake infers it by default.
22831         * modules/tls-tests: Likewise.
22832
22833 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22834
22835         Work around porting bugs reported by Dieter in
22836         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
22837         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
22838         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
22839         Include "getopt.h" first, to check interface.
22840         (getenv): Declare only if defined HAVE_DECL_GETENV &&
22841         !HAVE_DECL_GETENV.
22842         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
22843         (__strndup): Revert to K&R-style function dfns, the glibc style.
22844         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
22845         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
22846         Include strnlen.h first, to get prototype properly.
22847         (strnlen): Renamed from __strnlen.
22848         Remove weak alias.
22849
22850 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22851
22852         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
22853
22854 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22855
22856         * config/srclist.txt: Adjust to reflect glibc reorganization.
22857         This affects only comments.
22858
22859 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
22860
22861          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
22862          Reported by Bruce Korb <bkorb@gnu.org>.
22863
22864 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
22865
22866         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
22867         to pacify gcc -Wswitch-default.
22868
22869 2006-01-22  Bruno Haible  <bruno@clisp.org>
22870
22871         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
22872         temporary buffer for sprintf, take into account the precision also
22873         for 'd', 'i', 'u', 'o', 'x', 'X'.
22874
22875 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
22876
22877         * modules/argp-tests: New module
22878         * tests/test-argp.c: New file
22879         * tests/test-argp-2.sh: New file
22880
22881 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
22882
22883         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
22884         (__argp_base_name): Removed
22885         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
22886         typo.
22887         (__argp_base_name): Provide macro definition or extern declaration
22888         depending on the configuration
22889
22890 2006-01-20  Simon Josefsson  <jas@extundo.com>
22891
22892         * modules/inet_ntop (Depends-on): Depend on sys_socket.
22893
22894 2006-01-20  Simon Josefsson  <jas@extundo.com>
22895
22896         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
22897
22898 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
22899
22900         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
22901         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
22902         Suggested by Bruno Haible.
22903
22904 2006-01-20  Karl Berry  <karl@gnu.org>
22905
22906         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
22907         until changes propagate, I guess.
22908
22909 2006-01-19  Simon Josefsson  <jas@extundo.com>
22910
22911         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
22912
22913 2006-01-19  Simon Josefsson  <jas@extundo.com>
22914
22915         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
22916
22917 2006-01-19  Simon Josefsson  <jas@extundo.com>
22918
22919         * gnulib-tool: Set check_PROGRAMS.
22920
22921         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
22922         modules/des-tests, modules/gc-arcfour-tests,
22923         modules/gc-arctwo-tests, modules/gc-des-tests,
22924         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
22925         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
22926         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
22927         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
22928         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
22929         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
22930         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
22931         test_*_SOURCES.
22932
22933 2006-01-18  Simon Josefsson  <jas@extundo.com>
22934
22935         * modules/socklen (Depends-on): Depend on sys_socket.
22936
22937 2006-01-18  Simon Josefsson  <jas@extundo.com>
22938
22939         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
22940         modules/des-tests, modules/gc-arcfour-tests,
22941         modules/gc-arctwo-tests, modules/gc-des-tests,
22942         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
22943         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
22944         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
22945         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
22946         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
22947         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
22948         $(EXEEXT) to automake TESTS variable, for mingw32.
22949
22950 2006-01-17  Simon Josefsson  <jas@extundo.com>
22951
22952         * modules/socklen (Include): Need sys/socket.h.
22953
22954 2006-01-17  Bruno Haible  <bruno@clisp.org>
22955
22956         * modules/ssize_t (Include): Add <sys/types.h>.
22957
22958 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
22959
22960         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
22961         it's not portable and it doesn't work with cross-compiles.
22962         Problem reported by Bruno Haible.  Fix missing-$ typo in
22963         'test "gl_cv_ignore_unused_libraries" ...' that prevented
22964         -zignore from being used with Sun's C compiler.
22965
22966 2006-01-12  Simon Josefsson  <jas@extundo.com>
22967
22968         * lib/base64.c: Fix warning, reported by Bruno Haible
22969         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
22970
22971 2006-01-12  Bruno Haible  <bruno@clisp.org>
22972
22973         * modules/ldd: New file.
22974         * build-aux/ldd.sh.in: New file.
22975         * MODULES.html.sh (Support for building libraries and executables): Add
22976         ldd.
22977
22978 2006-01-12  Bruno Haible  <bruno@clisp.org>
22979
22980         * m4/ldd.m4: New file.
22981
22982 2006-01-12  Bruno Haible  <bruno@clisp.org>
22983
22984         * gnulib-tool (func_import, func_create_testdir): Don't go into an
22985         endless loop while replacing $auxdir with build-aux.
22986
22987 2006-01-11  Simon Josefsson  <jas@extundo.com>
22988
22989         * lib/stdint_.h (SIZE_MAX): Add missing (.
22990
22991 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
22992
22993         Sync from coreutils.
22994         * lib/md5.c: Fix commentary typos.
22995         (alignof, UNALIGNED_P): No need for a GCC-specific version.
22996         * lib/md5.h (__attribute__): Remove; unused.
22997         * lib/sha1.c: Fix commentary to match md5 better.
22998         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
22999         so that we don't need to worry about alignment.  All uses changed.
23000         This merges the 2005-10-28 md5 change into sha1.
23001
23002 2006-01-11  Jim Meyering  <jim@meyering.net>
23003
23004         Sync from coreutils.
23005         * lib/md5.c (OP): Fix spacing.
23006
23007 2006-01-11  Bruno Haible  <bruno@clisp.org>
23008
23009         Ensure automatic ordering between gl_LOCK and gl_ARGP.
23010         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
23011         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
23012
23013 2006-01-11  Bruno Haible  <bruno@clisp.org>
23014
23015         Ensure automatic ordering between gl_LOCK and gl_ARGP.
23016         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
23017         the "early" section as well.
23018
23019 2006-01-11  Bruno Haible  <bruno@clisp.org>
23020
23021         Avoid "ar: no archive members specified" error on MacOS X.
23022         * gnulib-tool (func_modules_add_dummy): New function.
23023         (func_import, func_create_testdir): Invoke it.
23024
23025 2006-01-11  Bruno Haible  <bruno@clisp.org>
23026
23027         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
23028         with $auxdir in AC_CONFIG_FILES statements.
23029
23030 2006-01-11  Bruno Haible  <bruno@clisp.org>
23031
23032         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23033         Initialize also noinst_HEADERS to empty.
23034
23035 2006-01-11  Bruno Haible  <bruno@clisp.org>
23036
23037         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
23038         variables.
23039         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
23040         autoreconf.
23041
23042 2006-01-11  Bruno Haible  <bruno@clisp.org>
23043
23044         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
23045         overridable by the user.
23046         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23047
23048 2006-01-10  Simon Josefsson  <jas@extundo.com>
23049
23050         * modules/sys_socket: New file.
23051
23052 2006-01-10  Simon Josefsson  <jas@extundo.com>
23053
23054         * m4/sys_socket_h.m4: New file.
23055
23056 2006-01-10  Simon Josefsson  <jas@extundo.com>
23057
23058         * lib/socket_.h: New file.
23059
23060 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23061
23062         * modules/readutmp (Maintainer): Add myself.
23063
23064 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23065
23066         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
23067         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
23068         People who are still concerned with buggy memcmp implementations
23069         can invoke gl_FUNC_MEMCMP themselves.
23070
23071 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23072
23073         * lib/regex_internal.h (BITSET_WORD_BITS):
23074         Work around a bug in 64-bit PGC (before version 6.1-2), where the
23075         preprocessor mishandles large unsigned values as if they were signed.
23076         Problem reported by Claudio Fontana in
23077         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
23078
23079 2006-01-10  Jim Meyering  <jim@meyering.net>
23080
23081         Avoid the double-free (first in fts_read, second in fts_close) that
23082         would occur when an `active' directory is made inaccessible (e.g.,
23083         via chmod a-x) during a traversal.
23084         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
23085         before returning.  Reproduce this failure by
23086         mkdir -p a/b; cd a; chmod a-x . b
23087         Reported by Stavros Passas.
23088
23089         Sync from coreutils.
23090         * lib/sha1.c: Tweak grammar in a comment.
23091
23092 2006-01-10  Jim Meyering  <jim@meyering.net>
23093
23094         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
23095         Patch by Joerg Sonnenberger.
23096
23097 2006-01-10  Bruno Haible  <bruno@clisp.org>
23098
23099         * modules/readutmp: Depend on module free.
23100         * modules/strtok_r: Depend on module restrict.
23101
23102 2006-01-10  Bruno Haible  <bruno@clisp.org>
23103
23104         * modules/gettext (configure.ac): Add an invocation of
23105         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
23106
23107 2006-01-10  Bruno Haible  <bruno@clisp.org>
23108
23109         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
23110         Reported by Werner Lemberg <wl@gnu.org>.
23111
23112 2006-01-10  Bruno Haible  <bruno@clisp.org>
23113
23114         * lib/localcharset.c: Update from GNU gettext.
23115
23116 2006-01-10  Bruno Haible  <bruno@clisp.org>
23117
23118         * lib/argp.h (__const): Remove macro. Use const instead.
23119         * lib/argp-fmtstream.h (__const): Likewise.
23120         * lib/glob_.h (__const): Remove macro.
23121         * lib/glob-libc.h: Use const instead of __const.
23122
23123 2006-01-10  Bruno Haible  <bruno@clisp.org>
23124
23125         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
23126         variable.
23127         Needed to avoid an automake error regarding the 'gettext' module.
23128
23129 2006-01-09  Simon Josefsson  <jas@extundo.com>
23130
23131         * modules/inet_ntop (Depends-on): Add restrict.
23132
23133 2006-01-09  Simon Josefsson  <jas@extundo.com>
23134
23135         * modules/gc-rijndael-tests (License): Put under LGPL.
23136
23137         * modules/gc-des-tests (License): Likewise.
23138
23139         * modules/gc-arcfour-tests (License): Likewise.
23140
23141         * modules/gc-arctwo-tests (License): Likewise.
23142
23143         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
23144
23145         * modules/gc-hmac-sha1-tests (Files): Likewise.
23146
23147         * modules/gc-hmac-md5-tests (License): Likewise.
23148
23149         * modules/gc-sha1-tests (License): Likewise.
23150
23151         * modules/gc-md5-tests (License): Likewise.
23152
23153         * modules/gc-md4-tests (License): Likewise.
23154
23155         * modules/gc-md2-tests (License): Likewise.
23156
23157         * modules/gc-tests (License): Likewise.
23158
23159         * modules/des-tests (License): Likewise.
23160
23161         * modules/md4-tests (License): Likewise.
23162
23163         * modules/md2-tests (License): Likewise.
23164
23165 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23166
23167         Sync from coreutils:
23168
23169         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
23170         * modules/lib-ignore: New file.
23171         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
23172         chdir-safer.m4, lchmod.m4.
23173         * modules/openat: Add mkdirat.c, openat-priv.h.
23174
23175 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23176
23177         Sync from coreutils.
23178         * m4/lib-ignore.m4: New file.
23179         * m4/lchmod.m4: New file.
23180
23181 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23182
23183         Sync from coreutils.
23184         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
23185         for write access: POSIX says that must fail.
23186         * lib/fts.c (diropen): Likewise.
23187         * lib/save-cwd.c (save_cwd): Likewise.
23188         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
23189         well, for minor improvements on hosts that lack O_DIRECTORY.
23190         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
23191         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
23192         Fall back on chown if open failed with EACCES.
23193
23194         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
23195         Report an error at compile-time if only a 1-second nominal clock
23196         resolution is found.
23197
23198         * lib/lchmod.h: New file.
23199         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
23200         (make_dir_parents): Use lchown rather than chown, and
23201         lchmod rather than chmod.
23202
23203         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
23204         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
23205         "proc" reported by n0dalus.
23206
23207         * lib/mountlist.c: Include <limits.h>.
23208         (dev_from_mount_options)
23209         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
23210         New function.  It no longer assumes "dev=" has the System V meaning
23211         on Linux (since it doesn't).  It also parses "dev=" more carefully.
23212         (read_file_system_list)
23213         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
23214         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
23215         dev= in that case.
23216
23217         * lib/posixtm.h (PDS_PRE_2000): New macro.
23218         * lib/posixtm.c (year): Arg is now syntax_bits rather than
23219         allow_century.  All usages changed.  Reject dates outside the range
23220         1969-1999 if PDS_PRE_2000 is used.
23221
23222 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23223
23224         Sync from coreutils.
23225         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
23226         (Time of day items): Mention the possibility of leap seconds.
23227         Problem reported by Dr. David Alan Gilbert.
23228
23229 2006-01-09  Jim Meyering  <jim@meyering.net>
23230
23231         Sync from coreutils.
23232
23233         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
23234
23235         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
23236
23237         * lib/modechange.c (mode_compile): Reject an invalid mode string
23238         that starts with an octal digit.  From Andreas Gruenbacher.
23239
23240         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
23241         and dup to open_safer and dup_safer, respectively.
23242         (openat_permissive): Fix typo in comment.
23243
23244         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
23245         "gettext.h"; either no longer needed or are guaranteed by openat.h.
23246         (_): Remove; no longer needed.
23247         (openat): Renamed from rpl_openat; no need for rpl_openat
23248         since openat.h renames openat for us.
23249         Replace most of the body with a call to openat_permissive,
23250         to avoid duplicate code.
23251         Port to (probably hypothetical) environments were mode_t is
23252         wider than int.
23253         (openat_permissive): Require mode arg, so that we can check
23254         types better.  Put it just after flags.  Change cwd failure
23255         indicator from pointer-to-bool to pointer-to-errno-value.
23256         All callers changed.
23257         Invoke openat_save_fail and/or openat_restore_fail if
23258         cwd_errno is null, so that openat can call us.
23259         (openat_permissive, fdopendir, fstatat, unlinkat):
23260         Simplify errno handling to avoid some duplicate code,
23261         as it's OK to set errno on success.
23262         * lib/openat.h: Revamp code so that function macros depend on
23263         __OPENAT_PREFIX only, not also on AT_FDCWD.
23264         (openat_ro): Remove.  Caller changed to use openat_permissive.
23265         (openat_permissive): Now a macro, if not a function.
23266         (openat_restore_fail, openat_save_fail): Now always functions,
23267         since mkdirat needs them even if __OPENAT_PREFIX is defined.
23268
23269         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
23270         and openat.c.
23271         * lib/mkdirat.c: Include openat-priv.h.
23272         Remove definitions of macros defined therein.
23273         * lib/openat.c: Likewise.
23274
23275         * lib/mkdirat.c (mkdirat): New file and function.
23276         * lib/openat.h (mkdirat): Declare.
23277
23278         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
23279
23280         * lib/openat.h (openat_permissive): Declare.
23281         (openat_ro): Define.
23282
23283         * lib/openat.c (EXPECTED_ERRNO): New macro.
23284         (openat_permissive): New function -- used in remove.c rewrite.
23285         (all functions): Set errno just before returning, only if there
23286         was an actual failure.
23287         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
23288
23289         Emulate openat-family functions using Linux's procfs, if possible.
23290         Idea and some code based on Ulrich Drepper's glibc changes.
23291
23292         * lib/openat.c: (BUILD_PROC_NAME): New macro.
23293         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
23294         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
23295         before falling back on save_cwd and restore_cwd.
23296         (fdopendir, fstatat, unlinkat): Likewise.
23297
23298         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
23299         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
23300
23301         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
23302         as second argument to va_arg.  Otherwise, some versions of gcc
23303         warn that `if this code is reached, the program will abort'.
23304
23305 2006-01-09  Jim Meyering  <jim@meyering.net>
23306
23307         Sync from coreutils.
23308         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
23309         Require openat-priv.h.
23310
23311 2006-01-09  Bruno Haible  <bruno@clisp.org>
23312
23313         * modules/strnlen (Include): Use strnlen.h.
23314
23315 2006-01-09  Bruno Haible  <bruno@clisp.org>
23316
23317         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
23318
23319 2006-01-09  Bruno Haible  <bruno@clisp.org>
23320
23321         * lib/sysexit_.h (EX_OK): New macro.
23322         Suggested by Martin Lambers <marlam@marlam.de>.
23323
23324 2006-01-09  Bruno Haible  <bruno@clisp.org>
23325
23326         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
23327         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
23328
23329 2006-01-09  Bruno Haible  <bruno@clisp.org>
23330
23331         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
23332         numbers.
23333
23334 2006-01-09  Bruno Haible  <bruno@clisp.org>
23335
23336         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
23337         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
23338         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
23339         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
23340
23341 2006-01-09  Bruno Haible  <bruno@clisp.org>
23342
23343         * build-aux/javacomp.sh.in: New file, moved from lib/.
23344         * modules/javacomp-script (Files): Update.
23345         (configure.ac): Add AC_CONFIG_FILES invocation.
23346         (EXTRA_DIST): Remove variable.
23347
23348         * build-aux/javaexec.sh.in: New file, moved from lib/.
23349         * modules/javaexec (Files): Update.
23350         (configure.ac): Add AC_CONFIG_FILES invocation.
23351         (EXTRA_DIST): Remove javaexec.sh.in.
23352
23353         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
23354         * modules/csharpcomp-script (Files): Update.
23355         (configure.ac): Add AC_CONFIG_FILES invocation.
23356         (EXTRA_DIST): Remove variable.
23357
23358         * build-aux/csharpexec.sh.in: New file, moved from lib/.
23359         * modules/csharpexec (Files): Update.
23360         (configure.ac): Add AC_CONFIG_FILES invocation.
23361         (EXTRA_DIST): Remove csharpexec.sh.in.
23362
23363 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
23364
23365         Sync from coreutils.
23366
23367         Add POSIX ACL support
23368         * lib/acl.h (copy_acl, set_acl): Add declarations.
23369         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
23370         systems other than Linux.
23371         (chmod_or_fchmod): New function: use fchmod when possible,
23372         and chmod otherwise.
23373         (file_has_acl): Add a POSIX ACL implementation, with a
23374         Linux-specific subcase.
23375         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
23376         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
23377         acls are unsupported.
23378         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
23379         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
23380         are unsupported.
23381
23382 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
23383
23384         Sync from coreutils.
23385         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
23386
23387 2006-01-07  Bruno Haible  <bruno@clisp.org>
23388
23389         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
23390         gl_EARLY.
23391
23392 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23393
23394         * lib/strftime.c (tzname): Don't declare if it is already #defined.
23395         Problem reported for Mingw by Mark Junker.
23396
23397 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23398
23399         * README: Gnulib normally doesn't generate a tarball.
23400
23401 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
23402
23403         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
23404         long int, not int, for nanosecond counts, so that people who are
23405         used to POSIX struct timespec won't be surprised.  Reported by Jim
23406         Meyering.
23407
23408 2005-12-28  Bruno Haible  <bruno@clisp.org>
23409
23410         * build-aux/config.rpath: Update from GNU gettext.
23411
23412 2005-12-16  Jim Meyering  <jim@meyering.net>
23413
23414         * modules/fprintftime: New module.
23415         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
23416
23417 2005-12-16  Jim Meyering  <jim@meyering.net>
23418
23419         * m4/fprintftime.m4: New file.
23420
23421 2005-12-16  Jim Meyering  <jim@meyering.net>
23422
23423         * lib/fprintftime.c, lib/fprintftime.h: New files.
23424
23425 2005-12-15  Simon Josefsson  <jas@extundo.com>
23426
23427         * modules/socklen (configure.ac): Fix M4 macro name, to align with
23428         new m4/socklen.m4.
23429
23430 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
23431
23432         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
23433         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
23434
23435 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
23436
23437         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
23438         * lib/argp-help.c (fill_in_uparams): Check if the constructed
23439         struct uparams is valid. Fall back to the default values if it is
23440         not.
23441
23442 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23443
23444         * modules/argp (Files): Add argp-pin.c
23445         (Depends-on): dirname
23446         (lib_SOURCES): Add argp-pin.c
23447
23448 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23449
23450         * m4/argp.m4:  Check if program_invocation_name and
23451         program_invocation_short_name are declared and define appropriate
23452         macros if they are not.
23453
23454 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23455
23456         * lib/argp-help.c (__argp_base_name): New function
23457         (__argp_short_program_name): Rewrite using __argp_base_name
23458         * lib/argp-namefrob.h: Define program_invocation_name and
23459         program_invocation_short_name if requested
23460         (__argp_base_name): Add prototype
23461         * lib/argp-parse.c (argp_def): Use gettext wrappers
23462         (argp_default_parser): Use __argp_base_name
23463         * lib/argp-pin.c: New file. Defines program_invocation_name and
23464         program_invocation_short_name on systems that lack them.
23465
23466 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
23467
23468         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
23469         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
23470         porting problem reported by Georg Schwarz in
23471         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
23472
23473 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
23474
23475         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
23476         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
23477         porting problem reported by Georg Schwarz in
23478         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
23479
23480 2005-12-05  Bruno Haible  <bruno@clisp.org>
23481
23482         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
23483         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
23484         Reported by Mark Junker <mjscod@gmx.de>.
23485
23486 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
23487
23488         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
23489         Use implementation from Albert Chin, with some
23490         comments/corrections by Stepan Kasal and myself.
23491
23492 2005-12-02  Bruno Haible  <bruno@clisp.org>
23493
23494         * gnulib-tool (func_import): Accept GPLed build tool modules when
23495         --lgpl is given.
23496         * modules/csharpcomp-script: New file.
23497         * modules/csharpcomp: Depend on it.
23498         * modules/javacomp-script: New file.
23499         * modules/javacomp: Depend on it.
23500         Suggested by Simon Josefsson.
23501
23502 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
23503
23504         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
23505         statement, to work around an HP-UX 10.20 compiler bug reported by
23506         Peter O'Gorman.
23507
23508 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
23509
23510         * modules/savedir (Depends-on): Add openat.
23511
23512 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
23513
23514         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
23515         (uintmax_t) [defined uintmax_t]: Do not declare.
23516         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
23517         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
23518         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
23519         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
23520         sake of portability to weird hosts that C allows (though we don't
23521         know of any practical examples).
23522
23523         * lib/savedir.h (fdsavedir): New decl.
23524         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
23525         contains most of the former guts of savedir.
23526         (savedir): Use savedirstream.
23527         Include "openat.h".
23528
23529 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
23530
23531         * modules/obstack (Files): Add m4/ulonglong.m4.
23532         Problem reported by Davide Angelocola.
23533
23534 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
23535
23536         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
23537         coreutils no longer futzes with rounding modes.
23538
23539 2005-11-14  Jim Meyering  <jim@meyering.net>
23540
23541         * lib/mkstemp-safer.c: Include <config.h>, required for possible
23542         replacement of mkstemp.
23543
23544 2005-11-10  Simon Josefsson  <jas@extundo.com>
23545
23546         * lib/readline.c: Remove EOL.
23547
23548 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23549
23550         * modules/gethrxtime (Depends-on): Add gettime.
23551
23552 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23553
23554         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
23555         or gettimeofday; no longer needed.
23556
23557 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23558
23559         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
23560         time business.
23561         (gethrxtime) [! (HAVE_NANOUPTIME
23562         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
23563         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
23564         our own approximation.
23565
23566 2005-11-08  Eric Blake  <ebb9@byu.net>
23567
23568         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
23569
23570 2005-11-08  Eric Blake  <ebb9@byu.net>
23571
23572         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
23573
23574 2005-11-04  Bruno Haible  <bruno@clisp.org>
23575
23576         * gnulib-tool: Implement --update mode.
23577
23578 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23579
23580         Fix porting problem reported by Theodoros V. Kalamatianos.
23581         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
23582         Don't assume that futimes failing means we must fail.
23583
23584 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23585
23586         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
23587         variables to suggest the intended function of the PATH_MAX check.
23588
23589 2005-10-30  Kean Johnston  <jkj@sco.com>
23590
23591         Trivial changes to support SCO systems.
23592         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
23593         as PATH_MAX.
23594         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
23595         where __ptr is null when no I/O is pending.
23596
23597 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
23598
23599         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
23600         leave errno alone.  Problem reported by Dmitry V. Levin.
23601
23602 2005-10-28  Simon Josefsson  <jas@extundo.com>
23603
23604         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
23605         Test more.
23606
23607         * tests/test-gc-md2.c, tests/test-md2.c: New files.
23608
23609         * modules/md2, modules/md2-tests: New files.
23610
23611 2005-10-28  Simon Josefsson  <jas@extundo.com>
23612
23613         * m4/inet_ntop.m4: More tests.
23614
23615         * m4/gc-md2.m4, md2.m4: New file.
23616
23617 2005-10-28  Simon Josefsson  <jas@extundo.com>
23618
23619         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
23620         "restrict" keywords, as per POSIX.  Protect the function
23621         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
23622         Don't use K&R prototypes.  Check the sprintf return values.
23623         Re-define EAFNOSUPPORT if not present.  Indent.
23624
23625         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
23626         suggested by Bruno Haible <bruno@clisp.org>.
23627
23628         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
23629
23630         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
23631
23632         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
23633         libgcrypt).
23634
23635         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
23636
23637         * lib/md2.h, lib/md2.c: New files.
23638
23639 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
23640
23641         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
23642         errno alone.  Problem reported by Frederic Jolliton.
23643
23644 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
23645
23646         * modules/verify (License): Change from GPL to LGPL.  This is a
23647         tiny module and there are apparently near-equivalents that are
23648         under the BSD license.
23649
23650 2005-10-24  Simon Josefsson  <jas@extundo.com>
23651
23652         * modules/sha1: Relicense to LGPL.
23653
23654 2005-10-24  Simon Josefsson  <jas@extundo.com>
23655
23656         * lib/md4.h: Shrink buffer size, now that we changed the type.
23657
23658 2005-10-23  Simon Josefsson  <jas@extundo.com>
23659
23660         * gnulib-tool (func_import): Fix --tests-base.
23661
23662 2005-10-22  Simon Josefsson  <jas@extundo.com>
23663
23664         * modules/arcfour (Depends-on): Need stdint.
23665
23666 2005-10-22  Simon Josefsson  <jas@extundo.com>
23667
23668         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
23669         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
23670
23671 2005-10-22  Simon Josefsson  <jas@extundo.com>
23672
23673         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
23674         suggested by Bruno Haible <bruno@clisp.org>.
23675
23676 2005-10-22  Simon Josefsson  <jas@extundo.com>
23677
23678         * lib/crc.h: Include stddef.h, for size_t.
23679
23680 2005-10-22  Simon Josefsson  <jas@extundo.com>
23681
23682         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
23683         arcfour_context struct (simplify test vector testing in GNU
23684         Shishi).
23685
23686 2005-10-21  Simon Josefsson  <jas@extundo.com>
23687
23688         * modules/des, modules/des-tests: New files.
23689
23690         * modules/gc-des, modules/gc-des-tests: New files.
23691
23692         * tests/test-des.c, tests/test-gc-des.c: New file.
23693
23694 2005-10-21  Simon Josefsson  <jas@extundo.com>
23695
23696         * modules/arctwo, modules/arctwo-tests: New files.
23697
23698         * tests/test-arctwo.c: New file.
23699
23700         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
23701
23702         * tests/test-gc-arctwo.c: New file.
23703
23704 2005-10-21  Simon Josefsson  <jas@extundo.com>
23705
23706         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
23707         Bruno Haible <bruno@clisp.org>.
23708
23709         * m4/gc-des.m4: New file.
23710
23711 2005-10-21  Simon Josefsson  <jas@extundo.com>
23712
23713         * m4/arctwo.m4: New file.
23714
23715         * m4/gc-arctwo.m4: New file.
23716
23717 2005-10-21  Simon Josefsson  <jas@extundo.com>
23718
23719         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
23720         block.
23721
23722 2005-10-21  Simon Josefsson  <jas@extundo.com>
23723
23724         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
23725         <bruno@clisp.org>.
23726
23727         * lib/hmac-sha1.c (hmac_sha1): Likewise.
23728
23729         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
23730         Bruno Haible <bruno@clisp.org>.
23731
23732         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
23733         <bruno@clisp.org>.
23734
23735 2005-10-21  Simon Josefsson  <jas@extundo.com>
23736
23737         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
23738
23739 2005-10-21  Simon Josefsson  <jas@extundo.com>
23740
23741         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
23742
23743 2005-10-21  Simon Josefsson  <jas@extundo.com>
23744
23745         * lib/des.h, lib/des.c: New files.
23746
23747         * lib/gc-gnulib.c: Support DES.c
23748
23749 2005-10-21  Simon Josefsson  <jas@extundo.com>
23750
23751         * lib/arctwo.h, lib/arctwo.c: New files.
23752
23753         * lib/gc-gnulib.c: Support ARCTWO.
23754
23755 2005-10-21  Simon Josefsson  <jas@extundo.com>
23756
23757         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
23758         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23759
23760 2005-10-21  Simon Josefsson  <jas@extundo.com>
23761
23762         * gnulib-tool (func_import, func_create_testdir): Define automake
23763         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
23764         Makefile.am snippet),
23765         suggested by Bruno Haible <bruno@clisp.org>.
23766
23767         * modules/gc (Makefile.am): Use it.
23768
23769 2005-10-21  Bruno Haible  <bruno@clisp.org>
23770
23771         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
23772         patch.
23773
23774 2005-10-19  Simon Josefsson  <jas@extundo.com>
23775
23776         * tests/test-gc-rijndael.c: New file.
23777
23778         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
23779
23780 2005-10-19  Simon Josefsson  <jas@extundo.com>
23781
23782         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
23783         interface too.
23784
23785 2005-10-19  Simon Josefsson  <jas@extundo.com>
23786
23787         * tests/test-gc-arcfour.c: New file.
23788
23789         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
23790
23791 2005-10-19  Simon Josefsson  <jas@extundo.com>
23792
23793         * modules/gc-md4, modules/gc-md4-tests: New file.
23794
23795         * tests/test-gc-md4.c: New file.
23796
23797 2005-10-19  Simon Josefsson  <jas@extundo.com>
23798
23799         * m4/gc-md4.m4: New file.
23800
23801 2005-10-19  Simon Josefsson  <jas@extundo.com>
23802
23803         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
23804         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
23805         <kasal@ucw.cz>.
23806
23807 2005-10-19  Simon Josefsson  <jas@extundo.com>
23808
23809         * m4/gc-arcfour.m4: New file.
23810
23811         * m4/gc-rijndael.m4: New file.
23812
23813 2005-10-19  Simon Josefsson  <jas@extundo.com>
23814
23815         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
23816
23817 2005-10-19  Simon Josefsson  <jas@extundo.com>
23818
23819         * lib/gc-gnulib.c: Support ARCFOUR.
23820
23821 2005-10-19  Simon Josefsson  <jas@extundo.com>
23822
23823         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
23824         support.
23825
23826         * lib/gc.h: Add ECB enum type.
23827
23828         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
23829
23830 2005-10-18  Simon Josefsson  <jas@extundo.com>
23831
23832         * tests/test-md5.c: New file.
23833
23834         * modules/md5-tests: New file.
23835
23836 2005-10-18  Simon Josefsson  <jas@extundo.com>
23837
23838         * tests/test-md4.c: New file.
23839
23840         * modules/md4, modules/md4-tests: New files.
23841
23842 2005-10-18  Simon Josefsson  <jas@extundo.com>
23843
23844         * m4/md4.m4: New file.
23845
23846 2005-10-18  Simon Josefsson  <jas@extundo.com>
23847
23848         * lib/md4.h, lib/md4.c: New files, based on md5.?.
23849
23850 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
23851
23852         * gnulib-tool (func_create_testdir): Omit the second check whether
23853         BUILT_SOURCES in nonempty.
23854
23855 2005-10-17  Simon Josefsson  <jas@extundo.com>
23856
23857         * tests/test-rijndael.c: New file.
23858
23859 2005-10-17  Simon Josefsson  <jas@extundo.com>
23860
23861         * modules/sha1: Depend on stdint instead of md5.
23862
23863         * modules/md5: Depend on stdint, remove uint32_t.
23864
23865 2005-10-17  Simon Josefsson  <jas@extundo.com>
23866
23867         * modules/gc-sha1-tests: New file.
23868
23869         * tests/test-gc-sha1.c: New file.
23870
23871 2005-10-17  Simon Josefsson  <jas@extundo.com>
23872
23873         * m4/md5.m4: Remove call to uint32_t.m4.
23874
23875 2005-10-17  Simon Josefsson  <jas@extundo.com>
23876
23877         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
23878
23879         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
23880         md5.h.
23881
23882         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
23883
23884         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
23885
23886 2005-10-17  Simon Josefsson  <jas@extundo.com>
23887
23888         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
23889
23890 2005-10-17  Simon Josefsson  <jas@extundo.com>
23891
23892         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
23893
23894 2005-10-17  Simon Josefsson  <jas@extundo.com>
23895
23896         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
23897
23898         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
23899
23900 2005-10-17  Bruno Haible  <bruno@clisp.org>
23901
23902         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
23903         that it can also be used in a test.
23904
23905 2005-10-16  Bruno Haible  <bruno@clisp.org>
23906
23907         * gnulib-tool (func_emit_tests_Makefile_am): Also define
23908         TESTS_ENVIRONMENT, so that individual tests can augment it.
23909
23910         * gnulib-tool (func_create_testdir): Use an intermediate target for
23911         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
23912         macros, like $(ALLOCA_H), which cannot be passed through the command
23913         line.
23914
23915 2005-10-15  Simon Josefsson  <jas@extundo.com>
23916
23917         * modules/rijndael-tests: New file.
23918
23919         * modules/rijndael: New file.
23920
23921 2005-10-15  Simon Josefsson  <jas@extundo.com>
23922
23923         * m4/rijndael.m4: New file.
23924
23925 2005-10-15  Simon Josefsson  <jas@extundo.com>
23926
23927         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
23928
23929         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
23930
23931 2005-10-14  Simon Josefsson  <jas@extundo.com>
23932
23933         * tests/test-arcfour.c: New file.
23934
23935         * modules/arcfour, modules/arcfour-tests: New files.
23936
23937 2005-10-14  Simon Josefsson  <jas@extundo.com>
23938
23939         * m4/arcfour.m4: New file.
23940
23941 2005-10-14  Simon Josefsson  <jas@extundo.com>
23942
23943         * lib/arcfour.h, lib/arcfour.c: New files.
23944
23945 2005-10-14  Roland McGrath  <roland@redhat.com>
23946
23947         Import from libc.  [BZ #1331]
23948         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
23949         macro argument.
23950         Reported by Matej Vela <vela@debian.org>.
23951
23952 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
23953
23954         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
23955         include <wchar.h>; no longer needed.
23956
23957 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
23958
23959         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
23960
23961 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
23962         and  Ulrich Drepper  <drepper@redhat.com>
23963
23964         Import from libc.
23965         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
23966         instead of inline stream orientation test and two separate
23967         function calls.  Pay no attention to USE_IN_LIBIO.
23968
23969 2005-10-13  Simon Josefsson  <jas@extundo.com>
23970
23971         * modules/gc-hmac-md5-tests: New file.
23972
23973         * tests/test-gc-hmac-sha1.c: New file.
23974
23975         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
23976
23977         * modules/gc-hmac-md5-tests: New file.
23978
23979         * tests/test-gc-md5.c: New file.
23980
23981         * modules/gc-md5-tests: New file.
23982
23983 2005-10-13  Simon Josefsson  <jas@extundo.com>
23984
23985         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
23986         Move memory allocation outside of loop.
23987
23988 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
23989
23990         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
23991         intermediate directory is in a read-only file system.  Problem
23992         reported by Eric Blake.
23993
23994 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
23995
23996         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
23997
23998 2005-10-12  Simon Josefsson  <jas@extundo.com>
23999
24000         * tests/test-hmac-sha1.c: New file.
24001
24002         * modules/hmac-sha1-tests: New file.
24003
24004         * modules/hmac-sha1: New file.
24005
24006 2005-10-12  Simon Josefsson  <jas@extundo.com>
24007
24008         * modules/gc-sha1: New file.
24009
24010 2005-10-12  Simon Josefsson  <jas@extundo.com>
24011
24012         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
24013
24014         * tests/test-gc-pbkdf2-sha1.c: New file.
24015
24016 2005-10-12  Simon Josefsson  <jas@extundo.com>
24017
24018         * modules/gc-md5, modules/gc-hmac-md5: New files.
24019
24020         * modules/gc (Files): Remove md5, memxor and hmac files.
24021
24022 2005-10-12  Simon Josefsson  <jas@extundo.com>
24023
24024         * m4/gc-pbkdf2-sha1.m4: New file.
24025
24026         * m4/gc-hmac-sha1.m4: New file.
24027
24028         * m4/gc-sha1: New file.
24029
24030         * m4/hmac-sha1.m4: New file.
24031
24032 2005-10-12  Simon Josefsson  <jas@extundo.com>
24033
24034         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
24035
24036         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
24037
24038 2005-10-12  Simon Josefsson  <jas@extundo.com>
24039
24040         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
24041         suggested by Bruno Haible <bruno@clisp.org>.
24042
24043 2005-10-12  Simon Josefsson  <jas@extundo.com>
24044
24045         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
24046
24047 2005-10-12  Simon Josefsson  <jas@extundo.com>
24048
24049         * lib/gc-pbkdf2-sha1.c: New file.
24050
24051         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
24052
24053 2005-10-12  Simon Josefsson  <jas@extundo.com>
24054
24055         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
24056
24057         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
24058
24059 2005-10-12  Simon Josefsson  <jas@extundo.com>
24060
24061         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
24062         GC_USE_HMAC_MD5, respectively.
24063
24064         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
24065         (gc_md5): Fix typo.
24066
24067         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
24068
24069         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
24070
24071         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
24072
24073 2005-10-12  Bruno Haible  <bruno@clisp.org>
24074
24075         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
24076         Reported by Stepan Kasal <kasal@ucw.cz>.
24077
24078 2005-10-11  Simon Josefsson  <jas@extundo.com>
24079
24080         * tests/test-crc.c: New file.
24081
24082         * modules/crc, modules/crc-tests: New files.
24083
24084 2005-10-11  Simon Josefsson  <jas@extundo.com>
24085
24086         * m4/crc.m4: New file.
24087
24088 2005-10-11  Simon Josefsson  <jas@extundo.com>
24089
24090         * lib/gc.h: Add gc_hash and gc_hash_buffer.
24091
24092         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
24093
24094         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
24095
24096 2005-10-11  Simon Josefsson  <jas@extundo.com>
24097
24098         * lib/crc.h, lib/crc.c: New files.
24099
24100         * lib/gc.h (gc_hash_buffer): Add doc.
24101
24102 2005-10-11  Bruno Haible  <bruno@clisp.org>
24103
24104         * modules/c-strcasestr: New file.
24105         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
24106
24107 2005-10-11  Bruno Haible  <bruno@clisp.org>
24108
24109         * modules/c-strcase: New file.
24110         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
24111
24112 2005-10-11  Bruno Haible  <bruno@clisp.org>
24113
24114         * lib/strcasecmp.c: Include limits.h.
24115         (strcasecmp): Avoid integer overflow on exotic platforms.
24116         * lib/strncasecmp.c: Include limits.h.
24117         (strncasecmp): Avoid integer overflow on exotic platforms.
24118         Reported by Paul Eggert.
24119
24120 2005-10-11  Bruno Haible  <bruno@clisp.org>
24121
24122         * lib/c-strcasestr.h: New file, from GNU gettext.
24123         * lib/c-strcasestr.c: New file, from GNU gettext.
24124
24125 2005-10-11  Bruno Haible  <bruno@clisp.org>
24126
24127         * lib/c-strcase.h: New file, from GNU gettext.
24128         * lib/c-strcasecmp.c: New file, from GNU gettext.
24129         * lib/c-strncasecmp.c: New file, from GNU gettext.
24130
24131 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
24132
24133         * modules/mempcpy (License): GPL -> LGPL.
24134         * modules/strchrnul (License): Likewise.
24135         * modules/sysexits (License): Likewise.
24136
24137 2005-10-08  Simon Josefsson  <jas@extundo.com>
24138
24139         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
24140
24141 2005-10-07  Simon Josefsson  <jas@extundo.com>
24142
24143         * m4/memxor.m4: Remove gl_C_RESTRICT call.
24144
24145 2005-10-06  Simon Josefsson  <jas@extundo.com>
24146
24147         * tests/test-hmac-md5.c: New file.
24148
24149         * modules/hmac-md5-tests: New file.
24150
24151         * modules/hmac-md5: New file.
24152
24153 2005-10-06  Simon Josefsson  <jas@extundo.com>
24154
24155         * m4/hmac-md5.m4: New file.
24156
24157         * m4/memxor.m4: Require gl_C_RESTRICT.
24158
24159 2005-10-06  Simon Josefsson  <jas@extundo.com>
24160
24161         * lib/memxor.c (memxor): Avoid casts and warnings.
24162
24163 2005-10-06  Simon Josefsson  <jas@extundo.com>
24164
24165         * lib/hmac-md5.c: New file.
24166
24167         * lib/hmac.h: New file.
24168
24169 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
24170
24171         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
24172         promotes to int, not unsigned int, to catch the AIX 5.3
24173         compiler bug.
24174
24175 2005-10-05  Simon Josefsson  <jas@extundo.com>
24176
24177         * modules/memxor: New file.
24178
24179         * modules/iconv (Files): Move config.rpath to havelib, it is used
24180         there.
24181
24182         * modules/havelib (Files): Add config.rpath.
24183
24184 2005-10-05  Simon Josefsson  <jas@extundo.com>
24185
24186         * m4/memxor.m4: New file.
24187
24188 2005-10-05  Simon Josefsson  <jas@extundo.com>
24189
24190         * lib/memxor.c (memxor): Fix compiler error.
24191
24192         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
24193         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
24194
24195         * lib/memxor.h, lib/memxor.c: New files.
24196
24197         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
24198         we assume all systems have it, suggested by Jim Meyering
24199         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
24200         any systems lack sys/socket.h; mingw32 is known to lack it, but we
24201         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
24202         same reasons.
24203
24204 2005-10-05  Simon Josefsson  <jas@extundo.com>
24205
24206         * config/srclist.txt: Add glibc bug 1423 for md5.h.
24207
24208 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
24209
24210         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
24211         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
24212         needed, since the source code now assumes these .h files.
24213
24214 2005-10-05  Derek Price  <derek@ximbiot.com>
24215
24216         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
24217
24218 2005-10-05  Bruno Haible  <bruno@clisp.org>
24219
24220         * modules/stdint (License): Change to LGPL.
24221
24222 2005-10-04  Simon Josefsson  <jas@extundo.com>
24223
24224         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
24225         D. Baushke" <mdb@gnu.org>.
24226
24227 2005-10-04  Bruno Haible  <bruno@clisp.org>
24228
24229         * lib/verify.h (verify_true): Provide alternative definition for C++.
24230
24231 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
24232
24233         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
24234         (SSIZE_MAX): New macro, if not already defined.
24235         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
24236         than 2 GiB.
24237
24238 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24239
24240         Sync from coreutils.
24241         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
24242         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
24243         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
24244         ULLONG_MAX doesn't work with 2.7.2.1.
24245
24246 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24247
24248         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
24249         From Ben Pfaff.
24250
24251         * modules/exclude (Depends-on): Depend on verify.
24252         * modules/strtoimax (Depends-on): Likewise.
24253         * modules/utimecmp (Depends-on): Likewise.
24254
24255 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24256
24257         * lib/exclude.c: Include verify.h.
24258         (verify): Remove.  All callers changed to use verify.h's version.
24259         * lib/strtoimax.c: Likewise.
24260         * lib/utimecmp.c: Likewis.e
24261
24262         Sync from coreutils.
24263         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
24264         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
24265         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
24266         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
24267         bother returning ENOSYS if settimeofday or stime fails; just let
24268         them return whatever errno they want to return.
24269         * lib/utimens.c: Include unistd.h, for dup2.
24270         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
24271         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
24272
24273 2005-10-02  Jim Meyering  <jim@meyering.net>
24274
24275         Sync from coreutils.
24276         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
24277         from glibc-2.2.5 that fails for read-only files.
24278
24279 2005-10-02  Jim Meyering  <jim@meyering.net>
24280
24281         Sync from coreutils.
24282         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
24283         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
24284         `#if HAVE_CONFIG_H'.
24285         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
24286         Remove AT_FDCWD test.
24287         Do not consume the fd unless successful.
24288         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
24289         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
24290         block, so that we don't even try to compile it if settimeofday is
24291         available.  This works around a compilation failure on OSF1 V5.1,
24292         due to stime requiring a `long int*' while tv_sec is `int'.
24293
24294 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
24295
24296         Sync from coreutils.
24297         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
24298         against `yes', rather than just testing for nonempty.
24299
24300 2005-10-01  Simon Josefsson  <jas@extundo.com>
24301
24302         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
24303         and Darwin.
24304
24305         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
24306         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
24307         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
24308         freeaddrinfo and gai_strerror are declared by the POSIX headers.
24309         Check if struct addrinfo is declared.
24310
24311 2005-10-01  Simon Josefsson  <jas@extundo.com>
24312
24313         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
24314         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
24315         AI_* and EAI_* definitions.  Protect function declarations.
24316
24317 2005-10-01  Jim Meyering  <jim@meyering.net>
24318
24319         Sync from coreutils.
24320
24321         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
24322         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
24323         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
24324         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24325         in the inet and nsl libraries.  Required on Solaris 5.7.
24326
24327 2005-10-01  Jim Meyering  <jim@meyering.net>
24328
24329         Sync from coreutils.
24330         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24331         in the inet and nsl libraries.  Required on Solaris 5.7.
24332
24333 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
24334
24335         * lib/getdelim.c (getdelim): Remove unused variables.
24336
24337 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
24338
24339         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
24340         so that the code works even with ancient cpp.  Portability problem
24341         with GCC 2.7.2.1 reported by Thomas M.Ott.
24342
24343 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
24344
24345         * modules/regex (Depends-on): Add strcase.
24346
24347         * modules/gethostname (Licence): Change from GPL to LGPL, since
24348         gethostname.c is a trivial implementation of a standard library
24349         function.
24350         * modules/poll (License): Change from GPL to LGPL, since it's
24351         derived from LGPL code.
24352
24353 2005-09-27  Jim Meyering  <jim@meyering.net>
24354
24355         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
24356         HAVE_CONFIG_H.
24357
24358         * lib/intprops.h (signed_type_or_expr__): Define.
24359         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
24360         for unsigned types.
24361
24362 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
24363
24364         * lib/verify.h (verify_expr): Remove, replacing with:
24365         (verify_true): New macro that returns true instead of void.
24366         (verify_type__): Remove.
24367         (verify): Use verify_true rather than verify_type__.
24368
24369 2005-09-26  Bruno Haible  <bruno@clisp.org>
24370
24371         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
24372         is necessary.
24373         (lib_SOURCES): Remove mbchar.c.
24374         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
24375         (Files): Add m4/mbrtowc.m4.
24376         * modules/mbiter: Likewise.
24377         * modules/mbuiter: Likewise.
24378
24379 2005-09-26  Bruno Haible  <bruno@clisp.org>
24380
24381         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
24382         compile mbchar.c if they are not both present.
24383         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
24384         * m4/mbiter.m4 (gl_MBITER): Likewise.
24385         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
24386         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
24387         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
24388
24389 2005-09-25  Jim Meyering  <jim@meyering.net>
24390
24391         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
24392         also uses socklen_t.
24393
24394 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
24395
24396         * lib/utimens.c (ENOSYS): Define if not already defined.
24397         (futimens): Support having a null PATH if the file descriptor
24398         is nonnegative.
24399
24400         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
24401         Remove.
24402         (__attribute): Define to empty unless GCC 3.1 or later.
24403         This works around a core dump on OpenBSD 3.4, which has GCC
24404         2.95.3, which dumps core when given __attribute__(()).  It also
24405         simplifies other tests, since we really don't want to bother with
24406         worrying about which ancient version of GCC supported what.
24407         Original problem reported by Yoann Vandoorselaere, with part of
24408         the fix suggested by Derek Price.
24409
24410 2005-09-24  Jim Meyering  <jim@meyering.net>
24411
24412         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
24413         so we can once again use a positive bitfield width of 1 -- now we
24414         don't have to explain why we were using a bitfield width of 2.
24415
24416 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
24417
24418         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
24419         and similarly for the other external symbols.  Problem reported
24420         by James Gallager.
24421
24422         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
24423         bug reported by Jim Meyering.
24424
24425         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
24426         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
24427         not needed, since socklen is a prerequisite module.
24428
24429 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
24430
24431         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
24432         Problem reported by Eric Blake.
24433         (getaddrinfo): Initialize se so that it's not garbage.
24434         Redo internal storage allocation so that it doesn't make unportable
24435         assumptions about alignment.
24436         Fix a memory leak.
24437
24438         * lib/utimens.c (futimens): Use futimesat if available.
24439         Prefer it to futimes since it doesn't have the futimes bug.
24440
24441         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
24442         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
24443         Instead, declare a function that returns a pointer to an array,
24444         and use verify_type__ to declare the size of the array.
24445         Problem and germ of a solution reported by Bruno Haible.
24446         (verify_type__): Use 2, not 1, for bitfield size, to avoid
24447         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
24448
24449 2005-09-23  Jim Meyering  <jim@meyering.net>
24450
24451         Sync from coreutils.
24452         Correct build failure (socklen_t not defined) on at least
24453         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
24454         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
24455
24456 2005-09-23  Jim Meyering  <jim@meyering.net>
24457
24458         * modules/getaddrinfo (Depends-on): Add socklen.
24459
24460 2005-09-23  Bruno Haible  <bruno@clisp.org>
24461
24462         * tests/test-verify.c: New file.
24463
24464 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24465
24466         Sync from coreutils.
24467
24468         * modules/argmatch (Depends-on): Add verify.
24469         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
24470         unistd-safer.
24471         * modules/save-cwd (Depends-on): Likewise.
24472
24473         * modules/openat (Files): Add lib/openat-die.c.
24474         (Depends-on): Remove error, exitfail.
24475         Add dirname.
24476
24477         * modules/verify: New file.
24478         * MODULES.html.sh (Diagnostics <assert.h>): New section,
24479         with "verify" module.
24480
24481 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24482
24483         Sync from coreutils.
24484
24485         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
24486         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
24487         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
24488         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
24489         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
24490         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
24491         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
24492         Don't bother checking for string.h, stdlib.h, unistd.h.
24493         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
24494         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
24495         module's job.
24496         * m4/jm-macros.m4 (gl_MACROS): Likewise.
24497         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
24498
24499         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
24500         (gl_GETDATE): Use it.
24501
24502         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
24503
24504 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24505
24506         Sync from coreutils.
24507
24508         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
24509         stat-time.h.
24510         * lib/argmatch.h: Include verify.h
24511         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
24512         (ARGMATCH_ASSERT): Remove; unused.
24513         * lib/canonicalize.c: Assume STDC_HEADERS.
24514         * lib/exclude.c: Include "strcase.h".
24515         * lib/regex_internal.h [!defined _LIBC]: Likewise.
24516         * lib/getusershell.c: Include stdio--.h rather than stdio.h
24517         and stdio-safer.h.
24518         (getusershell): Call fopen, not fopen_safer.
24519         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
24520         Do not include unistd-safer.h.
24521         (save_cwd): Don't call fd_safer; no longer needed
24522         now that we include fcntl--.h.
24523
24524         * lib/getdate.y (relative_time): New type.
24525         (RELATIVE_TIME_0): New constant.
24526         (parser_control): Use relative_time instead of doing it ourselves.
24527         (%union): Add new relative_time rel member.
24528         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
24529         Now typeless.
24530         (relunit, relunit_snumber): Now of type rel.
24531         (zone, rel, relunit, get_date): Adjust to above changes.
24532
24533         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
24534         Do not include unistd-safer.h.
24535         (getloadavg): Don't call fd_safer; no longer needed
24536         now that we include fcntl--.h.
24537
24538         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
24539         (make_dir_parents): Treat ENOSYS like EEXIST.
24540
24541         Improve quality of diagnostics on restore_cwd failure.
24542         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
24543         (make_dir_parents): Last arg is now int * (for errno), not bool *.
24544         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
24545         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
24546         each time through the loop.  Do not diagnose restore_cwd failure;
24547         that is the caller's job (and perhaps the caller does not care).
24548
24549         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
24550         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
24551         If the file already exists but is not a directory, don't bother
24552         to try to make its parents.
24553         Close potential file descriptor leak if we can't chdir("/") (!).
24554         Don't always return true if chdir($PWD) fails; return true only
24555         if the requested action was done successfully (except for the
24556         chdir($PWD)).
24557         Don't log final directory unless we actually made it.
24558         Refactor to avoid duplicate code to fix up permissions.
24559         Don't attempt to fix up parent permissions if chdir($PWD) fails.
24560
24561         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
24562         to make it a bit faster and (I hope) clearer.
24563         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
24564         Fix bug in formats like %2N.
24565
24566         * lib/verify.h: New file.
24567
24568 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24569
24570         Sync from coreutils.
24571         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
24572
24573 2005-09-22  Jim Meyering  <jim@meyering.net>
24574
24575         Sync from coreutils.
24576
24577         * m4/lstat.m4 (gl_FUNC_LSTAT):
24578         Use AC_LIBSOURCES to require lstat.c and lstat.h.
24579         Remove obsolete comment.
24580         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
24581         * m4/xstrtod.m4: Likewise.
24582
24583         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
24584
24585 2005-09-22  Jim Meyering  <jim@meyering.net>
24586
24587         Sync from coreutils.
24588
24589         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
24590
24591         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
24592         the .tm_year member, since otherwise gcc-4.0 would now warn about
24593         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
24594
24595         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
24596         order to avoid an unsuppressible warning from gcc on 64-bit systems.
24597
24598         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
24599         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
24600         when run in a time zone for which daylight savings time is in effect
24601         for the starting date.
24602
24603         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
24604         stop us from restricting permissions of just-created absolute-named
24605         directories.
24606         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
24607         to restore initial working directory.
24608         * lib/mkdir-p.c (make_dir_parents): New parameter:
24609         different_working_dir, to tell caller if/when we change the working
24610         directory and are unable to return to the initial one.
24611         * lib/mkdir-p.h (make_dir_parents): Update prototype.
24612         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
24613         `return false'.  This fixes a bug introduced on 2004-07-30.
24614
24615         * lib/openat.c (fdopendir): Be sure to close the supplied
24616         file descriptor before returning.  This makes our replacement
24617         implementation a little closer to Solaris's, where fdopendir
24618         ties the file descriptor to the returned DIR* pointer.
24619         * lib/openat.c (unlinkat): New function.
24620         * lib/openat.h (unlinkat): Add prototype.
24621         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
24622         (openat_restore_fail): Rename from openat_restore_die.
24623         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
24624
24625         Provide an alternative to exiting immediately upon save_cwd or
24626         restore_cwd failure.  Now, an application can arrange e.g.,
24627         to perform a longjump in that case.
24628         * lib/openat.c: Include dirname.h.
24629         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
24630         (rpl_openat, fdopendir, fstatat): Call openat_save_die
24631         and openat_restore_die rather than calling error directly.
24632         Don't include "error.h" or "exitfail.h"; they're no longer needed.
24633
24634         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
24635         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
24636         define.
24637
24638         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
24639         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
24640                             int utc, int nanoseconds);
24641         Background:
24642         date should not have to allocate a megabyte of virtual memory to
24643         handle a format argument like +%1048575T.  When implemented with
24644         strftime, it must allocate such a buffer, use strftime to fill it
24645         in, print it, then free it.
24646         With fprintftime, it simply prints everything and exits.
24647         With no need for memory allocation, that's one fewer way to fail.
24648         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
24649         optional field width, not before, so we accept %9:z, not %:9z.
24650         (my_strftime): Be sure to use L_('x') for literals.
24651
24652         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
24653         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
24654         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
24655         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
24656         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
24657         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
24658         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
24659         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
24660         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
24661         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
24662         * lib/xgethostname.c, lib/xreadlink.c:
24663         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
24664
24665         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
24666         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
24667         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
24668         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
24669         and don't include <sys/file.h>).
24670
24671 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
24672
24673         Sync from coreutils.
24674
24675         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
24676         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
24677         [!LDAV_DONE]: Avoid unused variable warning.
24678
24679 2005-09-21  Bruno Haible  <bruno@clisp.org>
24680
24681         * lib/unicodeio.h (unicode_to_mb): New declaration.
24682
24683 2005-09-20  Derek Price  <derek@ximbiot.com>
24684
24685         * lib/getaddrinfo.c: Don't include <netdb.h> included from
24686         getaddrinfo.h.
24687
24688 2005-09-20  Bruno Haible  <bruno@clisp.org>
24689
24690         * gnulib-tool: Remove trailing slashes from the values specified for
24691         --source-base, --m4-base, --tests-base, --aux-dir.
24692         Suggested by Simon Josefsson <jas@extundo.com>.
24693
24694 2005-09-20  Bruno Haible  <bruno@clisp.org>
24695
24696         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
24697         func_modules_to_filelist, func_import, func_create_testdir): Make all
24698         sorting results locale-independent, so that gnulib-cache.m4 doesn't
24699         change when gnulib-tool is invoked in a different locale.
24700
24701 2005-09-19  Simon Josefsson  <jas@extundo.com>
24702
24703         * m4/socklen.m4: Fix typo.
24704
24705 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24706
24707         Use a consistent style for including <config.h>.
24708         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
24709         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
24710         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
24711         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
24712         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
24713         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
24714         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
24715         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
24716         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
24717         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
24718         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
24719         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
24720         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
24721         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
24722         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
24723         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
24724         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
24725         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
24726         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
24727         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
24728         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
24729         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
24730         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
24731         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
24732         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
24733         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
24734         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
24735         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
24736         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
24737         lib/xstrtoumax.c, lib/yesno.c:
24738         Standardize inclusion of config.h.
24739         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
24740         lib/inttostr.h:  Removed inclusion of config.h from header files.
24741         * lib/inttostr.c:  Adjusted in-tree users.
24742         * lib/timespec.h: Remove superfluous warning to include config.h.
24743         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
24744         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
24745         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
24746         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
24747         config.h with HAVE_CONFIG_H.
24748
24749 2005-09-19  Jim Meyering  <jim@meyering.net>
24750
24751         * modules/pathmax (License): Change to LGPL.
24752
24753 2005-09-19  Derek Price  <derek@ximbiot.com>
24754
24755         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
24756
24757 2005-09-19  Bruno Haible  <bruno@clisp.org>
24758
24759         * gnulib-tool (import): Provide default for --tests-base.
24760
24761 2005-09-19  Bruno Haible  <bruno@clisp.org>
24762
24763         * doc/quote.texi: New file, extracted from gnulib.texi.
24764         * doc/ctime.texi: New file, extracted from gnulib.texi.
24765         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
24766         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
24767         * doc/gnulib.texi: Include them.
24768
24769 2005-09-18  Bruno Haible  <bruno@clisp.org>
24770
24771         Portability fix.
24772         * gnulib-tool (func_readlink): New function.
24773         (func_ln_if_changed): Use it.
24774
24775 2005-09-18  Bruno Haible  <bruno@clisp.org>
24776
24777         * gnulib-tool: Support --with-tests also with --import.
24778         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
24779         (func_import): Use variables $testsbase and $inctests. Emit a
24780         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
24781         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
24782         SUBDIRS += $testsdir.
24783         (func_create_testdir): Update.
24784
24785 2005-09-18  Bruno Haible  <bruno@clisp.org>
24786
24787         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
24788         instead of $dry_run.
24789         (func_cp_if_changed, func_mv_if_changed): Remove functions.
24790         (func_ln_if_changed): Don't handle dry-run here.
24791         (func_import): In dry-run mode, detect more precisely which actions
24792         would be performed, and don't use "...ing" verbs.
24793
24794 2005-09-18  Bruno Haible  <bruno@clisp.org>
24795
24796         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
24797         (func_import): Use join on two temporary files instead of three nested
24798         loops, in order to determine which files are new or old.
24799
24800 2005-09-18  Bruno Haible  <bruno@clisp.org>
24801
24802         * gnulib-tool (func_import): Comment out code that spits out the
24803         new files with --dry-run.
24804
24805 2005-09-18  Bruno Haible  <bruno@clisp.org>
24806
24807         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
24808
24809 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24810
24811         * lib/stat-time.h: New file.
24812         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
24813         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
24814         in a different way.
24815         (timespec_cmp): New function.
24816         * lib/utimecmp.c: Include stat-time.h.
24817         (SYSCALL_RESOLUTION): Depend on whether various struct stat
24818         members exist, not on the obsolescent ST_MTIM_NSEC.
24819         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
24820
24821 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24822
24823         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
24824
24825 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24826
24827         * MODULES.html.sh (File system functions): Add stat-time.
24828         * modules/stat-time: New file.
24829         * modules/timespec (Files): Remove m4/st_mtim.m4; this
24830         is now done in a different way, by the stat-time module.
24831         * modules/utimecmp (Depends-on): Add stat-time.
24832
24833 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
24834
24835         * m4/st_mtim.m4: Remove.  Superseded by...
24836         * m4/stat-time.m4: New file.
24837         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
24838         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
24839
24840 2005-09-15  Derek Price  <derek@ximbiot.com>
24841
24842         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
24843
24844 2005-09-15  Derek Price  <derek@ximbiot.com>
24845
24846         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
24847         * lib/regex_internal.c: Ditto, using this...
24848         (__GNUC_PREREQ): ...new macro.
24849         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
24850         using...
24851         (__GNUC_PREREQ): ...this new macro.
24852
24853         * lib/strstr.h: Include string.h. Define strstr as a macro here.
24854
24855 2005-09-15  Derek Price  <derek@ximbiot.com>
24856             Paul Eggert  <eggert@cs.ucla.edu>
24857
24858         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
24859         changes, consolidating in...
24860         * lib/regex_internal.h: ...this file.
24861
24862 2005-09-13  Jim Meyering  <jim@meyering.net>
24863
24864         * lib/canon-host.c: Filter through gnu indent and reword comments
24865         slightly.
24866         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
24867
24868 2005-09-13  Derek Price  <derek@ximbiot.com>
24869
24870         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
24871         failure.
24872         Reported by Jim Meyering  <jim@meyering.net>.
24873
24874 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24875
24876         * lib/base64.c: Typo.
24877         (base64_encode): Put b64str in initialized data section.
24878
24879 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
24880
24881         Merge glibc and coreutils changes into gnulib, plus a few
24882         extra fixes.
24883         * lib/md5.c: Use #error rather than a string.
24884         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
24885         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
24886         (__attribute__): Define to empty for non recent-GCC.
24887         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
24888         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
24889         Renamed from their non-__ counterparts, with new macros replacing
24890         them if not _LIBC.  Add __THROW attribute.
24891         (rol): Remove.
24892         (struct md5_ctx): Align buffer if using GCC.
24893         * lib/sha1.h (struct sha1_ctx): Likewise.
24894         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
24895         The old name was backwards.
24896         (NOTSWAP): Remove; not used.
24897         (rol): New macro, moved here from md5.h.
24898         (sha1_process_block): Remove a FIXME that doesn't make sense.
24899
24900 2005-09-12  Derek Price  <derek@ximbiot.com>
24901
24902         Return usable errors from canon-host.
24903         * lib/canon-host.h: New file.
24904         * lib/canon-host.c (canon_host): Wrap...
24905         (canon_host_r): ...this new function, which now relies exclusively on
24906         getaddrinfo.
24907         (ch_strerror): New function.
24908         (last_cherror): New global.
24909         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
24910         interface.
24911         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
24912         void *.
24913         (freeaddrinfo): Free ai->ai_canonname when set.
24914
24915 2005-09-12  Derek Price  <derek@ximbiot.com>
24916
24917         Make canon-host require getaddrinfo.
24918         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
24919         AC_LIBSOURCE canon-host.h.  Call...
24920         (gl_PREREQ_CANON_HOST): ...this new function, which requires
24921         gl_GETADDRINFO.
24922         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
24923
24924 2005-09-12  Derek Price  <derek@ximbiot.com>
24925
24926         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
24927         LGPL.
24928         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
24929
24930 2005-09-12  Derek Price  <derek@ximbiot.com>
24931
24932         * lib/gai_strerror.c: Include config.h when available.  Include
24933         getaddrinfo.h before other headers to test interface.
24934         Reported by Larry Jones <lawrence.jones@ugs.com>.
24935
24936 2005-09-12  Derek Price  <derek@ximbiot.com>
24937             Paul Eggert  <eggert@cs.ucla.edu>
24938
24939         * modules/glob (Files): Add glob-libc.h.
24940
24941 2005-09-12  Derek Price  <derek@ximbiot.com>
24942             Paul Eggert  <eggert@cs.ucla.edu>
24943
24944         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
24945         glob_.h, glob-libc.h.
24946         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
24947
24948 2005-09-12  Derek Price  <derek@ximbiot.com>
24949             Paul Eggert  <eggert@cs.ucla.edu>
24950
24951         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
24952         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
24953         protecting things that should be done only in gnulib contexts.
24954         * lib/glob_.h: New file, containing only the glob things needed for
24955         gnulib.
24956         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
24957         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
24958         (glob, globfree, glob_pattern_p): Now defined simply in terms of
24959         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
24960         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
24961         and to respect the namespace rules better.
24962
24963 2005-09-08  Simon Josefsson  <jas@extundo.com>
24964
24965         * modules/socklen: New file.
24966
24967 2005-09-08  Simon Josefsson  <jas@extundo.com>
24968
24969         * m4/socklen.m4: New file.
24970
24971 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24972
24973         * modules/utimens (Files): Add m4/utimbuf.m4, since
24974         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
24975         Reported by Sergey Poznyakoff.
24976
24977 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24978
24979         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
24980         definitions, since that's the preferred style in glibc.
24981         Fix a minor spacing issue, and update copyright notice to match
24982         glibc's.
24983
24984 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24985
24986         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
24987
24988 2005-09-06  Simon Josefsson  <jas@extundo.com>
24989
24990         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
24991         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
24992
24993 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
24994
24995         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
24996         warning.
24997
24998 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
24999
25000         * config/srclist.txt: Add glibc bug 1302.
25001
25002 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
25003
25004         Change bitset word type from unsigned int to unsigned long int,
25005         as this has better performance on typical 64-bit hosts.
25006         Port bitset code to hosts with unusual word sizes.
25007         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
25008         (build_collating_symbol):
25009         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
25010         argument is a bitset.  This is merely a style issue, but it makes
25011         it clearer that an entire array is expected.
25012         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
25013         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
25014         Port to the case where bitset_word is not the same as unsigned int.
25015         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
25016         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
25017         Likewise.
25018         * lib/regexec.c (check_dst_limits_calc_pos_1,
25019         check_subexp_matching_top):
25020         (build_trtable, group_nodes_into_DFAstates):
25021         Likewise.
25022         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
25023         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
25024         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
25025         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
25026         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
25027         * lib/regcomp.c (optimize_subexps, lower_subexp):
25028         Work even if bitset_word has holes in its bitwise representation.
25029         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
25030         * lib/regexec.c (check_dst_limits_calc_pos_1,
25031         check_subexp_matching_top):
25032         Likewise.
25033         * lib/regex_internal.c (re_string_reconstruct):
25034         Don't assume UCHAR_MAX == 255.
25035         * lib/regex_internal.h (bitset_set_all): Likewise.
25036         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
25037         All uses changed.
25038         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
25039         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
25040         All uses changed.
25041         (BITSET_WORD_MAX): New macro.
25042         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
25043         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
25044         (bitset_empty, bitset_copy):
25045         Prefer sizeof (bitset) to multiplying it out ourselves.
25046         (bitset_not_merge): Remove; unused.
25047         (bitset_contain): Return bool, not unsigned int with one bit on.
25048         All callers changed.
25049         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
25050         alignment than re_node_set; do this by defining a new internal
25051         type struct dests_alloc and using it to allocate memory.
25052
25053 2005-09-05  Bruno Haible  <bruno@clisp.org>
25054
25055         * gnulib-tool (func_import): Fix comparison in handling of symbolic
25056         links.
25057
25058 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
25059
25060         * modules/size_max (Makefile.am): Add size_max.h
25061
25062 2005-09-04  Derek Price  <derek@ximbiot.com>
25063
25064         * gnulib-tool (func_import): Fix reversed $symbolic logic.
25065
25066 2005-09-03  Simon Josefsson  <jas@extundo.com>
25067
25068         * gnulib-tool: Fix typo.
25069
25070 2005-09-03  Simon Josefsson  <jas@extundo.com>
25071
25072         * config/srclist.txt: Add glibc bug 1293.
25073
25074 2005-09-03  Derek Price  <derek@ximbiot.com>
25075
25076         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
25077         From Larry Jones <lawrence.jones@ugs.com>.
25078
25079 2005-09-02  Simon Josefsson  <jas@extundo.com>
25080
25081         * modules/socklen: New file.
25082
25083 2005-09-02  Simon Josefsson  <jas@extundo.com>
25084
25085         * modules/havelib: New module.
25086
25087         * modules/gettext, modules/iconv, modules/lock, modules/readline:
25088         Use havelib.
25089
25090 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
25091
25092         Check for arithmetic overflow when calculating sizes, to prevent
25093         some buffer-overflow issues.  These patches are conservative, in the
25094         sense that when I couldn't determine whether an overflow was possible,
25095         I inserted a run-time check.
25096         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
25097         macros.
25098         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
25099         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
25100         (re_xnrealloc, re_x2nrealloc): New inline functions.
25101         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
25102         parse_bracket_exp):
25103         (build_equiv_class, build_charclass): Check for arithmetic overflow
25104         in size expression calculations.
25105         * lib/regex_internal.c (re_string_realloc_buffers):
25106         (build_wcs_upper_buffer, re_node_set_add_intersect):
25107         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
25108         (re_dfa_add_node, register_state): Likewise.
25109         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
25110         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
25111         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
25112         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
25113
25114 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
25115
25116         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
25117         m4/ulonglong.m4.  Problem reported by Martin Lambers.
25118
25119 2005-09-02  Bruno Haible  <bruno@clisp.org>
25120
25121         Support for lib vs. lib64 distinction on biarch platforms.
25122         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
25123         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
25124         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
25125
25126 2005-09-02  Bruno Haible  <bruno@clisp.org>
25127
25128         * gnulib-tool (import): In the other first-use case, provide defaults
25129         as well.
25130
25131 2005-09-02  Bruno Haible  <bruno@clisp.org>
25132
25133         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
25134         patches not yet found in the latest gettext release.
25135
25136 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
25137
25138         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
25139         to avoid a collision with bits/local_lim.h in glibc.
25140         All uses changed.  Problem reported by Dmitry V. Levin in
25141         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
25142
25143         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
25144         bugs in int versus size_t comparisons.
25145         (re_string_context_at): Fix bug where the code assumed that
25146         Idx is signed.
25147
25148         Use bool where appropriate.
25149         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
25150         All callers changed.
25151         (calc_eclosure_iter): Likewise, for ROOT arg.
25152         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
25153         (build_charclass_op): Likewise, for NON_MATCH arg.
25154         * lib/regex_internal.c (re_string_allocate, re_string_construct):
25155         (re_string_construct_common): Likewise, for ICASE arg.
25156         * lib/regexec.c (re_search_2_stub, re_search_stub):
25157         Likewise, for RET_LEN arg.
25158         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
25159         (set_regs): Likewise, for FL_BACKTRACK arg.
25160         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
25161         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
25162         (calc_eclosure_iter, parse_bracket_exp):
25163         Use bool for internal variables that are booleans.
25164         * lib/regexec.c (re_search_internal, check_matching,
25165         proceed_next_node):
25166         (set_regs, build_sifted_states, sift_states_bkref):
25167         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
25168         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
25169         (find_collation_sequence_value):
25170         Likewise.
25171         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
25172         (re_node_set_compare):
25173         Return bool, not int. All callers changed.
25174         * lib/regexec.c (check_halt_node_context, check_dst_limits):
25175         (build_trtable, check_node_accept): Likewise.
25176         * lib/regex_internal.h: Include stdbool.h.
25177
25178         Fix bugs uncovered when converting to bool.
25179         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
25180         failure instead of charging ahead blindly.
25181         * lib/regex_internal.c (register_state): Likewise.
25182         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
25183         for freeing internal storage.
25184         (group_nodes_into_DFA_states): Use unsigned int, not int, for
25185         bitset pieces used as boolean, to avoid undefined behavior
25186         on hosts that do int overflow checking.
25187
25188 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
25189
25190         * config/srclist.txt: Add glibc bugs 1285-1287.
25191
25192 2005-09-01  Jim Meyering  <jim@meyering.net>
25193
25194         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
25195         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
25196         Require gl_STAT_MACROS, too.
25197
25198 2005-09-01  Bruno Haible  <bruno@clisp.org>
25199
25200         * gnulib-tool (import): In the first-use case, provide defaults.
25201
25202 2005-09-01  Bruno Haible  <bruno@clisp.org>
25203
25204         * gnulib-tool (func_import): Remove the .tmp files.
25205
25206 2005-09-01  Bruno Haible  <bruno@clisp.org>
25207
25208         * gnulib-tool (func_import): Fix handling of symbolic links.
25209
25210 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25211
25212         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
25213         old glibc regex code mishandles strings longer than 2**31 bytes.
25214         This patch fixes this when the regex code is used in gnulib
25215         (i.e., outside glibc).
25216
25217         This patch should not affect the use of the regex code inside
25218         glibc.  No doubt this problem also needs to be handled for glibc
25219         as well, but the result will be an incompatible change to the
25220         glibc ABI, and the old ABI will have to be supported too.  That
25221         can be the the subject for another patch.
25222
25223         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
25224         governing whether the rest of this patch is active.  By default,
25225         the macro is disabled and the patch has no effect.
25226         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
25227         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
25228         (struct re_pattern_buffer, re_search, re_search_2, re_match):
25229         (re_match_2, re_set_registers): Use the new types.
25230         * lib/regex_internal.h (Idx, re_hashval_t): New types.
25231         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
25232         New macros.
25233         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
25234         (re_string_context_at, bin_tree_t, re_dfastate_t):
25235         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
25236         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
25237         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
25238         (re_string_char_size_at, re_string_wchar_at):
25239         (re_string_elem_size_at):
25240         Use the new types and macros to port to 64-bit hosts.
25241         Use unsigned types for internal values, so that the code
25242         mostly works even for arrays larger than SSIZE_MAX.
25243         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
25244         (search_duplicated_node, calc_eclosure_iter, fetch_number):
25245         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
25246         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
25247         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
25248         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
25249         (calc_inveclosure, parse_dup_op, build_range_exp):
25250         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
25251         (fetch_number, create_token_tree, mark_opt_subexp):
25252         Likewise.
25253         * lib/regex_internal.c (re_string_construct_common,
25254         create_ci_newstate):
25255         (create_cd_newstate, re_string_allocate, re_string_construct):
25256         (re_string_realloc_buffers, build_wcs_upper_buffer):
25257         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
25258         (re_string_reconstruct, re_string_peek_byte_case):
25259         (re_string_fetch_byte_case, re_string_context_at):
25260         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
25261         (re_node_set_init_copy, re_node_set_add_intersect):
25262         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25263         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25264         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
25265         (re_acquire_state, re_acquire_state_context, register_state):
25266         Likewise.
25267         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
25268         search_cur_bkref_entry):
25269         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
25270         (re_search_internal, re_search_2_stub, re_search_stub)
25271         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
25272         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
25273         (update_cur_sifted_state, check_dst_limits):
25274         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
25275         (check_subexp_limits, sift_states_bkref, merge_state_array):
25276         (check_subexp_matching_top, get_subexp, get_subexp_sub):
25277         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
25278         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
25279         (expand_bkref_cache, check_node_accept_bytes):
25280         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
25281         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
25282         (acquire_init_state_context, check_halt_node_context):
25283         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
25284         (sift_states_backward, clean_state_log_if_needed):
25285         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
25286         (find_recover_state, transit_state_sb, transit_state_mb):
25287         (transit_state_bkref, build_trtable, match_ctx_clean):
25288         Likewise.
25289         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
25290         to work around an assumption that REG_MISSING is negative.
25291
25292         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
25293         (seek_collating_symbol_entry) [defined _LIBC]:
25294         (lookup_collation_sequence_value) [defined _LIBC]:
25295         (build_range_exp, build_collating_symbol) [defined _LIBC]:
25296         Use prototypes rather than old-style function definitions.
25297         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
25298         (transit_state_sb) [0]:
25299         (find_collation_sequence_value) [defined _LIBC]: Likewise.
25300
25301         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
25302         rm_eo.
25303
25304         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
25305         (optimize_subexps, lower_subexp):
25306         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
25307         since the signed shift might overflow.  Use 1u<<31 instead.
25308         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
25309         Likewise.
25310         * lib/regexec.c (check_dst_limits_calc_pos_1,
25311         check_subexp_matching_top): Likewise.
25312
25313         * lib/regcomp.c (optimize_subexps, lower_subexp):
25314         Use CHAR_BIT rather than 8, for clarity.
25315         * lib/regexec.c (check_dst_limits_calc_pos_1):
25316         (check_subexp_matching_top): Likewise.
25317         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
25318         have to worry about portability issues when shifting it left.
25319         Remove no-longer-needed test for table_size > 0.
25320         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
25321         in a word, as the resulting behavior is undefined.
25322         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
25323         in one case, a <= should have been an <, and in another case the
25324         whole test was missing.
25325         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
25326         the standard name CHAR_BIT.
25327         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
25328         this is not true on one's complement and signed-magnitude hosts.
25329
25330         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
25331         next_last_offset.
25332         (struct re_dfa_t): Remove unused member states_alloc.
25333         * lib/regcomp.c (init_dfa): Don't initialize unused members.
25334
25335 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25336
25337         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
25338         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
25339         and large-file glibc and in 32-bit large-file Solaris.
25340
25341 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25342
25343         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
25344         lengths fit in regoff_t; this isn't true if regoff_t is the same
25345         width as size_t.
25346         * lib/regex.c (re_search_internal): 5th arg is LAST_START
25347         (= START + RANGE) instead of RANGE.  This avoids overflow
25348         problems when regoff_t is the same width as size_t.
25349         All callers changed.
25350         (re_search_2_stub): Check for overflow when adding the
25351         sizes of the two strings.
25352         (re_search_stub): Check for overflow when adding START
25353         to RANGE; if it occurs, substitute the extreme value.
25354
25355 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25356
25357         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
25358
25359 2005-08-31  Jim Meyering  <jim@meyering.net>
25360
25361         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
25362         a pointer-to-const.
25363         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
25364         (register_state): Likewise.
25365         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
25366         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
25367         (group_nodes_into_DFAstates): Likewise.
25368
25369 2005-08-31  Jim Meyering  <jim@meyering.net>
25370
25371         * check-module: Add a FIXME comment.
25372
25373 2005-08-31  Eric Blake  <ebb9@byu.net>
25374
25375         * modules/unistd-safer (Files): Add unistd--.h.
25376         * modules/stdio-safer (Files): Add stdio--.h.
25377
25378 2005-08-31  Derek Price  <derek@ximbiot.com>
25379
25380         * lib/getdelim.c (getdelim): Return EOF on EOF.
25381         Reported by Larry Jones <lawrence.jones@ugs.com>.
25382
25383 2005-08-31  Bruno Haible  <bruno@clisp.org>
25384
25385         Avoid unnecessary diffs in the generated lib/Makefile.am.
25386         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
25387         the generated files.
25388         (func_import): Don't set cmd.
25389
25390 2005-08-31  Bruno Haible  <bruno@clisp.org>
25391
25392         * lib/strstr.c: Include <stddef.h>, for NULL.
25393         * lib/strcasestr.c: Likewise.
25394         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
25395
25396 2005-08-31  Bruno Haible  <bruno@clisp.org>
25397
25398         * gnulib-tool: New option --macro-prefix.
25399         (func_import): Use macro_prefix.
25400         (import): Handle option --macro-prefix.
25401
25402 2005-08-31  Bruno Haible  <bruno@clisp.org>
25403
25404         * gnulib-tool (import): Rename most ac_* variables to cached_*.
25405         Also use new variables cached_lgpl, cached_libtool.
25406
25407 2005-08-31  Bruno Haible  <bruno@clisp.org>
25408
25409         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
25410         always instantiating them.
25411
25412 2005-08-31  Bruno Haible  <bruno@clisp.org>
25413
25414         * gnulib-tool (func_import): Read the previous cached settings
25415         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
25416         earlier added by gnulib but are now dropped. Warn when a gnulib file
25417         overwrites a non-gnulib file.
25418
25419 2005-08-31  Bruno Haible  <bruno@clisp.org>
25420
25421         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
25422         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
25423         projects that don't keep autogenerated files in CVS. Put into
25424         actioncmd only the specified modules, not the transitive closure.
25425
25426 2005-08-31  Bruno Haible  <bruno@clisp.org>
25427
25428         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
25429         Create directories that shall be filled.
25430         (import): Don't look for gl_* macros in configure.ac. Recurse across
25431         all directories containing a gnulib-cache.m4 files, if meaningful.
25432
25433 2005-08-31  Bruno Haible  <bruno@clisp.org>
25434
25435         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
25436         (import): Set seen_libtool when we see gl_LIBTOOL.
25437
25438 2005-08-31  Bruno Haible  <bruno@clisp.org>
25439
25440         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
25441         declaration macro definitions from generated gnulib.m4.
25442
25443 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
25444
25445         * lib/iconvme.h: Add prototype for iconv_alloc.
25446
25447 2005-08-29  Simon Josefsson  <jas@extundo.com>
25448
25449         * lib/iconvme.c: Fix errno.
25450
25451 2005-08-29  Bruno Haible  <bruno@clisp.org>
25452
25453         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
25454         that it works when the directory contains spaces.
25455
25456 2005-08-29  Bruno Haible  <bruno@clisp.org>
25457
25458         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
25459
25460 2005-08-29  Bruno Haible  <bruno@clisp.org>
25461
25462         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
25463         Emit more advice.
25464
25465 2005-08-29  Bruno Haible  <bruno@clisp.org>
25466         and Stepan Kasal  <kasal@ucw.cz>
25467
25468         * check-module: If more parameters are given, check each of them
25469         separately; add more exceptions, as noted by Jim Meyering.
25470         (check_module): New procedure.
25471         (%exempt_header): Now contains all exceptions.
25472
25473 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
25474
25475         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
25476
25477 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
25478
25479         * lib/iconvme.c: Split iconv_string into iconv_alloc.
25480
25481 2005-08-28  Bruno Haible  <bruno@clisp.org>
25482
25483         * m4/gnulib-tool.m4: New file.
25484
25485 2005-08-27  Jim Meyering  <jim@meyering.net>
25486
25487         * modules/unistd-safer (Files): Add pipe-safer.c.
25488         * modules/fcntl-safer (Files): Add creat-safer.c.
25489
25490 2005-08-27  Jim Meyering  <jim@meyering.net>
25491
25492         * m4/stdlib-safer.m4: New file.  From coreutils.
25493         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
25494         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
25495         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
25496         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
25497         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
25498
25499 2005-08-27  Jim Meyering  <jim@meyering.net>
25500
25501         * lib/fopen-safer.c: Merge minor changes from coreutils.
25502         * lib/dup-safer.c: Likewise.
25503         * lib/fd-safer.c: Likewise.
25504
25505         Merge from coreutils.
25506         * lib/stdio--.h: New file.
25507         * lib/stdlib--.h: New file.
25508         * lib/mkstemp-safer.c: New file.
25509
25510         GNU tar needs these.
25511         * lib/pipe-safer.c: New file.
25512         * lib/creat-safer.c: New file.
25513         * lib/fcntl--.h (creat): Define to creat_safer.
25514         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
25515         * lib/unistd--.h (pipe): Define to pipe_safer.
25516         * lib/unistd-safer.h: Declare pipe_safer.
25517
25518 2005-08-26  Simon Josefsson  <jas@extundo.com>
25519
25520         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
25521         Haible <bruno@clisp.org>.
25522
25523 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
25524
25525         * lib/regex_internal.h: Remove all references to
25526         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
25527         or better.
25528         (bitset_not, bitset_merge, bitset_not_merge):
25529         (bitset_mask, re_string_allocate, re_string_construct):
25530         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
25531         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
25532         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
25533         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
25534         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25535         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25536         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
25537         (re_acquire_state_context):
25538         Remove unnecessary forward decls.
25539         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
25540         Put __attribute at function definition,
25541         now that the function decl has been removed.
25542         * lib/regex_internal.c (re_string_peek_byte_case):
25543         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
25544         Likewise.
25545
25546 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
25547
25548         * m4/regex.m4: Add AC_PREREQ(2.50).
25549         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
25550
25551 2005-08-25  Simon Josefsson  <jas@extundo.com>
25552
25553         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
25554         __fsetlocking.
25555
25556 2005-08-25  Simon Josefsson  <jas@extundo.com>
25557
25558         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
25559         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
25560         GLIBC specific code.
25561
25562 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25563
25564         Make regex safe for g++.  This fixes one real bug (an "err"
25565         that should have been "*err").  g++ problem reported by
25566         Sam Steingold.
25567         * lib/regex_internal.h (re_calloc): New macro, consistent with
25568         re_malloc etc.  All callers of calloc changed to use re_calloc.
25569         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
25570         not int.  All callers changed.
25571         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
25572         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
25573         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
25574         (find_recover_state): Change "err" to "*err"; this fixes what
25575         appears to be a real bug.
25576         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
25577         versus int.
25578
25579 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25580
25581         * modules/regex (Depends-on): Add malloc, since the code
25582         assumes that !malloc(0) means failure.
25583
25584 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25585
25586         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
25587
25588         alloca modernization/simplification for regex.
25589         * lib/regex.c: Remove portability cruft for alloca.  This no longer
25590         needs to be at the start of the file, and can be moved into
25591         regex_internal.h and simplified.
25592         * lib/regex_internal.h: Include <alloca.h>.
25593         (__libc_use_alloca) [!defined _LIBC]: New macro.
25594         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
25595         now works outside glibc.
25596
25597 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25598
25599         * config/srclist.txt: Add glibc bugs 1241, 1245.
25600
25601 2005-08-25  Jim Meyering  <jim@meyering.net>
25602
25603         * lib/open-safer.c: Include <config.h>.
25604         Otherwise, we'd lose LARGEFILE support in any file using
25605         e.g. "fcntl--.h"
25606
25607 2005-08-25  Bruno Haible  <bruno@clisp.org>
25608
25609         * m4/minmax.m4: Require autoconf 2.52.
25610         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
25611         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
25612         alternatives of translit over the alphabet.
25613         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
25614
25615 2005-08-24  Simon Josefsson  <jas@extundo.com>
25616
25617         * tests/test-getpass.c: New file.
25618
25619 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25620
25621         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
25622         for GNU regex features.
25623
25624 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25625
25626         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
25627         * lib/regex.h (regerror): Likewise.
25628
25629         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
25630         requires this.  (The code never needed it.)
25631
25632         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
25633         All uses of recently-renamed identifiers changed to use the new,
25634         POSIX-compliant names.  The code will build and run just fine
25635         without these changes, but it's better to eat our own dog food
25636         and use the standard-conforming names.
25637
25638         * lib/regex.h: Fix a multitude of POSIX name space violations.
25639         These changes have an effect only for programs that define
25640         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
25641         do not change anything for programs compiled in the normal way.
25642         Also, there is no effect on the ABI.
25643
25644         (_REGEX_SOURCE): New macro.
25645         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
25646         defined and _GNU_SOURCE is not; this fixes a name space violation.
25647
25648         Rename the following macros to obey POSIX requirements.
25649         The old names are still visible as macros if _REGEX_SOURCE is defined.
25650         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
25651         RE_BACKSLASH_ESCAPE_IN_LISTS.
25652         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
25653         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
25654         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
25655         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
25656         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
25657         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
25658         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
25659         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
25660         (REG_INTERVALS): renamed from RE_INTERVALS.
25661         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
25662         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
25663         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
25664         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
25665         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
25666         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
25667         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
25668         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
25669         RE_UNMATCHED_RIGHT_PAREN_ORD.
25670         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
25671         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
25672         (REG_DEBUG): renamed from RE_DEBUG.
25673         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
25674         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
25675         unusual, since we can't clash with the POSIX REG_ICASE.
25676         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
25677         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
25678         (REG_NO_SUB): renamed from RE_NO_SUB.
25679         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
25680         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
25681         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
25682         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
25683         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
25684         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
25685         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
25686         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
25687         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
25688         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
25689         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
25690         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
25691         RE_SYNTAX_POSIX_MINIMAL_BASIC.
25692         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
25693         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
25694         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
25695         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
25696         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
25697         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
25698         (REG_FIXED): Renamed from REGS_FIXED.
25699         (REG_NREGS): Renamed from RE_NREGS.
25700
25701         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
25702         of other REG_* macros, since POSIX says the user is allowed to
25703         #undef these macros selectively.
25704
25705         (reg_errcode_t): Update comment stating what other tables need
25706         to be consistent.
25707
25708         Rename the following enum values to obey POSIX requirements.
25709         The old names are still visible as macros.
25710         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
25711         is not defined, since GNU is supposed to be a superset of POSIX as
25712         much as possible, and since we want reg_errcode_t to be a signed
25713         type for implementation consistency.
25714         (_REG_NOERROR): Renamed from REG_NOERROR.
25715         (_REG_NOMATCH): Renamed from REG_NOMATCH.
25716         (_REG_BADPAT): Renamed from REG_BADPAT.
25717         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
25718         (_REG_ECTYPE): Renamed from REG_ECTYPE.
25719         (_REG_EESCAPE): Renamed from REG_EESCAPE.
25720         (_REG_ESUBREG): Renamed from REG_ESUBREG.
25721         (_REG_EBRACK): Renamed from REG_EBRACK.
25722         (_REG_EPAREN): Renamed from REG_EPAREN.
25723         (_REG_EBRACE): Renamed from REG_EBRACE.
25724         (_REG_BADBR): Renamed from REG_BADBR.
25725         (_REG_ERANGE): Renamed from REG_ERANGE.
25726         (_REG_ESPACE): Renamed from REG_ESPACE.
25727         (_REG_BADRPT): Renamed from REG_BADRPT.
25728         (_REG_EEND): Renamed from REG_EEND.
25729         (_REG_ESIZE): Renamed from REG_ESIZE.
25730         (_REG_ERPAREN): Renamed from REG_ERPAREN.
25731         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
25732         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
25733         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
25734         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
25735
25736         (_REG_RE_NAME, _REG_RM_NAME): New macros.
25737         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
25738         changed.  But support the old name if the new one is not defined
25739         and if _REGEX_SOURCE.
25740
25741         Change the following member names in struct re_pattern_buffer.
25742         The old names are still supported if !_REGEX_SOURCE.
25743         The new names are always supported, regardless of _REGEX_SOURCE.
25744         (re_buffer): Renamed from buffer.
25745         (re_allocated): Renamed from allocated.
25746         (re_used): Renamed from used.
25747         (re_syntax): Renamed from syntax.
25748         (re_fastmap): Renamed from fastmap.
25749         (re_translate): Renamed from translate.
25750         (re_can_be_null): Renamed from can_be_null.
25751         (re_regs_allocated): Renamed from regs_allocated.
25752         (re_fastmap_accurate): Renamed from fastmap_accurate.
25753         (re_no_sub): Renamed from no_sub.
25754         (re_not_bol): Renamed from not_bol.
25755         (re_not_eol): Renamed from not_eol.
25756         (re_newline_anchor): Renamed from newline_anchor.
25757
25758         Change the following member names in struct re_registers.
25759         The old names are still supported if !_REGEX_SOURCE.
25760         The new names are always supported, regardless of _REGEX_SOURCE.
25761         (rm_num_regs): Renamed from num_regs.
25762         (rm_start): Renamed from start.
25763         (rm_end): Renamed from end.
25764
25765         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
25766         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
25767         Prepend __ to parameter names.
25768
25769         Undo yesterday's changes.
25770
25771 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25772
25773         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
25774         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
25775         lib/regex.c.
25776
25777 2005-08-24  Jim Meyering  <jim@meyering.net>
25778
25779         Sync from coreutils.
25780         * m4/fcntl-safer.m4: New file.
25781
25782         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
25783         and object files for this module.
25784
25785 2005-08-24  Jim Meyering  <jim@meyering.net>
25786
25787         Sync from coreutils.
25788         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
25789
25790 2005-08-24  Jim Meyering  <jim@meyering.net>
25791
25792         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
25793         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
25794
25795 2005-08-24  Jim Meyering  <jim@meyering.net>
25796
25797         * modules/fcntl-safer: New module.
25798         * modules/fts (Depends-on): Add fcntl-safer.
25799         * MODULES.html.sh (File descriptor based Input/Output):
25800         Add fcntl-safer.
25801
25802 2005-08-24  Bruno Haible  <bruno@clisp.org>
25803
25804         Support for unit test modules.
25805         * modules/README: Mention tests modules.
25806         * modules/TEMPLATE-TESTS: New file.
25807         * gnulib-tool: New options --extract-tests-module, --with-tests and
25808         --tests-base (unused for the moment).
25809         (testsbase, inctests): New variables.
25810         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
25811         (func_verify_module): Exclude TEMPLATE-TESTS.
25812         (func_verify_nontests_module, func_verify_tests_module): New functions.
25813         (func_get_dependencies): Add implicit dependency for tests modules.
25814         (func_get_tests_module): New function.
25815         (func_modules_transitive_closure): When --with-tests was specified,
25816         include the unit tests as well, unless explicitly avoided.
25817         (func_emit_lib_Makefile_am): Ignore the tests modules here.
25818         (func_emit_tests_Makefile_am): New function.
25819         (func_create_testdir): When --with-tests was specified, emit a
25820         tests/ directory.
25821         * MODULES.html.sh (Future developments): Update.
25822
25823 2005-08-24  Bruno Haible  <bruno@clisp.org>
25824
25825         * modules/tls-tests: New file.
25826         * tests/test-tls.c: New file, from GNU gettext.
25827
25828 2005-08-24  Bruno Haible  <bruno@clisp.org>
25829
25830         * modules/lock-tests: New file.
25831         * tests/test-lock.c: New file, from GNU gettext.
25832
25833 2005-08-24  Bruno Haible  <bruno@clisp.org>
25834
25835         * lib/lock.h: Add multiple inclusion guard.
25836         * lib/tls.h: Add multiple inclusion guard.
25837
25838 2005-08-24  Bruno Haible  <bruno@clisp.org>
25839
25840         * gnulib-tool: Add support for the --aux-dir option to
25841         --create-testdir, --create-megatestdir, --test, --megatest.
25842         (func_create_testdir, func_create_megatestdir): Optionally emit a
25843         AC_CONFIG_AUX_DIR directive.
25844         (create-testdir, create-megatestdir, test, megatest): Provide a
25845         default value for $auxdir.
25846
25847 2005-08-24  Bruno Haible  <bruno@clisp.org>
25848
25849         * gnulib-tool (import): Use compound statement instead of subshell
25850         where possible.
25851
25852 2005-08-24  Bruno Haible  <bruno@clisp.org>
25853
25854         * gnulib-tool (import): Change --aux-dir default to "build-aux".
25855
25856 2005-08-24  Bruno Haible  <bruno@clisp.org>
25857
25858         * gnulib-tool (func_version): Update.
25859
25860 2005-08-24  Bruno Haible  <bruno@clisp.org>
25861
25862         * gnulib-tool (func_import, func_create_testdir,
25863         func_create_megatestdir): Quote all autoconf macro arguments.
25864
25865 2005-08-24  Bruno Haible  <bruno@clisp.org>
25866
25867         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
25868         option --force, because --force causes the aclocal.m4 of each
25869         subdirectory to be newer than the corresponding config.h.in.
25870
25871 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25872
25873         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
25874         All contents moved to gl_REGEX.
25875         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
25876         assume that it does.
25877
25878 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25879
25880         * lib/regex.h (REG_NOSYS)
25881         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
25882         Define, since POSIX requires it as of 2001.
25883         (_REG_ENOSYS)
25884         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
25885         New private symbol, used to keep the enum signed in all cases.
25886         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
25887         Youngman in
25888         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
25889
25890         * lib/regex_internal.c (re_string_skip_chars, register_state):
25891         (calc_state_hash):
25892         Remove forward decls; no longer needed now that we use prototypes.
25893         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
25894         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
25895         (clean_state_log_if_needed): Likewise.
25896
25897 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25898
25899         * config/srclist.txt: Add glibc bugs 1231-1233.
25900
25901 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25902
25903         Fix problems reported by Sam Steingold in
25904         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
25905         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
25906         assumed that reg_errcode_t is a signed type, which is not
25907         necessarily true if _XOPEN_SOURCE is not defined.
25908         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
25909         since some compilers warn about it otherwise.
25910
25911 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25912
25913         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
25914         (init_word_char, create_initial_state, duplicate_node_closure):
25915         (fetch_token, peek_token_bracket, build_range_exp):
25916         (build_collating_symbol): Remove forward decls; no longer needed
25917         now that we use prototypes.
25918
25919         * lib/regcomp.c:
25920         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
25921         (re_compile_fastmap_iter, regcomp, regerror, regfree):
25922         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
25923         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
25924         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
25925         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
25926         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
25927         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
25928         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
25929         (build_range_exp, build_collating_symbol, parse_bracket_exp):
25930         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
25931         (build_charclass, build_charclass_op, fetch_number, create_tree):
25932         (create_token_tree, mark_opt_subexp, duplicate_tree):
25933         Use prototypes rather than old-style definitions.
25934
25935         * lib/regex_internal.c:
25936         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
25937         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
25938         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
25939         (re_string_reconstruct, re_string_peek_byte_case):
25940         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
25941         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
25942         (re_node_set_init_copy, re_node_set_add_intersect):
25943         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25944         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25945         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
25946         (re_acquire_state, re_acquire_state_context, register_state):
25947         (create_ci_newstate, create_cd_newstate, free_state):
25948         Likewise.
25949         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
25950         re_search_2):
25951         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
25952         (re_search_internal, prune_impossible_nodes):
25953         (acquire_init_state_context, check_matching, static):
25954         (check_halt_node_context, check_halt_state_context, proceed_next_node):
25955         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
25956         (update_regs, sift_states_backward, build_sifted_states):
25957         (clean_state_log_if_needed, merge_state_array):
25958         (update_cur_sifted_state, add_epsilon_src_nodes):
25959         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
25960         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
25961         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
25962         (find_recover_state, check_subexp_matching_top, transit_state_mb):
25963         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
25964         (check_arrival, check_arrival_add_next_nodes):
25965         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
25966         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
25967         (check_node_accept_bytes, check_node_accept, extend_buffers):
25968         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
25969         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
25970         (sift_ctx_init):
25971         Likewise.
25972
25973         * lib/regex_internal.h:
25974         (re_string_allocate, re_string_construct, re_string_reconstruct):
25975         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
25976         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
25977         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
25978         (re_string_context_at, re_string_peek_byte_case):
25979         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
25980         is defined, since we now use prototypes always.
25981
25982         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
25983         C89 or better.  All uses removed.
25984
25985 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25986
25987         * config/srclist.txt: Add glibc bugs 1220-1227.
25988
25989 2005-08-20  Jim Meyering  <jim@meyering.net>
25990
25991         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
25992         of unused local, dfa.
25993
25994 2005-08-20  Bruno Haible  <bruno@clisp.org>
25995
25996         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
25997
25998 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
25999
26000         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
26001         (re_node_set_insert_last, re_dfa_add_node):
26002         Rename local variables to avoid GCC shadowing warnings.
26003
26004 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26005
26006         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
26007         [defined lint]: Suppress bogus uninitialized-variable warnings.
26008
26009         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
26010         and let the caller return REG_ESPACE if out of space.  This
26011         removes an uninitialied-variable warning with GCC 4.0.1, and also
26012         avoids taking the address of a local variable.  All callers
26013         changed.
26014
26015 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26016
26017         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
26018         $LIBCSRC/posix/regexec.c.
26019         Add glibc bug 1217 for regcomp.c.
26020
26021 2005-08-19  Jim Meyering  <jim@meyering.net>
26022
26023         * lib/regexec.c (proceed_next_node): Redo local variables to
26024         avoid GCC shadowing warnings.
26025
26026 2005-08-18  Bruno Haible  <bruno@clisp.org>
26027
26028         * lib/strstr.c (strstr): Fix return value in multibyte case.
26029         * lib/strcasestr.c (strcasestr): Likewise.
26030
26031 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
26032
26033         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
26034
26035 2005-08-17  Jim Meyering  <jim@meyering.net>
26036
26037         Make the %s format (seconds since the epoch) work for a negative
26038         number and when used with a zero-padded field width, e.g. %015s.
26039
26040         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
26041         label so that it precedes the code to set `digits'.  Otherwise,
26042         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
26043         print `00-22'.  Now, it prints `-0022', as it should.
26044
26045 2005-08-17  Bruno Haible  <bruno@clisp.org>
26046
26047         * modules/strstr (Files): Add m4/mbrtowc.m4.
26048         (Depends-on): Add mbuiter.
26049
26050 2005-08-17  Bruno Haible  <bruno@clisp.org>
26051
26052         * modules/strcasestr: New file.
26053         * MODULES.html.sh (String handling, based on ANSI C 89): Add
26054         strcasestr.
26055
26056 2005-08-17  Bruno Haible  <bruno@clisp.org>
26057
26058         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
26059
26060 2005-08-17  Bruno Haible  <bruno@clisp.org>
26061
26062         * modules/mbuiter: New file.
26063         * MODULES.html.sh (Extended multibyte and wide character utilities):
26064         Add mbuiter.
26065
26066 2005-08-17  Bruno Haible  <bruno@clisp.org>
26067
26068         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
26069         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
26070
26071 2005-08-17  Bruno Haible  <bruno@clisp.org>
26072
26073         * m4/strcasestr.m4: New file.
26074
26075 2005-08-17  Bruno Haible  <bruno@clisp.org>
26076
26077         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
26078         * lib/strstr.c: Completely rewritten, with multibyte locale support.
26079
26080 2005-08-17  Bruno Haible  <bruno@clisp.org>
26081
26082         * lib/strcasestr.h: New file.
26083         * lib/strcasestr.c: New file.
26084
26085 2005-08-17  Bruno Haible  <bruno@clisp.org>
26086
26087         * lib/strcasecmp.c: Use mbuiter.h.
26088
26089 2005-08-17  Bruno Haible  <bruno@clisp.org>
26090
26091         * lib/mbuiter.h: New file.
26092
26093 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
26094
26095         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
26096         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
26097         and gl_GETOPT are both invoked via different paths (as happens
26098         with GNU tar CVS because it uses both argp and getopt), the former
26099         wins.
26100
26101 2005-08-16  Bruno Haible  <bruno@clisp.org>
26102
26103         * modules/tls: New file.
26104         * MODULES.html.sh (Multithreading): Add tls.
26105
26106 2005-08-16  Bruno Haible  <bruno@clisp.org>
26107
26108         * modules/strnlen1: New file.
26109         * MODULES.html.sh (String handling): Add strnlen1.
26110
26111 2005-08-16  Bruno Haible  <bruno@clisp.org>
26112
26113         * modules/strcase (Files): Add m4/mbrtowc.m4.
26114         (Depends-on): Add strnlen1, mbchar.
26115
26116 2005-08-16  Bruno Haible  <bruno@clisp.org>
26117
26118         * modules/mbiter: New file.
26119         * MODULES.html.sh (Extended multibyte and wide character utilities):
26120         Add mbiter.
26121
26122 2005-08-16  Bruno Haible  <bruno@clisp.org>
26123
26124         * modules/mbfile: New file.
26125         * MODULES.html.sh (Extended multibyte and wide character utilities):
26126         Add mbfile.
26127
26128 2005-08-16  Bruno Haible  <bruno@clisp.org>
26129
26130         * modules/mbchar: New file.
26131         * MODULES.html.sh (Extended multibyte and wide character utilities):
26132         New section.
26133
26134 2005-08-16  Bruno Haible  <bruno@clisp.org>
26135
26136         * m4/tls.m4: New file, from GNU gettext.
26137
26138 2005-08-16  Bruno Haible  <bruno@clisp.org>
26139
26140         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
26141         always.
26142         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
26143
26144 2005-08-16  Bruno Haible  <bruno@clisp.org>
26145
26146         * m4/mbiter.m4: New file.
26147
26148 2005-08-16  Bruno Haible  <bruno@clisp.org>
26149
26150         * m4/mbfile.m4: New file.
26151
26152 2005-08-16  Bruno Haible  <bruno@clisp.org>
26153
26154         * m4/mbchar.m4: New file.
26155
26156 2005-08-16  Bruno Haible  <bruno@clisp.org>
26157
26158         * lib/tls.h: New file, from GNU gettext.
26159         * lib/tls.c: New file, from GNU gettext.
26160
26161 2005-08-16  Bruno Haible  <bruno@clisp.org>
26162
26163         * lib/strnlen1.h: New file.
26164         * lib/strnlen1.c: New file.
26165
26166 2005-08-16  Bruno Haible  <bruno@clisp.org>
26167
26168         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
26169         (mbi_init): Update.
26170         (mbi_avail, mbi_advance): Let the iteration end before the terminating
26171         NUL byte, not after it.
26172
26173 2005-08-16  Bruno Haible  <bruno@clisp.org>
26174
26175         * lib/strcase.h (strcasecmp): Add note in comments.
26176         * lib/strncasecmp.c: Use code from strcasecmp.c.
26177         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
26178         (strcasecmp): Work correctly in multibyte locales.
26179
26180 2005-08-16  Bruno Haible  <bruno@clisp.org>
26181
26182         * lib/mbiter.h: New file.
26183
26184 2005-08-16  Bruno Haible  <bruno@clisp.org>
26185
26186         * lib/mbfile.h: New file.
26187
26188 2005-08-16  Bruno Haible  <bruno@clisp.org>
26189
26190         * lib/mbchar.h: New file.
26191         * lib/mbchar.c: New file.
26192
26193 2005-08-16  Bruno Haible  <bruno@clisp.org>
26194
26195         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
26196         the valid ones. Makes the comparison operations transitive:
26197         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
26198         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
26199
26200 2005-08-15  Simon Josefsson  <jas@extundo.com>
26201
26202         * modules/ssize_t (License): Change to 'unlimited'.
26203
26204         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
26205
26206 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26207
26208         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
26209         Add comments for each pending glibc patch.
26210
26211 2005-08-15  Bruno Haible  <bruno@clisp.org>
26212
26213         * lib/regex.h (__restrict_arr): Don't define to __restrict if
26214         __cplusplus is defined.
26215
26216 2005-08-14  Jim Meyering  <jim@meyering.net>
26217
26218         Sync from coreutils.
26219
26220         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
26221         Use the hash-table-based cycle-detection code not just when
26222         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
26223         Reported by James Youngman in
26224         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
26225         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
26226         FTS_TIGHT_CYCLE_CHECK.
26227         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
26228         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
26229         once again.
26230         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
26231         * lib/fts.c (fd_safer): Remove decl.
26232         Include fcntl--.h rather than unistd-safer.h
26233         (fts_safe_changedir): Don't call fd_safer; no longer needed
26234         now that we include fcntl--.h.
26235
26236 2005-08-12  Simon Josefsson  <jas@extundo.com>
26237
26238         * modules/getndelim2: Use ssize_t module.
26239         * modules/getnline: Likewise.
26240         * modules/safe-read: Likewise.
26241         * modules/xreadlink: Likewise.
26242
26243         * modules/ssize_t: New file.
26244
26245 2005-08-12  Simon Josefsson  <jas@extundo.com>
26246
26247         * m4/readline.m4: Look for termcap, curses or ncurses if required.
26248
26249 2005-08-12  Simon Josefsson  <jas@extundo.com>
26250
26251         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26252         ssize_t.
26253
26254 2005-08-12  Simon Josefsson  <jas@extundo.com>
26255
26256         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
26257         readline, getdelim and check_version.
26258         (Support for systems lacking ISO C 99: Sizes of integer types):
26259         Add size_max.
26260
26261 2005-08-12  Bruno Haible  <bruno@clisp.org>
26262
26263         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
26264
26265 2005-08-11  Simon Josefsson  <jas@extundo.com>
26266
26267         * modules/readline: New file.
26268
26269         * modules/strnlen (Files): Add strnlen.h.
26270
26271 2005-08-11  Simon Josefsson  <jas@extundo.com>
26272
26273         * m4/readline.m4: New file.
26274
26275 2005-08-11  Simon Josefsson  <jas@extundo.com>
26276
26277         * lib/readline.h, readline.c: New file.
26278
26279 2005-08-11  Simon Josefsson  <jas@extundo.com>
26280
26281         * doc/gnulib.texi (Initial import, Finishing touches): Mention
26282         gl_AVOID.
26283
26284 2005-08-11  Bruno Haible  <bruno@clisp.org>
26285
26286         * lib/strnlen.h (strnlen): Change parameter name to match comment.
26287
26288 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
26289
26290         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
26291
26292 2005-08-10  Simon Josefsson  <jas@extundo.com>
26293
26294         * tests/test-iconvme.c: New file.
26295
26296 2005-08-10  Simon Josefsson  <jas@extundo.com>
26297
26298         * m4/strnlen.m4: New file.
26299
26300         * m4/strndup.m4: Don't check for strnlen declaration, done in
26301         strnlen.m4.
26302
26303 2005-08-10  Simon Josefsson  <jas@extundo.com>
26304
26305         * lib/strndup.c: Use strnlen.h.
26306
26307         * lib/strnlen.h: New file.
26308
26309 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26310
26311         * README: Typos.
26312
26313 2005-08-02  Simon Josefsson  <jas@extundo.com>
26314
26315         * modules/readline: New file.
26316
26317 2005-08-02  Simon Josefsson  <jas@extundo.com>
26318
26319         * modules/getdelim: New file.
26320
26321         * modules/getline: Rewrite, don't use getndelim2.
26322
26323 2005-08-02  Simon Josefsson  <jas@extundo.com>
26324
26325         * m4/getline.m4: Separate out getdelim stuff into separate module.
26326
26327         * m4/getdelim.m4: New file.
26328
26329 2005-08-02  Simon Josefsson  <jas@extundo.com>
26330
26331         * lib/getline.h, getline.c: Rewrite.
26332
26333         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
26334
26335 2005-07-31  Bruno Haible  <bruno@clisp.org>
26336
26337         * lib/lock.h (gl_lock_initializer): New macro.
26338         (gl_lock_define_initialized): Use it.
26339         (gl_rwlock_initializer): New macro.
26340         (gl_rwlock_define_initialized): Use it.
26341         (gl_recursive_lock_initializer): New macro.
26342         (gl_recursive_lock_define_initialized): Use it.
26343
26344 2005-07-30  Karl Berry  <karl@gnu.org>
26345
26346         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
26347         Report from Ben Pfaff, regarding getopt.
26348
26349 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
26350
26351         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
26352         normal way.
26353         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
26354         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
26355         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
26356         (gl_GETOPT): Use the new macros.  Most of the implementation
26357         is moved to the new macros.  This is for programs like Emacs
26358         that don't want all the functionality of gl_GETOPT.
26359
26360 2005-07-26  Bruno Haible  <bruno@clisp.org>
26361
26362         * m4/lock.m4: Update from GNU gettext.
26363
26364 2005-07-26  Bruno Haible  <bruno@clisp.org>
26365
26366         * lib/lock.h: Update from GNU gettext.
26367         * lib/lock.c: Update from GNU gettext.
26368
26369 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
26370
26371         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
26372         obsolescent AC_TRY_RUN.  Include the default includes files, for
26373         'exit'.
26374
26375 2005-07-24  Bruno Haible  <bruno@clisp.org>
26376
26377         * modules/visibility: New file.
26378         * MODULES.html.sh (Misc): Add visibility.
26379
26380 2005-07-24  Bruno Haible  <bruno@clisp.org>
26381
26382         * m4/visibility.m4: New file.
26383
26384 2005-07-24  Bruno Haible  <bruno@clisp.org>
26385
26386         * doc/visibility.texi: New file.
26387
26388 2005-07-22  Bruno Haible  <bruno@clisp.org>
26389
26390         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
26391         $(ALLOCA_H), redundant through BUILT_SOURCES.
26392         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
26393         redundant through BUILT_SOURCES.
26394         * modules/byteswap (Makefile.am): Remove explicit dependency on
26395         $(BYTESWAP_H), redundant through BUILT_SOURCES.
26396         * modules/fnmatch (Makefile.am): Remove explicit dependency on
26397         $(FNMATCH_H), redundant through BUILT_SOURCES.
26398         * modules/getopt (Makefile.am): Remove explicit dependency on
26399         $(GETOPT_H), redundant through BUILT_SOURCES.
26400         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
26401         redundant through BUILT_SOURCES.
26402         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
26403         redundant through BUILT_SOURCES.
26404         * modules/stdbool (Makefile.am): Remove explicit dependency on
26405         $(STDBOOL_H), redundant through BUILT_SOURCES.
26406         * modules/stdint (Makefile.am): Remove explicit dependency on
26407         $(STDINT_H), redundant through BUILT_SOURCES.
26408         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
26409         Remove explicit dependency on $(SYSEXITS_H).
26410         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
26411
26412 2005-07-18  Simon Josefsson  <jas@extundo.com>
26413
26414         * lib/check-version.c (check_version): Accept identical versions too.
26415
26416 2005-07-18  Bruno Haible  <bruno@clisp.org>
26417
26418         * modules/lock: New file.
26419         * MODULES.html.sh (Multithreading): New section.
26420
26421 2005-07-18  Bruno Haible  <bruno@clisp.org>
26422
26423         * m4/lock.m4: New file, from GNU gettext.
26424
26425 2005-07-18  Bruno Haible  <bruno@clisp.org>
26426
26427         * lib/lock.h: New file, from GNU gettext.
26428         * lib/lock.c: New file, from GNU gettext.
26429
26430 2005-07-18  Bruno Haible  <bruno@clisp.org>
26431
26432         * lib/lock.h (gl_once_t): New type.
26433         (gl_once_define, gl_once): New macros.
26434         * lib/lock.c (fresh_once): New variable.
26435         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
26436         functions.
26437
26438 2005-07-16  Simon Josefsson  <jas@extundo.com>
26439
26440         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
26441         workaround, suggested by Bruno.
26442
26443 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
26444
26445         * modules/xalloc (Depends-on): Add xalloc-die.
26446         * modules/xvasprintf (Depends-on): Add xalloc-die.
26447
26448 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
26449
26450         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
26451         with a minor change.
26452
26453 2005-07-15  Bruno Haible  <bruno@clisp.org>
26454
26455         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
26456         When using lib/poll.c, define poll as rpl_poll.
26457
26458 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
26459
26460         * modules/argp (Depends-on): Remove unlocked-io.
26461
26462 2005-07-14  Derek Price  <derek@ximbiot.com>
26463
26464         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
26465         for glob symlink bug.
26466
26467 2005-07-14  Bruno Haible  <bruno@clisp.org>
26468
26469         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
26470         Instead, test for *_unlocked function declarations directly.
26471
26472 2005-07-11  Simon Josefsson  <jas@extundo.com>
26473
26474         * modules/size_max: New file.
26475
26476         * modules/xsize: Depend on size_max module for size_max.m4.
26477
26478 2005-07-11  Simon Josefsson  <jas@extundo.com>
26479
26480         * lib/size_max.h: New file.
26481
26482 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
26483
26484         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
26485         copyright symbol and the year.
26486         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
26487         (version_etc_va): Use parameterized copyright notice.
26488         Reword to conform to the current GNU coding standards.
26489
26490 2005-07-11  Karl Berry  <karl@gnu.org>
26491
26492         * doc/gnulib.texi (Quoting): new node.
26493         (Initial import): more info, from Patrice.
26494
26495 2005-07-11  Bruno Haible  <bruno@clisp.org>
26496
26497         * gnulib-tool (func_usage): Document option --avoid.
26498         (Command line options): Handle --avoid.
26499         (func_acceptable): New function.
26500         (func_modules_transitive_closure): Use it.
26501
26502 2005-07-11  Bruno Haible  <bruno@clisp.org>
26503
26504         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
26505         Reported by Jim Meyering.
26506
26507 2005-07-10  Bruno Haible  <bruno@clisp.org>
26508
26509         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
26510         Needed when size_t is smaller than 'unsigned int'.
26511         Reported by Paul Eggert.
26512
26513 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
26514
26515         * modules/argp (Depends-on): Add unlocked-io
26516
26517 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
26518
26519         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
26520         block of defines.
26521
26522 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
26523
26524         * config/srclist.txt: Comment out regcomp.c, since we have a porting
26525         fix now.
26526
26527 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
26528         and Paul Eggert  <eggert@cs.ucla.edu>
26529
26530         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
26531         in wint_t, not wchar_t.  Remove now-unnecessary cast.
26532
26533 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26534
26535         * modules/regex (Files): Add lib/regex_internal.c,
26536         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
26537         (Depends-on): Add extensions.
26538         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
26539
26540 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26541
26542         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
26543         pathconf.
26544         * m4/same.m4 (gl_SAME): Likewise.
26545         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
26546
26547         * m4/regex.m4: Adjust to new libc regex implementation.
26548         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
26549         all the .c and .h parts of (the new) regex.
26550         Quote the m4 stuff better.
26551         Check for RE_ICASE bug of old gnulib.
26552         Check for REG_STARTEND of recent libc.
26553         Rename local variables from jm_* to gl_*.
26554         Quote operand of "test -f".
26555         Say "recent enough" version of libc, not "version 2".
26556         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
26557         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
26558         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
26559         Remove check for btowc, isascii.
26560         Require AM_LANGINFO_CODESET.
26561
26562 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26563
26564         * lib/regex.c, regex.h: Sync from libc.
26565         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
26566         * lib/regexec.c:
26567         New files, synced from libc, except that regex_internal.h
26568         currently has a small porting fix.
26569
26570 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26571
26572         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
26573         regex_internal.c, regexec.c.
26574         Add regex_internal.h too, but as a comment, since the libc version
26575         is currently broken in gnulib mode.
26576
26577 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
26578
26579         Support programs like Emacs that use gnulib but not gettext.
26580         * MODULES.html.sh (Internationalization functions): Add gettext-h.
26581         * modules/gettext-h: New file.
26582         * modules/gettext (Files): Remove lib/gettext.h.
26583         (Depends-on): Add gettext-h.
26584         (Makefile.am): Remove lib_SOURCES.
26585         * modules/argmatch, modules/c-stack, modules/closeout:
26586         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
26587         * modules/execute, modules/file-type, modules/getaddrinfo:
26588         * modules/getopt, modules/human, modules/javacomp:
26589         * modules/javaexec, modules/mkdir-p, modules/obstack:
26590         * modules/openat, modules/pagealign_alloc, modules/pipe:
26591         * modules/quotearg, modules/regex, modules/rpmatch:
26592         * modules/unicodeio, modules/userspec, modules/version-etc:
26593         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
26594         * modules/xsetenv:
26595         Depend on gettext-h, not gettext.
26596
26597 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
26598
26599         * gnulib-tool (func_import): Add support for 'public domain' license.
26600         * modules/alloca, modules/atexit, modules/memmove:
26601         Now public domain, not GPL.
26602         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
26603         * modules/realloc, modules/strerror, modules/strtod:
26604         Now LGPL, not GPL.
26605
26606 2005-07-05  Bruno Haible  <bruno@clisp.org>
26607
26608         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
26609         autoconf CVS. Needed for mingw.
26610
26611 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26612
26613         Remove the dependency of the strftime module on the tzset module.
26614         * modules/strftime (Depends-on): Remove dependency on tzset.
26615
26616 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26617
26618         Remove the dependency of the strftime module on the tzset module.
26619         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
26620         gl_FUNC_TZSET_CLOBBER.
26621
26622 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26623
26624         Remove the dependency of the strftime module on the tzset module.
26625         * lib/strftime.c (my_strftime)
26626         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
26627         Copy the input structure, to work around some of the bug with
26628         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
26629         Solaris releases, you should also use the tzset module, but we won't
26630         require it as a dependency any more since we don't want LGPLed code
26631         to depend on GPLed code.
26632
26633 2005-07-02  Jim Meyering  <jim@meyering.net>
26634
26635         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
26636         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
26637         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
26638         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
26639
26640 2005-07-02  Jim Meyering  <jim@meyering.net>
26641
26642         * lib/backupfile.c (backup_args): Change a `0' to NULL.
26643
26644 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
26645
26646         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
26647         declares only 'struct timespec;' (!).
26648
26649 2005-07-01  Jim Meyering  <jim@meyering.net>
26650
26651         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
26652         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
26653         * lib/save-cwd.c, tempname.c:
26654         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
26655         and don't include <sys/file.h>).
26656
26657 2005-06-29  Jim Meyering  <jim@meyering.net>
26658
26659         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
26660         type name.  Use the variable name instead.
26661         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
26662         Likewise.
26663
26664 2005-06-28  Simon Josefsson  <jas@extundo.com>
26665
26666         * modules/check-version (Files): Add check-version.m4.
26667
26668 2005-06-28  Simon Josefsson  <jas@extundo.com>
26669
26670         * m4/check-version.m4: New file, suggested by Jim Meyering
26671         <jim@meyering.net>.
26672
26673 2005-06-28  Simon Josefsson  <jas@extundo.com>
26674
26675         * lib/check-version.h, lib/check-version.c: New files.
26676
26677 2005-06-28  Simon Josefsson  <jas@extundo.com>
26678
26679         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
26680         collision with global variable.  Better indentation.  Don't
26681         increment buffer pointer beyond buffer end.  Based on comments
26682         from Paul Eggert <eggert@cs.ucla.edu>.
26683
26684         * lib/base64.h: Indent.
26685
26686 2005-06-28  Simon Josefsson  <jas@extundo.com>
26687
26688         * doc/gnulib.texi (Library version handling): New section.
26689
26690 2005-06-28  Jim Meyering  <jim@meyering.net>
26691
26692         * check-module (find_included_lib_files): Hard-code another
26693         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
26694         but modules/fts-lgpl (correctly) does not list those files.
26695
26696         * modules/canonicalize (Files): Add lib/pathmax.h.
26697
26698 2005-06-25  Simon Josefsson  <jas@extundo.com>
26699
26700         * modules/check-version: New file.
26701
26702 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
26703
26704         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
26705         initializer of struct addrinfo, as an indication that we don't
26706         care how many members the structure has.
26707
26708 2005-06-24  Derek Price  <derek@ximbiot.com>
26709         and Bruno Haible  <bruno@clisp.org>
26710
26711         Remove stat module & update lstat.
26712         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
26713         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26714         * m4/stat.m4: Remove this file.
26715
26716 2005-06-24  Derek Price  <derek@ximbiot.com>
26717         and Bruno Haible  <bruno@clisp.org>
26718
26719         Remove stat module & update lstat.
26720         * lib/stat.c: Remove this file...
26721         (slash_aware_lstat): ...moving this content and its support...
26722         * lib/lstat.c (rpl_lstat): ...into here.
26723         * lib/lstat.h: New file.
26724
26725 2005-06-24  Derek Price  <derek@ximbiot.com>
26726         and Bruno Haible  <bruno@clisp.org>
26727
26728         Remove stat module & update lstat.
26729         * config/srclist.txt (libc sources): Remove stat.
26730
26731 2005-06-24  Derek Price  <derek@ximbiot.com>
26732         and Bruno Haible  <bruno@clisp.org>
26733
26734         Remove stat module & update lstat.
26735         * MODULES.html.sh (stat): Remove.
26736         * MODULES.html: Regenerated.
26737         * modules/lstat (Description): Correct function name.
26738         (Files): Add "lstat.h".
26739         (Depends-on): Remove stat, add xalloc, stat-macros.
26740         * modules/stat: Remove this file.
26741         (Include): Add "lstat.h", remove <sys/stat.h>.
26742
26743 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26744
26745         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
26746         (ranged_convert): Don't save conversion in a temporary struct.
26747         This causes a warning with GCC 4.0.0, and anyway in the typical
26748         case it's not worth the extra 100 bytes or so of code.
26749         (ranged_convert, __mktime_internal): When calling a function via a
26750         pointer P, use P () rather than (*P) (), as we now assume C89 or
26751         better.
26752
26753 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
26754
26755         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
26756         "who -r" failed to give output.  Problem reported by Tim Waugh.
26757
26758         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
26759         (xcalloc): Use it to avoid needless tests.
26760         Problem reported by Jim Meyering.
26761
26762 2005-06-20  Derek Price  <derek@ximbiot.com>
26763
26764         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
26765         unnecessary for Autoconfs > 2.59c.
26766
26767 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26768
26769         * lib/argp.h (__option_is_short): Check upper limit of
26770         __key. Isprint() requires its argument to have the value
26771         of an unsigned char or EOF.
26772
26773 2005-06-16  Jim Meyering  <jim@meyering.net>
26774
26775         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
26776         when either N or S is zero.
26777
26778 2005-06-16  Derek Price  <derek@ximbiot.com>
26779
26780         * m4/bison.m4: Declare YACC & YFLAGS precious.
26781
26782 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
26783
26784         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
26785         multibyte string or pattern, fall back on unibyte matching.
26786         Problem reported by James Youngman.
26787
26788 2005-06-08  Bruno Haible  <bruno@clisp.org>
26789
26790         * modules/csharpcomp: New file.
26791         * MODULES.html.sh (C#): Add csharpcomp.
26792
26793 2005-06-08  Bruno Haible  <bruno@clisp.org>
26794
26795         * m4/csharpcomp.m4: New file, from GNU gettext.
26796
26797 2005-06-08  Bruno Haible  <bruno@clisp.org>
26798
26799         * lib/csharpcomp.h: New file, from GNU gettext.
26800         * lib/csharpcomp.c: New file, from GNU gettext.
26801         * lib/csharpcomp.sh.in: New file, from GNU gettext.
26802
26803 2005-06-08  Bruno Haible  <bruno@clisp.org>
26804
26805         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
26806         warning on mingw.
26807
26808 2005-06-07  Derek Price  <derek@ximbiot.com>
26809
26810         Sync from CVS.
26811         * lib/glob_.h: Indent nested #ifdef.
26812
26813 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26814
26815         Sync from coreutils.
26816         Use "file name" when talking about file names, instead of "filename"
26817         or "path", as per the GNU coding standards.
26818         * lib/mkdir-p.c: Renamed from makepath.c.
26819         (make_dir_parents): Renamed from make_path.  All callers changed.
26820         * lib/mkdir-p.h: Likewise.  All includers changed.
26821         * lib/filenamecat.c: Renamed from path-concat.c.
26822         (file_name_concat): Renamed from path_concat.  All callers changed.
26823         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
26824         * lib/filenamecat.h: Likewise.  All includers changed.
26825         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
26826         in comments or local variable names.
26827         * lib/basename.c: Likewise.
26828         * lib/canonicalize.c, canonicalize.h: Likewise.
26829         * lib/dirname.c, dirname.h: Likewise.
26830         * lib/euidaccess.c: Likewise.
26831         * lib/exclude.c: Likewise
26832         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
26833         * lib/fsusage.c, fsuage.h: Likewise.
26834         * lib/fts.c, fts_.h: Likewise.
26835         * lib/getcwd.c: Likewise.
26836         * lib/getloadavg.c: Likewise.
26837         * lib/mkstemp.c: Likewise.
26838         * lib/mountlist.c, mountlist.h: Likewise.
26839         * lib/openat.c, openat.h: Likewise.
26840         * lib/readlink-stub.c: Likewise.
26841         * lib/readutmp.c, readutmp.h: Likewise.
26842         * lib/rename.c: Likewise.
26843         * lib/rmdir.c: Likewise.
26844         * lib/same.c: Likewise.
26845         * lib/savedir.c: Likewise.
26846         * lib/stripslash.c: Likewise.
26847         * lib/tempname.c: Likewise.
26848         * lib/xreadlink.c: Likewise.
26849         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
26850         All uses changed.
26851         * lib/exclude.h: Likewise.
26852
26853         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
26854         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26855         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
26856         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26857         * lib/pathmax.h: Include <limits.h> unconditionally, since other
26858         files have been getting away with it for years (MORE/BSD 4.3
26859         is extinct now).
26860         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
26861         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26862
26863         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
26864         Define to 256, not 255, as per modern POSIX.
26865
26866 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26867
26868         Sync from coreutils.
26869         Use "file name" when talking about file names, instead of "filename"
26870         or "path", as per the GNU coding standards.
26871         * MODULES.html.sh: mkdir-p renamed from makepath.
26872         filenamecat renamed from path-concat.
26873         * modules/filenamecat: Renamed from modules/path-concat.
26874         (Files): filenamecat.h and filenamecat.c renamed from
26875         path-concat.h and path-concat.c.
26876         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
26877         (Include): filenamecat.h, not path-concat.h.
26878         * modules/mkdir-p: Renamed from modules/makepath.
26879         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
26880         makepath.c.
26881         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
26882         (Include): mkdir-p.h, not makepath.h.
26883
26884 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26885
26886         Sync from coreutils.
26887         * m4/mkdir-p.m4: Renamed from makepath.m4.
26888         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
26889         Rename files from makepath.c to mkdir-p.c, and from
26890         makepath.h to mkdir-p.h.
26891         * m4/filenamecat.m4: Renamed from path-concat.m4.
26892         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
26893         Rename files from path-concat.c to filenamecat.c,
26894         and from path-concat.h to filenamecat.h.
26895         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
26896         "file name" in local variables or comments.
26897         * m4/rename.m4: Likewise.
26898
26899 2005-06-01  Bruno Haible  <bruno@clisp.org>
26900
26901         * modules/csharpexec: New file.
26902         * MODULES.html.sh (C#): New section.
26903
26904 2005-06-01  Bruno Haible  <bruno@clisp.org>
26905
26906         * m4/csharp.m4: New file, from GNU gettext.
26907         * m4/csharpexec.m4: New file, from GNU gettext.
26908
26909 2005-06-01  Bruno Haible  <bruno@clisp.org>
26910
26911         * lib/csharpexec.h: New file, from GNU gettext.
26912         * lib/csharpexec.c: New file, from GNU gettext.
26913         * lib/csharpexec.sh.in: New file, from GNU gettext.
26914
26915 2005-05-31  Derek Price  <derek@ximbiot.com>
26916             Paul Eggert  <eggert@cs.ucla.edu>
26917
26918         Sync from cvs.
26919         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
26920
26921 2005-05-31  Derek Price  <derek@ximbiot.com>
26922             Paul Eggert  <eggert@cs.ucla.edu>
26923
26924         Sync from cvs.
26925         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
26926
26927 2005-05-29  Derek Price  <derek@ximbiot.com>
26928
26929         * config/srclist.txt (glob_.h, glob.c): Add these files.
26930
26931 2005-05-29  Derek Price  <derek@ximbiot.com>
26932
26933         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
26934         * modules/glob: New file.
26935         * modules/getlogin_r: Add link to POSIX spec in description.
26936
26937 2005-05-29  Derek Price  <derek@ximbiot.com>
26938             Paul Eggert  <eggert@cs.ucla.edu>
26939
26940         * m4/glob.m4: New file.
26941
26942 2005-05-29  Derek Price  <derek@ximbiot.com>
26943             Paul Eggert  <eggert@cs.ucla.edu>
26944
26945         * lib/glob_.h, lib/glob.c: New files.
26946
26947 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26948
26949         * modules/fts (Files): Remove m4/inttypes-pri.m4.
26950         * modules/fts-lgpl (Depends-on): Remove gettext.
26951
26952 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26953
26954         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
26955         and don't require gt_INTTYPES_PRI.
26956
26957 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26958
26959         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
26960
26961         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
26962         the configuration hassle isn't worth it.
26963         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
26964         (LONGEST_MODIFIER, PRIuMAX): Remove.
26965
26966 2005-05-27  Bruno Haible  <bruno@clisp.org>
26967
26968         * lib/getlogin_r.h: Remove second include of <stddef.h>.
26969
26970 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
26971
26972         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
26973         _POSIX_PTHREAD_SEMANTICS for Solaris.
26974
26975 2005-05-25  Derek Price  <derek@ximbiot.com>
26976
26977         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
26978
26979 2005-05-25  Derek Price  <derek@ximbiot.com>
26980             Paul Eggert  <eggert@cs.ucla.edu>
26981
26982         * modules/getlogin_r, m4/getlogin_r.m4: New files.
26983         * lib/getlogin_r.c, getlogin_r.h: New files.
26984
26985 2005-05-25  Bruno Haible  <bruno@clisp.org>
26986             Derek Price  <derek@ximbiot.com>
26987
26988         * lib/getlogin_r.h: Simplify API documentation.
26989
26990 2005-05-23  Derek Price  <derek@ximbiot.com>
26991
26992         * modules/minmax (Files): Add m4/minmax.m4.
26993         (configure.ac): Add gl_MINMAX.
26994
26995 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
26996
26997         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
26998         so that unistd-safer.h (GPL'ed code) need not be included.
26999
27000 2005-05-22  Bruno Haible  <bruno@clisp.org>
27001
27002         * m4/minmax.m4: New file.
27003         Based on a patch by Derek Price <derek@ximbiot.com>.
27004
27005 2005-05-22  Bruno Haible  <bruno@clisp.org>
27006
27007         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
27008         (INT64_MIN): Fix definition.
27009         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
27010
27011         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
27012         NEED_SIGNED_INT_TYPES.
27013
27014         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
27015         HAVE_SYSTEM_INTTYPES.
27016
27017 2005-05-22  Bruno Haible  <bruno@clisp.org>
27018
27019         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
27020         Also include <sys/param.h> if it defines MIN, MAX.
27021         Based on a patch by Derek Price <derek@ximbiot.com>.
27022
27023 2005-05-21  Jim Meyering  <jim@meyering.net>
27024
27025         * modules/fts (Files): Add m4/inttypes-pri.m4.
27026         (Depends-on): Add lstat and remove gettext.  Alphabetize.
27027
27028 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27029
27030         New fts module.
27031         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
27032         (setup_dir, free_dir): New functions.
27033         (enter_dir, leave_dir): Define trivial
27034         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
27035         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
27036         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
27037         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
27038         Move to fts-cycle.c.
27039         (fts_open): Use setup_dir.
27040         (fts_close): Use free_dir.
27041         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
27042         This adds a label and some gotos, but the alternatives were messier.
27043         Check for memory allocation failure when entering a dir.
27044         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
27045         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
27046         (FTS): New member fts_cycle, that is a union that contains the
27047         old active_dir_ht and cycle_state.  All uses changed to mention
27048         fts_cycle.ht and fts_cycle.state.
27049         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
27050         fts.c, with the following changes:
27051         (setup_dir, free_dir): New functions.
27052         (enter_dir): Now returns bool.  Return true if successful, false
27053         if memory exhausted.  All callers changed.
27054         Do not bother partly cleaning up on
27055         memory allocation failure; that is free_dir's job.
27056         However, free ad if hash_insert fails, to avoid memory leak.
27057         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
27058         fts->fts_options to see which union member to use.
27059
27060 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27061
27062         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
27063         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
27064
27065 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27066
27067         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
27068
27069 2005-05-20  Jim Meyering  <jim@meyering.net>
27070
27071         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
27072         Now a macro, to pacify GCC.
27073
27074 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
27075
27076         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
27077         of -1.
27078
27079 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
27080
27081         * lib/chown.c (rpl_chown): Return -1 on failure.
27082
27083 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
27084
27085         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
27086         Don't check for stddef.h.
27087         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
27088         don't use its results.
27089         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
27090         since we include them unconditionally.  Don't require
27091         AM_STDBOOL_H, since stdbool is a prerequisite.
27092         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
27093         since we assume C89 or better.
27094         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
27095         as we don't use their results.
27096         Don't check for fchdir, memmove, memset, strrchr, as we use
27097         them unconditionally.
27098         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
27099         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
27100
27101 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
27102
27103         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
27104         Include <stddef.h> unconditionally, since we assume C89 now.
27105         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
27106         * lib/fts.c: Include fts_.h first, to check interface.
27107         Do not include intprops.h; no longer needed.
27108         Include cycle-check.h and hash.h, since fts_.h no longer does.
27109         Remove unnecessary casts of closedir to void.
27110         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
27111         decide whether to decrement nlinks.
27112         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
27113         (FTS): Use struct hash_table * instead of Hash_table, so that
27114         we no longer need to include hash.h here.
27115
27116 2005-05-18  Jim Meyering  <jim@meyering.net>
27117
27118         * modules/dirfd (License): Change to LGPL.  Most of the code
27119         is already in the public domain.
27120
27121 2005-05-18  Jim Meyering  <jim@meyering.net>
27122
27123         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
27124         Reported by Yoann Vandoorselaere.
27125
27126 2005-05-17  Jim Meyering  <jim@meyering.net>
27127
27128         * m4/fts.m4: New file, from coreutils.
27129
27130 2005-05-17  Jim Meyering  <jim@meyering.net>
27131
27132         * lib/fts.c, lib/fts_.h: New files, from coreutils.
27133
27134 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27135
27136         Sync from coreutils.
27137         * m4/unlinkdir.m4: New file.
27138
27139 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27140
27141         Sync from coreutils.
27142         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
27143         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
27144         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
27145         White space changes only.
27146         * lib/makepath.c (make_path): Port to hosts where leading "//" is
27147         special.
27148         * lib/yesno.c: Include getline.h, not ctype.h.
27149         (yesno): Don't remove leading white space; POSIX doesn't allow it.
27150         Use getline to remove arbitrary restriction on response length.
27151
27152 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27153
27154         * config/srclist-update: Spell out "Street" in FSF postal
27155         mail address; this is the style the FSF seems to prefer.
27156
27157         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
27158         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
27159         this updates FSF postal mail address.
27160
27161         Sync from coreutils.
27162         * modules/unlinkdir: New file.
27163         * modules/yesno (Depends-on): Add getline.
27164         * MODULES.html.sh (File system functions): Add unlinkdir.
27165
27166 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27167
27168         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
27169         lib/strsep.h:
27170         Change the initial comment to refer to GPL, not LGPL.
27171         gnulib-tool will change it to LGPL as needed.
27172
27173         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
27174         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
27175         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
27176         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
27177         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
27178         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
27179         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
27180         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
27181         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
27182         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
27183         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
27184         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
27185         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
27186         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
27187         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
27188         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
27189         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
27190         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
27191         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
27192         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
27193         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
27194         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
27195         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
27196         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
27197         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
27198         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
27199         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
27200         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
27201         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
27202         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
27203         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
27204         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
27205         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
27206         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
27207         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
27208         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
27209         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
27210         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
27211         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
27212         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
27213         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
27214         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
27215         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
27216         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
27217         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
27218         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
27219         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
27220         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
27221         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
27222         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
27223         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
27224         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
27225         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
27226         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
27227         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
27228         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
27229         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
27230         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
27231         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
27232         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
27233         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
27234         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
27235         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
27236         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
27237         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
27238         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
27239         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
27240         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
27241         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
27242         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
27243         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
27244         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
27245         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
27246         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
27247         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
27248         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
27249         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
27250         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
27251         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
27252         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
27253         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
27254         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
27255         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
27256         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
27257         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
27258         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
27259         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
27260         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
27261         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
27262         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
27263         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
27264         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
27265         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
27266         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
27267         lib/yesno.c, lib/yesno.h:
27268         Update FSF postal mail address.
27269
27270 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27271
27272         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
27273         tests/test-memmem.c, tests/test-stpncpy.c:
27274         Update FSF postal mail address.
27275
27276 2005-05-13  Bruno Haible  <bruno@clisp.org>
27277
27278         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
27279         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
27280         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
27281         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
27282         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
27283         Add support for 64-bit integers in the MSVC compiler.
27284
27285 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27286
27287         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
27288
27289 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
27290
27291         * gnulib-tool (func_import): Sort and uniquify recommended includes.
27292
27293 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
27294
27295         * doc/getdate.texi (General date syntax): Don't say that date
27296         date --iso-8601=ns generates acceptable dates; it doesn't yet.
27297         Problem reported by Nic Ferrier.
27298
27299 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27300
27301         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
27302         specified in ai_socktype. Fix invalid ai_protocol
27303         check. ai_protocol is usually set to 0 or depending on
27304         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
27305         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
27306         ai_socktype / ai_protocol in the returned addrinfo structure.
27307
27308 2005-05-10  Simon Josefsson  <jas@extundo.com>
27309
27310         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
27311         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27312
27313 2005-05-10  Karl Berry  <karl@gnu.org>
27314
27315         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
27316         (from http://www.gnu.org/licenses).
27317         * doc/COPYING.LIB: also rename to COPYING.LESSER.
27318         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
27319         fdl.texi suffices.
27320
27321 2005-05-10  Karl Berry  <karl@gnu.org>
27322
27323         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
27324         (COPYING.DOC): remove.
27325
27326         * config/srclist-update: new FSF address.
27327
27328 2005-05-10  Derek Price  <derek@ximbiot.com>
27329
27330         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
27331         possible.
27332
27333 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27334             Bruno Haible  <bruno@clisp.org>
27335
27336         * modules/inet_ntop: New file.
27337         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27338         inet_ntop.
27339
27340 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27341             Bruno Haible  <bruno@clisp.org>
27342
27343         * m4/inet_ntop.m4: New file.
27344
27345 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27346             Bruno Haible  <bruno@clisp.org>
27347
27348         * lib/inet_ntop.h: New file.
27349         * lib/inet_ntop.c: New file, from glibc with modifications.
27350
27351 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
27352
27353         * modules/time_r (License): Change to LGPL.
27354         * modules/extensions (License): Change to LGPL.  Actually,
27355         the license is more permissive than that, but currently gnulib-tool
27356         doesn't know how to handle more-permissive licenses.
27357
27358         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
27359         Problem reported by Dave Love.
27360
27361 2005-05-08  Jim Meyering  <jim@meyering.net>
27362
27363         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
27364         blank.
27365
27366 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
27367
27368         * modules/argmatch (Depends-on): Add stdbool.
27369         * modules/backupfile (Depends-on): Likewise.
27370         * modules/chdir-long (Depends-on): Likewise.
27371         * modules/closeout (Depends-on): Likewise.
27372         * modules/cycle-check (Depends-on): Likewise.
27373         * modules/dirname (Depends-on): Likewise.
27374         * modules/fnmatch (Depends-on): Likewise.
27375         * modules/fsusage (Depends-on): Likewise.
27376         * modules/fwriteerror (Depends-on): Likewise.
27377         * modules/getcwd (Depends-on): Likewise.
27378         * modules/getloadavg (Depends-on): Likewise.
27379         * modules/hard-locale (Depends-on): Likewise.
27380         * modules/makepath (Depends-on): Likewise.
27381         * modules/mountlist (Depends-on): Likewise.
27382         * modules/nanosleep (Depends-on): Likewise.
27383         * modules/posixtm (Depends-on): Likewise.
27384         * modules/quotearg (Depends-on): Likewise.
27385         * modules/readtokens (Depends-on): Likewise.
27386         * modules/readtokens0 (Depends-on): Likewise.
27387         * modules/readutmp (Depends-on): Likewise.
27388         * modules/save-cwd (Depends-on): Likewise.
27389         * modules/strftime (Depends-on): Likewise.
27390         * modules/userspec (Depends-on): Likewise.
27391         * modules/utimecmp (Depends-on): Likewise.
27392         * modules/xgetcwd (Depends-on): Likewise.
27393         * modules/xnanosleep (Depends-on): Likewise.
27394         * modules/xstrtod (Depends-on): Likewise.
27395         * modules/yesno (Depends-on): Likewise.
27396
27397 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
27398
27399         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
27400         needless checks.
27401
27402 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27403
27404         Merge from coreutils.  Among other things,
27405         add bulletproofing for cases where stdin, stdout, or stderr are closed.
27406         * lib/fd-safer.c: New file.
27407         * lib/fcntl-safer.h, open-safer.c: Remove.
27408         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
27409         * lib/dup-safer.c: Include unistd-safer.h first.
27410         Don't include errno.h.
27411         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
27412         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
27413         * lib/file-type.c: Rely on file-type.h change.
27414         * lib/getloadavg.c: Include unistd-safer.h.
27415         (getloadavg): Use safer open.
27416         * lib/getusershell.c: Include "stdio-safer.h".
27417         (getusershell): Use safer fopen.
27418         * lib/long-options.c (long_options): Use NULL rather than 0.
27419         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
27420         'free'.
27421         * lib/modechange.c: Likewise.
27422         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
27423         (MODE_DONE): New constant.
27424         (struct mode_change): Remove 'next' member.
27425         (make_node_op_equals): New function; like the old one of the
27426         same name, except it allocates an array.
27427         (mode_compile, mode_create_from_ref): Use it.
27428         (mode_compile): Allocate result as an array, not a linked list.
27429         Parse octal string ourself, so that we catch mistakes like "+0".
27430         (mode_adjust): Arg is an array, not a linked list.
27431         * lib/modechange.c: Include stat-macros.h, xalloc.h.
27432         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
27433         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
27434         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
27435         Remove.  This is now stat-macros.h's job.
27436         (talloc): Remove.  All callers replaced by xalloc, so that
27437         our invokers don't have to worry about reporting memory failures.
27438         (make_node_op_equals): Remove.
27439         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
27440         New constants.
27441         (struct mode_change): Moved here from modechange.h.
27442         (mode_append_entry): Remove.
27443         (mode_compile): Remove MASKED_OPS arg, since it encouraged
27444         apps to have incorrect behavior.  Use simpler algorithm for head
27445         and tail.  Don't futz with umask; that's now the job of mode_adjust.
27446         Detect more invalid usages rather than having somewhat-random behavior.
27447         Don't insert an "a=" action, as that leads to incorrect behavior.
27448         (mode_compile, mode_create_from_ref): Return NULL on error instead
27449         of an enum, since now there's only one way to have an error.  All
27450         callers changed.
27451         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
27452         at the correct time.  Simplify calculation of "+u" and its ilk.
27453         Don't mishandle "+X".
27454         (mode_free): Remove "register" and localize decls.
27455         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
27456         (struct mode_change): Move to modechange.c; callers don't
27457         need to see this stuff.
27458         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
27459         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
27460         (mode_change, mode_adjust): Reflect the new signatures noted above.
27461         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
27462         that might redefine system include files.
27463         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
27464         (my_usleep): Use NULL rather than (void *) 0.
27465         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
27466         Use siginterrupt to specify that system calls should be interrupted.
27467         (rpl_nanosleep): Move initialization of suspended closer to call of
27468         my_usleep.
27469         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
27470         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
27471         (desirable_utmp_entry): New function.
27472         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
27473         using x2nrealloc, to simplify logic.
27474         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
27475         size calculation.  Do not assume utmp file is a regular file.
27476         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
27477         (READ_UTMP_CHECK_PIDS): New constant.
27478         * lib/save-cwd.c: Include unistd-safer.h.
27479         (save_cwd): Use fd_safer.
27480         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
27481         [!_LIBC] Include "stat-macros.h" instead.
27482         * lib/unistd-safer.h (fd_safer): New decl.
27483
27484 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27485
27486         * modules/getloadavg (Depends-on): Add unistd-safer.
27487         * modules/getusershell (Depends-on): Add stdio-safer.
27488         * modules/lstat (Depends-on): Remove xalloc.
27489         * modules/mkstemp (Depends-on): Add stat-macros.
27490         * modules/modechange (Depends-on): Remove xstrtol.
27491         Add stat-macros, xalloc.
27492         * modules/save-cwd (Depends-on): Add unistd-safer.
27493         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
27494         * modules/unistd-safer (Files): Add lib/fd-safer.c
27495         (Makefile.am): Remove lib_SOURCES.
27496
27497         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
27498         Remove fcntl-safer; unistd-safer supersedes it.
27499
27500 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27501
27502         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
27503         AC_HEADER_STAT.
27504         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
27505         (gl_PREREQ_CHOWN): Remove.
27506         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
27507         it.  Don't require AC_HEADER_STAT.
27508         (gl_PREREQ_LSTAT): Remove.
27509         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
27510         Don't require AC_HEADER_STAT.
27511         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
27512         (gl_PREREQ_RMDIR): Remove.
27513         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
27514         mention stat-macros.h or AC_HEADER_STAT, since we'll make
27515         the stat-macros module a prerequisite.
27516         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
27517         * m4/filemode.m4 (gl_FILEMODE): Likewise.
27518         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
27519         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
27520         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
27521         variable names.
27522         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
27523         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
27524         variable prefixes.
27525         * m4/fcntl-safer.m4: Remove.
27526         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
27527         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
27528         Invoke gl_PREREQ_FD_SAFER.
27529         (gl_PREREQ_FD_SAFER): New macro.
27530         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
27531         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
27532         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
27533         Remove duplicate call to AC_LIBOBJ(readutmp).
27534         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
27535
27536         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
27537         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
27538
27539 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27540
27541         * MODULES.html.sh (Misc): Add byteswap.
27542
27543 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27544
27545         * modules/getcwd (Depends-on): Add extensions.
27546         * modules/openat (Depends-on): Likewise.
27547
27548 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27549
27550         * modules/byteswap: New file.
27551
27552 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27553
27554         * m4/byteswap.m4: New file.
27555
27556 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27557
27558         * lib/byteswap_.h: New file.
27559
27560 2005-04-25  Karl Berry  <karl@gnu.org>
27561
27562         * m4/gettext.m4: Update from GNU gettext 0.14.4.
27563
27564 2005-04-25  Albert Chin  <china@thewrittenword.com>
27565
27566         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
27567         Toolkit C bug.
27568
27569 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
27570
27571         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
27572         (func_ln_if_changed) Remove forcibly for no error message
27573         in case file does not exist.
27574
27575 2005-04-19  Simon Josefsson  <jas@extundo.com>
27576
27577         * gnulib-tool (Options): Make --symlink mean --symbolic.
27578
27579 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
27580
27581         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
27582
27583 2005-04-16  Simon Josefsson  <jas@extundo.com>
27584
27585         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
27586
27587 2005-04-15  Simon Josefsson  <jas@extundo.com>
27588
27589         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
27590
27591 2005-04-15  Simon Josefsson  <jas@extundo.com>
27592
27593         * gnulib-tool: Rename --symlink to --symbolic.
27594
27595 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
27596
27597         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
27598         symbolic links to files instead of copying/moving.  Add --aux-dir,
27599         specifying directory relative --dir where auxiliary build tools
27600         are placed.
27601
27602 2005-04-14  Bruno Haible  <bruno@clisp.org>
27603
27604         * modules/allocsa (License): Change to LGPL.
27605         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
27606
27607 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
27608
27609         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
27610         that "UTC +1 second" continues to work.  Problem reported
27611         by Dmitry V. Levin.
27612         (relunit_snumber): New rule.
27613         (relunit): Use it.
27614
27615 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
27616
27617         * lib/getdate.y (universal_time_zone_table): New constant.
27618         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
27619         universal_time_zone_table.
27620         (lookup_zone): Prefer universal_time_zone_table to
27621         local_time_zone_table, so that "GMT" time stamps are allowed in
27622         London during the summer.  Problem reported by Ian Abbott.
27623
27624 2005-04-12  Jim Meyering  <jim@meyering.net>
27625
27626         * lib/human.c (humblock): Set *options even when returning due to
27627         xstrtoumax conversion failure.  Thanks to a used-uninitialized
27628         warning from gcc-4.
27629
27630 2005-04-09  Jim Meyering  <jim@meyering.net>
27631
27632         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
27633         -Wuninitialized: initialize tm0.tm_year.
27634
27635 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
27636
27637         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
27638         count, since there's no maximum.  All uses changed.
27639         Add member dsts_seen.
27640         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
27641         not being INT_MAX.
27642         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
27643         Use pc_rels_seen to decide whther a date is absolute.
27644
27645         * lib/getdate.y (number): Don't overwrite year.
27646         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
27647         check.
27648
27649 2005-04-02  Simon Josefsson  <jas@extundo.com>
27650
27651         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
27652         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
27653
27654 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
27655
27656         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
27657         where no absolute path name can be longer than PATH_MAX.
27658
27659 2005-03-27  Jim Meyering  <jim@meyering.net>
27660
27661         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
27662
27663 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
27664
27665         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
27666         "one's complement" -> "ones' complement" in comment, as per Knuth.
27667         "value of type" -> "type or expression" in comment.
27668         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
27669
27670 2005-03-26  Jim Meyering  <jim@meyering.net>
27671
27672         Comment nits.
27673         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
27674         Correct typos: s/or/of/.
27675
27676 2005-03-26  Jim Meyering  <jim@meyering.net>
27677
27678         * modules/check-include-files: Move to ../ and rename to...
27679         * check-module: ...this.
27680
27681 2005-03-25  Jim Meyering  <jim@meyering.net>
27682
27683         * modules/xvasprintf (Files): Add xalloc.h.
27684
27685 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
27686
27687         * modules/gettext (Files): config/config.rpath ->
27688         build-aux/config.rpath
27689         * modules/iconv (Files): Likewise.
27690         Problem reported by Oskar Liljeblad.
27691
27692 2005-03-23  Jim Meyering  <jim@meyering.net>
27693
27694         * modules/check-include-files: New script to check for
27695         missing dependencies, multiple includes, etc.
27696
27697         * modules/c-strtold (Depends-on): Add xalloc.
27698         * modules/c-strtod (Depends-on): Add xalloc.
27699         * modules/hash (Depends-on): Add xalloc.
27700         (Files): Remove lib/xalloc.h.
27701
27702         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
27703         * modules/userspec (Files): Add lib/inttostr.h.
27704
27705 2005-03-23  Jim Meyering  <jim@meyering.net>
27706
27707         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
27708
27709 2005-03-22  Jim Meyering  <jim@meyering.net>
27710
27711         * modules/stat-macros: New module.
27712         * modules/canonicalize, modules/euidaccess, modules/file-type,
27713         * modules/filemode, modules/lchown, modules/makepath,
27714         * modules/rmdir, modules/stat: Depend on new stat-macros module
27715         rather than listing lib/stat-macros.h manually.
27716         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
27717
27718 2005-03-22  Jim Meyering  <jim@meyering.net>
27719
27720         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
27721
27722 2005-03-22  Bruno Haible  <bruno@clisp.org>
27723
27724         * config/srclist.txt: Replace target directory 'config' with
27725         'build-aux'.
27726         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
27727         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
27728         ../build-aux/.
27729
27730 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
27731
27732         * modules/chdir-long (Depends-on): Add mempcpy.
27733
27734         * modules/acl, modules/backupfile, modules/c-strtod,
27735         modules/c-strtold, modules/canon-host, modules/canonicalize,
27736         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
27737         modules/exclude, modules/exitfail, modules/file-type,
27738         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
27739         modules/getdate, modules/getline, modules/getpagesize,
27740         modules/getpass, modules/getugroups, modules/group-member,
27741         modules/hard-locale, modules/hash, modules/human, modules/idcache,
27742         modules/inttostr, modules/long-options, modules/makepath,
27743         modules/md5, modules/memcasecmp, modules/memcoll,
27744         modules/modechange, modules/mountlist, modules/path-concat,
27745         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
27746         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
27747         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
27748         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
27749         modules/strftime, modules/strndup, modules/strverscmp,
27750         modules/timespec, modules/unlocked-io, modules/userspec,
27751         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
27752         modules/yesno:
27753         Remove lib_SOURCES line from Makefile.am section, as this is now
27754         done automatically by the corresponding Autoconf macro.
27755
27756 2005-03-21  Jim Meyering  <jim@meyering.net>
27757
27758         Changes imported from coreutils.
27759
27760         * lib/cycle-check.c: Don't include xalloc.h.
27761
27762         * lib/path-concat.c: Don't include assert.h.
27763         (path_concat): Remove assertion that would have triggered
27764         for ABASE starting with more than one slash.
27765         Reported by Andreas Schwab.
27766
27767         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
27768         properly when ABASE is an absolute file name.
27769         Correct the description of this function.
27770         Include <assert.h>.
27771         Add an assertion and a test driver.
27772         This fixes a bug introduced on 2004-07-02.
27773         Andreas Schwab reported the resulting failure of cp --parents:
27774         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
27775
27776 2005-03-21  Jim Meyering  <jim@meyering.net>
27777
27778         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
27779         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
27780
27781 2005-03-21  Jim Meyering  <jim@meyering.net>
27782         and  Paul Eggert  <eggert@cs.ucla.edu>
27783
27784         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
27785         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
27786         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
27787         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
27788         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
27789         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
27790         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
27791         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
27792         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
27793         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
27794         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
27795         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
27796         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
27797         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
27798         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
27799         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
27800         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
27801         for these modules.
27802
27803 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
27804
27805         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
27806         (which shouldn't happen), generate nothing instead of returning 0
27807         immediately, so that nstrftime (NULL, ...) doesn't return 0.
27808
27809 2005-03-16  Bruno Haible  <bruno@clisp.org>
27810
27811         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
27812         HAVE_LONGLONG_64BIT.
27813
27814 2005-03-16  Bruno Haible  <bruno@clisp.org>
27815
27816         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
27817         HAVE_LONGLONG_64BIT.
27818
27819 2005-03-16  Bruno Haible  <bruno@clisp.org>
27820
27821         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
27822         HAVE_LONGLONG_64BIT.
27823
27824 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
27825
27826         * lib/strftime.c (my_strftime): Prepend space to format so that we can
27827         reliably distinguish strftime failure from empty output on POSIX
27828         hosts.
27829
27830 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
27831
27832         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
27833         (iconv_string): Don't guess a size-zero buffer, as that might cause
27834         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
27835         result would be 'too large', where 'too large' is (heuristically)
27836         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
27837         overflow concerns.  This will prevent some unwanted malloc failures
27838         when the inputs are very large.
27839
27840 2005-03-15  Karl Berry  <karl@gnu.org>
27841
27842         * config/srclist.txt (config.rpath): from gettext.
27843         * config/config.rpath: update.
27844
27845 2005-03-15  Bruno Haible  <bruno@clisp.org>
27846
27847         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
27848         to 'negate'.
27849
27850         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
27851         variable.
27852
27853         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
27854         results.
27855
27856 2005-03-14  Simon Josefsson  <jas@extundo.com>
27857
27858         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
27859         <fx@gnu.org>.
27860
27861 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
27862
27863         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
27864         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
27865         intprops.h.
27866         * lib/strtol.c: Likewise.
27867
27868 2005-03-14  Jim Meyering  <jim@meyering.net>
27869
27870         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
27871         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
27872         to be nonzero so that we (and caller) can detect the difference
27873         between a valid zero-length expansion and an error return, even
27874         when the underlying strftime fails before writing anything into
27875         that location.
27876
27877 2005-03-14  Bruno Haible  <bruno@clisp.org>
27878
27879         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
27880         Update from GNU gettext 0.14.3.
27881
27882 2005-03-10  Jim Meyering  <jim@meyering.net>
27883
27884         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
27885
27886 2005-03-10  Jim Meyering  <jim@meyering.net>
27887
27888         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
27889         so that this module works on systems without fchdir.
27890
27891 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
27892
27893         Factor int-properties macros into a single file, except for
27894         glibc-related files.
27895         * lib/intprops.h: New file.
27896         * lib/getloadavg.c: Include it instead of limits.h.
27897         (INT_STRLEN_BOUND): Remove.
27898         * lib/human.c: Include intprops.h.
27899         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
27900         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
27901         302/1000.
27902         * lib/inttostr.h: Include intprops.h instead of limits.h.
27903         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
27904         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
27905         for consistency with intprops.h.
27906         (time_t_is_integer, twos_complement_arithmetic): Use them.
27907         * lib/sig2str.h: Include <signal.h>, intprops.h.
27908         (INT_STRLEN_BOUND): Remove.
27909         * lib/strftime.c (TYPE_SIGNED): Remove.
27910         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
27911         * lib/strtol.c: Adjust comments to match intprops.h.
27912         * lib/userspec.c: Include intprops.h.
27913         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
27914         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
27915         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
27916         instead of rolling our own expressions.
27917         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
27918
27919         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
27920         instead of int.
27921         (my_strftime): Do not mishandle years close to INT_MAX, by doing
27922         the right thing even if adding 1900 would overflow.  Similarly
27923         for tm_mon + 1 and tm_yday + 1.
27924         Make %Y always equivalent to %C%y, and similarly for %G and %g.
27925         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
27926         (DO_SIGNED_NUMBER): New macro.
27927         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
27928
27929 2005-03-07  Bruno Haible  <bruno@clisp.org>
27930
27931         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
27932
27933 2005-03-07  Bruno Haible  <bruno@clisp.org>
27934
27935         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
27936
27937 2005-03-04  Derek R. Price  <derek@ximbiot.com>
27938
27939         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
27940         (func_import): Only replace files via --import when they have actually
27941         changed.
27942
27943 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27944
27945         * m4/mmap-anon.m4: New file.
27946         * m4/pagealign_alloc.m4: New file.
27947
27948 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27949             Bruno Haible  <bruno@clisp.org>
27950
27951         * modules/pagealign_alloc: New file.
27952         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
27953
27954 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27955             Bruno Haible  <bruno@clisp.org>
27956
27957         * lib/pagealign_alloc.h: New file.
27958         * lib/pagealign_alloc.c: New file.
27959
27960 2005-03-03  Bruno Haible  <bruno@clisp.org>
27961
27962         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
27963         Use an all-permissive copyright notice, recommended by RMS.
27964
27965 2005-03-02  Bruno Haible  <bruno@clisp.org>
27966
27967         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
27968         of AIX, the replacement has to be done only after <string.h> is
27969         included, therefore not in config.h. stpncpy.h does the replacement,
27970         and stpncpy.c uses it.
27971
27972 2005-03-02  Bruno Haible  <bruno@clisp.org>
27973
27974         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
27975         stpncpy.c uses it.
27976
27977 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27978
27979         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
27980         The workaround isn't strictly needed for POSIX conformance, and
27981         it's too much of a pain to configure and maintain.  We'll ask
27982         people to fix their kernels instead.
27983         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
27984         (NANOSLEEP_BUG_WORKAROUND): Remove.
27985         (xnanosleep): Remove the workaround.
27986
27987 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27988
27989         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
27990         Reported by Derek Price.
27991         (Include): Add "timespec.h".
27992
27993         * modules/xnanosleep (Depends-on): Remove gethrxtime.
27994
27995 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27996
27997         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
27998         to detect nanosleep bug.
27999
28000 2005-03-01  Bruno Haible  <bruno@clisp.org>
28001
28002         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
28003
28004 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
28005
28006         * modules/gethrxtime: New file.
28007         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
28008         (Depends-on): Add gethrxtime.
28009         (configure.ac): Add gl_XNANOSLEEP.
28010         (Makefile.am): Remove lib_SOURCES line.
28011
28012 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
28013
28014         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
28015         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
28016
28017 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
28018
28019         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
28020         * lib/timespec.h (gettime): Return void, since it always
28021         succeeds now.  All uses changed.
28022         * lib/gettime.c (gettime) Likewise.
28023         [HAVE_NANOTIME]: Prefer nanotime.
28024         Assume gettimeofday succeeds, as POSIX requires.
28025         Assime time () succeeds, since other code already does.
28026         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
28027         (timespec_subtract): Remove.
28028         (NANOSLEEP_BUG_WORKAROUND): New constant.
28029         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
28030         things considerably.  Use it only on GNU/Linux hosts, since the
28031         workaround shouldn't be needed elsewhere.
28032
28033 2005-02-24  Bruno Haible  <bruno@clisp.org>
28034
28035         * modules/gettext (Files): Add m4/glibc2.m4.
28036
28037 2005-02-24  Bruno Haible  <bruno@clisp.org>
28038
28039         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
28040         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
28041         * m4/progtest.m4:
28042         Update from GNU gettext 0.14.2.
28043         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
28044
28045 2005-02-24  Bruno Haible  <bruno@clisp.org>
28046
28047         * lib/localcharset.c: Update from GNU gettext 0.14.2.
28048         * lib/config.charset: Update from GNU gettext 0.14.2.
28049
28050 2005-02-24  Bruno Haible  <bruno@clisp.org>
28051
28052         * lib/gettext.h: Update from GNU gettext 0.14.2.
28053
28054 2005-02-23  Simon Josefsson  <jas@extundo.com>
28055
28056         * m4/iconvme.m4: New file.
28057
28058 2005-02-23  Jim Meyering  <jim@meyering.net>
28059
28060         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
28061         change.
28062         Thanks to Bruno Haible for catching it.
28063
28064 2005-02-22  Simon Josefsson  <jas@extundo.com>
28065
28066         * modules/iconvme: New file.
28067
28068         * MODULES.html.sh: Add iconvme.
28069
28070 2005-02-22  Simon Josefsson  <jas@extundo.com>
28071
28072         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
28073
28074 2005-02-22  Simon Josefsson  <jas@extundo.com>
28075
28076         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
28077
28078 2005-02-22  Jim Meyering  <jim@meyering.net>
28079
28080         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
28081         s/ifndef/ifdef/.
28082
28083 2005-02-20  Neil Conway  <neilc@samurai.com>
28084
28085         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
28086         returned by OSX/Darwin if the specified buffer is not large
28087         enough for the hostname.
28088
28089 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28090
28091         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
28092         pass it to _help, otherwise the latter coredumps trying to
28093         dereference state.root_argp.
28094
28095 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28096
28097         * modules/chdir-long (Depends-on): Add memrchr.
28098         * modules/memrchr (Files): Add lib/memrchr.h.
28099         (Include): "memrchr.h".
28100
28101 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28102
28103         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
28104
28105 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28106
28107         * lib/memrchr.h: New file.
28108         * lib/chdir-long.c: Include it.
28109         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
28110         Don't bother including stddef.h.
28111
28112 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
28113
28114         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
28115         inclusion.
28116         Include <sys/types.h>, for dev_t.
28117         (ME_DUMMY, ME_REMOTE): Move from here....
28118         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
28119         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
28120         Dmitry V. Levin.
28121         Include mountlist.h first, to test the interface.
28122
28123 2005-01-29  Bruno Haible  <bruno@clisp.org>
28124
28125         * lib/progname.c (program_name): Initialize.
28126         Needed when linking statically on MacOS X.
28127
28128 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
28129
28130         Sync from coreutils.
28131         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
28132         (Depends-on): Add c-strtod.
28133         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
28134
28135 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
28136
28137         Sync from coreutils.
28138         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
28139
28140         Remove files that are specific to coreutils.
28141         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
28142
28143 2005-01-28  Bruno Haible  <bruno@clisp.org>
28144
28145         * modules/javacomp: New file.
28146         * MODULES.html.sh (Java): Add javacomp.
28147
28148 2005-01-28  Bruno Haible  <bruno@clisp.org>
28149
28150         * m4/javacomp.m4: New file, from GNU gettext.
28151
28152 2005-01-28  Bruno Haible  <bruno@clisp.org>
28153
28154         * lib/javacomp.sh.in: New file, from GNU gettext.
28155         * lib/javacomp.h: New file, from GNU gettext.
28156         * lib/javacomp.c: New file, from GNU gettext.
28157
28158 2005-01-26  Simon Josefsson  <jas@extundo.com>
28159
28160         * lib/gai_strerror.c: Use GPL in header.
28161
28162 2005-01-26  Bruno Haible  <bruno@clisp.org>
28163
28164         * modules/javaexec: New file.
28165         * MODULES.html.sh (Java): Add javaexec.
28166
28167 2005-01-26  Bruno Haible  <bruno@clisp.org>
28168
28169         * m4/javaexec.m4: New file, from GNU gettext.
28170
28171 2005-01-26  Bruno Haible  <bruno@clisp.org>
28172
28173         * lib/javaexec.sh.in: New file, from GNU gettext.
28174         * lib/javaexec.h: New file, from GNU gettext.
28175         * lib/javaexec.c: New file, from GNU gettext.
28176
28177 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28178
28179         * modules/lchown (Depends-on): Remove lchown.h
28180
28181 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28182
28183         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
28184         must be defined if the header file was not found, in order
28185         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
28186
28187 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28188
28189         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
28190         initializers for struct pentry_state.
28191         (__argp_error): Check return value of __asprintf
28192         (__argp_failure): Translate error message
28193
28194         * lib/argp-parse.c: Removed braces around the expansion of N_()
28195
28196 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
28197
28198         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
28199         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
28200         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
28201         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
28202         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
28203         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
28204         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
28205         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
28206         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
28207         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
28208         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
28209         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
28210         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
28211         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
28212         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
28213         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
28214         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
28215         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
28216         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
28217         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
28218         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
28219         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
28220         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
28221         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
28222         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
28223         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
28224         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
28225         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
28226         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
28227         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
28228         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
28229         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
28230         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
28231         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
28232         xstrtol.m4, xstrtoumax.m4, yesno.m4:
28233         Use an all-permissive copyright notice, recommended by RMS.
28234
28235 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
28236
28237         * modules/chdir-long (Depends-on): Remove mempcpy.
28238
28239 2005-01-21  Jim Meyering  <jim@meyering.net>
28240
28241         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
28242         same value as for Solaris 9.
28243
28244         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
28245         component length.  This included changing the parameter to be
28246         of type `char *' rather than `char const *'.
28247         * lib/chdir-long.h (chdir_long): Update prototype.
28248
28249         * lib/openat.c (fdopendir, fstatat): New functions.
28250         * lib/openat.h: Include headers required for use of DIR and struct
28251         stat.
28252         [AT_SYMLINK_NOFOLLOW]: Define.
28253         (fdopendir, fstatat): Add prototypes.
28254
28255 2005-01-21  Bruno Haible  <bruno@clisp.org>
28256
28257         * modules/classpath: New file.
28258         * MODULES.html.sh (Java): Add classpath.
28259
28260 2005-01-21  Bruno Haible  <bruno@clisp.org>
28261
28262         * lib/classpath.h: New file, from GNU gettext.
28263         * lib/classpath.c: New file, from GNU gettext.
28264
28265 2005-01-20  Simon Josefsson  <jas@extundo.com>
28266
28267         * modules/version-etc-fsf: New file.
28268
28269 2005-01-20  Simon Josefsson  <jas@extundo.com>
28270
28271         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
28272         * lib/version-etc.c: Remove version_etc_copyright.
28273         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
28274         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
28275
28276 2005-01-20  Simon Josefsson  <jas@extundo.com>
28277
28278         * lib/base64.h (isbase64): Add.
28279
28280         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
28281         using a unsigned prototype, don't inline.
28282         (base64_decode): Use it.
28283
28284 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28285
28286         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
28287         it.
28288
28289 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28290
28291         * lib/save-cwd.c (save_cwd): Remove code to support the case
28292         where fchdir is missing or flaky.
28293
28294 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28295
28296         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
28297
28298 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
28299
28300         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
28301         AC_LIBSOURCES now does this.
28302         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
28303         with new ullong_max module.
28304
28305 2005-01-19  Bruno Haible  <bruno@clisp.org>
28306
28307         * modules/sh-quote: New file.
28308         * MODULES.html.sh (Executing programs): Add sh-quote.
28309
28310 2005-01-19  Bruno Haible  <bruno@clisp.org>
28311
28312         * lib/sh-quote.h: New file, from GNU gettext.
28313         * lib/sh-quote.c: New file, from GNU gettext.
28314
28315 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28316
28317         Merge from coreutils.
28318         * m4/ullong_max.m4: New file.
28319         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
28320         (gl_MACROS): Assume localeconv exists.
28321
28322 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28323
28324         Merge changes from coreutils, as described below in several
28325         changelogs dated today.
28326
28327         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
28328         (O_DIRECTORY): Remove; not needed here, since "." must be
28329         a directory.  All uses removed.
28330         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
28331         universal on Suns, and we also need to test for IRIX.
28332         Revamp code to use 'if' rather than '#if'.
28333         Avoid unnecessary comparison of cwd->desc to 0.
28334
28335         * lib/utimens.c (futimens): Robustify the previous patch, by checking
28336         for known valid error numbers rather than observed invalid ones.
28337
28338 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28339
28340         * modules/ullong_max: New file.
28341
28342         * modules/chdir-long, modules/openat: New files.
28343         * modules/save-cwd (Depends-on): Depend on chdir-long.
28344         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
28345
28346 2005-01-18  Jim Meyering  <jim@meyering.net>
28347
28348         Merge from coreutils.
28349         * m4/chdir-long.m4, m4/openat.m4: New files.
28350         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
28351         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
28352         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
28353         is sane and DOES follow symlinks.  Besides, testing 20 different
28354         systems found no broken chown implementations.
28355         Prompted by a change in rsync's copy of this macro.
28356         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
28357
28358         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
28359
28360         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
28361         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
28362         NULL-means-set-to-current-time semantics.
28363         Remove temporary file immediately, rather than waiting
28364         for configure's at-exit trap code to do it.
28365
28366 2005-01-18  Jim Meyering  <jim@meyering.net>
28367
28368         * lib/version-etc.c (version_etc_copyright): Update copyright date.
28369
28370         * lib/utimens.c (futimens): Account for the fact that futimes
28371         can also fail with errno == ENOSYS or errno == ENOENT.
28372         Patch from Dmitry V. Levin.
28373
28374         Change the name of the robust chdir function from chdir to chdir_long.
28375         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
28376         (restore_cwd): Use chdir_long, not chdir.
28377         * lib/chdir-long.c: Renamed from chdir.c.
28378         * lib/chdir-long.h: Renamed from chdir.h.
28379         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
28380         Hurd.
28381
28382 2005-01-18  Bruno Haible  <bruno@clisp.org>
28383
28384         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
28385         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
28386         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
28387         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
28388         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
28389         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
28390         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
28391         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
28392         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
28393         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
28394         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
28395         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
28396         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
28397         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
28398         Use an all-permissive copyright notice, recommended by RMS.
28399
28400 2005-01-18  Bob Proulx  <bob@proulx.com>
28401
28402         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
28403         simplify offsetof() macro construct to avoid compile failure with
28404         native HP-UX 11.0 ANSI C compiler.
28405
28406 2005-01-17  Bruno Haible  <bruno@clisp.org>
28407
28408         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
28409         redundant because stpncpy.m4 takes care of it.
28410
28411 2005-01-17  Bruno Haible  <bruno@clisp.org>
28412
28413         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
28414
28415 2005-01-17  Bruno Haible  <bruno@clisp.org>
28416
28417         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
28418         used.
28419
28420 2005-01-17  Bruno Haible  <bruno@clisp.org>
28421
28422         * lib/fwriteerror.h (fwriteerror): Change specification to include
28423         fclose.
28424         * lib/fwriteerror.c: Include <stdbool.h>.
28425         (fwriteerror): At the end, close the file stream. Record whether
28426         stdout was already closed.
28427
28428 2005-01-17  Bruno Haible  <bruno@clisp.org>
28429
28430         * lib/execute.c (environ): Declare if needed.
28431         * lib/pipe.c (environ): Likewise.
28432         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
28433
28434 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28435
28436         * modules/argp: Depend on vsnprintf
28437
28438 2005-01-10  Jim Meyering  <jim@meyering.net>
28439
28440         * modules/closeout (Depends-on): Add atexit.
28441
28442 2005-01-06  Bruno Haible  <bruno@clisp.org>
28443
28444         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
28445
28446 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
28447
28448         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
28449         definitions to be after all include files, to avoid collisions.
28450         Problem reported by Bob Proulx.
28451
28452 2005-01-04  Jim Meyering  <jim@meyering.net>
28453
28454         Changes imported from coreutils.
28455         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
28456         as the mkstemp template, use a temporary directory and an
28457         8.3-friendly template to avoid trouble on systems like DJGPP.
28458         Reported by Juan M. Guerrero via Stepan Kasal.
28459         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
28460         close. Remove the temporary directory right away, rather than waiting
28461         for configure's at-exit trap code to do it.
28462         Suggestion from Stepan Kasal.
28463
28464 2005-01-01  Simon Josefsson  <jas@extundo.com>
28465
28466         * gnulib-tool: Print #include directives when --import'ing.
28467
28468 2004-12-28  Simon Josefsson  <jas@extundo.com>
28469
28470         * tests/test-base64.c: Include required header files.  Remove
28471         unused variables.
28472
28473 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
28474
28475         * modules/error (Depends-on): Remove gettext.
28476
28477 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
28478
28479         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
28480         not needed.  This removes a dependency on the gettext module.
28481         [defined _LIBC]: Do not include <libintl.h>; not needed.
28482
28483 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
28484
28485         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
28486         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
28487
28488 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
28489
28490         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
28491         HAVE_DECL_STRTOLD.
28492
28493 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28494
28495         * modules/getdate (Depends-on): Remove alloca-opt.
28496
28497 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28498
28499         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
28500
28501 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28502
28503         * lib/argp-parse.c: Include <stddef.h>.
28504         (alignof, alignto): New macros.
28505         (parser_init): Don't assume that void * is aligned sufficiently
28506         for struct option.
28507
28508         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
28509         need to extend the stack.
28510         (YYINITDEPTH): New macro, so that the initial stack isn't overly
28511         large.
28512
28513 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28514
28515         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
28516
28517 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
28518
28519         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
28520         (2004-10-24) change.  Apparently this was a false alarm.
28521
28522         * modules/getdate: Depend on alloca-opt, not alloca.
28523
28524 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
28525
28526         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
28527         Remove now-obsolete comment about AIX.
28528         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
28529         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
28530         (YYMAXDEPTH): New macro.
28531
28532 2004-12-18  Simon Josefsson  <jas@extundo.com>
28533
28534         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
28535
28536 2004-12-18  Bruno Haible  <bruno@clisp.org>
28537
28538         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
28539
28540 2004-12-18  Bruno Haible  <bruno@clisp.org>
28541
28542         * lib/fatal-signal.c (fatal_signals): Make non-const.
28543         (init_fatal_signals): New function.
28544         (uninstall_handlers, install_handlers): Ignore signals that were set to
28545         SIG_IGN.
28546         (at_fatal_signal): Call init_fatal_signals.
28547         (init_fatal_signal_set): Likewise. Ignore signals that were set to
28548         SIG_IGN.
28549         Reported by Paul Eggert.
28550
28551 2004-12-18  Bruno Haible  <bruno@clisp.org>
28552
28553         * doc/alloca.texi: New file.
28554         * doc/alloca-opt.texi: New file.
28555
28556 2004-12-17  Jim Meyering  <jim@meyering.net>
28557
28558         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
28559         Otherwise, install-sh could exit with improper exit status when
28560         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
28561
28562 2004-12-16  Simon Josefsson  <jas@extundo.com>
28563
28564         * tests/test-base64.c: Add license.
28565
28566 2004-12-15  Stepan Kasal  <address@hidden>
28567
28568         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
28569
28570 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
28571
28572         * modules/getcwd (Files): Add m4/d-ino.m4.
28573         Suggested by Mark D. Baushke.
28574
28575 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
28576
28577         * lib/getdate.y (textint): New member "negative".
28578         (time_zone_hhmm): New function.
28579         Expect 14 shift-reduce conflicts, not 13.
28580         (o_colon_minutes): New rule.
28581         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
28582         (yylex): Set the "negative" member of signed numbers.
28583
28584 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
28585
28586         * doc/getdate.texi (Time of day items, Time zone items):
28587         Describe new formats +00:00, UTC+00:00.
28588
28589 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
28590
28591         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
28592         spurious "-l"s.  Problem reported by Stepan Kasal.
28593
28594 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
28595
28596         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
28597         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
28598
28599 2004-12-04  Simon Josefsson  <jas@extundo.com>
28600
28601         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
28602         Vandoorselaere <yoann@prelude-ids.org>.
28603
28604 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28605
28606         Changes imported from coreutils.
28607         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
28608         exist.
28609         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
28610
28611 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28612
28613         Changes imported from coreutils.
28614         * lib/hard-locale.c: Assume <locale.h> exists.
28615         Include "strdup.h".
28616         (GLIBC_VERSION): New macro.
28617         (hard_locale): Assume setlocale exists.
28618         Rewrite to avoid #ifdef.
28619         Use strdup rather than malloc + strcpy.
28620         * lib/human.c: Assume <locale.h> exists.
28621         (human_readable): Assume localeconv exists.
28622
28623 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28624
28625         * modules/hard-locale (Depends-on): Add strdup.
28626
28627 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
28628
28629         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
28630         convert T2, not T.  (Imported from libc.)
28631
28632 2004-11-30  Simon Josefsson  <jas@extundo.com>
28633
28634         * modules/restrict (License): Change to LGPL.
28635
28636 2004-11-30  Simon Josefsson  <jas@extundo.com>
28637
28638         * m4/restrict.m4: Add copyright and copying conditions.
28639
28640 2004-11-30  Simon Josefsson  <jas@extundo.com>
28641
28642         * m4/base64.m4: New file.
28643
28644 2004-11-30  Simon Josefsson  <jas@extundo.com>
28645
28646         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
28647         base64.
28648
28649         * tests/test-base64.c: New file.
28650
28651         * modules/base64: New file.
28652
28653 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
28654
28655         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
28656         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
28657
28658         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
28659
28660 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
28661
28662         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
28663         (__getcwd.c): Don't restore errno; glibc doesn't.
28664         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
28665         first, falling back to our code only if its results look suspicious.
28666         Ensure that the resulting buffer is only as large as necessary.
28667
28668         * lib/readutmp.c: Include readutmp.h first.
28669         Include <errno.h>, since readutmp.h no longer does that.
28670         * lib/readutmp.h: Don't include <errno.h>,
28671         <sys/param.h>, <time.h>; not needed to establish interface.
28672         (errno): Remove decl.
28673         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
28674         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
28675         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
28676
28677 2004-11-28  Simon Josefsson  <jas@extundo.com>
28678
28679         * lib/base64.h, base64.c: New file.
28680
28681 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
28682
28683         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
28684
28685 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
28686
28687         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
28688         (Depends-on): Remove pathmax, same.  Add mempcpy.
28689         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
28690         (Makefile.am): Append getcwd.h to lib_SOURCES.
28691         (Include): Add getcwd.h.
28692         (Maintainer): Change from Jim Meyering to "all, glibc",
28693         since getdate now uses intended-for-glibc code.
28694         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
28695         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
28696
28697 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
28698
28699         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
28700         HP's ANSI C compiler.
28701         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
28702         Declaring int functions causes warnings on some modern systems and
28703         shouldn't be needed to compile on ancient ones.
28704         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
28705         defined.
28706
28707         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
28708         with the following changes.
28709         (__set_errno): Parenthesize properly.
28710         Include <stdbool.h>.
28711         (MIN, MAX, MATCHING_INO): New macros.
28712         (__getcwd): Define with prototype, not K&R form.
28713         Use heuristics to allocate default buffer on stack if possible.
28714         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
28715         behavior, and to avoid the PATH_MAX limit when computing
28716         ../../../../...
28717         Use MATCHING_INO to compare inode number to file.
28718         Check for arithmetic overflow in size calculations.
28719         Fix bug in reallocation of dot array that caused getcwd to fail
28720         on directories nested deeper than 75.
28721         Be more careful about saving errno on error.
28722         Do not use realloc; use only free+malloc, as this is a bit
28723         more flexible and avoids a needless copy operation.
28724         Do not inspect st_dev and st_ino for symbolic links; POSIX
28725         doesn't specify the latter.
28726         Check for closedir errors.
28727         Avoid needless casts.
28728         Use "#ifdef weak_alias" around weak_alias, to be like other
28729         glibc code.
28730         The following changes to getcwd.c have effect only when used in
28731         gnulib; they have no effect inside glibc proper.
28732         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
28733         as alloca isn't used.
28734         (alloca, __alloca): Likewise.
28735         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
28736         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
28737         unconditionally, as gnulib assumes C89 or better.
28738         Do not include <sys/param.h>.
28739         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
28740         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
28741         better.
28742         (NULL) [!defined NULL]: Remove; we assume C89 or better.
28743         Include <dirent.h> in a way that is compatible with modern Autoconf.
28744         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
28745         New macros, if not already defined.
28746         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
28747         Use "_LIBC", not "defined _LIBC", for consistency.
28748         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
28749         a mempcpy module.
28750         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
28751         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
28752         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
28753         credit only to Jim Meyering and adjust the copyright dates.
28754         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
28755         <stdlib.h>, <unistd.h>, "pathmax.h".
28756         Instead, include "xgetcwd.h" (first) and "getcwd.h".
28757         (INITIAL_BUFFER_SIZE): Remove.
28758         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
28759
28760 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
28761
28762         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
28763         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
28764         Use the _ONCE methods, for efficiency.
28765         Check for fcntl.h.  In test program, include <errno.h>
28766         and <fcntl.h> if available.  Remove old K&R cruft from
28767         test program.  Check for common errors in GNU/Linux,
28768         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
28769         don't do AC_LIBOBJ, as that's getcwd.m4's job.
28770         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
28771         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
28772         name accordingly.
28773         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
28774         accommodate new getcwd.c.
28775         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
28776         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
28777         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
28778         that's all we need now.
28779
28780 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28781
28782         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
28783         argp-parse.c depends on getopt internals, that means we should
28784         always use our getopt, to be on the safe side.
28785         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
28786         order not to spoil the result of an eventual previous invocation
28787         of gl_GETOPT_SUBSTITUTE.
28788
28789 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28790
28791         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
28792         redefinition warnings. To avoid them, include the defines
28793         in `#if !defined __need_getopt ... #endif'. The only place
28794         where __getopt_argv_const is used is in definitions
28795         of getopt_long and getopt_long_only below, which are as well
28796         protected by `#ifndef __need_getopt'.
28797         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
28798         __need_getopt after including <stdio.h> and <unistd.h> These
28799         headers might have defined it.
28800
28801 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
28802
28803         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
28804
28805 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
28806
28807         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
28808         (futimens): New function, which uses futimes if available.
28809         (futimens, utimens): Support timespec==NULL, with same semantics
28810         as utime and utimens.
28811         * lib/utimens.h (futimens): New decl.
28812
28813 2004-11-23  Jim Meyering  <jim@meyering.net>
28814
28815         * lib/getopt_.h: Remove trailing blanks.
28816
28817 2004-11-23  Jim Meyering  <jim@meyering.net>
28818
28819         * lib/__fpending.c: Add comment.
28820
28821 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
28822
28823         * modules/canonicalize (Depends-on): Add xreadlink.
28824         Problem reported by James Youngman.
28825
28826 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28827
28828         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
28829         New macros.
28830         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
28831         optopt): Use them instead of invoking ## directly; otherwise, the
28832         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
28833
28834 2004-11-19  Bruno Haible  <bruno@clisp.org>
28835
28836         * lib/strtok_r.c: Move comments from here...
28837         * lib/strtok_r.h: ... to here.
28838
28839 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28840
28841         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
28842         implementations that mishandle size_t overflow.
28843
28844 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28845
28846         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
28847         might fail.  Problem reported by Yoann Vandoorselaere.
28848         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
28849         implementations that mishandle size_t overflow.
28850
28851 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28852
28853         * modules/canon-host (Depends-on): Add strdup.
28854
28855 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28856
28857         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
28858
28859 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28860
28861         * lib/canon-host.c: Include "strdup.h".
28862         (canon_host): Use getaddrinfo if available, so that IPv6 works.
28863         Use strdup instead of malloc/strcpy to duplicate strings.
28864
28865         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
28866         (human_space_before_unit): New constant.
28867         * lib/human.c (human_readable): Support it.
28868
28869         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
28870         (xgetcwd): Set errno correctly when failing.
28871         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
28872         the failure is actually due to a PATH_MAX problem.
28873
28874         Further getopt changes to make it more likely that glibc will
28875         buy the changes back.
28876         * lib/getopt.c (POSIXLY_CORRECT): New constant.
28877         (getopt): Use it, so to preserve glibc semantic
28878         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
28879         when compiling for libc.
28880         * lib/getopt_.h (__getopt_argv_const): Bring it back.
28881         (getopt_long, getopt_long_only): Use it.
28882
28883         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
28884         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
28885         (getopt): Argv is now char * const *, as per standard.
28886         (_getopt_internal_r, _getopt_internal): Argv is now char **,
28887         not char *__getopt_argv_const *.
28888         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
28889         _getopt_long_only_r): Likewise.
28890         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
28891         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
28892         _getopt_long_r, _getopt_long_only_r): Likewise.
28893         * lib/getopt_.h (__getopt_argv_const): Remove.
28894         (getopt): Argv is now char * const *, as per standard.
28895
28896         * lib/getdate.y (tORDINAL): New token.
28897         (day, relunit): Allow it for relative times.
28898         (relative_time_table): Use tORDINAL for ordinals.
28899
28900 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28901
28902         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
28903         Document that "second" isn't allowed as an ordinal number.
28904
28905 2004-11-16  Jim Meyering  <jim@meyering.net>
28906
28907         * modules/closeout (Depends-on): Add fpending.
28908
28909 2004-11-15  Jim Meyering  <jim@meyering.net>
28910
28911         * lib/closeout.c: Include "__fpending.h" once again.
28912         Include <stdbool.h>.
28913         (close_stdout): Don't fail just because stdout was closed initially,
28914         since some programs don't write to stdout in the normal course of
28915         operation (other than --version and --help), and we don't want this
28916         function to make e.g. `touch file >&-' fail.
28917         But do fail if it was closed and someone has tried to write to it.
28918         E.g., `printf foo >&-' must fail.
28919
28920 2004-11-13  Jim Meyering  <jim@meyering.net>
28921
28922         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
28923
28924 2004-11-12  Simon Josefsson  <jas@extundo.com>
28925
28926         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
28927         small doc fix is still pending.
28928
28929 2004-11-11  Simon Josefsson  <jas@extundo.com>
28930
28931         * modules/strtok_r: New file.
28932
28933         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28934         strtok_r.
28935
28936 2004-11-11  Simon Josefsson  <jas@extundo.com>
28937
28938         * m4/strtok_r.m4: New file.
28939
28940         * m4/getopt.m4: Replace opterr.
28941
28942 2004-11-11  Simon Josefsson  <jas@extundo.com>
28943
28944         * lib/strtok_r.h, strtok_r.c: New file.
28945
28946 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
28947
28948         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
28949         of replacing opterr, getopt, etc.  This should handle the
28950         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
28951
28952 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
28953
28954         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
28955         we can stop lying to compilers about the constness of argv when we
28956         are compiled outside glibc.
28957         (getopt, getopt_long, getopt_long_only): Use it.
28958         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
28959         _getopt_internal, getopt): Likewise.
28960         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
28961         _getopt_long_only_r): Likewise.
28962         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
28963         _getopt_long_r, _getopt_long_only_r): Likewise.
28964
28965         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
28966         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
28967         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
28968         the other external symbols.
28969         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
28970         declaration, since the above renaming now works around collisions.
28971
28972 2004-11-11  Jim Meyering  <jim@meyering.net>
28973
28974         * lib/linebreak.c: Remove trailing blanks.
28975         * lib/alloca_.h: Likewise.
28976         * lib/acosl.c: Likewise.
28977         * lib/euidaccess.c: Likewise.
28978         * lib/allocsa.h: Likewise.
28979
28980 2004-11-10  Simon Josefsson  <jas@extundo.com>
28981
28982         * m4/getaddrinfo.m4: New file.
28983
28984 2004-11-10  Simon Josefsson  <jas@extundo.com>
28985
28986         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
28987
28988 2004-11-10  Simon Josefsson  <jas@extundo.com>
28989
28990         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28991         getaddrinfo.
28992
28993         * modules/getaddrinfo: New file.
28994
28995 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
28996
28997         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
28998
28999 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
29000
29001         * lib/mktime.c (SHR): New macro, which is a portable
29002         substitute for >> that should work even on Crays.
29003         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
29004         Problem reported by Mark D. Baushke in
29005         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
29006         * lib/getdate.y (SHR): Likewise.
29007         (tm_diff): Use it.
29008         * lib/strftime.c (SHR): Likewise.
29009         (tm_diff): Use it.
29010         * lib/quotearg.c (struct quoting_options): Use unsigned int for
29011         quote_these_too, so that right shifts are well defined.  All uses
29012         changed.
29013
29014 2004-11-10  Jim Meyering  <jim@meyering.net>
29015
29016         Ensure that no close failure goes unreported.
29017         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
29018         return early when it seems there's nothing to flush.
29019         Don't include __fpending.h.
29020
29021 2004-11-10  Jim Meyering  <jim@meyering.net>
29022
29023         * modules/closeout (Depends-on): Remove fpending.
29024
29025 2004-11-10  Jim Meyering  <jim@meyering.net>
29026
29027         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
29028
29029 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
29030
29031         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
29032         gl_FUNC_STRFTIME.
29033         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
29034         and AC_REQUIRE when possible, to avoid duplicate checks.
29035         Check for <wchar.h>.
29036
29037 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
29038
29039         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
29040
29041 2004-11-09  Bruno Haible  <bruno@clisp.org>
29042
29043         * m4/sockpfaf.m4: New file.
29044
29045 2004-11-05  Bruno Haible  <bruno@clisp.org>
29046
29047         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
29048         Reported by Mark D. Baushke <mdb@cvshome.org>.
29049
29050 2004-11-04  Bruno Haible  <bruno@clisp.org>
29051
29052         2004-09-11  Bruno Haible  <bruno@clisp.org>
29053                 * allocsa.valgrind: New file.
29054         2004-02-06  Bruno Haible  <bruno@clisp.org>
29055                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
29056                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
29057                 Reported by Christopher Seip <chris.seip@hp.com>.
29058
29059 2004-11-04  Bruno Haible  <bruno@clisp.org>
29060
29061         * modules/allocsa (Files): Add lib/allocsa.valgrind.
29062         (Makefile.am): Distribute it.
29063
29064 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
29065
29066         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
29067         with errno == ERANGE if the buffer is too small.
29068         Problem reported by Mark D. Baushke.
29069
29070 2004-11-03  Albert Chin  <china@thewrittenword.com>
29071             Paul Eggert  <eggert@cs.ucla.edu>
29072
29073         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
29074         equivalent, substitute $ac_type for equivalent type rather than
29075         blindly using uint32_t *always* which won't work if uint32_t is not
29076         available.  Define _UINT32_T to work around typedef of uint32_t if
29077         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
29078         2.5.1.
29079
29080 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29081
29082         * m4/jm-macros.m4: Sync from coreutils.
29083         (gl_MACROS): Check for mbrlen, for pathchk.
29084         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
29085
29086 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29087
29088         * lib/xreadlink.c (MAXSIZE): New macro.
29089         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
29090         size does not exceed MAXSIZE.  Avoid cast.
29091         As suggested by Mark D. Baushke in
29092         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
29093         if readlink fails with buffer size just under MAXSIZE, try again
29094         with MAXSIZE.
29095
29096 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29097
29098         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
29099
29100 2004-11-02  Derek R. Price  <derek@ximbiot.com>
29101         and  Paul Eggert  <eggert@cs.ucla.edu>
29102
29103         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
29104         (get_date): Overparenthesize to avoid GCC warning.
29105
29106 2004-11-02  Bruno Haible  <bruno@clisp.org>
29107
29108         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
29109         returns void.
29110
29111 2004-11-02  Bruno Haible  <bruno@clisp.org>
29112
29113         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
29114         function returns void.
29115
29116 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29117
29118         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
29119         fflush_unlocked, flockfile, funlockfile, funlockfile,
29120         fputs_unlocked, putc_unlocked.
29121
29122 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29123
29124         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
29125         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
29126         already declared.
29127
29128 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29129
29130         * modules/getdate (Files): Add doc/getdate.texi.
29131         (Depends-on): Add setenv, xalloc.
29132
29133 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29134
29135         * lib/getdate.y: Add support for TZ="foo" within a date string.
29136         Fix some bugs near time_t boundaries.  Reject dates with
29137         out-of-range components, e.g., "Sept 31".
29138         Include <stdlib.h>, "setenv.h", "xalloc.h".
29139         (ISDIGIT_LOCALE): Remove; unused.
29140         Note that the TZ and time functions used here are not reentrant.
29141         (mktime_ok, get_tz): New functions.
29142         (TZBUFSIZE): New constant.
29143         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
29144         This requires that we sometimes generate our own TZ="XXX..." setting.
29145
29146 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29147
29148         * doc/getdate.texi: New file, from coreutils with modifications for
29149         the new TZ parsing.
29150
29151 2004-10-27  Derek R. Price  <derek@ximbiot.com>
29152
29153         * lib/mktime.c (not_equal_tm): Remove redundant check.
29154
29155 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29156
29157         * modules/regex (lib_SOURCES): Add regex.c.
29158         Reported by James Youngman in
29159         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
29160
29161 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29162
29163         * lib/getdate.y: Use Bison 1.875 features, and some minor
29164         code cleanups.  This change does not affect semantics.
29165         Don't include <stdlib.h>; no longer needed.
29166         Don't include unlocked-io.h; only the "#if TEST" code uses
29167         stdio, and performance isn't crucial there.
29168         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
29169         Bison 1.875 features as described below.
29170         All uses of "PC." replaced by "pc->".
29171         (YYSTYPE): Add a forward declaration.
29172         (yylex, yyerror): Use full prototypes in forward decls.
29173         Use "%pure-parser" rather than obsolescent "%pure_parser".
29174         Use %parse-param and %lex-param instead of obsolescent
29175         YYPARSE_PARAM and YYLEX_PARAM.
29176         (meridian_table, month_and_day_table, time_units_table,
29177         relative_time_table, time_zone_table, military_table,
29178         lookup_zone, lookup_word, get_date):
29179         Use NULL instead of 0 where appropriate.
29180         (to_hour): Avoid abort (), to avoid a dependency on
29181         stdlib.h.
29182         (yyerror, yylex): Now accepts parser_control * arg.
29183         (main) [TEST]: Use '\0' rather than 0 for char.
29184
29185 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29186
29187         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
29188
29189 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29190
29191         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
29192         It's now the caller's responsibility to handle the case where
29193         !HAVE_GETPAGESIZE && !defined getpagesize.
29194
29195         * lib/mktime.c (leapyear): Arg is long int, not int.
29196
29197 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
29198
29199         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
29200
29201 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29202
29203         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
29204         missing.  Problem reported by James Youngman.
29205
29206 2004-10-16  Simon Josefsson  <jas@extundo.com>
29207
29208         * gnulib-tool: Fix comments.  Fix parse problem.
29209         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
29210
29211 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
29212
29213         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
29214         implementation of getopt_long.  Problem reported by Alexander Taler in:
29215         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
29216
29217 2004-10-15  Bruno Haible  <bruno@clisp.org>
29218
29219         * gnulib-tool: Untabify. Initialize supplied_libname.
29220         (func_usage): More homogenous output.
29221         (func_modules_transitive_closure, func_modules_to_filelist,
29222         func_emit_lib_Makefile_am): New functions.
29223         (func_import): New function, extracted from big case statement. Use
29224         func_get_license, func_modules_transitive_closure,
29225         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
29226         opt_lgpl. Don't use test -a, as it's not portable.
29227         (func_create_testdir): Use func_modules_transitive_closure,
29228         func_modules_to_filelist, func_emit_lib_Makefile_am.
29229
29230 2004-10-15  Bruno Haible  <bruno@clisp.org>
29231
29232         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
29233
29234 2004-10-15  Bruno Haible  <bruno@clisp.org>
29235
29236         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
29237         the portions belonging to each module.
29238         Suggested by Derek Robert Price <derek@ximbiot.com>.
29239
29240 2004-10-12  Simon Josefsson  <jas@extundo.com>
29241
29242         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
29243         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
29244         to real functions.
29245
29246 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29247
29248         * modules/vsnprintf: New file.
29249
29250 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29251
29252         * m4/vsnprintf.m4: New file.
29253
29254 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29255
29256         * lib/vsnprintf.h: New file.
29257         * lib/vsnprintf.c: New file.
29258
29259 2004-10-11  Bruno Haible  <bruno@clisp.org>
29260
29261         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
29262         vsnprintf.
29263
29264 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
29265
29266         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
29267
29268 2004-10-07  Bruno Haible  <bruno@clisp.org>
29269
29270         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
29271         fits into the provided buffer.
29272
29273 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
29274
29275         * lib/diacrit.c, diacrit.h: Add GPL notice.
29276
29277         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
29278         notice.
29279         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
29280         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
29281         This avoids a potential constant-folding bug.
29282
29283 2004-10-05  Bruno Haible  <bruno@clisp.org>
29284
29285         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
29286         for the declaration of strsep.
29287
29288 2004-10-05  Bruno Haible  <bruno@clisp.org>
29289
29290         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
29291
29292 2004-10-04  Simon Josefsson  <jas@extundo.com>
29293
29294         * modules/memmem: New file.
29295         * tests/test-memmem.c: New file.
29296         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
29297
29298 2004-10-04  Simon Josefsson  <jas@extundo.com>
29299
29300         * m4/memmem.m4: New file.
29301
29302 2004-10-04  Simon Josefsson  <jas@extundo.com>
29303
29304         * lib/memmem.h: New file.
29305         * lib/memmem.c: New file, taken from glibc.
29306
29307 2004-10-04  Simon Josefsson  <jas@extundo.com>
29308
29309         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
29310         '#ifdef USE_UNLOCKED_IO'.
29311
29312 2004-10-04  Simon Josefsson  <jas@extundo.com>
29313
29314         * config/srclist.txt: Add memmem from glibc.
29315
29316 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29317
29318         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
29319
29320         * modules/argmatch, modules/argp, modules/closeout, modules/error,
29321         modules/exclude, modules/getdate, modules/getline,
29322         modules/getndelim2, modules/getpass, modules/getpass-gnu,
29323         modules/getusershell, modules/linebuffer, modules/md5,
29324         modules/mountlist, modules/posixtm, modules/readtokens,
29325         modules/readutmp, modules/regex, modules/sha1,
29326         modules/version-etc, modules/yesno:
29327         Remove dependency on unlocked-io.
29328
29329 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29330
29331         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
29332
29333         * m4/unlocked-io.m4: Add copyright notice.
29334         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
29335
29336 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29337
29338         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
29339         * lib/xmalloc.c (xmemdup): Likewise.
29340         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
29341         XFREE): Remove these long-obsolescent macros.
29342         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
29343         * lib/xstrdup.c: Remove.
29344
29345         * lib/regex.c (re_comp): Cast gettext return value to char *,
29346         Problem reported by Martin Neitzel via Mark D. Baushke.
29347
29348 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29349
29350         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
29351         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
29352         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
29353         regex.c, sha1.c, version-etc.c, yesno.c:
29354         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
29355         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
29356         the includer's responsibility.
29357
29358         Sync from coreutils.
29359
29360         * lib/modechange.c (mode_compile): Don't decrement a pointer that
29361         points to the start of a string, as the C Standard says the
29362         resulting behavior is undefined.
29363
29364         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
29365         simple -> simple_backups, numbered_existing ->
29366         numbered_existing_backups, numbered -> numbered_backups
29367         to avoid shadowing problems.  All uses changed.
29368         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
29369         * lib/backupfile.c (check_extension, numbered_backup):
29370         Rename locals to avoid shadowing 'basename'.
29371         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
29372         once.
29373
29374         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
29375         * lib/.cvsignore: Add getopt.h.
29376
29377 2004-10-04  Bruno Haible  <bruno@clisp.org>
29378
29379         * modules/README: New file.
29380         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
29381         not a module.
29382
29383 2004-10-02  Jim Meyering  <jim@meyering.net>
29384
29385         * lib/dirfd.h, getpagesize.h: Add copyright notice.
29386
29387 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29388
29389         * modules/strsep: New file.
29390
29391 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29392
29393         * m4/strsep.m4: New file.
29394
29395 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29396
29397         * lib/strsep.h: New file.
29398         * lib/strsep.c: New file.
29399
29400 2004-10-01  Simon Josefsson  <jas@extundo.com>
29401
29402         * lib/snprintf.c (snprintf): Handle size==0.
29403
29404 2004-10-01  Simon Josefsson  <jas@extundo.com>
29405             Bruno Haible  <bruno@clisp.org>
29406
29407         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
29408         (snprintf): Declare 'args'.
29409
29410 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
29411
29412         * lib/snprintf.c: Remove comments as to why each header is needed.
29413
29414 2004-10-01  Bruno Haible  <bruno@clisp.org>
29415
29416         * MODULES.html.sh: Add strsep.
29417
29418 2004-09-30  Simon Josefsson  <jas@extundo.com>
29419
29420         * modules/snprintf: New file.
29421
29422 2004-09-30  Simon Josefsson  <jas@extundo.com>
29423
29424         * m4/snprintf.m4: New file.
29425
29426 2004-09-30  Simon Josefsson  <jas@extundo.com>
29427
29428         * lib/snprintf.h, lib/snprintf.c: New files.
29429
29430 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29431
29432         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
29433         (hol_entry_help): Never translate an empty string.
29434         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
29435         * lib/argp.h (OPTION_NO_TRANS): New option.
29436
29437 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29438
29439         * modules/argp (Maintainer): Replace Simon Josefsson
29440         by Sergey Poznyakoff.
29441
29442 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29443
29444         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
29445         changes merged back into glibc.
29446
29447 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29448
29449         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
29450
29451 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
29452
29453         * lib/xvasprintf.c: Include xalloc.h.
29454         (xvasprintf): Use xalloc_die, not xmalloc_die.
29455
29456 2004-09-29  Bruno Haible  <bruno@clisp.org>
29457
29458         * modules/alloca-opt: New file, derived from modules/alloca.
29459         * modules/allocsa: Depend on alloca-opt instead of alloca.
29460         * modules/setenv: Likewise.
29461         * modules/vasnprintf: Likewise.
29462         * MODULES.html.sh: Add alloca-opt.
29463
29464 2004-09-28  Simon Josefsson  <jas@extundo.com>
29465
29466         * gnulib-tool: New parameter --lgpl, to asseert that modules are
29467         LGPL, and to replace license template from GPL to LGPL.
29468
29469 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
29470
29471         * modules/dummy: Change license to LGPL.
29472
29473 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
29474
29475         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
29476
29477 2004-09-24  Simon Josefsson  <jas@extundo.com>
29478
29479         * modules/minmax (License): Change from GPL to LGPL.
29480
29481 2004-09-23  Simon Josefsson  <jas@extundo.com>
29482
29483         * gnulib-tool (--import): Typo.
29484
29485 2004-09-23  Simon Josefsson  <jas@extundo.com>
29486
29487         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
29488
29489 2004-09-22  Bruno Haible  <bruno@clisp.org>
29490
29491         * modules/*: Add 'License' field.
29492         * gnulib-tool: Accept --extract-license option.
29493         (func_get_license): New function.
29494
29495 2004-09-21  Bruno Haible  <bruno@clisp.org>
29496
29497         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
29498         Reported by Simon Josefsson.
29499
29500 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
29501
29502         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
29503         gl_AC_TYPE_LONG_LONG.
29504
29505 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
29506
29507         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
29508
29509 2004-09-18  Simon Josefsson  <jas@extundo.com>
29510         and  Paul Eggert  <eggert@cs.ucla.edu>
29511
29512         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
29513         calls with autoreconf.  Define GL_LIB.
29514
29515 2004-09-14  Karl Berry  <karl@gnu.org>
29516
29517         * config/srclist.txt: unsync setenv.c, sigh.
29518
29519 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
29520
29521         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
29522         Problem reported by Bruno Haible in:
29523         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
29524
29525 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
29526
29527         * config/srclist.txt: Comment out argp-pvh.c.
29528
29529 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
29530
29531         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
29532         in case some system header has #define'd it.  Problem reported by
29533         Soeren D. Schulze in
29534         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
29535
29536 2004-09-09  Karl Berry  <karl@gnu.org>
29537
29538         * regex.[ch]: delete from the root.  These were supposed to be
29539                 synced with emacs cvs, but this has not happened for about
29540                 a year, and anyway nothing else uses emacs regex.[ch].
29541                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
29542                 lib/regex[.ch] is untouched.
29543
29544 2004-09-09  Bruno Haible  <bruno@clisp.org>
29545
29546         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
29547
29548 2004-09-09  Bruno Haible  <bruno@clisp.org>
29549
29550         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
29551         modifications.
29552         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
29553
29554 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
29555
29556         * modules/xvasprintf: New file.
29557         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
29558
29559 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
29560
29561         * lib/xvasprintf.h: New file.
29562         * lib/xvasprintf.c: New file.
29563         * lib/xasprintf.c: New file.
29564
29565 2004-09-08  Bruno Haible  <bruno@clisp.org>
29566
29567         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
29568
29569 2004-09-08  Bruno Haible  <bruno@clisp.org>
29570
29571         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
29572         length is > INT_MAX.
29573         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
29574         more.
29575
29576 2004-09-08  Bruno Haible  <bruno@clisp.org>
29577
29578         * lib/stdint_.h: New file, taken from GNU clisp.
29579
29580 2004-09-08  Bruno Haible  <bruno@clisp.org>
29581             Oskar Liljeblad  <oskar@osk.mine.nu>
29582
29583         * modules/stdint: New file.
29584         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
29585
29586 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29587
29588         Import from coreutils.
29589         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
29590         strings on unbounded length.  alloca's performance benefits aren't
29591         that important here.
29592         (V_STRDUP): Remove.
29593         (parse_with_separator): New function, with most of the internals
29594         of the old parse_user_spec.  Allow user to omit both user and group,
29595         for compatibility with FreeBSD.
29596         Clone only the user name, not the entire spec.
29597         Do not set *uid, *gid unless entirely successful.
29598         Avoid memory leak in some failing cases.
29599         Fix regression for USER.GROUP reported by Dmitry V. Levin in
29600         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
29601         (parse_user_spec): Rewrite to use parse_with_separator.
29602
29603 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29604
29605         * modules/userspec: Don't depend on alloca.
29606
29607 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29608
29609         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
29610
29611 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
29612
29613         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
29614         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
29615         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
29616
29617 2004-08-16  Simon Josefsson  <jas@extundo.com>
29618
29619         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
29620         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
29621         Add --dry-run for --import.
29622         Let user provided command line parameters override configure.ac
29623         settings.
29624
29625 2004-08-12  Simon Josefsson  <jas@extundo.com>
29626
29627         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
29628         as discussed with Paul Eggert in threads rooted at
29629         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
29630         and
29631         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
29632         Before, the test was empty, and relied on ELIDE_CODE in source
29633         code.)
29634         (gl_PREREQ_GETOPT): New macro.
29635         (gl_GETOPT): Use them.
29636
29637 2004-08-12  Simon Josefsson  <jas@extundo.com>
29638
29639         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
29640         * lib/getopt_.h: Renamed from getopt.h.
29641
29642 2004-08-12  Simon Josefsson  <jas@extundo.com>
29643
29644         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
29645         Change default library name from libfoo to libgnu.
29646         Now, if you have a configure.ac that says:
29647                 gl_SOURCE_BASE(gl)
29648                 gl_M4_BASE(gl/m4)
29649                 gl_MODULES(error getopt etcetera)
29650                 gl_INIT
29651         you can import all you need by running:
29652                 ../gnulib/gnulib-tool --import
29653
29654         * modules/getopt (Files): Rename getopt.h to getopt_.h.
29655         (Makefile.am): Rewrite, use logic from argz.
29656         (Include): Use <getopt.h> instead of "getopt.h".
29657
29658 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29659
29660         * modules/argp (Files): Add m4/unlocked-io.m4.
29661         (Depends-on): Add extensions.
29662
29663 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29664
29665         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
29666         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
29667         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
29668         Check for program_invocation_name, program_invocation_short_name,
29669         flockfile, funlockfile, features.h, _getopt_long_only_r.
29670
29671 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29672
29673         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
29674         its complicated substitute.
29675         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
29676         and program_invocation_name.
29677         (__argp_basename) [!_LIBC]: Remove; the only use was
29678         replaced by its body.
29679         (__argp_short_program_name): Change condition from
29680         !defined __argp_short_program_name to
29681         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
29682         to match argp-namefrob.h.
29683         (__argp_failure): Don't assume strerror_r returns char *.
29684         * lib/argp-parse.c (N_): Define unconditionally.
29685         (argp_default_options): Fill out initializers with 0 to avoid
29686         gcc warnings.
29687
29688 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29689
29690         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
29691         getopt1.c.
29692
29693 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29694
29695         Merge from coreutils.
29696
29697         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
29698
29699         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
29700         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
29701
29702 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29703
29704         Merge from coreutils.
29705
29706         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
29707         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
29708         for Reliant Unix 5.43.
29709
29710         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
29711         (union fooround): Use uintmax_t, not long int.
29712         The rest is a merge from libc:
29713         [defined _LIBC]: Include <shlib-compat.h>.
29714         (_obstack) [defined _LIBC]: Remove after 2.3.4.
29715
29716         * lib/settime.c (settime): Recode to avoid warning with
29717         Sun Forte C 6U2.
29718
29719         * lib/strverscmp.c: Convert to UTF-8.
29720
29721 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29722
29723         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
29724         m4/uintmax_t.m4.
29725
29726 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29727
29728         * modules/xalloc-die: New file.
29729         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
29730
29731         * modules/md5 (Files): Add m4/uint32_t.m4.
29732         * modules/sha1: Renamed from modules/sha.
29733         (Files):
29734         Rename lib/sha.h to lib/sha1.h.
29735         Rename lib/sha.c to lib/sha1.c.
29736         Rename m4/sha.m4 to m4/sha1.m4.
29737         (lib_SOURCES): Likewise.
29738         (configure.ac): Rename gl_SHA to gl_SHA1.
29739         (Include): sha.h -> sha1.h.
29740
29741 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29742
29743         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
29744         * m4/sha1.m4: Renamed from sha.m4.
29745         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
29746
29747 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29748
29749         * lib/obstack.h (obstack_empty_p):
29750         Don't assume that chunk->contents is suitably aligned.
29751         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
29752         Likewise. Problem reported by Benno in
29753         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
29754
29755         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
29756         readable.  This could be improved further but it'd take some work.
29757
29758 2004-08-08  Simon Josefsson  <jas@extundo.com>
29759
29760         * modules/xgethostname (Depends-on): Remove exit and error (not
29761         used).
29762
29763         * modules/getpass-gnu: Add getpass.h.
29764         (Depends-on): Add stdbool.
29765         * modules/getpass: Add getpass.h.
29766
29767 2004-08-08  Simon Josefsson  <jas@extundo.com>
29768
29769         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
29770         Check getpass declaration.
29771
29772 2004-08-08  Simon Josefsson  <jas@extundo.com>
29773
29774         * lib/xgethostname.c: Don't include error.h (not used).
29775
29776         * lib/getpass.h: Add.
29777         * lib/getpass.c: Include getpass.h first.
29778
29779 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
29780
29781         * lib/xalloc-die.c: New file.
29782         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
29783         All uses removed.
29784         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
29785         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
29786         xalloc-die.c.
29787         (_, N_, xalloc_die): Move to xalloc-die.c.
29788         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
29789         so that we needn't mess with xalloc_msg_memory_exhausted.
29790
29791         * lib/sha1.h: Renamed from sha.h.
29792         (SHA1_H): Renamed from _SHA_H.
29793         (sha1_ctx): Renamed from sha_ctx.
29794         (sha1_init_ctx): Renamed from sha_init_ctx.
29795         (sha1_process_block): Renamed from sha_process_block.
29796         (sha1_process_bytes): Renamed from sha_process_bytes.
29797         (sha1_finish_ctx): Renamed from sha_finish_ctx.
29798         (sha1_read_ctx): Renamed from sha_read_ctx.
29799         (sha1_stream): Renamed from sha_stream.
29800         (sha1_buffer): Renamed from sha_buffer.
29801         * lib/sha1.c: Likewise; renamed from sha.c.
29802         Do not include <sys/types.h>.
29803         Include <stddef.h> rather than <stdlib.h>.
29804
29805 2004-08-08  Bruno Haible  <bruno@clisp.org>
29806
29807         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
29808         FILESYSTEM_PREFIX_LEN.
29809         * lib/progreloc.c: Likewise.
29810         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
29811
29812 2004-08-06  Simon Josefsson  <jas@extundo.com>
29813
29814         * modules/progname (Depends-on): Don't depend on stdbool.
29815
29816 2004-08-06  Simon Josefsson  <jas@extundo.com>
29817
29818         * modules/getsubopt: New file.
29819         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29820         getsubopt.
29821
29822 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29823
29824         More merge from coreutils.
29825
29826         * m4/utimens.m4, m4/utimecmp.m4: New files.
29827         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
29828         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
29829         prereq.m4, sha.m4: Import changes from coreutils.
29830
29831 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29832
29833         More merge from coreutils.
29834         * modules/raise, modules/readtokens0, modules/utimens:
29835         * modules/utimecmp, module/xnanosleep: New files.
29836         * modules/strftime: Add lib/strftime.h.
29837         Change include from <time.h> to "strftime.h".
29838         * modules/yesno: Add lib/yesno.h.
29839         * modules/backupfile: Remove lib/addext.c.
29840         * modules/euidaccess: Add stat-macros.h.
29841         * modules/canonicalize, modules/euidaccess,
29842         modules/filemode, modules/lchown, modules/makepath,
29843         modules/rmdir, modules/stat: Likewise.
29844
29845 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29846
29847         Merge from tar.
29848         * lib/argp-help.c (make_hol, hol_append): Don't assume that
29849         SIZE_MAX is a valid preprocessor constant.
29850         (__argp_basename): Change from "#ifndef _LIBC"
29851         to "#ifndef __argp_short_program_name", so that
29852         we don't compile these functions for tar.
29853
29854         More merges from coreutils.
29855         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
29856         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
29857         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
29858         * lib/addext.c: Remove; no longer needed.
29859         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
29860         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
29861         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
29862         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
29863         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
29864         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
29865         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
29866         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
29867         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
29868         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
29869         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
29870         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
29871         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
29872         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
29873         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
29874         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
29875         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
29876         Import changes from coreutils.
29877
29878 2004-08-05  Simon Josefsson  <jas@extundo.com>
29879
29880         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
29881
29882 2004-08-05  Simon Josefsson  <jas@extundo.com>
29883
29884         * m4/getsubopt.m4: New file.
29885
29886 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29887
29888         Merge from coreutils.
29889
29890         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
29891         * m4/getcwd-path-max.m4: New files.
29892
29893         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
29894         FILESYSTEM_PREFIX_LEN ->
29895         FILE_SYSTEM_PREFIX_LEN.
29896         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
29897         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
29898         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
29899         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
29900
29901         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
29902         prerequisite modules now handle the DOS stuff.
29903         Don't check for unistd.h.
29904
29905 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29906
29907         Merge from coreutils.
29908
29909         * lib/.gdb-history: Remove; this doesn't belong here.
29910
29911         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
29912         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
29913         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
29914         * lib/getcwd.c: New files.
29915
29916         * lib/dirname.h: Include <stdbool.h>.
29917         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
29918         for consistency with POSIX terminology.  All uses changed.
29919         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
29920         (strip_trailing_slashes): Use bool for booleans.
29921         * lib/stripslash.c (strip_trailing_slashes): Likewise.
29922
29923         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
29924         sometimes returns a positive errno value even when it succeeds.
29925         (print_errno_message) [!LIBC]: Fall back on strerror if
29926         __strerror_r fails.
29927
29928         * lib/path-concat.c (mempcpy): Don't define if a system header defines
29929         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
29930         (longest_relative_suffix): New function.
29931         (path_concat): Use it.  Assume first argument is not NULL.
29932         Port to DOS.  Omit redundant separators.
29933         Report an error instead of returning NULL.
29934         Use mempcpy instead of memcpy.
29935         (xpath_concat): Remove: not declared or used.
29936
29937         * lib/same.h: Include <stdbool.h>
29938         (same_name): Return bool, not int.
29939         * lib/same.c (same_name): Likewise.
29940         (errno): Don't declare; we assume C89 or better now.
29941
29942         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
29943         if not already defined.
29944
29945         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
29946         * lib/dup-safer.c (errno): Likewise.
29947
29948 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29949
29950         Merge from coreutils.
29951         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
29952         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
29953         * modules/path-concat: Don't depend on strdup.
29954
29955 2004-08-03  Simon Josefsson  <jas@extundo.com>
29956
29957         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
29958         * lib/progname.h: Don't include stdbool.h.
29959
29960 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29961
29962         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
29963         * MODULES.html.sh (func_all_modules): Remove fatal.
29964
29965 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29966
29967         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
29968
29969 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29970
29971         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
29972         working.
29973
29974 2004-08-02  Simon Josefsson  <jas@extundo.com>
29975
29976         * lib/getsubopt.h: New file, with comments from Bruno Haible.
29977         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
29978         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
29979
29980 2004-08-01  Simon Josefsson  <jas@extundo.com>
29981
29982         * lib/xgetdomainname.c: Include stdlib.h, for free().
29983
29984 2004-07-19  Bruno Haible  <bruno@clisp.org>
29985
29986         * MODULES.html.sh (func_all_modules): Add dummy.
29987
29988 2004-07-16  Simon Josefsson  <jas@extundo.com>
29989
29990         * modules/dummy: New file.
29991
29992 2004-07-16  Simon Josefsson  <jas@extundo.com>
29993
29994         * lib/dummy.c: New file.
29995
29996 2004-07-16  Bruno Haible  <bruno@clisp.org>
29997
29998         * lib/backupfile.h: Add extern "C" for C++.
29999         * lib/closeout.h: Likewise.
30000         * lib/copy-file.h: Likewise.
30001         * lib/findprog.h: Likewise.
30002         * lib/full-write.h: Likewise.
30003         * lib/pathname.h: Likewise.
30004         * lib/progname.h: Likewise.
30005         * lib/stpcpy.h: Likewise.
30006         * lib/stpncpy.h: Likewise.
30007         * lib/strcase.h: Likewise.
30008         * lib/strstr.h: Likewise.
30009         * lib/xalloc.h: Likewise.
30010
30011         * lib/mbswidth.h: Add extern "C" for C++.
30012         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
30013
30014 2004-07-13  Robert Millan  <robertmh@gnu.org>
30015
30016         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
30017
30018 2004-07-09  Simon Josefsson  <jas@extundo.com>
30019
30020         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
30021         failed without this.)
30022
30023 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
30024
30025         * modules/chown (Files): Add lib/fchown-stub.c, since
30026         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
30027
30028 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
30029
30030         * lib/fchown-stub.c: New file.
30031
30032 2004-06-24  Jim Meyering  <jim@meyering.net>
30033
30034         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
30035
30036 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30037
30038         * modules/argz: Omit "#include".
30039
30040         * MODULES.html.sh (func_all_modules): Add calloc, to match
30041         2004-06-01 addition of calloc module.
30042
30043 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30044
30045         * m4/argz.m4: New file, which is autoupdated from libtool.
30046
30047 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30048
30049         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
30050         libtool.
30051
30052 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30053
30054         * config/srclist-update: Don't insist on "USA." before the
30055         close-comment, as libtool omits the period and puts the */ on a
30056         separate line.
30057         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
30058         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
30059
30060 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
30061
30062         * modules/argz: New file.
30063         * MODULES.html.sh (func_all_modules): Add argz.
30064
30065 2004-06-12  Jim Meyering  <jim@meyering.net>
30066         and  Paul Eggert  <eggert@cs.ucla.edu>
30067
30068         * modules/hash (Files): Add lib/xalloc.h.
30069         * modules/pipe (Depends-on): Add wait-process.
30070         * modules/stat (Depends-on): Add xalloc.
30071         * modules/userspec (Files): Add lib/userspec.h.
30072         * modules/xstrto
30073
30074         Upgrade from gettext-0.13.
30075         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
30076         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
30077         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
30078
30079 2004-06-10  Jim Meyering  <jim@meyering.net>
30080
30081         * lib/calloc.c: New file.
30082
30083 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
30084
30085         * lib/getdate.y (yylex): Allow space between sign and number.
30086         Problem reported by Dan Jacobson.
30087
30088 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
30089
30090         Merge from coreutils CVS.
30091
30092         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
30093         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
30094         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
30095         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
30096         xstrtol.m4: Fix copyright date and/or serial number.
30097
30098         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
30099         See if we need an fchown replacement.
30100         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
30101         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
30102         and use the replacement function if we detect either defect.
30103
30104         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
30105         gl_UTIMECMP.
30106
30107 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
30108         and  Jim Meyering  <jim@meyering.net>
30109
30110         Merge from coreutils CVS.
30111
30112         * lib/stat-macros.h: New file, with contents from file-type.h
30113         and coreutils' system.h.
30114         * lib/file-type.c: Include "stat-macros.h".
30115         * lib/file-type.h (file_type): Move all macro definitions to new file,
30116         stat-macros.h.
30117
30118         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
30119         Wrap old code with this conditional.
30120         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
30121         function that does not dereference symlinks.
30122         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
30123
30124         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
30125         dependency problems.
30126         (xreadlink): Accept new arg SIZE, for efficiency.
30127         All decls and uses changed.
30128         * lib/xreadlink.h: Include <stddef.h>, for size_t.
30129
30130         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
30131         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
30132
30133         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
30134         sysexits.h.
30135
30136 2004-06-01  Jim Meyering  <jim@meyering.net>
30137
30138         * m4/calloc.m4: New file.
30139
30140 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
30141
30142         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
30143         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
30144         Also, fix a typo in a diagnostic.
30145
30146 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
30147
30148         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
30149         or AC_FUNC_REALLOC.
30150
30151 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
30152
30153         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
30154         macros to be defined.
30155         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
30156         the allocator returns NULL because the requested size is zero.
30157
30158 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30159
30160         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
30161         var.  Add comment explaining why libc still defines it.  This
30162         merges the following patch from glibc:
30163         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
30164
30165 2004-05-20  Andreas Schwab  <schwab@suse.de>
30166
30167         * m4/free.m4: Replace free if it not known to work, not the other
30168         way round.
30169
30170 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
30171
30172         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
30173         present in glibc since revision 1.1 of this file.
30174         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
30175         obstack_alignment_mask, obstack_alloc, obstack_base,
30176         obstack_blank, obstack_blank_fast, obstack_chunk_size,
30177         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
30178         obstack_grow0, obstack_init, obstack_int_grow,
30179         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
30180         obstack_next_free, obstack_object_size, obstack_ptr_grow,
30181         obstack_ptr_grow_fast, obstack_room): Remove declarations of
30182         nonexistent functions.
30183
30184 2004-05-18  Karl Berry  <karl@gnu.org>
30185
30186         * config/srclist.txt: break link for vasnprintf.c.
30187
30188 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30189
30190         Port obstack to the AS/400, where pointers are 16 bytes wide and
30191         you cannot cast an integer to a valid pointer.  This patch is
30192         currently waiting to be integrated into glibc; see
30193         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
30194
30195         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
30196         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
30197         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
30198         (struct obstack): temp member is now a union of a pointer and
30199         an integer, instead of an integer.  All integer uses changed.
30200         This does not affect the physical layout of struct obstack,
30201         except on hosts (like the AS/400) where the size or alignment of
30202         void * is greater than that of ptrdiff_t.
30203         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
30204         __STDC__)]: Store temporary in pointer member of union, not
30205         integer member.
30206         * lib/obstack.c: Include <stddef.h>, for offsetof.
30207         (struct fooalign): Remove; it doesn't need a name.
30208         (union fooround): Change double to long double, and add void *.
30209         (DEFAULT_ALIGNMENT): Use offsetof to compute.
30210         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
30211         not a macro.  Hence the values are always int; so remove all
30212         casts-to-int in uses.
30213
30214 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30215
30216         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
30217         we can get this patch merged into glibc.
30218
30219 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30220             Paul Eggert  <eggert@cs.ucla.edu>
30221
30222         * m4/argp: Depend on alloca.
30223
30224 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30225             Paul Eggert  <eggert@cs.ucla.edu>
30226
30227         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
30228         freecoding.
30229
30230 2004-05-17  Bruno Haible  <bruno@clisp.org>
30231
30232         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
30233         precision that consists of a '.' followed by an empty digit string.
30234         Patch by Tor Lillqvist <tml@iki.fi>.
30235
30236 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30237
30238         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
30239         for backward compatibility with older code.  We need our own
30240         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
30241         it under some other name, and our alloca.h will define it.
30242
30243 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30244             Derek Price  <derek@ximbiot.com>
30245
30246         * lib/alloca.c: Include <alloca.h>, to get our interface.
30247         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
30248         include <alloca.h> first.  Use C89 prototype for alloca; this
30249         requires including <stddef.h> for size_t.  Use extern "C" if C++.
30250         Use #elif for simplicity, since we can assume C89 now.
30251         Don't try to source the system alloca.h since it will not be found
30252         and to prevent recursively including its replacement.
30253         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
30254         * lib/regex.c: Likewise.
30255
30256 2004-05-16  Derek Price  <derek@ximbiot.com>
30257             Paul Eggert  <eggert@cs.ucla.edu>
30258
30259         getline cleanup.  This changes the getndelim2 API: both order of
30260         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
30261         no delimiter).
30262
30263         * lib/getline.c: Don't include stddef.h or stdio.h, since our
30264         interface does that.
30265         (getline): Always use getdelim, so that we don't have two
30266         copies of this code.
30267         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
30268         if available.
30269         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
30270         (GETNDELIM2_MAXIMUM): New macro.
30271         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
30272         instead of the old practice of delim2==0.  All callers changed.
30273         Return -1 on overflow, instead of returning junk.
30274         Do not set *linesize unless allocation succeeds.
30275         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
30276         that we include sys/types.h.
30277         * lib/getnline.h: Likewise.
30278         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
30279         (getndelim2): Reorder arguments.
30280         * lib/getnline.c (getnline, getndelim):
30281         Don't discard the NMAX argument.
30282         (getnline): Invoke getndelim, to avoid code duplication.
30283         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
30284         of (size_t) -1 by callers of the getnline family.
30285
30286 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30287
30288         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
30289         Check for gettimeofday.
30290         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
30291         Check for settimeofday, stime.
30292
30293 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30294
30295         * lib/nanosleep.c (suspended): Change its type from int to
30296         sig_atomic_t volatile.
30297         (first_call): Make it private to rpl_nanosleep, and have it
30298         be zero initially as that's a bit faster.
30299         (my_usleep): Round up fractional times instead of truncating them,
30300         as this is the usual meaning for 'sleep'.
30301
30302         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
30303         doesn't work.
30304         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
30305         (ENOSYS): Define if not defined.
30306         (settime): Fall back on stime if it exists and settimeofday fails.
30307         But don't bother with fallbacks if a method fails with errno == EPERM.
30308
30309 2004-05-11  Jim Meyering  <jim@meyering.net>
30310
30311         Prior to this change, the save_cwd caller required read access to the
30312         current directory on most systems (ones with the fchdir function).
30313
30314         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
30315         fails, try write-only, and finally, resort to using xgetcwd.
30316
30317 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
30318
30319         * lib/obstack.c, obstack.h: Import changes from libc.
30320
30321 2004-04-28  Bruno Haible  <bruno@clisp.org>
30322
30323         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
30324         also implicitly appends .exe to executables.
30325         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
30326         accepts Windows pathnames.
30327         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30328         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30329         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30330         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30331         Reported by Derek Robert Price <derek@ximbiot.com>.
30332
30333 2004-04-21  Karl Berry  <karl@gnu.org>
30334
30335         * config/srclist.txt (localcharset.c): break sync.
30336
30337 2004-04-20  Paul Eggert  <eggert@twinsun.com>
30338
30339         * m4/host-os.m4: Add a copyright notice.
30340
30341 2004-04-20  Jim Meyering  <jim@meyering.net>
30342
30343         Change UTILS_ to gl_ in AC_DEFINE'd names.
30344         Change utils_- and jm_-prefixed variables, too.
30345         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
30346         UTILS_FUNC_MKDIR_TRAILING_SLASH.
30347         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
30348
30349         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
30350         Don't emit trailing blanks.
30351         Also rename jm_-prefixed variables to have gl_ prefix.
30352
30353         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
30354         Also rename jm_-prefixed variables to have gl_ prefix.
30355
30356         * m4/jm-macros.m4: Reflect the renamings.
30357         * m4/prereq.m4: Likewise.
30358
30359 2004-04-20  Jim Meyering  <jim@meyering.net>
30360
30361         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
30362         memory.
30363
30364 2004-04-20  Jim Meyering  <jim@meyering.net>
30365             Bruno Haible  <bruno@clisp.org>
30366
30367         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
30368         memory when realloc fails.
30369
30370 2004-04-19  Jim Meyering  <jim@meyering.net>
30371
30372         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
30373         now that readutmp.c may call `free (0)'.
30374
30375 2004-04-19  Bruno Haible  <bruno@clisp.org>
30376
30377         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
30378         * m4/inttypes_h.m4: Likewise.
30379         * m4/stdint_h.m4: Likewise.
30380         * m4/intmax_t.m4: Likewise.
30381         * m4/uintmax_t.m4: Likewise.
30382
30383 2004-04-18  Jim Meyering  <jim@meyering.net>
30384
30385         * m4/prereq.m4: Don't forbid jm_ prefix.
30386
30387         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
30388         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
30389         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
30390         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
30391         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
30392         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
30393         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
30394         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
30395         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
30396         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
30397         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
30398         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
30399         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
30400         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
30401         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
30402         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
30403         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
30404         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
30405         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
30406
30407 2004-04-18  Jim Meyering  <jim@meyering.net>
30408
30409         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
30410         failure, don't leak memory and do call END_UTMP_ENT.
30411
30412 2004-04-16  Jim Meyering  <jim@meyering.net>
30413
30414         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
30415         coreutils' stat program.
30416         (gl_PREREQ): Don't require jm_PREREQ_STAT.
30417
30418 2004-04-11  Paul Eggert  <eggert@twinsun.com>
30419
30420         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
30421         C89.
30422         (CHAR_BIT): Remove, since we assume C89.
30423         Include <stdint.h> if available, as per current Autoconf CVS advice.
30424
30425 2004-03-31  Jim Meyering  <jim@meyering.net>
30426
30427         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
30428         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
30429         * m4/xalloc.m4: Likewise.
30430
30431 2004-03-30  Paul Eggert  <eggert@twinsun.com>
30432
30433         Merge from coreutils.
30434
30435         * m4/inttostr.m4: New file.
30436         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
30437         Require AM_STDBOOL_H and gl_TIMESPEC instead.
30438         Require gl_CLOCK_TIME.
30439         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
30440
30441 2004-03-30  Paul Eggert  <eggert@twinsun.com>
30442
30443         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
30444         not bool, to be more consistent with Unix conventions.
30445         Suggested by Bruno Haible.
30446
30447         Merge from coreutils.
30448
30449         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
30450         * lib/umaxtostr.c: New files.
30451
30452         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
30453         the usual <time.h> dance.
30454         (get_date): Change signature to support fractional time stamps.
30455         All callers changed.
30456         * lib/getdate.y: Include "getdate.h" first, as we can now
30457         assume C89 and don't need to worry about 'const'.
30458         Similarly, include "unlocked-io.h" near start, not in middle.
30459         Include <limits.h>.
30460         (textint.value): Use long int rather than int.
30461         (textint.digits): Use size_t rather than int.
30462         (BILLION, LOG10_BILLION): New constants.
30463         (parser_control): New member rel_ns.  Members day_ordinal,
30464         time_zone, month, day, hour, minutes, rel_year, rel_month,
30465         rel_day, rel_hour, rel_minutes, rel_seconds
30466         are now long int, not int.  Member seconds is now struct timespec,
30467         not int.  New member timespec_seen.  Members dates_seen, days_seen,
30468         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
30469         not int.
30470         (%union.intval): Now long int, not int.
30471         New member timespec.
30472         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
30473         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
30474         (spec): Now is a timespec or an item list.
30475         (timespec, items): New nonterminals.
30476         (time, rel, relunit, number, get_date):
30477         Add support for fractional seconds.
30478         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
30479         (gmtime, localtime, mktime): Remove decls; not needed with C89.
30480         (to_hour): First arg is now long int, not int.
30481         (to_year): Returns long int, not int.
30482         Don't treat year -70 like 70.
30483         (tm_diff): Returns long int, not int.
30484         (lookup_word): Use bool instead of int when appropriate.
30485         (yylex): Use size_t for count, not int.
30486         Detect overflow when parsing large integer constants.
30487         Add support for fractions.
30488         (get_date): Make pointers 'const' if possible.
30489         Use more-portable code to detect integer overflow.
30490         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
30491         Don't use ctime; it's not reliable if the year has >4 digits.
30492
30493         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
30494         This is for compatibility with BSD.
30495
30496         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
30497         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
30498         From coreutils' system.h.
30499
30500         * lib/userspec.c: Don't include "posixver.h".
30501         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
30502         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
30503         compatible extension.  Simplify code by removing a boolean int
30504         that was always nonzero if a string was nonnull.
30505
30506 2004-03-30  Jim Meyering  <jim@meyering.net>
30507
30508         Merge from coreutils.
30509
30510         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
30511         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
30512         on some systems one must include <grp.h> before it.
30513         Reported by Christian Krackowizer.
30514
30515 2004-03-30  Jim Meyering  <jim@meyering.net>
30516
30517         Merge from coreutils.
30518
30519         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
30520
30521         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
30522         an empty input stream.
30523
30524         * lib/readtokens.c: Include <stdbool.h>.
30525         (readtoken): Use `size_t' rather than int/long.
30526         All callers adjusted.
30527         Use `bool' rather than `int' where appropriate.
30528         Use memset rather than an explicit loop.
30529         Use x2nrealloc rather than xrealloc.
30530         Allow the use of `\0' as a delimiter.
30531         (readtokens): Likewise.
30532         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
30533
30534 2004-03-30  Jim Meyering  <jim@meyering.net>
30535
30536         * m4/realloc.m4: Remove file, since now it does no more than
30537         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
30538         the `configure.ac' section of module/realloc.
30539         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
30540
30541 2004-03-30  Bruno Haible  <bruno@clisp.org>
30542
30543         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
30544         nonnull.
30545
30546 2004-03-29  Paul Eggert  <eggert@twinsun.com>
30547
30548         Merge changes to getloadavg.c from coreutils and Emacs.
30549
30550         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
30551         Define to an expression, not to the empty string.
30552         Include cloexec.h and xalloc.h.
30553         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
30554         Use set_cloexec_flag rather than rolling our own.
30555         * lib/cloexec.c, lib/cloexec.h: New files.
30556
30557 2004-03-29  Paul Eggert  <eggert@twinsun.com>
30558
30559         * m4/cloexec.m4: New file.
30560
30561 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30562
30563         * lib/getopt.h: Sync with libc CVS.
30564
30565 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30566             Bruno Haible  <bruno@clisp.org>
30567
30568         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
30569         mbswidth.
30570
30571 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30572             Bruno Haible  <bruno@clisp.org>
30573
30574         * lib/mbswidth.h: Include <wchar.h> only if
30575         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
30576         <wchar.h>.
30577         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
30578
30579 2004-03-09  Paul Eggert  <eggert@twinsun.com>
30580
30581         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
30582         Sync with libc CVS.
30583         * lib/getopt_int.h: New file, also synced from libc.
30584
30585 2004-03-09  Paul Eggert  <eggert@twinsun.com>
30586
30587         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
30588         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
30589         Bring back getopt.c, getopt.h, getopt1.c.
30590
30591 2004-03-07  Paul Eggert  <eggert@twinsun.com>
30592
30593         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
30594         All uses changed.  Check for sa_sigaction member; this fixes
30595         a bug first reported by Jason Andrade in
30596         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
30597
30598 2004-03-07  Paul Eggert  <eggert@twinsun.com>
30599
30600         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
30601         '#if' expressions.  Unlike the code it replaces, it does not
30602         depend on (defined _SC_PAGESIZE).  However, it does depend on
30603         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
30604         first reported by Jason Andrade in
30605         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
30606
30607 2004-02-25  Simon Josefsson  <jas@extundo.com>
30608
30609         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
30610
30611 2004-02-25  Simon Josefsson  <jas@extundo.com>
30612
30613         * lib/strdup.h: New file.
30614         * lib/strdup.c: Include it.
30615         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
30616         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
30617
30618 2004-02-23  Karl Berry  <karl@gnu.org>
30619
30620         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
30621         (from fencepost.gnu.org:/gd/gnuorg).
30622
30623 2004-02-23  Karl Berry  <karl@gnu.org>
30624
30625         * config/srclistvars.sh (GNUORG) [karl]: redefine.
30626         * config/srclist.txt: add maintain/standards documents.
30627
30628 2004-02-18  Bruno Haible  <bruno@clisp.org>
30629
30630         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
30631         Reported by Derek Robert Price <derek@ximbiot.com>.
30632
30633 2004-02-16  Karl Berry  <karl@gnu.org>
30634
30635         * config/mkinstalldirs, install-sh: update from automake.
30636
30637 2004-02-06  Karl Berry  <karl@gnu.org>
30638
30639         * m4/po.m4: update from gettext 0.14.1.
30640
30641 2004-02-06  Karl Berry  <karl@gnu.org>
30642
30643         * lib/config.charset: update from gettext 0.14.1.
30644
30645 2004-02-05  Paul Eggert  <eggert@twinsun.com>
30646
30647         Add comments and code, prompted by suggestions from Bruno Haible
30648         for sh-quote.
30649         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
30650         describing the enum quoting_style values.
30651         * lib/quotearg.c (quotearg_alloc): New function.
30652         (quotearg_buffer_restyled): Treat lone { and } as special.
30653         Treat = as special.  Work around bug with older shells
30654         that "see" a '\' that is really the 2nd byte of a multibyte char.
30655         Quote empty string with shell_quoting_style.
30656
30657 2004-02-03  Bruno Haible  <bruno@clisp.org>
30658
30659         * m4/pipe.m4: New file, from GNU gettext.
30660
30661 2004-02-03  Bruno Haible  <bruno@clisp.org>
30662
30663         * lib/pipe.h: New file, from GNU gettext.
30664         * lib/pipe.c: New file, from GNU gettext.
30665
30666 2004-01-27  Bruno Haible  <bruno@clisp.org>
30667
30668         * m4/execute.m4: New file, from GNU gettext.
30669
30670 2004-01-27  Bruno Haible  <bruno@clisp.org>
30671
30672         * lib/execute.h: New file, from GNU gettext.
30673         * lib/execute.c: New file, from GNU gettext.
30674         * lib/w32spawn.h: New file, from GNU gettext.
30675
30676 2004-01-24  Paul Eggert  <eggert@twinsun.com>
30677
30678         Merge from diffutils.
30679
30680         * lib/file-type.c (file_type): Add typed memory objects.
30681         * lib/file-type.h (S_TYPEISTMO): New macro.
30682
30683         * lib/c-stack.h (c_stack_action): Remove argv argument.
30684         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
30685         (die): Don't calculate message unless segv_action returns.
30686         (get_stack_location, min_address_from_argv, max_address_from_argv,
30687         volatile stack_base, volatile_stack_size): Remove.
30688         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
30689         that every segmentation violation is a stack overflow.  (Ouch!)
30690         See Debian bug 136249 (still outstanding) for more info about why
30691         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
30692
30693 2004-01-24  Paul Eggert  <eggert@twinsun.com>
30694
30695         Exit-status fix from coreutils.
30696
30697         Use exit_failure consistently in place of EXIT_FAILURE,
30698         so that program exit statuses are consistent on failure.
30699
30700         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
30701         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
30702         * lib/argmatch.h: Comment fix to match the above.
30703         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
30704         Now a macro referring to exit_failure, instead of a separate
30705         variable.  Include "exitfail.h" to get it.
30706         * lib/xstrtol.h: Include "exitfail.h".
30707         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
30708
30709         * lib/long-options.c (parse_long_options): Use prototype
30710         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
30711         for clarity.
30712
30713 2004-01-21  Jim Meyering  <jim@meyering.net>
30714
30715         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
30716         so as not to conflict with a different-sized __mktime_internal
30717         function in GNU libc.
30718         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
30719         Problem building statically-linked `ls' reported by Michael Brunnbauer.
30720
30721 2004-01-20  Karl Berry  <karl@gnu.org>
30722
30723         * config/config.guess: update from config.
30724
30725         * config/srclistvars.sh: GNUWWWLICENSES for karl.
30726
30727 2004-01-20  Bruno Haible  <bruno@clisp.org>
30728
30729         Safer stack allocation.
30730         * lib/setenv.c: Include allocsa.h.
30731         (alloca): Remove fallback definition.
30732         (freea): Remove macro.
30733         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
30734         instead of freea.
30735
30736 2004-01-20  Bruno Haible  <bruno@clisp.org>
30737
30738         * m4/eealloc.m4: New file, from GNU gettext.
30739
30740 2004-01-20  Bruno Haible  <bruno@clisp.org>
30741
30742         * m4/allocsa.m4: New file, from GNU gettext.
30743
30744 2004-01-20  Bruno Haible  <bruno@clisp.org>
30745
30746         * lib/xallocsa.h: New file, from GNU gettext.
30747         * lib/xallocsa.c: New file, from GNU gettext.
30748
30749 2004-01-20  Bruno Haible  <bruno@clisp.org>
30750
30751         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
30752
30753 2004-01-20  Bruno Haible  <bruno@clisp.org>
30754
30755         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
30756         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
30757         specially.
30758
30759 2004-01-20  Bruno Haible  <bruno@clisp.org>
30760
30761         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
30762         patch.
30763
30764 2004-01-20  Bruno Haible  <bruno@clisp.org>
30765
30766         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
30767
30768 2004-01-20  Bruno Haible  <bruno@clisp.org>
30769
30770         * lib/eealloc.h: New file.
30771
30772 2004-01-20  Bruno Haible  <bruno@clisp.org>
30773
30774         * lib/binary-io.h: Avoid warnings on Cygwin.
30775
30776 2004-01-20  Bruno Haible  <bruno@clisp.org>
30777
30778         * lib/allocsa.h: New file, from GNU gettext.
30779         * lib/allocsa.c: New file, from GNU gettext.
30780
30781 2004-01-18  Karl Berry  <karl@gnu.org>
30782
30783         * doc/gpl.texi, doc/lgpl.texi: new files.
30784
30785 2004-01-18  Karl Berry  <karl@gnu.org>
30786
30787         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
30788         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
30789
30790 2004-01-15  Paul Eggert  <eggert@twinsun.com>
30791
30792         Merge from coreutils.
30793
30794         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
30795         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
30796         (gl_DEFAULT_POSIX2_VERSION): Move
30797         the documentation from 'configure' into 'config.hin',
30798         so that 'configure --help' isn't burdened by it and
30799         we don't have to worry about its formatting there.
30800         Reword the documentation so that it's more succinct
30801         and can be run together into a single paragraph.
30802         * m4/same.m4 (gl_SAME): Check for pathconf.
30803
30804 2004-01-15  Paul Eggert  <eggert@twinsun.com>
30805
30806         Merge from coreutils.
30807
30808         * lib/posixver.c: Include posixver.h.
30809
30810         * lib/same.c: Include <stdbool.h>, <limits.h>.
30811         (_POSIX_NAME_MAX): Define if not defined.
30812         (MIN): New macro.
30813         (same_name): If file names are silently truncated, report
30814         that the file names are the same if they are the same after
30815         the silent truncation.
30816
30817         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
30818         conversion function.
30819         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
30820         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
30821         longer needed.
30822
30823 2004-01-15  Jim Meyering  <jim@meyering.net>
30824
30825         Merge from coreutils.
30826
30827         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
30828         if no library is required.
30829         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
30830         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
30831         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
30832         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
30833         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
30834         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
30835         value, $ac_cv_search_crypt, if it's "none required".
30836         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
30837         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
30838         not gl_FUNC_GETLOADAVG.
30839         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
30840         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
30841
30842 2004-01-15  Jim Meyering  <jim@meyering.net>
30843
30844         Merge from coreutils.
30845
30846         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
30847         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
30848         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
30849
30850         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
30851         optional configure-time default.
30852
30853         * lib/version-etc.c (version_etc_copyright): Update copyright date.
30854
30855         * lib/xreadlink.c (xreadlink): Correct outdated comment.
30856
30857 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
30858
30859         Merge from coreutils.
30860
30861         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
30862         value, $ac_cv_search_nanosleep, if it's "none required".
30863
30864 2004-01-14  Paul Eggert  <eggert@twinsun.com>
30865
30866         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
30867         with like-named macro in fnmatch.c.
30868         (EXT): Use an internal constant instead.
30869
30870         Merge fnmatch patches from glibc.
30871         * lib/fnmatch.c (mbsinit): Remove define.
30872         Add libc_hidden_ver (__fnmatch, fnmatch).
30873         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
30874         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
30875
30876 2004-01-14  Karl Berry  <karl@gnu.org>
30877
30878         * config/install-sh: update from automake.
30879
30880 2004-01-13  Karl Berry  <karl@gnu.org>
30881
30882         * config/install-sh: update from automake.
30883
30884 2004-01-09  Karl Berry  <karl@gnu.org>
30885
30886         * config/install-sh: update from automake.
30887
30888 2004-01-05  Karl Berry  <karl@gnu.org>
30889
30890         * config/config.{sub,guess}: update from config.
30891
30892 2003-12-31  Karl Berry  <karl@gnu.org>
30893
30894         * config/depcomp: update from automake.
30895
30896 2003-12-14  Karl Berry  <karl@gnu.org>
30897
30898         * lib/config.charset: update from gettext-runtime.
30899
30900 2003-12-03  Paul Eggert  <eggert@twinsun.com>
30901
30902         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
30903         Bug reported by Alfred M. Szmidt.
30904
30905 2003-12-03  Bruno Haible  <bruno@clisp.org>
30906
30907         * m4/gettext.m4: Upgrade from gettext-0.13.
30908         * m4/po.m4: Upgrade from gettext-0.13.
30909         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
30910         * m4/intmax.m4: New file, from gettext-0.13.
30911         * m4/printf-posix.m4: New file, from gettext-0.13.
30912
30913 2003-11-29  Karl Berry  <karl@gnu.org>
30914
30915         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
30916
30917 2003-11-25  Paul Eggert  <eggert@twinsun.com>
30918             Bruno Haible  <bruno@clisp.org>
30919
30920         * lib/printf-parse.h: Don't include sys/types.h.
30921         (ARG_NONE): New macro.
30922         (char_directive): Change type of *arg_index fields to size_t.
30923         * lib/printf-parse.c: Don't include sys/types.h.
30924         (SSIZE_MAX): Remove macro.
30925         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
30926         Remove unnecessary overflow check.
30927         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
30928         fields.
30929
30930 2003-11-25  Bruno Haible  <bruno@clisp.org>
30931
30932         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
30933
30934 2003-11-25  Bruno Haible  <bruno@clisp.org>
30935
30936         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
30937         gt_TYPE_SSIZE_T.
30938
30939 2003-11-24  Paul Eggert  <eggert@twinsun.com>
30940
30941         * modules/alloca: Remove dependency on xalloc.
30942
30943 2003-11-24  Paul Eggert  <eggert@twinsun.com>
30944
30945         * lib/alloca.c: Remove dependency on xalloc module.
30946         (xalloc_die): Remove.
30947         (memory_full) [!defined emacs]: New macro.
30948         [!defined emacs]: Don't include xalloc.h.
30949         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
30950         address arithmetic overflows.  Change datatypes a bit to avoid
30951         unnecessary casts.
30952
30953 2003-11-22  Jim Meyering  <jim@meyering.net>
30954
30955         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
30956         s/size/size_t/.
30957
30958 2003-11-21  Karl Berry  <karl@gnu.org>
30959
30960         * config/config.{sub,guess}: update from config.
30961
30962 2003-11-18  Karl Berry  <karl@gnu.org>
30963
30964         * config/config.{sub,guess}: update from config.
30965
30966         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
30967
30968 2003-11-17  Paul Eggert  <eggert@twinsun.com>
30969
30970         * README: Mention that S+T cannot overflow if S is the size of
30971         an existing object and T is sufficiently small.
30972
30973 2003-11-17  Jim Meyering  <jim@meyering.net>
30974
30975         On systems without utime and without a utimes function capable of
30976         dealing with a NULL struct utimbuf* argument, this utime replacement
30977         could -- in unusual circumstances -- leak a file descriptor.
30978         * lib/utime.c: Include <unistd.h> and <errno.h>.
30979         (utime_null): Be sure to close `fd' and to preserve errno.
30980         Reported by Geoff Collyer via Arnold Robbins.
30981
30982 2003-11-17  Bruno Haible  <bruno@clisp.org>
30983
30984         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
30985         (Depends-on): Add xsize.
30986
30987 2003-11-17  Bruno Haible  <bruno@clisp.org>
30988
30989         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
30990
30991 2003-11-17  Bruno Haible  <bruno@clisp.org>
30992
30993         * lib/vasnprintf.c (alloca): Remove fallback definition.
30994         (freea): Remove definition.
30995         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
30996         Reported by Paul Eggert.
30997
30998 2003-11-16  Paul Eggert  <eggert@twinsun.com>
30999             Bruno Haible  <bruno@clisp.org>
31000
31001         Protect against address arithmetic overflow.
31002         * lib/printf-args.h: Include stddef.h.
31003         (arguments): Change type of field 'count' to size_t.
31004         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
31005         'unsigned int' where appropriate.
31006         * lib/printf-parse.h: Include sys/types.h.
31007         (char_directive): Change type of *arg_index fields to ssize_t.
31008         (char_directives): Change type of fields 'count', max_*_length to
31009         size_t.
31010         * lib/printf-parse.c: Include sys/types.h and xsize.h.
31011         (SSIZE_MAX): Define fallback value.
31012         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
31013         instead of 'int' where appropriate. Check a_allocated, d_allocated
31014         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
31015         * lib/vasnprintf.c: Include xsize.h.
31016         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
31017         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
31018         overflow. Avoid wraparound when converting a width or precision from
31019         decimal to binary.
31020
31021 2003-11-16  Bruno Haible  <bruno@clisp.org>
31022
31023         Update from GNU gettext.
31024         * lib/printf-parse.c: Generalize to it can be compiled for wide
31025         strings.
31026         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
31027         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
31028         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
31029         SNPRINTF): New macros.
31030         Don't include <alloca.h> if the file is used inside libintl.
31031         (local_wcslen): New function, for Solaris 2.5.1.
31032         (VASNPRINTF): Use it instead of wcslen.
31033
31034 2003-11-16  Bruno Haible  <bruno@clisp.org>
31035
31036         * lib/xsize.h (xmax): New function.
31037         (xsum, xsum3, xsum4): Declare as "pure" functions.
31038
31039 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31040
31041         * modules/xalloc (Files): Undo latest change, since xalloc.h
31042         no longer needs SIZE_MAX or PTRDIFF_MAX.
31043
31044 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31045
31046         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
31047         gl_PTRDIFF_MAX.
31048
31049 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31050
31051         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
31052         "return", to pacify some unknown compiler.  Problem reported
31053         by Joerg Schilling.
31054
31055 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31056
31057         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
31058         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
31059         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
31060         heuristic is just as accurate as far as we know, and it removes a
31061         dependency on size_max.m4 and ptrdiff_max.m4.
31062
31063 2003-11-11  Bruno Haible  <bruno@clisp.org>
31064
31065         * modules/xsize (Files): Add m4/size_max.m4.
31066         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
31067
31068 2003-11-11  Bruno Haible  <bruno@clisp.org>
31069
31070         * m4/size_max.m4: New file.
31071         * m4/ptrdiff_max.m4: New file.
31072         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
31073         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
31074         (gl_XALLOC): Invoke it.
31075
31076 2003-11-11  Bruno Haible  <bruno@clisp.org>
31077
31078         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
31079         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
31080         defined.
31081
31082 2003-11-10  Paul Eggert  <eggert@twinsun.com>
31083
31084         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
31085         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
31086         rejected some allocations of exactly SIZE_MAX - 2 bytes.
31087         From Bruno Haible.
31088         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
31089         not (size_t) -1, since it's defined here.
31090
31091 2003-11-09  Karl Berry  <karl@gnu.org>
31092
31093         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
31094
31095 2003-11-06  Paul Eggert  <eggert@twinsun.com>
31096
31097         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
31098         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
31099         Reject sizes of exactly SIZE_MAX bytes.
31100         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
31101         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
31102
31103 2003-11-05  Bruno Haible  <bruno@clisp.org>
31104
31105         * lib/xsize.h: Include limits.h, to avoid a possible collision with
31106         SIZE_MAX defined in <limits.h> on Solaris.
31107
31108 2003-11-04  Jim Meyering  <jim@meyering.net>
31109
31110         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
31111         variable names, rather than @VAR@.
31112         * modules/poll: Likewise.
31113
31114 2003-11-04  Bruno Haible  <bruno@clisp.org>
31115
31116         * modules/xsize: New file.
31117         * modules/linebreak: Depend on xsize.
31118         * MODULES.html.sh (func_all_modules): Add xsize.
31119
31120 2003-11-04  Bruno Haible  <bruno@clisp.org>
31121
31122         * m4/xsize.m4: New file.
31123
31124 2003-11-04  Bruno Haible  <bruno@clisp.org>
31125
31126         * lib/xsize.h: New file.
31127         * lib/linebreak.c: Include xsize.h.
31128         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
31129         argument for overflow.
31130         Suggested by Paul Eggert.
31131
31132 2003-11-03  Karl Berry  <karl@gnu.org>
31133
31134         * config/config.{guess,sub}: update from config.
31135
31136 2003-11-03  Jim Meyering  <jim@meyering.net>
31137
31138         * modules/userspec (lib_SOURCES): Add userspec.h.
31139         (Include): Add "userspec.h".
31140         Improve description.
31141
31142 2003-11-03  Jim Meyering  <jim@meyering.net>
31143
31144         * lib/userspec.c: Include "userspec.h".
31145         * lib/userspec.h: New file.
31146
31147 2003-11-03  Bruno Haible  <bruno@clisp.org>
31148
31149         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
31150
31151 2003-11-03  Bruno Haible  <bruno@clisp.org>
31152
31153         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
31154         available, to avoid (extremely rare) race condition.
31155         Suggested by Paul Eggert.
31156
31157 2003-11-02  Karl Berry  <karl@gnu.org>
31158
31159         * config/srclist.txt (vasprintf.c): sync broken, sigh.
31160
31161 2003-10-31  Paul Eggert  <eggert@twinsun.com>
31162
31163         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
31164         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
31165         (read_filesystem_list): Set and use me_type_malloced.
31166         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
31167         whatever the type happens to be), for brevity and consistency.
31168         Check for size calculation overflow on Alphas running OSF/1.
31169
31170 2003-10-31  Jim Meyering  <jim@meyering.net>
31171
31172         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
31173
31174         * lib/linebuffer.c: Include <string.h> for declaration of memset.
31175
31176 2003-10-30  Paul Eggert  <eggert@twinsun.com>
31177             Bruno Haible  <bruno@clisp.org>
31178
31179         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
31180         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
31181
31182 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
31183
31184         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
31185         netbsd*-gnu*.  Suggested by Robert Millan.
31186
31187 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31188
31189         * modules/group-member: Depend on stdbool.
31190
31191 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31192
31193         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
31194
31195 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31196
31197         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
31198         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
31199         after the 'gnu' in these cases.  This fixes some bugs in the
31200         previous change, and is based on suggestions by Robert Millan.
31201
31202 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31203
31204         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
31205         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
31206         no longer needed.
31207         * lib/quotearg.c (quotearg_n_options): Use it.
31208         * lib/group-member.c: Include <stdbool.h>.
31209         (free_group_info): Arg is now const *; don't free arg.
31210         (get_group_info): Now returns bool and accepts struct group_info *,
31211         rather than returning a malloc'ed struct group_info *.
31212         All uses changed.  Check for overflow in internal size calculation.
31213
31214         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
31215         rather than xmalloc/xrealloc.
31216         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
31217         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
31218         conformance bug: the old code used a pointer after freeing the
31219         storage that it addressed.
31220         * lib/hash.c (hash_initialize): Simplify the code by using
31221         xalloc_oversized rather than doing it by hand.
31222         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
31223         the buffer preserved.  Use free and xmalloc instead.
31224         * lib/quotearg.c (quotearg_n_options): Likewise.
31225         Use a simpler test for size overflow.  Don't use xalloc_oversized
31226         because unsigned int might be wider than size_t (!); this suggests
31227         that we should switch from unsigned int to size_t for slot numbers.
31228
31229 2003-10-28  Paul Eggert  <eggert@twinsun.com>
31230
31231         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
31232         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
31233         NetBSD kernels.  Requested by Richard Stallman.
31234
31235 2003-10-27  Paul Eggert  <eggert@twinsun.com>
31236
31237         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
31238         to allocate the returned structure.  Do not allocate a subarray,
31239         as x2nrealloc will do that.
31240         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
31241         instead of xnrealloc.
31242         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
31243
31244 2003-10-27  Bruno Haible  <bruno@clisp.org>
31245
31246         * lib/stdbool_.h: Better support for BeOS.
31247
31248 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31249
31250         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
31251         now uses inline.
31252
31253 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31254
31255         * lib/xalloc.h (xalloc_oversized): New static inline function, for
31256         callers that want to do their own size-overflow checking.  Include
31257         <stdbool.h>, since xalloc_oversized returns bool.
31258         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
31259         to use xalloc_oversized.
31260
31261         Add two functions x2realloc, x2nrealloc, for programs that grow
31262         arrays dynamically by doubling their sizes.
31263         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
31264         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
31265         New functions.
31266
31267         Port to C99 semantics for 'inline' of external functions.
31268         Bug reported by Bruno Haible.
31269         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
31270         with the old contents of xnmalloc.
31271         (xnmalloc, xmalloc): Use it.
31272         (xnrealloc_inline): New static inline function,
31273         with the old contents of xnrealloc.
31274         (xnrealloc, xrealloc): Use it.
31275
31276         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
31277         that.
31278
31279 2003-10-26  Karl Berry  <karl@gnu.org>
31280
31281         * config/srclist.txt (COPYING.DOC): no longer available from
31282         /gd/gnuorg; don't know where the ultimate source is.
31283
31284 2003-10-25  Paul Eggert  <eggert@twinsun.com>
31285
31286         Fix several address-calculation bugs in the hash modules,
31287         plus some minor code cleanup.
31288
31289         * lib/hash.h: Include <stdbool.h>, for bool.
31290         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
31291         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
31292         hash_get_n_entries, hash_get_max_bucket_length,
31293         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
31294         hash_rehash): Use size_t rather than unsigned.
31295         * lib/hash.c (struct hash_table, hash_get_n_buckets,
31296         hash_get_n_buckets_used, hash_get_n_entries,
31297         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
31298         hash_get_entries, hash_do_for_each, hash_string, is_prime,
31299         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
31300         Likewise.
31301         (SIZE_MAX): Define if not defined.
31302         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
31303         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
31304         hash_print):
31305         Use const * when possible.
31306         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
31307         (check_tuning): Fix bug: if tuning parameters were very close to
31308         0 or 1, rounding errors could have caused subscript violations.
31309         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
31310         (hash_initialize): Add 'fail:' label
31311         to free table and return NULL, and use it to simplify code.
31312         Use calloc rather than clearing the storage ourself.
31313         (hash_initialize, hash_rehash): Check for arithmetic overflow in
31314         buffer size calculations.
31315         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
31316         Include <stddef.h>, for size_t.
31317         * lib/hash-pjw.c (hash_pjw): Likewise.
31318         Switch to method described by Bruno Haible.
31319         Include <limits.h>, for CHAR_BIT.
31320         (SIZE_BITS): New macro.
31321
31322 2003-10-23  Paul Eggert  <eggert@twinsun.com>
31323
31324         * m4/getline.m4 (AM_FUNC_GETLINE):
31325         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
31326         hosts.  Problem reported by Derek Robert Price in
31327         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
31328         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
31329         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
31330
31331 2003-10-21  Paul Eggert  <eggert@twinsun.com>
31332
31333         * lib/getndelim2.c (getndelim2): When size calculation overflows,
31334         ceiling the allocation at NMAX bytes rather than silently
31335         discarding input bytes before NMAX is reached.  This makes
31336         a difference only if NMAX exceeds SIZE_MAX / 2.
31337
31338         * lib/obstack.c: Merge from glibc.
31339         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
31340         Add libc_hidden_def (_obstack_newchunk).
31341         (_obstack_free) [! defined _LIBC]: Remove.
31342         [defined _LIBC]: Make a strong alias from obstack_free, rather than
31343         a clone of the function body.
31344         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
31345         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
31346
31347         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
31348         glibc.
31349         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
31350         arg to memcpy.
31351
31352         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
31353         (obstack_ptr_grow_fast, obstack_int_grow_fast):
31354         Don't use lvalue casts, as GCC plans to remove support for them
31355         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
31356         was also present in the non-GCC version, indicating that this
31357         code had always been buggy and had never been widely used.
31358         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
31359         Use the fast variant of each macro, rather than copying the
31360         definiens of the fast variant; that way, we'll be more likely to
31361         catch future bugs in the fast variants.
31362
31363 2003-10-20  Bruno Haible  <bruno@clisp.org>
31364
31365         * modules/wait-process: New file.
31366         * MODULES.html.sh (func_all_modules): Add wait-process.
31367
31368 2003-10-20  Bruno Haible  <bruno@clisp.org>
31369
31370         * m4/wait-process.m4: New file.
31371
31372 2003-10-20  Bruno Haible  <bruno@clisp.org>
31373
31374         * lib/wait-process.h: New file, from GNU gettext.
31375         * lib/wait-process.c: New file, from GNU gettext.
31376
31377 2003-10-19  Jim Meyering  <jim@meyering.net>
31378
31379         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
31380         HPUX 10.20.
31381
31382 2003-10-18  Karl Berry  <karl@gnu.org>
31383
31384         * config/config.guess: update from config.
31385
31386 2003-10-16  Paul Eggert  <eggert@twinsun.com>
31387
31388         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
31389         (getgroups): First arg is int, not size_t.
31390         Don't let 'free' mangle errno.
31391
31392 2003-10-16  Paul Eggert  <eggert@twinsun.com>
31393
31394         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
31395
31396 2003-10-16  Karl Berry  <karl@gnu.org>
31397
31398         * config/config.{guess,sub}: update from config.
31399
31400 2003-10-16  Jim Meyering  <jim@meyering.net>
31401
31402         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
31403         memcpy.
31404
31405 2003-10-15  Paul Eggert  <eggert@twinsun.com>
31406
31407         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
31408         (SIZE_MAX): Remove.
31409         (new_exclude, add_exclude_file): Initial size no longer needs to
31410         be a power of 2.
31411         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
31412         our own address arithmetic overflow checking.
31413
31414         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
31415         (fnmatch): Do not alloca more than 2000 wide characters;
31416         instead, use malloc for large buffers.
31417         Check for address arithmetic overflow, and return -1
31418         with errno set to ENOMEM in that case.
31419         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
31420         (NEW_PATTERN): Do not alloca more than 8000 bytes;
31421         instead, return -1.  Check for address arithmetic overflow.
31422
31423 2003-10-14  Paul Eggert  <eggert@twinsun.com>
31424
31425         Handle invalid suffixes and overflow independently, so that
31426         callers can treat them independently as needed.  Fix some bugs in
31427         suffix handling, e.g., "100k@" was not diagnosed as an invalid
31428         suffix for a human-readable blocksize.  The major caller-visible
31429         change is the addition of a new
31430         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
31431         that both overflow and suffix chars were found.
31432
31433         * lib/human.c (humblock): Don't check separately for invalid suffix
31434         char; that is xstrtoumax's job (now that its bug is fixed).
31435         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
31436         INTMAX_MAX]: New macros.
31437         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
31438         TYPE_MAXIMUM): New macros.
31439         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
31440         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
31441         if overflow occurs, as it's what __strtol does and it's more useful
31442         in practice.
31443         (__xstrtol): If __strtol reports some error other than ERANGE,
31444         reflect it to the caller as LONGINT_INVALID.  If it reports
31445         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
31446         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
31447         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
31448         value.
31449         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
31450         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
31451         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
31452         [defined UINTMAX_MAX]: New macros.
31453
31454 2003-10-14  Bruno Haible  <bruno@clisp.org>
31455
31456         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
31457
31458 2003-10-14  Bruno Haible  <bruno@clisp.org>
31459
31460         * m4/sig_atomic_t: New file, from GNU gettext.
31461         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
31462
31463 2003-10-14  Bruno Haible  <bruno@clisp.org>
31464
31465         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
31466         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
31467         Also use volatile where needed.
31468
31469 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31470
31471         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
31472         Change maintainer from Bruno Haible to 'all'.
31473
31474 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31475
31476         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
31477
31478 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31479
31480         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
31481         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
31482         and define in terms of the other primitives.
31483         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
31484         (SIZE_MAX): Define if not already defined.
31485         (array_size_overflow): New function.
31486         (xalloc_die): Abort instead of exiting if 'error' returns.
31487         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
31488         (xmalloc, xrealloc): Use them.
31489         (xcalloc): Check for address arithmetic overflow.
31490         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
31491         a bit faster than strcpy.
31492
31493 2003-10-10  Simon Josefsson  <jas@extundo.com>
31494
31495         * modules/argp (Depends-on): Add restrict and strcase.
31496
31497 2003-10-10  Simon Josefsson  <jas@extundo.com>
31498
31499         * m4/argp.m4: Add AC_C_INLINE.
31500
31501 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31502
31503         Merge getpass from libc, plus a few fixes.
31504
31505         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
31506         Include <stdbool.h>.
31507         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
31508         __fsetlocking to empty.
31509         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
31510         do include <bits/libc-lock.h>.
31511         Do not include <fcntl.h>; not needed.
31512         [_LIBC]: Include <wchar.h>.
31513         (NOTCANCEL_MODE): New macro.
31514         (flockfile, funlockfile) [_LIBC]: New macros.
31515         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
31516         [!_LIBC]: New macros.
31517         (call_fclose): New function.
31518         (getpass): Use it.  Save tty stream separately; this simplifies the
31519         code and makes it more reliable if stdin happens to equal stdout.
31520         Invoke __fsetlocking on tty.
31521         Handle thread cancellation if needed.
31522         Namespace cleanup (use __tcgetattr, __getline).
31523         Use bool for Booleans.
31524         [USE_IN_LIBIO]: Handle wide streams.
31525         [!_LIBC]: Unconditionally do the fseek, since we don't know what
31526         stream might go where.
31527
31528         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
31529         doesn't have to include <stdio.h> before us.
31530         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
31531         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
31532         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
31533         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
31534         if not declared, so that we can use getpass.c code from libc without
31535         rewriting it.
31536         (flockfile, ftrylockfile, funlockfile): New macros.
31537
31538 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31539
31540         * modules/getpass: Depend on stdbool.
31541
31542 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31543
31544         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
31545
31546 2003-10-07  Karl Berry  <karl@gnu.org>
31547
31548         * config/config.{guess,sub}: update from config.
31549
31550 2003-10-06  Jim Meyering  <jim@meyering.net>
31551             Bruno Haible  <bruno@clisp.org>
31552
31553         This lets translators provide better translations for the
31554         "Written by ..." part of --version output.
31555         * lib/version-etc.h: Include stdarg.h.
31556         (version_etc_copyright): Declare as readonly.
31557         (version_etc): Make this function variadic with a NULL-terminated list
31558         of author name strings.
31559         (version_etc_va): New declaration.
31560         * lib/version-etc.c: Include stdarg.h, stdlib.h.
31561         (version_etc_copyright): Declare as readonly.
31562         (version_etc_va): New function. Provide a different translatable string
31563         for each possible number of authors < 10. Abbreviate when there are 10
31564         authors or more.
31565         (version_etc): Make this function variadic. Call version_etc_va.
31566         Suggestion from Gary V. Vaughan.
31567
31568         * lib/long-options.h (parse_long_options): Change prototype: the
31569         authors string is moved to the end and becomes variadic.
31570         * lib/long-options.c: Include stdarg.h.
31571         (parse_long_options): Make this function variadic, too.
31572         Call version_etc_va, not version_etc.
31573
31574 2003-10-06  Bruno Haible  <bruno@clisp.org>
31575
31576         * modules/version-etc-2: Remove file.
31577         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
31578
31579 2003-10-06  Bruno Haible  <bruno@clisp.org>
31580
31581         * modules/fatal-signal: New file.
31582         * MODULES.html.sh (func_all_modules): Add fatal-signal.
31583
31584 2003-10-06  Bruno Haible  <bruno@clisp.org>
31585
31586         * m4/fatal-signal.m4: New file.
31587         * m4/signalblocking.m4: New file, from GNU gettext.
31588
31589 2003-10-06  Bruno Haible  <bruno@clisp.org>
31590
31591         * lib/version-etc-2.h: Remove file.
31592         * lib/version-etc-2.c: Remove file.
31593
31594 2003-10-06  Bruno Haible  <bruno@clisp.org>
31595
31596         * lib/fatal-signal.h: New file, from GNU gettext.
31597         * lib/fatal-signal.c: New file, from GNU gettext.
31598
31599 2003-10-05  Paul Eggert  <eggert@twinsun.com>
31600
31601         * README: Rework advice for preventing empty .o files.
31602         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
31603         not <sys/types.h>.
31604
31605 2003-10-04  Karl Berry  <karl@gnu.org>
31606
31607         * lib/argp*: update from libc.
31608
31609 2003-10-04  Karl Berry  <karl@gnu.org>
31610
31611         * config/config.{guess,sub}: update from config.
31612
31613 2003-10-02  Bruno Haible  <bruno@clisp.org>
31614
31615         * modules/lchown (Include): Add lchown.h.
31616         * modules/time_r (Include): Use "..." syntax.
31617         * modules/xgetdomainname (Include): Add xgetdomainname.h.
31618
31619 2003-10-01  Simon Josefsson  <jas@extundo.com>
31620
31621         * MODULES.html.sh (func_all_modules): Move gethostname from section
31622         'based on' to section 'lacking' POSIX:2001.
31623
31624 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
31625
31626         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
31627         to output mode on the same stream.
31628
31629 2003-09-29  Paul Eggert  <eggert@twinsun.com>
31630
31631         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
31632         Fix arg typo in previous patch.
31633
31634 2003-09-28  Jim Meyering  <jim@meyering.net>
31635
31636         * lib/error.c: Correct cpp indentation.
31637
31638 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31639
31640         * modules/free: New file.
31641
31642 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31643
31644         * m4/free.m4: New file.
31645
31646 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31647
31648         * lib/minmax.h (MIN, MAX)
31649         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
31650         Omit the special code that used __typeof__, since we worry that
31651         it could be more trouble than it's worth.  See:
31652         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
31653         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
31654
31655         * lib/free.c: New file.
31656
31657 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
31658
31659         Trivial fixes to Makefile.am parts of module listings.
31660         * modules/strstr: Append strstr.h to lib_SOURCES.
31661         * modules/strcase: Likewise, for strcase.h.
31662
31663 2003-09-27  Karl Berry  <karl@gnu.org>
31664
31665         * config/mkinstalldirs: update from automake.
31666
31667 2003-09-26  Paul Eggert  <eggert@twinsun.com>
31668
31669         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
31670         (error_tail): Do not loop, reallocating temporary buffer, since
31671         the output cannot contain more wide characters than the input
31672         contains bytes, the size must be big enough already.  This avoids
31673         one potential size overflow calculation.  Check for size overflow
31674         when calculating temporary buffer size.  Free temporary buffer
31675         when done, if it was allocated with malloc; this plugs a memory
31676         leak.  Remove casts from void * to pointers, that are no longer
31677         needed now that we're assuming C89 or better.
31678
31679         Merge error changes from glibc.
31680
31681         * lib/error.c, error.h: Update copyright notice header to match glibc.
31682         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
31683         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
31684         Disable cancellation while printing error.
31685         * lib/error.h: Prepend __ to parameter names.
31686
31687 2003-09-26  Jim Meyering  <jim@meyering.net>
31688
31689         * lib/error.c (error_tail): Move some declarations
31690         into inner scope where the local variables are used.
31691
31692 2003-09-26  Bruno Haible  <bruno@clisp.org>
31693
31694         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
31695         stpncpy().
31696         Don't define stpncpy through config.h; it's now done through stpncpy.h.
31697
31698 2003-09-26  Bruno Haible  <bruno@clisp.org>
31699
31700         * lib/stpncpy.h (gnu_stpncpy): New declaration.
31701         (stpncpy): Define as alias for gnu_stpncpy.
31702         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
31703
31704 2003-09-25  Simon Josefsson  <jas@extundo.com>
31705
31706         * lib/xgetdomainname.h: New file.
31707         * lib/xgetdomainname.c: New file.
31708
31709 2003-09-25  Simon Josefsson  <jas@extundo.com>
31710             Bruno Haible  <bruno@clisp.org>
31711
31712         * modules/getdomainname: New file.
31713         * modules/xgetdomainname: New file.
31714         * MODULES.html.sh (func_all_modules): Add getdomainname,
31715         xgetdomainname.
31716
31717 2003-09-25  Simon Josefsson  <jas@extundo.com>
31718             Bruno Haible  <bruno@clisp.org>
31719
31720         * m4/getdomainname.m4: New file.
31721
31722 2003-09-25  Simon Josefsson  <jas@extundo.com>
31723             Bruno Haible  <bruno@clisp.org>
31724
31725         * lib/getdomainname.h: New file.
31726         * lib/getdomainname.c: New file.
31727
31728 2003-09-25  Karl Berry  <karl@gnu.org>
31729
31730         * lib/argp-fmtstream.c, argp-help.c: update from libc.
31731
31732 2003-09-25  Karl Berry  <karl@gnu.org>
31733
31734         * config/install-sh: update from automake.
31735
31736 2003-09-25  Bruno Haible  <bruno@clisp.org>
31737
31738         * modules/version-etc-2: New file, from modules/version-etc with
31739         modifications.
31740         * MODULES.html.sh (func_all_modules): Add version-etc-2.
31741
31742 2003-09-25  Bruno Haible  <bruno@clisp.org>
31743
31744         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
31745         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
31746
31747 2003-09-24  Simon Josefsson  <jas@extundo.com>
31748
31749         * modules/xgethostname: Add xgethostname.h.
31750
31751 2003-09-24  Paul Eggert  <eggert@twinsun.com>
31752
31753         * lib/linebuffer.c (freebuffer): Don't free the argument, just
31754         the buffer associated with the argument.  Bug reported by
31755         Simon Josefsson.
31756
31757 2003-09-24  Paul Eggert  <eggert@twinsun.com>
31758
31759         * README: Document assumptions that 'int' is at least 32 bits
31760         wide, that integer arithmetic is 2's complement without overflow,
31761         that there are no holes in integer values, that adding sizes of
31762         two nonoverlapping objects can't overflow, and that all-bits-zero
31763         yields scalar zero.  Fix spelling and capitalization typos.
31764
31765 2003-09-19  Karl Berry  <karl@gnu.org>
31766
31767         * lib/argp.h: update from libc.
31768
31769 2003-09-17  Paul Eggert  <eggert@twinsun.com>
31770
31771         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
31772         to avoid spurious warnings like "AC_RUN_IFELSE was called before
31773         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
31774
31775 2003-09-17  Paul Eggert  <eggert@twinsun.com>
31776
31777         * gnulib-tool: Use "test -h", not "test -L", for portability
31778         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
31779         (tags_regexp): Remove, since \| doesn't conform to POSIX.
31780         (sed_extract_prog): Issue s commands one-by-one, rather than
31781         using \| in one s command.
31782
31783 2003-09-16  Paul Eggert  <eggert@twinsun.com>
31784
31785         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
31786         input error, instead of returning NULL the next time we are called
31787         (and therefore losing track of errno).
31788
31789 2003-09-16  Bruno Haible  <bruno@clisp.org>
31790
31791         * gnulib-tool (func_create_testdir): Warn about duplicated
31792         dependencies.
31793
31794 2003-09-15  Paul Eggert  <eggert@twinsun.com>
31795
31796         * modules/argmatch, modules/fatal, modules/obstack,
31797         modules/xalloc, modules/xgethostname: Sort dependencies by
31798         importance, not alphabetically.
31799
31800 2003-09-15  Paul Eggert  <eggert@twinsun.com>
31801
31802         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
31803         fails, so that the caller gets the proper errno.
31804
31805         * lib/readutmp.c (read_utmp): Likewise.
31806         Check for fstat error.  Close stream and free storage
31807         when failing.
31808
31809 2003-09-14  Karl Berry  <karl@gnu.org>
31810
31811         * config/srclist.txt (strdup.c): disable for c89 changes.
31812
31813 2003-09-14  Jim Meyering  <jim@meyering.net>
31814
31815         * lib/getloadavg.c: Correct cpp indentation.
31816         * lib/strdup.c: Likewise.
31817         * lib/vasnprintf.c: Likewise.
31818
31819 2003-09-14  Bruno Haible  <bruno@clisp.org>
31820
31821         * modules/fwriteerror: New file.
31822         * MODULES.html.sh (func_all_modules): Add fwriteerror.
31823
31824 2003-09-14  Bruno Haible  <bruno@clisp.org>
31825
31826         * lib/fwriteerror.h: New file.
31827         * lib/fwriteerror.c: New file.
31828
31829 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31830
31831         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
31832         modules/xgethostname, modules/xalloc: Depend on exit.
31833
31834 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31835
31836         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
31837
31838         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
31839         and AC_MINIX, too, so that their extensions are available.
31840
31841         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
31842         This macro has been superseded by gl_BACKUPFILE.
31843
31844         More patches to assume C89 or better.
31845
31846         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
31847
31848         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
31849         unconditionally.
31850         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
31851         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
31852         Include <string.h>, <stdlib.h> unconditionally.
31853         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
31854         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
31855         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
31856         headers or for string.h.
31857         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
31858         or strtoul.
31859
31860         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
31861         headers.
31862         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
31863         * m4/userspec.m4 (gl_USERSPEC): Likewise.
31864         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
31865         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
31866         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
31867         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
31868         memcpy, memset.
31869         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
31870         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
31871         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
31872         strtol.
31873         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
31874         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
31875         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
31876         strtoul.
31877
31878 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31879
31880         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
31881         * lib/obstack.c [!defined _LIBC]: Likewise.
31882         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
31883         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
31884         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
31885
31886         More changes to assume C89 or better.
31887
31888         * lib/error.c (error_tail): Assume vprintf.
31889
31890         * lib/argmatch.c (getenv): Remove decl.
31891         * lib/progreloc.c (get_full_program_name): Define via prototype.
31892         * lib/setenv.c (clearenv): Likewise.
31893         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
31894         needed.
31895         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
31896         (malloc, memcpy): Remove decls.
31897         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
31898         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
31899         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
31900         (memcpy): Remove macro.
31901         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
31902         (__P): Remove.  All uses removed.
31903         (PTR): Remove.  All uses changed to void *.
31904         (CHAR_BIT, NULL): Remove.
31905         (spaces, zeros, memset_space, memset_zero)
31906         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
31907         Remove.
31908         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
31909         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
31910         Define with prototype.
31911         Remove now-unnecessary prototype decl.
31912         (extra_args_spec): Assume ANSI C.  All uses changed.
31913         (extra_args_spec_iso): Remove.
31914         (my_strftime, emacs_strftimeu): Define via prototype.
31915         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
31916         unconditionally.
31917         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
31918         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
31919         (strtoul, strtol): Remove decls.
31920         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
31921         LONG_MAX): Remove.
31922         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
31923         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
31924         (LOCALE_PARAM_PROTO): New macro.
31925         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
31926         (INTERNAL (strtol), strtol): Define with a prototype.
31927         (PARAMS): Remove.  All uses removed.
31928         * lib/tempname.c: Include <string.h> unconditionally.
31929         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
31930         * lib/xgethostname.c (main): Define with a prototype.
31931         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
31932         Include <stdlib.h> unconditionally.
31933         (calloc, malloc, realloc, free): Remove decls.
31934         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
31935         Include <stdlib.h> unconditionally.  Sort include file names.
31936         (strtod): Remove.
31937         (xstrtod): Define with a prototype.
31938         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
31939         (strtol, strtoul): Remove decls.
31940
31941 2003-09-11  Paul Eggert  <eggert@twinsun.com>
31942
31943         More patches to assume C89 or better.
31944         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
31945         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
31946         string.h, memchr, STDC_HEADERS.
31947
31948 2003-09-11  Paul Eggert  <eggert@twinsun.com>
31949
31950         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
31951         Include <stdlib.h>, <string.h> unconditionally.
31952         Remove now-unnecessary cast to char *.
31953         * lib/strnlen.c: Include <string.h> unconditionally.
31954         * lib/yesno.c (yesno): Define with a prototype.
31955
31956 2003-09-11  Bruno Haible  <bruno@clisp.org>
31957
31958         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
31959
31960 2003-09-10  Jim Meyering  <jim@meyering.net>
31961
31962         * lib/error.c: Correct indentation of cpp directives.
31963
31964 2003-09-10  Bruno Haible  <bruno@clisp.org>
31965
31966         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
31967         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
31968         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
31969         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
31970         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
31971         <stdlib.h> and <string.h> checks.
31972         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
31973         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
31974
31975 2003-09-10  Bruno Haible  <bruno@clisp.org>
31976
31977         * lib/strcspn.c: Include <string.h> unconditionally.
31978         * lib/strpbrk.c: Include <string.h> unconditionally.
31979         * lib/strstr.c: Include <string.h> unconditionally.
31980         * lib/unicodeio.c: Include <string.h> unconditionally.
31981         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
31982         * lib/unsetenv.c: Likewise.
31983         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
31984         * lib/yesno.c: Include <stdlib.h> unconditionally.
31985         (rpmatch): Add prototype.
31986
31987 2003-09-09  Paul Eggert  <eggert@twinsun.com>
31988
31989         More patches to assume C89 or better.
31990         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
31991         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
31992         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
31993         or for string.h.
31994         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
31995         stdlib.h.
31996         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
31997         C headers.
31998         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
31999         string.h.
32000         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
32001         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
32002         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
32003         or for string.h.
32004         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
32005         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
32006         C headers.
32007         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
32008         memcpy.
32009         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
32010         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
32011         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
32012         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
32013         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
32014         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
32015         string.h, free.
32016         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
32017         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
32018         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
32019         C headers, or for string.h.
32020         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
32021         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
32022         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
32023         headers, memory.h, stdlib.h, string.h, strings.h.
32024         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
32025         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
32026         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
32027         strchr.
32028         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
32029         headers, memory.h, string.h.
32030         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
32031         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
32032         free.
32033         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
32034         headers.
32035         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
32036         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
32037         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
32038         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
32039         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
32040
32041 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32042
32043         More K&R removal.
32044
32045         * lib/acosl.c (main): Use a prototype.
32046         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
32047         tanl.c: Likewise.
32048
32049         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
32050
32051         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
32052         (getopt, etopt_long, getopt_long_only, _getopt_internal)
32053         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
32054         with a prototype.
32055         * lib/getopt.c (const): Remove macro.
32056         Include <string.h> unconditionally.
32057         (my_index): Remove; all uses changed to strchr.
32058         (strlen): Remove decl.
32059         (exchange): Remove forward decl; no longer needed.
32060         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
32061         Define with prototype.
32062         * lib/getopt1.c (const): Remove macro.
32063         (getopt_long, getopt_long_only, main): Define with prototype.
32064
32065         * lib/getugroups.c: Include <string.h> unconditionally.
32066
32067         * lib/getusershell.c: Include <stdlib.h> unconditionally.
32068         (getusershell, setusershell, endusershell, readname, main):
32069         Define with prototypes.
32070
32071         * lib/group-member.c: Include group-member.h first.
32072         Include <stdlib.h> unconditionally.
32073
32074         * lib/hard-locale.c: Include hard-locale.h first.
32075         Include <stdlib.h>, <string.h> unconditionally.
32076
32077         * lib/hash.c (free, malloc): Remove decls.
32078         Include <stdlib.h> unconditionally.
32079
32080         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
32081         (getenv): Do not declare.
32082
32083         * lib/idcache.c: Include <string.h> unconditionally.
32084
32085         * lib/long-options.c: Include long-options.h first, to test interface.
32086         Include <stdlib.h> unconditionally.
32087
32088         * lib/makepath.c: Include makepath.h first, to test interface.
32089         Include <stdlib.h> and <string.h> unconditionally.
32090
32091         * lib/linebuffer.c: Include <stdlib.h>.
32092         (free): Remove decl.
32093
32094         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
32095         stddef.h. rpl_malloc returns void *, not char *.
32096         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
32097         prototype.
32098
32099         * lib/md5.h: Include <limits.h> unconditionally.
32100         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
32101         (__P): Remove; all uses removed.
32102         * lib/md5.c: Include "md5.h" first.
32103         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
32104         md5_buffer, md5_process_bytes, md5_process_block):
32105         Define with prototypes.
32106         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
32107         * lib/sha.c: Include "sha.h" first.
32108         Include <stdlib.h>, <string.h> unconditionally.
32109
32110         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
32111         * lib/memcmp.c (__ptr_t): Likewise.
32112         * lib/memrchr.c (__ptr_t): Likewise.
32113         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
32114         Include <string.h> unconditionally.
32115         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
32116         * lib/memchr.c: Include <stdlib.h> unconditionally.
32117         * lib/memchr.c (LONG_MAX): Remove.
32118         * lib/memrchr.c (LONG_MAX): Likewise.
32119         * lib/memchr.c (__memchr): Define via a prototype.
32120         * lib/memrchr.c (__memrchr): Likewise.
32121         * lib/memcmp.c (__P): Remove, and remove all uses.
32122         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
32123         Remove forward decls; no longer needed.
32124         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
32125         Use types required by C89 in prototype.
32126
32127         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
32128         * lib/savedir.c: Likewise.
32129         * lib/mkdir.c (free): Remove decl.
32130         * lib/rmdir.c (rmdir): Define with a prototype.
32131         * lib/savedir.c: Include savedir.h first, to test interface.
32132
32133         * lib/mktime.c (STDC_HEADERS): Remove.
32134         Include <stdlib.h>, <string.h> unconditionally.
32135
32136         * lib/modechange.c: Include <stdlib.h> unconditionally.
32137         (malloc): Remove decl.
32138
32139         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
32140         (free): Remove decl.
32141
32142         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
32143         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
32144         (This type really should be intptr_t, but that's a C99ism.)
32145         (_obstack_memcpy): Remove: all uses changed to memcpy.
32146         Include <string.h> unconditionally.
32147         (struct obstack): Assume __STDC__ for types of members
32148         chunkfun, freefun, extra_arg.
32149         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
32150         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
32151         obstack_begin, obstack_specify_allocation,
32152         obstack_specify_allocation_with_arg, obstack_chunkfun,
32153         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
32154         Remove unprototyped decls and the macros that use them.
32155         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
32156         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
32157         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
32158         (defined __STDC__ && __STDC__)]:
32159         Remove nonprototyped code.
32160         Include <stdlib.h> unconditionally.
32161         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
32162         _obstack_allocated_p, _obstack_free, obstack_free,
32163         _obstack_memory_used, print_and_abort):
32164         Define using prototypes.
32165         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
32166         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
32167         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
32168         obstack_next_free, obstack_object_size, obstack_room) [0]:
32169         Remove unused, unprototyped code.
32170
32171         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
32172
32173         * lib/physmem.c (physmem_total, physmem_available, main): Define
32174         with prototypes.
32175
32176         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
32177         (main): Define with a prototype.
32178
32179         * lib/posixver.c (getenv): Remove decl.
32180
32181         * lib/putenv.c (malloc): Returns void *, not char *.
32182         Include <string.h> unconditionally.
32183         (strchr, memcpy, NULL): Do not define.
32184
32185         * lib/readtokens.c: Include readtokens.h first, to test interface.
32186         Include <stdlib.h>, <string.h> unconditionally.
32187         (init_tokenbuffer): Define with a prototype.
32188
32189         * lib/regex.c (PARAMS): Remove.  All uses removed.
32190         All uses of _RE_ARGS removed, too.
32191         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32192         unconditionally.
32193         (bzero): Assume memset exists.
32194         (memcmp, memcpy, NULL): Remove.
32195         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
32196         char, or assignments to local vars of type signed char.
32197         (init_syntax_once, PREFIX(extract_number_and_incr),
32198         PREFIX(print_partial_compiled_pattern),
32199         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
32200         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
32201         PREFIX(regex_grow_registers), PREFIX(regex_compile),
32202         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
32203         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
32204         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
32205         wcs_compile_range, byte_compile_range, truncate_wchar,
32206         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
32207         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
32208         count_mbs_length, wcs_re_match_2_internal,
32209         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
32210         PREFIX(alt_match_null_string_p),
32211         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
32212         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
32213         regfree, PREFIX(extract_number)): Define with prototype.  Remove
32214         now-unnecessary declaration, if any.
32215         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
32216         regcomp, regexec):
32217         Remove now-unnecessary casts among pointer types.
32218         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
32219
32220         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
32221         (free): Remove decl.
32222
32223         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
32224
32225         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
32226         (free): Remove decl.
32227
32228         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
32229         * lib/xgetcwd.c: Likewise.
32230
32231         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
32232         (free): Remove decl.
32233
32234         * lib/strchrnul.c (strchrnul): Define with a prototype.
32235         Fix bug: c_in was not converted to char before searching.
32236
32237         The following changes are not K&R related:
32238
32239         * lib/group-member.h: Include <sys/types.h>, so that this file is
32240         self-contained.
32241         * lib/makepath.h: Likewise.
32242
32243         * lib/getusershell.c (readname, default_index, line_size, readname):
32244         Use size_t, not int, for sizes.
32245         (readname): If the size overflows, report an error instead of
32246         looping forever.
32247
32248 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32249
32250         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
32251         libc.
32252
32253 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32254
32255         * README: New section: portability guidelines.
32256
32257 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32258
32259         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
32260         C89 spec.
32261
32262 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32263
32264         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
32265
32266 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32267
32268         Assume C89 or better; remove K&R cruft.
32269         A few of these changes were first proposed by Derek Robert Price
32270         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
32271
32272         * lib/addext.c: Include <string.h> unconditionally.
32273         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
32274         Don't declare getenv or malloc.
32275
32276         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
32277         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
32278         (NULL): Remove.
32279         (find_stack_direction, alloca): Use prototypes.
32280
32281         * lib/atexit.c (atexit): Define using a prototype.
32282
32283         * lib/basename.c, dirname.c, stripslash.c:
32284         Include <string.h> unconditionally.
32285
32286         * lib/bcopy.c: Include <stddef.h>.
32287         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
32288
32289         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
32290
32291         * lib/error.h (error, error_at_line, error_print_progname)
32292         [! (defined (__STDC__) && __STDC__)]: Remove decls.
32293         * lib/error.c: Include error.h first, to check interface.
32294         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32295         (VA_START): Remove; all uses changeed to va_start.
32296         (exit, strerror): Remove decls.
32297         (error_print_progname): Prototype uncondionally.
32298         Don't include <errno.h>; no longer needed.
32299         (private_strerror): Remove.
32300         (error_tail): Always define.
32301         (error, error_at_line): Assume C89 or better; always use prototypes.
32302         * lib/fatal.c: Include "fatal.h" first, to test interface.
32303         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32304         (VA_START): Remove; all uses changed to va_start.
32305         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
32306         this case.
32307         (exit): Remove decl.
32308         (fatal): Prototype unconditionally.  Assume va_start works.
32309         Abort at end, to pacify gcc.
32310
32311         * lib/euidaccess.c (main): Define with a prototype.
32312
32313         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
32314
32315         * lib/exitfail.c: Include <stdlib.h> unconditionally.
32316
32317         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
32318         prototypes.
32319         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
32320         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
32321         (getenv): Remove decl.
32322         (fnmatch): Define using a prototype.
32323         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
32324         (FCT): Define using a prototype.
32325
32326         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
32327
32328         * lib/gethostname.c: Include <stddef.h>.
32329         (gethostname): Define with prototype.  Length is size_t, not int.
32330
32331 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32332
32333         Assume C89 or better; remove K&R cruft.
32334         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
32335         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
32336         string.h, getenv, malloc.
32337         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
32338         headers.
32339         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
32340         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
32341         do not check for strerror.
32342         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
32343         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
32344         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
32345         do not check for doprnt or vprintf.
32346         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
32347         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
32348
32349 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32350
32351         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
32352         getversion.c should have been removed then, but was accidentally
32353         preserved.
32354
32355         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
32356         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
32357
32358 2003-09-08  Karl Berry  <karl@gnu.org>
32359
32360         * config/config.sub, config.guess, srclistvars.sh: update from savannah
32361                 config, forget about prep.
32362
32363         * config/depcomp, missing: update from automake.
32364
32365 2003-09-07  Paul Eggert  <eggert@twinsun.com>
32366
32367         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
32368         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
32369
32370 2003-09-07  Paul Eggert  <eggert@twinsun.com>
32371
32372         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
32373         copy_tm_result.  Bug reported by Simon Josefsson in
32374         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
32375
32376 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32377
32378         * m4/time_r.m4: New file.
32379         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
32380         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
32381         is. Check for timegm declaration.
32382         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
32383         Do not check for gmtime_r.
32384         Replace mktime if __mktime_internal does not exist and if mktime
32385         hasn't been replaced already.
32386
32387 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32388
32389         * lib/time_r.c, lib/time_r.h: New files.
32390
32391         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
32392         __localtime_r.
32393         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
32394         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
32395
32396         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
32397         __gmtime_r.
32398         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
32399         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
32400         Include <time_r.h>.
32401
32402         * lib/timegm.c: Switch to glibc implementation, with the following
32403         changes:
32404         [defined HAVE_CONFIG_H]: Include <config.h>.
32405         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
32406         (__mktime_internal) [!defined _LIBC]: New decl.
32407         (__gmtime_r) [!defined _LIBC]: New macro and function.
32408         (timegm): Use a prototype, since gnulib assumes C89.
32409         Do not bother declaring tmp to be const, as it's not really usefu.
32410         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
32411         (timegm): Declare only if HAVE_DECL_TIMEGM.
32412
32413 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32414
32415         * MODULES.html.sh (func_all_modules): Add time_r.
32416         * modules/time_r: New file.
32417         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
32418         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
32419
32420 2003-09-03  Paul Eggert  <eggert@twinsun.com>
32421
32422         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
32423         Bug reported by Lute Kamstra in
32424         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
32425
32426         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
32427         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
32428         course with correspondingly smaller numbers for tomorrow and
32429         yesterday.  From Tadayoshi Funaba.  Originally installed into
32430         sh-utils on 1999-08-07, but the patch got lost (I guess during the
32431         coreutils merge?).
32432
32433 2003-08-31  Simon Josefsson  <jas@extundo.com>
32434
32435         * modules/timegm: New file.
32436         * MODULES.html.sh (func_all_modules): Add timegm.
32437
32438 2003-08-31  Simon Josefsson  <jas@extundo.com>
32439
32440         * m4/timegm.m4: New file.
32441
32442 2003-08-31  Simon Josefsson  <jas@extundo.com>
32443
32444         * lib/timegm.h: New file.
32445         * lib/timegm.c: New file.  Based on
32446         wget-1.8.2/src/http.c:mktime_from_utc.
32447
32448 2003-08-31  Karl Berry  <karl@gnu.org>
32449
32450         * lib/argp.h: update from libc.
32451
32452 2003-08-28  Bruno Haible  <bruno@clisp.org>
32453
32454         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
32455         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
32456         followed by '#define fnmatch fnmatch_posix' gives an error.
32457
32458 2003-08-28  Bruno Haible  <bruno@clisp.org>
32459
32460         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
32461         warning on QNX, which defines O_BINARY to 000000.
32462
32463 2003-08-27  Jim Meyering  <jim@meyering.net>
32464
32465         * m4/mkstemp.m4: Require that the system mkstemp be able to create
32466         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
32467         would fail after 32.  Reported by Danny Levinson.  Details here:
32468         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
32469
32470 2003-08-24  Bruno Haible  <bruno@clisp.org>
32471
32472         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
32473         MSVC7 <stdio.h> is included later.
32474
32475 2003-08-22  Simon Josefsson  <jas@extundo.com>
32476
32477         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
32478
32479 2003-08-20  Karl Berry  <karl@gnu.org>
32480
32481         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
32482
32483 2003-08-20  Bruno Haible  <bruno@clisp.org>
32484
32485         * modules/progname: New file.
32486         * MODULES.html.sh (func_all_modules): Add progname.
32487
32488 2003-08-20  Bruno Haible  <bruno@clisp.org>
32489
32490         * lib/progname.h: New file, from GNU gettext.
32491         * lib/progname.c: New file, from GNU gettext.
32492         * lib/progreloc.c: New file, from GNU gettext.
32493
32494 2003-08-19  Jim Meyering  <jim@meyering.net>
32495
32496         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
32497         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
32498
32499 2003-08-19  Bruno Haible  <bruno@clisp.org>
32500
32501         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
32502         more.
32503
32504 2003-08-19  Bruno Haible  <bruno@clisp.org>
32505
32506         * lib/xstrdup.c: Assume <string.h> exists.
32507
32508 2003-08-18  Paul Eggert  <eggert@twinsun.com>
32509
32510         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
32511         in makefile rules.
32512
32513 2003-08-18  Jim Meyering  <jim@meyering.net>
32514
32515         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
32516         * m4/lib-ld.m4: Likewise.
32517
32518 2003-08-18  Jim Meyering  <jim@meyering.net>
32519
32520         * lib/setenv.h: Indent nested cpp directive.
32521         * lib/vasnprintf.c: Remove trailing blanks.
32522
32523 2003-08-17  Simon Josefsson  <jas@extundo.com>
32524
32525         * modules/xstrndup: New file.
32526         * MODULES.html.sh (func_all_modules): Add xstrndup.
32527
32528 2003-08-17  Simon Josefsson  <jas@extundo.com>
32529
32530         * modules/argp: Fix autoconf macro name. Add more dependencies.
32531
32532 2003-08-17  Simon Josefsson  <jas@extundo.com>
32533
32534         * m4/xstrndup.m4: New file.
32535
32536 2003-08-17  Simon Josefsson  <jas@extundo.com>
32537
32538         * m4/argp.m4: New file.
32539
32540 2003-08-17  Simon Josefsson  <jas@extundo.com>
32541             Bruno Haible  <bruno@clisp.org>
32542
32543         * lib/xstrndup.h: New file.
32544         * lib/xstrndup.c: New file.
32545
32546 2003-08-17  Bruno Haible  <bruno@clisp.org>
32547
32548         * modules/strndup (Files, Include): Add lib/strndup.h.
32549
32550 2003-08-17  Bruno Haible  <bruno@clisp.org>
32551
32552         * modules/euidaccess (Files): Add lib/euidaccess.h.
32553
32554 2003-08-17  Bruno Haible  <bruno@clisp.org>
32555
32556         * lib/strndup.h: New file.
32557
32558 2003-08-17  Bruno Haible  <bruno@clisp.org>
32559
32560         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
32561         like AC_GNU_SOURCE.
32562         * modules/extensions (configure.ac): Comment out the invocation of
32563         gl_USE_SYSTEM_EXTENSIONS.
32564
32565 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32566
32567         Merges from coreutils, etc.
32568         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
32569         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
32570         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
32571         fixing a typo.
32572         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
32573         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
32574
32575 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32576
32577         Document merge from coreutils.
32578         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
32579         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
32580         * modules/utime: Add m4/utimes-null.m4.
32581
32582 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32583
32584         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
32585         space, undoing this 2003-08-12 change:
32586         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
32587
32588 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32589
32590         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
32591         strtoul.c from libc, undoing this 2003-08-12 change:
32592         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
32593
32594 2003-08-16  Jim Meyering  <jim@meyering.net>
32595
32596         Merges from coreutils.
32597         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
32598         prefix.  Adjust cache variables similarly.  Create 500 rather than
32599         just 300 files, to exercise bug on Darwin6.5, too.
32600         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
32601         $missing_dir.
32602         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
32603         AM_SYS_POSIX_TERMIOS.
32604         Reported by mkc@mathdogs.com.
32605         Also change use of $am_cv_sys_posix_termios
32606         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
32607         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
32608         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
32609         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
32610         in /proc/mounts until it finds one with matching device number.  This
32611         is unnecessary when the FILE argument *is* a mount point.  No stat call
32612         is necessary in that case.  So, disable the statvfs-testing code on
32613         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
32614         as RedHat bug# 84846.
32615         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
32616         to 1MB, so as not to render systems with no stack size limit (e.g.,
32617         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
32618         Include <unistd.h>.  On some systems,
32619         it is required for the definition of _SC_PAGESIZE.
32620
32621 2003-08-16  Jim Meyering  <jim@meyering.net>
32622
32623         Merge from coreutils.
32624         * lib/xstrtoimax.c: #else #if -> #elif.
32625         * lib/xstrtoumax.c: Likewise.
32626
32627 2003-08-16  Jim Meyering  <jim@meyering.net>
32628
32629         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
32630         * m4/utimes.m4: Removed.
32631         * m4/utimes-null.m4: Renamed from utimes.m4.
32632
32633         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
32634         to 1MB, so as not to render systems with no stack size limit (e.g.,
32635         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
32636         Include <unistd.h>.  On some systems,
32637         it is required for the definition of _SC_PAGESIZE.
32638
32639 2003-08-16  Jim Meyering  <jim@meyering.net>
32640         and Paul Eggert  <eggert@cs.ucla.edu>
32641
32642         Merges from coreutils, etc.
32643
32644         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
32645         using the latest version from cvs.  This avoids problems with #line
32646         directives using a vendor (Sun) compiler.
32647         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
32648         Don't set GETGROUPS_LIB here; now it's
32649         done via getgroups.m4's wrapper function.
32650         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
32651         rather than just in sh-util/configure.in, so that the
32652         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
32653         same.
32654         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
32655         AC_FUNC_GETLOADAVG where to find getloadavg.c.
32656         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
32657         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
32658         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
32659         Remove code that is now done by the newly-required macros.
32660         Append $(EXEEXT) to DF_PROG.
32661         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
32662         Do not invoke or require the following here,
32663         since prereq.m4 or some gnulib .m4 now does this for us:
32664         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
32665         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
32666         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
32667         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
32668         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
32669         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
32670         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
32671         AC_FUNC_OBSTACK.
32672         Do not replace the following functions, as this is now the job
32673         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
32674         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
32675         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
32676         atexit getpass, strdup, getpagesize.
32677         Replace 'raise'.
32678         Do not check for the following functions, as this is now the job
32679         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
32680         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
32681         setregid.
32682         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
32683         Check for sys/sysctl.h.
32684         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
32685         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
32686         of checking for ssize_t ourselves.
32687
32688         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
32689         Require every macro that gnulib/modules/* suggests for us.
32690         (jm_PREREQ_ADDEXT): New macro.
32691         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
32692         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
32693
32694         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
32695         (gl_PHYSMEM): Use it.
32696         Also check for `table' function.
32697         Check for new headers and functions.
32698         Add check for sys/sysmp.h.
32699         With suggestions from Kaveh Ghazi.
32700         Ignore headers that are present but cannot be compiled.  This
32701         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
32702         C 5.4.
32703
32704 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32705
32706         Document merge from coreutils.
32707         * modules/userspec: Depend on posixver.
32708         * modules/strftime: Depend on tzset.
32709
32710 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32711
32712         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
32713         rather than tab, after '#' in shell-script copyright notices.
32714         Suggested by Bruno Haible.
32715
32716 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32717
32718         * config/srclist-update: Use three spaces, rather than tab, after '#'
32719         in shell-script copyright notices.  Suggested by Bruno Haible.
32720         Remove unnecessary parenthesization in regular expression.
32721
32722 2003-08-15  Jim Meyering  <jim@meyering.net>
32723
32724         Merge from coreutils.
32725         * lib/xgethostname.c: Include <stdlib.h>.
32726         (xghostname): Don't exit for anything other than memory-related
32727         failure; just return NULL.
32728         * lib/userspec.c: Include "posixver.h".
32729         (parse_user_spec): Accept `.' as a separator only
32730         in pre-POSIX-200112 mode.
32731         * lib/strtoimax.c: Use #elif rather than #else #if.
32732         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
32733         Remove function, now that we can rely on a working tzset function.
32734         [!_LIBC]: Ensure that the required autoconf test has been run.
32735         [!defined _NL_CURRENT && HAVE_STRFTIME]:
32736         Use underlying_strftime for %r.
32737         * lib/sha.c: Merge in some clean-up and optimization changes from
32738         glibc.
32739         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
32740         Ensure that it is a multiple of 64.
32741         Rearrange loop exit tests so as to avoid performing an
32742         additional fread after encountering an error or EOF.
32743         * lib/realloc.c: Update copyright date.
32744
32745 2003-08-15  Jim Meyering  <jim@meyering.net>
32746         and Paul Eggert  <eggert@twinsun.com>
32747
32748         Merge from coreutils.
32749         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
32750         member but strut utmpx does not.  Needed for AIX 4.3.3.
32751         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
32752
32753 2003-08-15  Jim Meyering  <jim@meyering.net>
32754         and Paul Eggert  <eggert@cs.ucla.edu>
32755
32756         Merges from coreutils, etc.
32757         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
32758         Require gl_FUNC_TZSET_CLOBBER.
32759         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
32760         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
32761         members.
32762
32763 2003-08-14  Paul Eggert  <eggert@twinsun.com>
32764
32765         Help the merge from coreutils.
32766         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
32767         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
32768         * m4/tzset.m4: Use it too.
32769
32770 2003-08-14  Paul Eggert  <eggert@twinsun.com>
32771
32772         * modules/tzset: New file.
32773
32774 2003-08-14  Jim Meyering  <jim@meyering.net>
32775
32776         Merges from coreutils.
32777         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
32778         variable names, rather than @FNMATCH_H@.
32779         * modules/alloca: Likewise for $(ALLOCA_H).
32780
32781         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
32782         the three copies of the literal target, `fnmatch.h'.
32783         * modules/alloca (alloca.h): Likewise.
32784
32785 2003-08-14  Jim Meyering  <jim@meyering.net>
32786
32787         Merge from coreutils.
32788         * m4/tzset.m4: New file.
32789         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
32790         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
32791         otherwise, AIX 5.1 systems would end up using the latter.
32792         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
32793         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
32794         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
32795         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
32796
32797 2003-08-14  Jim Meyering  <jim@meyering.net>
32798
32799         Merge from coreutils.
32800         * lib/obstack.h: Whitespace changes.
32801         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
32802         and xcalloc return values.
32803         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
32804         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
32805         hang on OSF/1 5.1 for DIR on both local and remote file systems.
32806         Reported by (and fix confirmed by) Nelson H. F. Beebe.
32807         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
32808         error from mntctl.
32809         Use mntctl's return value to drive the entry-processing loop, since
32810         we can't rely on the value of the vmt_length member in the last
32811         entry.  On some systems doing so could result in exhausting
32812         virtual memory.  Based in part on a patch from Mike Jetzer.
32813
32814 2003-08-14  Jim Meyering  <jim@meyering.net>
32815         and Paul Eggert  <eggert@twinsun.com>
32816
32817         Merges from coreutils, plus other fixes.
32818         * lib/physmem.c: Merge in portability changes from gcc/libiberty
32819         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
32820         for credits and details.  Thanks to Kaveh Ghazi for helping
32821         to keep these files in sync.
32822         (ARRAY_SIZE): Define it.
32823         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
32824         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
32825         (memcasecmp): Don't assume size_t fits in unsigned int.
32826         Remove casts and duplicate code.
32827         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
32828         (memcpy): Remove definition.
32829         Merge in some clean-up and optimization changes from glibc.
32830         [BLOCKSIZE]: Move definition to top of file.
32831         Ensure that it is a multiple of 64.
32832         Rearrange loop exit tests so as to avoid performing an
32833         additional fread after encountering an error or EOF.
32834         * lib/md5.h (md5_uintptr): Define.
32835         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
32836         return to the initial working directory.  Preserve errno
32837         for caller.
32838         * lib/idcache.c: Include "xalloc.h".
32839         (xmalloc, xrealloc): Remove decls.
32840         (getuser): Remove casts no longer required in C89.
32841         * lib/human.c: Include stdio.h, for sprintf.
32842         * lib/group-member.c: Include "xalloc.h".
32843         (xmalloc, xrealloc): Remove decls.
32844         (get_group_info): Remove casts no longer required in C89.
32845         * lib/getusershell.c (readname): Remove casts no longer required in
32846         C89.
32847         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
32848         * lib/getline.c: Whitespace fix, from coreutils.
32849
32850 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32851
32852         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
32853         Check for isascii.
32854
32855         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
32856         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
32857         Undo previous (whitespace-only) change.
32858
32859 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32860
32861         * lib/exclude.c: Include <ctype.h>
32862         (IN_CTYPE_DOMAIN): New macro.
32863         (is_space): New fn.
32864         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
32865         and empty lines.
32866
32867         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
32868         Undo previous (whitespace-only) change.
32869
32870 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32871
32872         * config/srclist-update: Change update back to the old behavior,
32873         leaving whitespace alone.  Use one 'sed' command rather than a
32874         pipeline.
32875         (fixlicense): Now a variable, not a function.
32876         (remove_trailing_blanks): Remove.
32877         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
32878         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
32879         Undo previous (whitespace-only) change.
32880
32881 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32882
32883         Merge from coreutils.
32884         * modules/euidaccess: Add lib_SOURCES, include for new
32885         file euidaccess.h
32886
32887 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32888
32889         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
32890         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
32891         Normalize leading white space and remove trailing white space.
32892
32893         Merge from coreutils
32894         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
32895
32896         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
32897         0.12.1.  These files are now being upgraded automatically by
32898         ../config/srclist-update.
32899
32900 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32901
32902         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
32903         Normalize leading white space and remove trailing white space.
32904         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
32905         notice, as per ../config/srclist-update.
32906
32907         Merge from coreutils.
32908         * lib/euidaccess.h: New file.
32909         * lib/euidaccess.c: Include it.
32910         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
32911         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
32912         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
32913
32914 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32915
32916         * config/srclist-update: Add copyright notice.
32917         (remove_id_lines, remove_trailing_blanks): New constants.
32918         (fixfile): Use them to normalize spacing a bit in copied files.
32919         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
32920         Normalize leading white space and remove trailing white space.
32921
32922         * config/texinfo.tex: Sync with texinfo.
32923
32924         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
32925         strtoul.c from libc, to merge coreutils whitespace changes.
32926
32927         * config/srclist.txt: Get the following m4 files from gettext:
32928         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
32929         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
32930         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
32931         wint_t.m4.
32932
32933 2003-08-12  Karl Berry  <karl@gnu.org>
32934
32935         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
32936         been made.
32937
32938 2003-08-11  Paul Eggert  <eggert@twinsun.com>
32939
32940         * modules/gnu-source, m4/gnu-source.m4:
32941         Remove; we're assuming Autoconf 2.54 or later now.
32942         Suggested by Bruno Haible.
32943         * MODULES.html.sh (func_all_modules): Remove gnu-source.
32944
32945 2003-08-11  Bruno Haible  <bruno@clisp.org>
32946
32947         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
32948
32949 2003-08-11  Bruno Haible  <bruno@clisp.org>
32950
32951         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
32952         (vasnprintf): Use it instead of wcslen.
32953
32954 2003-08-11  Bruno Haible  <bruno@clisp.org>
32955
32956         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
32957         value to ensure that _Bool promotes to int. Use #define for _Bool when
32958         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
32959
32960 2003-08-10  Karl Berry  <karl@gnu.org>
32961
32962         * lib/regex.h: update from libc (whitespace fix).
32963
32964 2003-08-09  Paul Eggert  <eggert@twinsun.com>
32965
32966         Merge some files from coreutils.  These changes were
32967         originally made by Jim Meyering.
32968         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
32969         many older Unixes require this.
32970         * lib/alloca.c (alloca): Remove cast to argument of free;
32971         no longer needed in C89.
32972         * lib/alloca_.h, regex.h: Fix white space to match
32973         what GNU indent does.
32974
32975 2003-08-09  Paul Eggert  <eggert@twinsun.com>
32976
32977         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
32978         apparently Emacs's Unicode mode got confused before my 2003-08-05
32979         checkin.
32980
32981 2003-08-08  Paul Eggert  <eggert@twinsun.com>
32982
32983         * m4/extensions.m4: New file.
32984         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
32985         Require gl_USE_SYSTEM_EXTENSIONS.
32986         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
32987         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
32988
32989 2003-08-08  Paul Eggert  <eggert@twinsun.com>
32990
32991         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
32992         * modules/extensions, modules/gnu-source: New files.
32993         * modules/timespec, modules/unlocked-io: Depend on extensions.
32994
32995 2003-08-07  Paul Eggert  <eggert@twinsun.com>
32996
32997         * modules/restrict: New file.
32998         * MODULES.html.sh (func_all_modules): Add restrict.
32999         * modules/regex: Depend on restrict.
33000
33001 2003-08-07  Paul Eggert  <eggert@twinsun.com>
33002
33003         * m4/restrict.m4: New file.
33004         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
33005
33006 2003-08-07  Bruno Haible  <bruno@clisp.org>
33007
33008         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
33009         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
33010
33011 2003-08-07  Bruno Haible  <bruno@clisp.org>
33012
33013         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
33014         makes the module 'getndelim2' compatible with the module 'getline'.
33015
33016 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33017
33018         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
33019         byte with "\201" to avoid glitches when editing that source file
33020         with multi-gnome-terminal.
33021
33022 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33023
33024         * lib/bumpalloc.h: Remove.
33025
33026 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33027
33028         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
33029         * modules/bumpalloc: Remove.
33030
33031 2003-08-04  Paul Eggert  <eggert@twinsun.com>
33032
33033         * lib/getloadavg.c: Change copyright notice and spacing to conform to
33034         GNU coding style.
33035
33036         Merge from coreutils.
33037         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
33038         1. From glibc.
33039         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
33040         from Karl Berry, implemented by Jim Meyering.
33041         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
33042         from Dmitry V. Levin.
33043         Remove anachronistic cast of xrealloc.
33044         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
33045         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
33046         type. Otherwise, it wouldn't compile with at least /bin/cc on
33047         ymp-cray-unicos9.0.2.X.
33048         Combine two mostly-identical uses of alloca into one.
33049         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
33050
33051 2003-08-04  Dave Love  <d.love@dl.ac.uk>
33052
33053         [From Emacs.]
33054
33055         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
33056         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
33057         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
33058         obsolete NLIST_NAME_UNION.
33059         [__GNU__]: Undef BSD and FSCALE.
33060         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
33061
33062 2003-08-03  Paul Eggert  <eggert@twinsun.com>
33063
33064         * lib/stdbool_.h (_Bool): Make it signed char, instead of
33065         an enum type, so that it's guaranteed to promote to int.  See:
33066         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
33067
33068 2003-08-03  Karl Berry  <karl@gnu.org>
33069
33070         * config/depcomp: update from automake.
33071
33072 2003-07-31  Paul Eggert  <eggert@twinsun.com>
33073
33074         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
33075         (strerror): Don't assume that a printable int fits in 14 bytes.
33076
33077 2003-07-31  Bruno Haible  <bruno@clisp.org>
33078
33079         * modules/getpass-gnu: New file.
33080         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
33081
33082 2003-07-31  Bruno Haible  <bruno@clisp.org>
33083
33084         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
33085
33086 2003-07-24  Karl Berry  <karl@gnu.org>
33087
33088         * config/missing: update from automake.
33089
33090 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
33091             Bruno Haible  <bruno@clisp.org>
33092
33093         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
33094         * lib/getline.c (getline, getdelim): Likewise.
33095         Remove _GNU_SOURCE define; now it's defined in config.h through
33096         m4/getline.m4.
33097
33098 2003-07-23  Karl Berry  <karl@gnu.org>
33099
33100         * config/config.sub: update from prep.
33101
33102 2003-07-22  Paul Eggert  <eggert@twinsun.com>
33103
33104         * modules/xalloc (Depends-on): Add exitfail.
33105         * modules/xmemcoll: Likewise.
33106
33107 2003-07-22  Paul Eggert  <eggert@twinsun.com>
33108
33109         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
33110         over-parenthesization in macros.
33111
33112         Sync with coreutils.
33113
33114         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
33115         required by C99.
33116
33117         Use `exit_failure' for xalloc and xmemcoll instead of their own
33118         private exit-failure variables.
33119         * lib/xalloc.h (xalloc_exit_failure): Remove.
33120         * lib/xmalloc.c: Likewise.  Include exitfail.h.
33121         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
33122         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
33123         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
33124         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
33125
33126 2003-07-20  Jim Meyering  <jim@meyering.net>
33127
33128         * modules/closeout (Depends-on): Add exitfail.
33129         Suggestion from Bruno Haible.
33130
33131 2003-07-19  Karl Berry  <karl@gnu.org>
33132
33133         * config/config.sub: update from prep.
33134
33135 2003-07-18  Paul Eggert  <eggert@twinsun.com>
33136
33137         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
33138         Remove.
33139         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
33140         to test that it can stand by itself.  Include "exitfail.h".
33141         Clients should set exit_failure instead.
33142         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
33143
33144 2003-07-18  Bruno Haible  <bruno@clisp.org>
33145
33146         * modules/getndelim2: New file.
33147         * modules/getline: Share files with module getndelim2.
33148         * modules/getnline: Depend on getndelim2 instead of sharing files with
33149         it. Add getnline.c to lib_SOURCES.
33150         * MODULES.html.sh (func_all_modules): Add getndelim2.
33151
33152 2003-07-18  Bruno Haible  <bruno@clisp.org>
33153
33154         * m4/getndelim2.m4: New file.
33155         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
33156         invoke gl_PREREQ_GETNDELIM2.
33157         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
33158         gl_PREREQ_GETNDELIM2.
33159         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
33160         gl_GETNDELIM2.
33161
33162 2003-07-18  Bruno Haible  <bruno@clisp.org>
33163
33164         * lib/getndelim2.h: New file.
33165         * lib/getndelim2.c: Make into a module of its own. Include config.h,
33166         getndelim2.h.
33167         (getndelim2): Make non-static. Change return type to ssize_t.
33168         * lib/getline.h: Change argument names.
33169         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
33170         * lib/getnline.c: Include getndelim2.h.
33171
33172 2003-07-18  Andreas Schwab  <schwab@suse.de>
33173
33174         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
33175
33176 2003-07-17  Karl Berry  <karl@gnu.org>
33177
33178         * config/config.sub: update from prep.
33179
33180 2003-07-17  Bruno Haible  <bruno@clisp.org>
33181
33182         * modules/getnline: New file.
33183         * modules/getline: Add lib/getndelim2.c to source file list.
33184         * MODULES.html.sh (func_all_modules): Add getnline.
33185
33186 2003-07-17  Bruno Haible  <bruno@clisp.org>
33187
33188         * m4/getnline.m4: New file.
33189
33190 2003-07-17  Bruno Haible  <bruno@clisp.org>
33191
33192         * m4/Makefile.am.in: Remove file.
33193         * m4/Makefile.am: Remove file.
33194         * m4/Makefile.in: Remove file.
33195
33196 2003-07-17  Bruno Haible  <bruno@clisp.org>
33197
33198         * lib/getnline.h: New file.
33199         * lib/getnline.c: New file.
33200         * lib/getndelim2.c: New file, extracted from getline.c.
33201         (getndelim2): Renamed from getdelim2, with added nmax argument.
33202         * lib/getline.c: Include getndelim2.c.
33203         (getdelim2): Moved out to getndelim2.c.
33204         (getline, getdelim): Update.
33205
33206 2003-07-17  Bruno Haible  <bruno@clisp.org>
33207
33208         * lib/Makefile.am: Remove file.
33209         * lib/Makefile.in: Remove file.
33210
33211 2003-07-17  Bruno Haible  <bruno@clisp.org>
33212
33213         * configure.in: Remove file.
33214         * Makefile.in: Remove file.
33215
33216 2003-07-17  Bruno Haible  <bruno@clisp.org>
33217
33218         * MODULES.html.sh: Put the </BODY> right before </HTML>.
33219
33220 2003-07-16  Karl Berry  <karl@gnu.org>
33221
33222         * config/srclist-update: was running fixlicense twice, which caused
33223                 texinfo.tex to be nullified for some reason.  Simplify,
33224                 $gplsrc is no longer needed as far as I can see?
33225
33226 2003-07-16  Jim Meyering  <jim@meyering.net>
33227
33228         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
33229
33230 2003-07-15  Paul Eggert  <eggert@twinsun.com>
33231
33232         * config/srclist.txt: Get the following files from gettext-runtime/intl
33233         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
33234         ref-del.sin.  From Bruno Haible.
33235         * config/srclist-update (fixfile): Change grep pattern again, since the
33236         previous fix didn't work (there was another trailing $).  Use
33237         '[$]' to escape the $s.
33238
33239 2003-07-15  Karl Berry  <karl@gnu.org>
33240
33241         * lib/vasnprintf.c: update from gettext.
33242
33243 2003-07-15  Karl Berry  <karl@gnu.org>
33244
33245         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
33246         gets expanded when surrounded by '$'.
33247
33248 2003-07-15  Jim Meyering  <jim@meyering.net>
33249
33250         * modules/save-cwd: Don't depend on error.  From Derek Price.
33251
33252 2003-07-15  Jim Meyering  <jim@meyering.net>
33253
33254         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
33255
33256 2003-07-14  Simon Josefsson  <jas@extundo.com>
33257
33258         * modules/mempcpy: New file.
33259         * MODULES.html.sh (func_all_modules): Add mempcpy.
33260
33261 2003-07-14  Simon Josefsson  <jas@extundo.com>
33262
33263         * m4/mempcpy.m4: New file.
33264
33265 2003-07-14  Simon Josefsson  <jas@extundo.com>
33266
33267         * lib/mempcpy.h: New file.
33268         * lib/mempcpy.c: New file.
33269
33270 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33271
33272         * modules/getdate, modules/posixtm: Depend on mktime.
33273
33274 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33275
33276         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
33277         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
33278         unicodeio.c, unicodeio.h, unlocked-io.h:
33279         Switch from LGPL to GPL.
33280
33281 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33282
33283         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
33284         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
33285         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
33286         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
33287         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
33288         updated automatically by ../config/srclist-update.  This changes
33289         their license from LPGL to GPL.
33290
33291 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33292
33293         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
33294         assumed to refer to the root of the most recent stable gettext version.
33295         * config/srclistvars.sh: Add defaults for eggert.
33296         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
33297         Match "This program" as well as "The program".  This is needed
33298         for gettext.
33299
33300 2003-07-14  Jim Meyering  <jim@meyering.net>
33301
33302         Don't emit diagnostics.  Let callers do that.
33303         * lib/save-cwd.c: Don't include "error.h".
33304         (save_cwd): Don't call error.  Ensure that errno is valid
33305         when returning nonzero.
33306
33307         * lib/save-cwd.h (restore_cwd): Update prototype.
33308         * lib/save-cwd.c (restore_cwd): Remove two parameters.
33309         Simplify.  Don't call error upon failure.  Let callers do that.
33310         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
33311         when auditing is enabled.  But don't bother updating the #if.
33312
33313 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
33314
33315         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
33316         it breaks C++ compilation.
33317         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
33318
33319 2003-07-10  Simon Josefsson  <jas@extundo.com>
33320
33321         * modules/strchrnul (Makefile.am): Add strchrnul.h.
33322
33323 2003-07-10  Jim Meyering  <jim@meyering.net>
33324
33325         * m4/clock_time.m4: Remove trailing blank.
33326         * m4/intmax_t.m4: Likewise.
33327
33328 2003-07-10  Jim Meyering  <jim@meyering.net>
33329
33330         * lib/vasnprintf.c: Remove trailing blanks.
33331         Make cpp indentation consistent.
33332
33333 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33334
33335         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
33336         posixver.c, strftime.c, strnlen.c, strverscmp.c:
33337         Switch from LGPL to GPL.
33338
33339 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33340
33341         * config/srclist.txt: Sort sublists.  Add
33342         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
33343         that differ from gnulib for one reason or another; we'd like this list
33344         to be smaller but for now let's document what we have.
33345
33346 2003-07-08  Paul Eggert  <eggert@twinsun.com>
33347
33348         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
33349         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
33350         and sweeter "eval x=$x".
33351         * config/srclist.txt: Get lib/argp* from glibc.
33352
33353 2003-07-07  Paul Eggert  <eggert@twinsun.com>
33354
33355         * lib/mktime.c: Fix some boundary cases and remove need for floating
33356         point.
33357
33358         Issue a compile-time diagnostic if time_t is floating point, or if
33359         two's complement arithmetic is not in effect, or if arithmetic
33360         right shift does not propagate the sign.  These assumptions were
33361         all in the original code but they weren't checked.
33362
33363         (TIME_T_MIDPOINT, verify): New macros.
33364         (__isleap): Remove; it has integer overflow problems.
33365         (leapyear): New function, without those problems.
33366         (ydhms_tm_diff): Remove; splitting into two parts.
33367         (ydhms_diff): New function, containing the arithmetic part of
33368         the old ydhms_tm_diff function.  Issue a compile-time
33369         diagnostic if we are not using C99 integer division.
33370         Avoid casts when possible.
33371         (guess_time_tm): New function, containing the checking part of
33372         the old ydhms_tm_diff function.  Return the new value, rather than
33373         the difference between it and the old.  Accept a new argument T
33374         so that *T specifies the old value.  Check for overflow in the result.
33375
33376         (__mktime_internal): Use a time_t offset, not a long int offset.
33377         This undoes the 2003-06-04 change, which is no longer needed now
33378         that we have better overflow checking.
33379         (localtime_offset): Likewise.
33380
33381         (__mktime_internal): Avoid harmful overflow on hosts where time_t
33382         and long are 64-bit but int is only 32-bit.
33383         (ydhms_diff): Use long int to store year1 and yday1.
33384         Issue a compile-time diagnostic if long int is not wide enough.
33385
33386         (__mktime_internal): Use long int to store adjusted year and yday.
33387         Use plain C rather than preprocessor commands, if that doesn't
33388         affect efficiency.
33389         Check for overflow (and try to repair) after each probe
33390         rather than checking only at the very end.  This avoids some bugs
33391         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
33392         does not equal GMT offset at maximum time).
33393         Use integer to check for overflow rather than floating point; this
33394         is more portable to non-IEEE hosts, and is a tad faster.
33395         When we detect that we are oscillating between two values,
33396         don't check whether tm_isdst has the requested value, since
33397         we already know the answer.  When tm_isdst has the wrong value,
33398         use a different heuristic to find the right one, based on the
33399         extreme values actually observed in practice in tz2003a,
33400         rather than the (overly optimistic) "previous 3 calendar quarters".
33401
33402         (not_equal_tm, print_tm, check_result): Use "const T" rather than
33403         "T const" to accommodate glibc style.
33404         (check_result): Use less-confusing report format.  "long" -> "long int.
33405         (main): Likewise.
33406         Don't loop if the iteration overflows time_t.
33407         Allow a negative step in the iteration.
33408
33409 2003-07-06  Karl Berry  <karl@gnu.org>
33410
33411         * config/depcomp: update from automake.
33412         * config/config.sub: update from prep.
33413
33414 2003-07-03  Karl Berry  <karl@gnu.org>
33415
33416         * config/config.guess: update from prep.
33417
33418 2003-07-01  Paul Eggert  <eggert@twinsun.com>
33419
33420         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
33421         xreadlink.c now includes it unconditionally.
33422
33423 2003-07-01  Paul Eggert  <eggert@twinsun.com>
33424
33425         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
33426         having it depend on HAVE_SYS_TYPES_H.
33427
33428 2003-07-01  Bruno Haible  <bruno@clisp.org>
33429
33430         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
33431         <sys/types.h> should be sufficient.
33432         Reported by Paul Eggert.
33433
33434 2003-06-26  Karl Berry  <karl@gnu.org>
33435
33436         * config/depcomp: update from automake.
33437
33438 2003-06-26  Bruno Haible  <bruno@clisp.org>
33439
33440         * modules/human: Depend on module stdbool.
33441
33442 2003-06-25  Bruno Haible  <bruno@clisp.org>
33443
33444         * modules/readlink: New file.
33445         * modules/xreadlink: Depend on it.
33446         * MODULES.html.sh (func_all_modules): Add readlink.
33447
33448 2003-06-25  Bruno Haible  <bruno@clisp.org>
33449
33450         * m4/readlink.m4: New file.
33451
33452 2003-06-25  Bruno Haible  <bruno@clisp.org>
33453
33454         * lib/readlink.c: New file.
33455
33456 2003-06-22  Karl Berry  <karl@gnu.org>
33457
33458         * config/srclist.txt: update mkinstalldirs from automake.
33459         * config/mkinstalldirs: update.
33460
33461 2003-06-22  Bruno Haible  <bruno@clisp.org>
33462
33463         Portability to mingw32.
33464         * m4/ssize_t.m4: New file, from GNU gettext.
33465         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
33466         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
33467
33468 2003-06-22  Bruno Haible  <bruno@clisp.org>
33469
33470         * modules/safe-read: Add m4/ssize_t.m4.
33471         * modules/xreadlink: Add m4/ssize_t.m4.
33472
33473 2003-06-20  Bruno Haible  <bruno@clisp.org>
33474
33475         Assume C89, so PARAMS isn't needed.
33476         * lib/unicodeio.h (PARAMS): Remove.
33477         * lib/unicodeio.c: Don't use PARAMS.
33478
33479 2003-06-18  Karl Berry  <karl@gnu.org>
33480
33481         * config/config.{guess,sub}: update from prep.
33482
33483 2003-06-18  Jim Meyering  <jim@meyering.net>
33484
33485         Merge changes from coreutils.
33486         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
33487         Remove explicit declarations of xmalloc and realloc.
33488         Include xalloc.h.
33489         (read_utmp): Remove anachronistic cast of xmalloc.
33490
33491 2003-06-17  Paul Eggert  <eggert@twinsun.com>
33492
33493         Assume C89, so PARAMS isn't needed.
33494         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
33495         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
33496         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
33497         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
33498         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
33499         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
33500         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
33501         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
33502         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
33503         lib/xstrtod.h, lib/xstrtol.h: Likewise.
33504         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
33505         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
33506         no longer needed. Anyway, config.h should always be included before any
33507         other file.
33508
33509 2003-06-11  Simon Josefsson  <jas@extundo.com>
33510
33511         * modules/sysexits: New file.
33512         * MODULES.html.sh (func_all_modules): Add sysexits.
33513
33514 2003-06-11  Simon Josefsson  <jas@extundo.com>
33515
33516         * lib/sysexit_.h: New file.
33517
33518 2003-06-11  Derek Price  <derek@ximbiot.com>
33519
33520         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
33521         necessary.
33522
33523 2003-06-11  Bruno Haible  <bruno@clisp.org>
33524
33525         * m4/sysexits.m4: New file.
33526
33527 2003-06-10  Simon Josefsson  <jas@extundo.com>
33528
33529         * lib/argp.h: New file, from glibc.
33530         * lib/argp-ba.c: New file, from glibc.
33531         * lib/argp-eexst.c: New file, from glibc.
33532         * lib/argp-fmtstream.c: New file, from glibc.
33533         * lib/argp-fmtstream.h: New file, from glibc.
33534         * lib/argp-fs-xinl.c: New file, from glibc.
33535         * lib/argp-help.c: New file, from glibc.
33536         * lib/argp-namefrob.h: New file, from glibc.
33537         * lib/argp-parse.c: New file, from glibc.
33538         * lib/argp-pv.c: New file, from glibc.
33539         * lib/argp-pvh.c: New file, from glibc.
33540         * lib/argp-xinl.c: New file, from glibc.
33541
33542 2003-06-10  Simon Josefsson  <jas@extundo.com>
33543
33544         * modules/strchrnul: New file.
33545
33546 2003-06-10  Simon Josefsson  <jas@extundo.com>
33547
33548         * modules/argp: New file.
33549
33550 2003-06-10  Simon Josefsson  <jas@extundo.com>
33551
33552         * m4/strchrnul.m4: New file.
33553
33554 2003-06-10  Simon Josefsson  <jas@extundo.com>
33555
33556         * lib/strchrnul.h: New file.
33557         * lib/strchrnul.c: New file.
33558
33559 2003-06-10  Bruno Haible  <bruno@clisp.org>
33560
33561         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
33562
33563 2003-06-07  Karl Berry  <karl@gnu.org>
33564
33565         * config/config.{guess,sub}: update from prep.
33566
33567 2003-06-07  Jim Meyering  <jim@meyering.net>
33568
33569         * modules/strtod: Use $(...) notation, not @...@ for
33570         AC_REPLACE'd variables.
33571         * modules/localcharset: Likewise.
33572
33573 2003-06-07  Jim Meyering  <jim@meyering.net>
33574
33575         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
33576         in place of my name in the copyright comment.
33577         Remove definition and uses of __P.
33578
33579         From coreutils.
33580         * lib/stat.c: Don't declare xmalloc explicitly.
33581         Instead, include "xalloc.h".
33582         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
33583         xrealloc, and xcalloc return values.
33584         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
33585         Improve comment.
33586         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
33587
33588 2003-06-07  Bruno Haible  <bruno@clisp.org>
33589
33590         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
33591         avoid AC_CONFIG_LINKS.
33592         * modules/fnmatch (Makefile.am): Use explicit creation rule for
33593         fnmatch.h, to avoid AC_CONFIG_LINKS.
33594         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
33595
33596 2003-06-07  Bruno Haible  <bruno@clisp.org>
33597
33598         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
33599         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
33600         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
33601         directory.
33602         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
33603         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
33604         directory.
33605
33606 2003-06-06  Jim Meyering  <jim@meyering.net>
33607
33608         Merge from coreutils.
33609         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
33610         Consolidate declarations and initializations of *_base* locals.
33611
33612         Merge from coreutils.
33613         This avoids a core dump on systems without GNU putenv,
33614         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
33615         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
33616         (unsetenv): New static function, from GNU libc.
33617         (rpl_putenv): Use it.
33618
33619         * lib/modechange.c: Remove trailing blanks.
33620
33621         Merge from coreutils.
33622         * lib/fsusage.c: Remove declaration of statfs.
33623         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
33624
33625         * lib/posixtm.c: Include <stdbool.h> unconditionally.
33626
33627 2003-06-06  Jim Meyering  <jim@meyering.net>
33628
33629         * lib/stdbool_.h: Renamed from stdbool.h.in.
33630
33631 2003-06-06  Jim Meyering  <jim@meyering.net>
33632             Bruno Haible  <bruno@clisp.org>
33633
33634         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
33635         Adjust Makefile.am snippet not to redirect directly to target.
33636         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
33637
33638 2003-06-05  Paul Eggert  <eggert@twinsun.com>
33639
33640         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
33641         mismatch, look in future quarters as well as past.  This fixes a
33642         bug when processing fall-backwards gaps immediately after a long
33643         period of daylight-saving time.
33644
33645         * lib/mktime.c: Assume freestanding C89 or better.
33646         (HAVE_LIMITS_H): Remove.  Assume it's 1.
33647         (__P): Remove; not used.
33648         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
33649         (mktime, not_equal_tm, print_tm, check_result,
33650         main): Use prototypes.  Use const * where appropriate.
33651         (main): Fix typo in testing code that uncovered by above changes.
33652         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
33653
33654 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33655
33656         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
33657         locale.h, localeconv.  This merges changes from coreutils.
33658
33659         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
33660         It can be removed after the next Autoconf is released.
33661         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
33662         needed.
33663
33664 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33665
33666         * lib/mktime.c: Fix Debian bug 177940
33667         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
33668         (localtime_offset): Now long int, not time_t, because we want it
33669         to be guaranteed to be signed.  All uses changed.
33670         (__mktime_internal): If overflow would occur when adding offset,
33671         don't add it.
33672
33673         Merge 'human' changes from coreutils.  Rewrite to support
33674         locale-specific notations like thousands separators.
33675         * lib/human.c: Simplify authorship notice.
33676         Include human.h immediately after config.h.
33677         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
33678         <limits.h>: Do not include, since human.h does.
33679         (SIZE_MAX, UINTMAX_MAX): New macros.
33680         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
33681         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
33682         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
33683         (power_letter): Renamed from suffixes.
33684         (generate_suffix_backwards): Remove.
33685         (adjust_value): Now takes int style (because of human.h changes)
33686         and long double value (for greater precision on some platforms).
33687         (group_number): New function.
33688         (human_readable): Use it.  Use integer options, not enum.
33689         Put the options before the sizes in the arg list.
33690         Support all the new options.
33691         The old human_readable function has been removed;
33692         use inttostr.h instead.
33693         (human_readable, default_block_size, humblock):
33694         Use uintmax_t, not int, for block sizes.
33695         (human_readable_inexact, block_size_types): Remove.
33696         (block_size_opts): New constant.
33697         (human_options): Renamed from human_block_size, with new signature
33698         that allows block sizes up to UINTMAX_MAX.  All callers changed.
33699         * lib/human.h: Add copyright and authorship notice.
33700         Include <limits.h> and <stdbool.h> unconditionally.
33701         (PARAMS): Remove.  All uses removed.
33702         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
33703         (enum human_inexact_style): Remove tag; now a nameless enum.
33704         (human_floor, human_ceiling, human_round_to_even): Now have
33705         values 2, 0, 1 rather than -1, 1, 0.
33706         (human_group_digits, human_suppress_point_zero, human_autoscale,
33707         human_base_1024, human_SI, human_B): New constants.
33708         (human_readable_inexact, human_block_size): Remove.
33709         (human_readable): Size args are now uintmax_t, not int.
33710         (human_options): New decl.
33711
33712         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
33713         unnecessary now that we assume C89 or better.  This change
33714         imported from coreutils.
33715
33716         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
33717         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
33718         in the 2003-05-30 sync from glibc.
33719
33720         .h files should stand alone, but we shouldn't include <sys/types.h>
33721         if we can get away with just <stddef.h>.
33722
33723         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
33724         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
33725         rather than <sys/types.h>, as we merely need size_t.
33726         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
33727         to get size_t.
33728         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
33729         Include <stdio.h>, to get FILE.
33730         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
33731         memcasecmp.h has included <stddef.h> and all we need is size_t.
33732         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
33733         our interface, instead of including <sys/types.h>
33734
33735 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33736
33737         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
33738         now, as glibc mktime is buggy on non-glibc systems.
33739
33740 2003-06-03  Karl Berry  <karl@gnu.org>
33741
33742         * config/config.sub: update from prep.
33743
33744 2003-06-02  Paul Eggert  <eggert@twinsun.com>
33745
33746         [from coreutils]
33747         Fix some minor time-related bugs with POSIX time arguments.
33748         Some valid time stamps were being rejected (notably -1, and
33749         time stamps before 1900 on 64-bit hosts).  And some invalid
33750         time stamps were being accepted, e.g. September 31.
33751
33752         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
33753         that we can return (time_t) -1 successfully.
33754         * lib/posixtm.c: Likewise.
33755         [HAVE_STDBOOL_H]: Include <stdbool.h>.
33756         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
33757         (t): Remove static var.
33758         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
33759         of static var.  All uses changed.
33760         (year): Do not reject years before 1900; they can occur with
33761         64-bit time_t.
33762         (posix_time_parse): Do not check for out-of-range components;
33763         that is now the caller's responsibility, since our checks were
33764         only approximations.
33765         (posixtime): Use mktime to check for out-of-range components,
33766         since it knows them exactly.
33767         If mktime returns (time_t) -1, check whether an error actually occurred
33768         by invoking localtime on -1.
33769         (main) [TEST_POSIXTIME]: Check for input data errors, and report
33770         posixtime failures better.
33771         Improve the test data (in comments only).
33772
33773 2003-06-02  Karl Berry  <karl@gnu.org>
33774
33775         * config/mkinstalldirs (version): new variable.
33776         (--version): new option.
33777         (usage): improve message.
33778
33779 2003-05-30  Karl Berry  <karl@gnu.org>
33780
33781         * lib/mktime.c: update from libc.
33782
33783 2003-05-30  Bruno Haible  <bruno@clisp.org>
33784
33785         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
33786         * config/config.rpath: Upgrade to gettext-0.12.1.
33787
33788 2003-05-30  Bruno Haible  <bruno@clisp.org>
33789
33790         * m4/gettext.m4: Upgrade to gettext-0.12.1.
33791         * m4/nls.m4: New file, from gettext-0.12.1.
33792         * m4/po.m4: New file, from gettext-0.12.1.
33793         * m4/progtest.m4: Upgrade to gettext-0.12.1.
33794
33795 2003-05-30  Bruno Haible  <bruno@clisp.org>
33796
33797         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
33798         * lib/localcharset.h: Likewise.
33799         * lib/localcharset.c: Likewise.
33800
33801 2003-05-29  Karl Berry  <karl@gnu.org>
33802
33803         * config/config.rpath: update from gettext.
33804
33805 2003-05-28  Paul Eggert  <eggert@twinsun.com>
33806
33807         Assume the headers required for C89 freestanding compilers.
33808         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
33809         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
33810         * m4/human.m4 (gl_HUMAN): Likewise.
33811         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
33812         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
33813         * m4/userspec.m4 (gl_USERSPEC): Likewise.
33814         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
33815         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33816         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
33817
33818 2003-05-28  Paul Eggert  <eggert@twinsun.com>
33819
33820         Assume the headers required for C89 freestanding compilers.
33821         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
33822         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
33823         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
33824         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
33825         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
33826         define, since <limits.h> is guaranteed to do that.
33827         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
33828         * lib/exclude.c: Include <stdbool.h> unconditionally.
33829         * lib/tempname.c: Include <stddef.h> unconditionally.
33830         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
33831         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
33832         <stddef.h> does that.
33833         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
33834         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
33835         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
33836         needed.
33837         * lib/xstrtol.c: Likewise.
33838         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
33839         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
33840
33841         * lib/addext.c (addext): Use assignment rather than cast, to avoid
33842         warnings on some platforms.
33843
33844         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
33845         arbitrarily.
33846
33847 2003-05-26  Jim Meyering  <jim@meyering.net>
33848
33849         Merge in a change from coreutils:
33850         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
33851         that is guaranteed to be `no'.  Use `no_such_member' to indicate
33852         that condition, rather than `-1' which is slightly misleading.
33853         Change the name of the cache variable to have the gl_ prefix.
33854         Prompted by a patch from Richard Dawe for DJGPP.
33855
33856 2003-05-24  Karl Berry  <karl@gnu.org>
33857
33858         * config/config.guess: update from prep.
33859
33860 2003-05-22  Karl Berry  <karl@gnu.org>
33861
33862         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
33863
33864 2003-05-20  Karl Berry  <karl@gnu.org>
33865
33866         * config/config.guess: update from prep.
33867
33868 2003-05-18  Karl Berry  <karl@gnu.org>
33869
33870         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
33871         might actually be set by the user.
33872
33873         * config/depcomp, install-sh, mdate-sh: update from automake.
33874
33875 2003-05-17  Bruno Haible  <bruno@clisp.org>
33876
33877         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
33878         invalid expansion for AC_EGREP_CPP.
33879         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
33880         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
33881         Suggested by Akim Demaille <akim@epita.fr> in
33882         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
33883
33884 2003-05-12  Jim Meyering  <jim@meyering.net>
33885
33886         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
33887         the space-padded-by-default conversion specifiers, %e, %k, %l.
33888
33889 2003-05-12  Bruno Haible  <bruno@clisp.org>
33890
33891         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
33892         the string is longer than 4 KB.
33893
33894 2003-05-11  Karl Berry  <karl@gnu.org>
33895
33896         * config/config.{guess,sub}: update from prep.
33897
33898 2003-05-09  Bruno Haible  <bruno@clisp.org>
33899
33900         * modules/error: Add m4/strerror_r.m4 to file list.
33901
33902 2003-05-03  Bruno Haible  <bruno@clisp.org>
33903
33904         Upgrade to Unicode-4.0.
33905         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
33906         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
33907         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
33908         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
33909         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
33910         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
33911         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
33912         Change width of U+E0100..U+E01EF from 1 to 0.
33913
33914 2003-04-25  Jim Meyering  <jim@meyering.net>
33915
33916         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
33917         of type size_t, not int.
33918
33919 2003-04-25  Bruno Haible  <bruno@clisp.org>
33920
33921         * lib/copy-file.c: Include <stddef.h>, for size_t.
33922
33923 2003-04-21  Paul Eggert  <eggert@twinsun.com>
33924
33925         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
33926         code which expansion is under static control.  Patch imported from
33927         Akim Demaille's patch to Bison; see
33928         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
33929
33930 2003-04-14  Bruno Haible  <bruno@clisp.org>
33931
33932         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
33933
33934 2003-04-11  Jim Meyering  <jim@meyering.net>
33935
33936         Merge changes from Coreutils.
33937
33938         2003-03-22  Jim Meyering  <jim@meyering.net>
33939
33940         * lib/strftime.c (widen): Cast alloca return value to proper type.
33941
33942         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
33943
33944         From GNU libc.
33945         * lib/strftime.c (my_strftime): Handle very large width
33946         specifications for numeric values correctly.  Improve checks for
33947         overflow.
33948
33949         2003-01-19  Jim Meyering  <jim@meyering.net>
33950
33951         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
33952         definitions.
33953         (nl_get_alt_digit) [! defined my_strftime]: Define.
33954         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
33955         _nl_get_alt_digit and _nl_get_walt_digit.
33956
33957         * lib/strftime.c (my_strftime): Merge in locale-related changes from
33958         libc. These changes have no effect outside of _LIBC.
33959
33960 2003-04-10  Bruno Haible  <bruno@clisp.org>
33961
33962         * modules/findprog: New file.
33963         * MODULES.html.sh (func_all_modules): Add it.
33964
33965 2003-04-10  Bruno Haible  <bruno@clisp.org>
33966
33967         * m4/findprog.m4: New file.
33968         * m4/eaccess.m4: New file.
33969
33970 2003-04-10  Bruno Haible  <bruno@clisp.org>
33971
33972         * lib/findprog.h: New file, from GNU gettext.
33973         * lib/findprog.c: New file, from GNU gettext.
33974
33975 2003-04-05  Jim Meyering  <jim@meyering.net>
33976
33977         Merge changes from Coreutils.
33978
33979         * lib/exclude.h (PARAMS): Remove definition and uses.
33980         * lib/exclude.c: Remove uses of `PARAMS'.
33981
33982         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
33983         Add test-cases for DOS filenames. Declare program_name.
33984         (main): Set up program_name.  Patch by Rich Dawe.
33985
33986         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
33987         error from mntctl.
33988         Use mntctl's return value to drive the entry-processing loop, since
33989         we can't rely on the value of the vmt_length member in the last
33990         entry.  On some systems doing so could result in exhausting
33991         virtual memory.  Based in part on a patch from Mike Jetzer.
33992
33993 2003-04-04  Bruno Haible  <bruno@clisp.org>
33994
33995         * modules/linebreak: New file.
33996         * MODULES.html.sh (func_all_modules): Add it.
33997
33998 2003-04-04  Bruno Haible  <bruno@clisp.org>
33999
34000         * m4/linebreak.m4: New file.
34001
34002 2003-04-04  Bruno Haible  <bruno@clisp.org>
34003
34004         * lib/linebreak.h: New file, from GNU gettext.
34005         * lib/linebreak.c: New file, from GNU gettext with slight
34006         modifications.
34007         * lib/lbrkprop.h: New file, from GNU gettext.
34008
34009 2003-04-03  Bruno Haible  <bruno@clisp.org>
34010
34011         * modules/utf8-ucs4: New file.
34012         * modules/utf16-ucs4: New file.
34013         * modules/ucs4-utf8: New file.
34014         * modules/ucs4-utf16: New file.
34015         * MODULES.html.sh (func_all_modules): Add them.
34016
34017 2003-04-03  Bruno Haible  <bruno@clisp.org>
34018
34019         * m4/utf-ucs4.m4: New file.
34020         * m4/ucs4-utf.m4: New file.
34021
34022 2003-04-03  Bruno Haible  <bruno@clisp.org>
34023
34024         * lib/utf8-ucs4.h: New file, from GNU gettext.
34025         * lib/utf16-ucs4.h: New file, from GNU gettext.
34026         * lib/ucs4-utf8.h: New file, from GNU gettext.
34027         * lib/ucs4-utf16.h: New file, from GNU gettext.
34028
34029 2003-04-02  Bruno Haible  <bruno@clisp.org>
34030
34031         * modules/binary-io: New file.
34032         * MODULES.html.sh (func_all_modules): Add it.
34033
34034 2003-04-02  Bruno Haible  <bruno@clisp.org>
34035
34036         * lib/binary-io.h: New file, from GNU gettext.
34037
34038 2003-04-01  Bruno Haible  <bruno@clisp.org>
34039
34040         * modules/pathname: New file.
34041         * MODULES.html.sh (func_all_modules): Add it.
34042
34043 2003-04-01  Bruno Haible  <bruno@clisp.org>
34044
34045         * lib/pathname.h: New file, from GNU gettext.
34046         * lib/concatpath.c: New file, from GNU gettext.
34047
34048 2003-03-30  Bruno Haible  <bruno@clisp.org>
34049
34050         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
34051
34052 2003-03-30  Bruno Haible  <bruno@clisp.org>
34053
34054         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
34055         function chown() doesn't exist.
34056
34057 2003-03-28  Bruno Haible  <bruno@clisp.org>
34058
34059         * modules/copy-file: New file.
34060         * MODULES.html.sh (func_all_modules): Add it.
34061
34062 2003-03-28  Bruno Haible  <bruno@clisp.org>
34063
34064         * m4/copy-file.m4: New file.
34065
34066 2003-03-28  Bruno Haible  <bruno@clisp.org>
34067
34068         * lib/copy-file.h: New file, from GNU gettext.
34069         * lib/copy-file.c: New file, from GNU gettext.
34070
34071 2003-03-18  Jim Meyering  <jim@meyering.net>
34072
34073         * lib/quote.c (quote_n): Fix typo in comment.
34074
34075 2003-03-18  Bruno Haible  <bruno@clisp.org>
34076
34077         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
34078         checking.
34079         * m4/onceonly_2_57.m4: Likewise.
34080
34081 2003-03-17  Bruno Haible  <bruno@clisp.org>
34082
34083         * m4/onceonly.m4: Require autoconf 2.54 or newer.
34084         (m4_quote): Remove macro.
34085         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
34086
34087 2003-03-14  Jim Meyering  <jim@meyering.net>
34088
34089         Merge changes from Coreutils.
34090         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
34091         to be const, in order to avoid warnings.
34092         (obstack_room): Likewise.
34093         (obstack_empty_p): Likewise.
34094
34095 2003-03-14  Bruno Haible  <bruno@clisp.org>
34096
34097         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
34098         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
34099
34100 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34101
34102         Merge changes from Bison.
34103         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
34104         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
34105         when compiling Bison 1.875's `bitset bset = obstack_alloc
34106         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
34107         * lib/hash.c: Include <stdbool.h> unconditionally.
34108
34109 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34110
34111         * m4/onceonly.m4 (m4_quote): New macro.
34112         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
34113         Quote AC_FOREACH variable-expansions properly.
34114
34115 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34116
34117         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
34118
34119 2003-03-09  Paul Eggert  <eggert@twinsun.com>
34120
34121         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
34122         Reported by Bruce Becker; see:
34123         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
34124
34125 2003-03-03  Paul Eggert  <eggert@twinsun.com>
34126             Bruno Haible  <bruno@clisp.org>
34127
34128         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
34129         Reported by John Hughes, see
34130         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
34131
34132 2003-02-20  Bruno Haible  <bruno@clisp.org>
34133
34134         * MODULES.html.sh (func_all_modules): Add poll.
34135
34136 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34137
34138         * modules/poll: New file.
34139
34140 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34141
34142         * lib/poll_.h: New file.
34143         * lib/poll.c: New file.
34144
34145 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34146
34147         * m4/poll.m4: New file.
34148
34149 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34150
34151         * modules/mathl: New file.
34152
34153 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34154
34155         * lib/mathl.h: New file.
34156         * lib/acosl.c: New file.
34157         * lib/asinl.c: New file.
34158         * lib/atanl.c: New file.
34159         * lib/ceill.c: New file.
34160         * lib/cosl.c: New file.
34161         * lib/expl.c: New file.
34162         * lib/floorl.c: New file.
34163         * lib/frexpl.c: New file.
34164         * lib/ldexpl.c: New file.
34165         * lib/logl.c: New file.
34166         * lib/sincosl.c: New file.
34167         * lib/sinl.c: New file.
34168         * lib/sqrtl.c: New file.
34169         * lib/tanl.c: New file.
34170         * lib/trigl.c: New file.
34171         * lib/trigl.h: New file.
34172
34173 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34174
34175         * m4/mathl.m4: New file.
34176
34177 2003-02-18  Bruno Haible  <bruno@clisp.org>
34178
34179         * MODULES.html.sh (func_all_modules): Add mathl.
34180
34181 2003-02-17  Bruno Haible  <bruno@clisp.org>
34182
34183         * modules/mkdtemp: New module.
34184         * MODULES.html.sh (func_all_modules): Add it.
34185
34186 2003-02-17  Bruno Haible  <bruno@clisp.org>
34187
34188         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
34189
34190 2003-02-17  Bruno Haible  <bruno@clisp.org>
34191
34192         * lib/mkdtemp.h: New file, from GNU gettext.
34193         * lib/mkdtemp.c: New file, from GNU gettext.
34194
34195 2003-02-02  Jim Meyering  <jim@meyering.net>
34196
34197         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
34198         e.g. glibc-2.2.93.
34199
34200 2003-01-31  Bruno Haible  <bruno@clisp.org>
34201
34202         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
34203         'rpl_rename'.
34204         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
34205         'rpl_strnlen'.
34206         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
34207         'rpl_strtod'.
34208         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
34209         'rpl_utime'.
34210
34211 2003-01-31  Bruno Haible  <bruno@clisp.org>
34212
34213         * lib/rename.c: #undef rename before defining rpl_rename.
34214         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
34215
34216 2003-01-30  Bruno Haible  <bruno@clisp.org>
34217
34218         * modules/vasnprintf, modules/vasprintf: New modules.
34219         * MODULES.html.sh (func_all_modules): Add them.
34220
34221 2003-01-30  Bruno Haible  <bruno@clisp.org>
34222
34223         * m4/signed.m4: New file, from GNU gettext.
34224         * m4/longdouble.m4: New file, from GNU gettext.
34225         * m4/wchar_t.m4: New file, from GNU gettext.
34226         * m4/wint_t.m4: New file, from GNU gettext.
34227         * m4/vasnprintf.m4: New file.
34228         * m4/vasprintf.m4: New file.
34229
34230 2003-01-30  Bruno Haible  <bruno@clisp.org>
34231
34232         * lib/printf-args.h: New file, from GNU gettext.
34233         * lib/printf-args.c: New file, from GNU gettext.
34234         * lib/printf-parse.h: New file, from GNU gettext.
34235         * lib/printf-parse.c: New file, from GNU gettext.
34236         * lib/vasnprintf.h: New file, from GNU gettext.
34237         * lib/vasnprintf.c: New file, from GNU gettext.
34238         * lib/asnprintf.c: New file, from GNU gettext.
34239         * lib/vasprintf.h: New file, from GNU gettext with modifications.
34240         * lib/vasprintf.c: New file, from GNU gettext.
34241         * lib/asprintf.c: New file, from GNU gettext.
34242
34243 2003-01-29  Bruno Haible  <bruno@clisp.org>
34244
34245         * modules/stpncpy: New module.
34246         * MODULES.html.sh (func_all_modules): Add it.
34247
34248 2003-01-29  Bruno Haible  <bruno@clisp.org>
34249
34250         * m4/stpncpy.m4: New file.
34251
34252 2003-01-29  Bruno Haible  <bruno@clisp.org>
34253
34254         * lib/stpncpy.h: New file, from GNU gettext with modifications.
34255         * lib/stpncpy.c: New file, from GNU gettext with modifications.
34256
34257 2003-01-28  Bruno Haible  <bruno@clisp.org>
34258
34259         * modules/c-ctype: New module.
34260         * MODULES.html.sh (func_all_modules): Add it.
34261
34262 2003-01-28  Bruno Haible  <bruno@clisp.org>
34263
34264         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
34265         Paul Eggert.
34266         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
34267         Paul Eggert.
34268
34269 2003-01-27  Bruno Haible  <bruno@clisp.org>
34270
34271         * modules/xsetenv: New module.
34272         * MODULES.html.sh (func_all_modules): Add it.
34273
34274 2003-01-27  Bruno Haible  <bruno@clisp.org>
34275
34276         * lib/xsetenv.h: New file, from GNU gettext.
34277         * lib/xsetenv.c: New file, from GNU gettext.
34278
34279 2003-01-23  Jim Meyering  <jim@meyering.net>
34280
34281         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
34282         from working on systems without dirfd (at least Irix and OSF1/Tru64).
34283
34284 2003-01-23  Bruno Haible  <bruno@clisp.org>
34285
34286         * modules/minmax: New module.
34287         * MODULES.html.sh (func_all_modules): Add it.
34288
34289 2003-01-23  Bruno Haible  <bruno@clisp.org>
34290
34291         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
34292         Eggert.
34293
34294 2003-01-22  Bruno Haible  <bruno@clisp.org>
34295
34296         * modules/exit: New module.
34297         * MODULES.html.sh (func_all_modules): Add it.
34298
34299 2003-01-22  Bruno Haible  <bruno@clisp.org>
34300
34301         * lib/exit.h: New file, from GNU gettext.
34302
34303 2003-01-19  Bruno Haible  <bruno@clisp.org>
34304
34305         * gnulib-tool: Recognize option --extract-maintainer.
34306         (func_get_maintainer): New function.
34307         * modules/*: Add Maintainer entry.
34308
34309 2003-01-16  Jim Meyering  <jim@meyering.net>
34310
34311         * m4/regex.m4: The `regex' struct is both input and output.
34312         Initialize it before each use.  Patch by Tim Waugh.
34313
34314 2003-01-16  Bruno Haible  <bruno@clisp.org>
34315
34316         * MODULES.html.sh: Add a table of contents. Add the module name as
34317         leftmost column. Add hyperlinks.
34318
34319 2003-01-15  Bruno Haible  <bruno@clisp.org>
34320
34321         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
34322
34323 2003-01-15  Bruno Haible  <bruno@clisp.org>
34324
34325         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
34326         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
34327         suffix.
34328
34329 2003-01-15  Bruno Haible  <bruno@clisp.org>
34330
34331         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
34332
34333 2003-01-15  Bruno Haible  <bruno@clisp.org>
34334
34335         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
34336         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
34337
34338 2003-01-14  Jim Meyering  <jim@meyering.net>
34339
34340         * lib/same.c (same_name): Tweak a comment.
34341
34342 2003-01-14  Bruno Haible  <bruno@clisp.org>
34343
34344         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
34345         when a string comparison is sufficient.
34346
34347 2003-01-14  Bruno Haible  <bruno@clisp.org>
34348
34349         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
34350         'unsigned int'.
34351
34352 2003-01-14  Bruno Haible  <bruno@clisp.org>
34353
34354         * lib/hash-pjw.c: Add comment about low quality of this function.
34355
34356 2003-01-13  Bruno Haible  <bruno@clisp.org>
34357
34358         * modules/stpcpy: Distribute lib/stpcpy.h.
34359         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
34360
34361 2003-01-13  Bruno Haible  <bruno@clisp.org>
34362
34363         * modules/*: Add a description.
34364         * modules/strpbrk: Fix Makefile.am snippet.
34365         * modules/strtoimax: Fix dependencies.
34366         * modules/strtoumax: Likewise.
34367
34368 2003-01-13  Bruno Haible  <bruno@clisp.org>
34369
34370         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
34371         * modules/alloca (Makefile.am): All object files depend on alloca.h.
34372         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
34373
34374 2003-01-13  Bruno Haible  <bruno@clisp.org>
34375
34376         * gnulib-tool (func_create_testdir): Store config/* files in the main
34377         directory.
34378         * config.rpath: Move to ...
34379         * config/config.rpath: ... here.
34380         * modules/gettext: Contains config/config.rpath, not config.rpath.
34381         * modules/iconv: Likewise.
34382
34383 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34384
34385         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34386         to avoid collisions with libcurses and libreadline.
34387
34388         * m4/getstr.m4: Remove.
34389         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
34390
34391 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34392
34393         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34394         to avoid collisions with libcurses and libreadline.
34395
34396         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
34397         * lib/getstr.h, getstr.c: Remove.
34398         * lib/getline.c: Include "getline.h", to check interface.
34399         Move body of old getstr.c here: this defines MIN_CHUNK and
34400         declares getdelim2, which is renamed from getstr.
34401         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
34402
34403         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
34404         All uses changed.
34405         * lib/linebuffer.h: Likewise.
34406         (readline): Remove backward-compatibility macro.
34407
34408 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34409
34410         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34411         to avoid collisions with libcurses and libreadline.
34412         * getstr: Remove.
34413         * MODULES.html.sh: Remove getstr.
34414         * modules/getline: Depend on unlocked-io, not getstr.
34415
34416 2003-01-12  Jim Meyering  <jim@meyering.net>
34417
34418         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
34419
34420 2003-01-10  Bruno Haible  <bruno@clisp.org>
34421
34422         * modules/alloca: Change Makefile.am requirements. Simplify Include
34423         requirements. Add lib/alloca_.h to file list.
34424
34425 2003-01-10  Bruno Haible  <bruno@clisp.org>
34426
34427         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
34428
34429 2003-01-10  Bruno Haible  <bruno@clisp.org>
34430
34431         * lib/alloca_.h: New file.
34432         * lib/getdate.y: Unconditionally include alloca.h.
34433         * lib/makepath.c: Likewise.
34434         * lib/setenv.c: Likewise.
34435         * lib/userspec.c: Likewise.
34436
34437 2003-01-09  Karl Berry  <karl@gnu.org>
34438
34439         * MODULES.html.sh: include `dirname $0` in PATH, to find
34440         gnulib-tool.
34441
34442 2003-01-09  Bruno Haible  <bruno@clisp.org>
34443
34444         * modules/stdbool: Change configure.ac, Makefile.am requirements.
34445         Simplify Include requirements. Add lib/stdbool.h.in to file list.
34446
34447 2003-01-09  Bruno Haible  <bruno@clisp.org>
34448
34449         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
34450
34451 2003-01-09  Bruno Haible  <bruno@clisp.org>
34452
34453         * lib/stdbool.h.in: New file.
34454
34455 2003-01-09  Bruno Haible  <bruno@clisp.org>
34456
34457         * gnulib-tool (func_all_modules): Ignore files ending in ~.
34458         * MODULES.html.sh: Likewise.
34459
34460 2003-01-08  Jim Meyering  <jim@meyering.net>
34461
34462         * lib/full-write.c: Undefine and define-away `const' after inclusion
34463         of errno.h, not before.  Suggestion from Bruno Haible.
34464
34465 2003-01-08  Bruno Haible  <bruno@clisp.org>
34466
34467         * modules/full-read: Depend on full-write.
34468
34469 2003-01-08  Bruno Haible  <bruno@clisp.org>
34470
34471         * lib/safe-read.c: Include specification header first, to ensure its
34472         selfcontainedness.
34473         * lib/full-write.c: Likewise.
34474
34475 2003-01-07  Jim Meyering  <jim@meyering.net>
34476
34477         * lib/full-write.c: Rework so that it may serve to define full_read,
34478         too.
34479         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
34480
34481 2003-01-07  Bruno Haible  <bruno@clisp.org>
34482
34483         * lib/strtoimax.c: Include <stdint.h> as an alternative to
34484         <inttypes.h>.
34485         * lib/xstrtol.h: Likewise.
34486         * lib/xstrtoimax.c: Likewise.
34487         * lib/xstrtoumax.c: Likewise.
34488         * lib/human.h: Likewise.
34489
34490         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
34491         on systems that have <inttypes.h> but not <stdint.h>.
34492
34493 2003-01-07  Bruno Haible  <bruno@clisp.org>
34494
34495         * MODULES.html.sh: Add copyright notice.
34496         (missed_files): Omit CVS directory entries.
34497         (func_module): Make it work with sed-3.02.
34498         * MODULES.txt: Remove file.
34499
34500 2003-01-06  Jim Meyering  <jim@meyering.net>
34501
34502         * lib/version-etc.c: Update year in translatable copyright string.
34503
34504 2003-01-03  Karl Berry  <karl@gnu.org>
34505
34506         * config/config.{guess,sub}: update from prep.
34507
34508 2003-01-02  Karl Berry  <karl@gnu.org>
34509
34510         * doc/COPYING.DOC: belatedly updated to 1.2.
34511
34512 2003-01-01  Karl Berry  <karl@gnu.org>
34513
34514         * gnulib-tool (func_verify_module): report module name $module in
34515         error message, not $1.
34516         * gnulib-tool (create-testdir): don't complain if destdir couldn't
34517         be created, only if it doesn't exist.
34518         * gnulib-tool (last_checkin_date): don't expand the $Date here.
34519
34520 2002-12-31  Paul Eggert  <eggert@twinsun.com>
34521
34522         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
34523
34524 2002-12-31  Paul Eggert  <eggert@twinsun.com>
34525
34526         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
34527         memcmp if strcoll doesn't work.
34528
34529 2002-12-31  Bruno Haible  <bruno@clisp.org>
34530
34531         * lib/utime.c (utime_null): No need to call ftruncate if the file was
34532         nonempty.
34533
34534 2002-12-31  Bruno Haible  <bruno@clisp.org>
34535
34536         * lib/memcoll.c (STRCOLL): New macro.
34537         (memcoll): Use it.
34538
34539 2002-12-31  Bruno Haible  <bruno@clisp.org>
34540
34541         * lib/localcharset.h: New file.
34542         * lib/localcharset.c: Include it.
34543         * lib/unicodeio.c: Likewise.
34544
34545 2002-12-31  Bruno Haible  <bruno@clisp.org>
34546
34547         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
34548         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
34549
34550 2002-12-31  Bruno Haible  <bruno@clisp.org>
34551
34552         * lib/getline.h: Include <stddef.h>, for size_t.
34553
34554         * lib/unicodeio.h: Include <stddef.h>, for size_t.
34555         * lib/unicodeio.c: Don't include <stddef.h>.
34556
34557 2002-12-31  Bruno Haible  <bruno@clisp.org>
34558
34559         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
34560         HAVE_TM_ZONE.
34561
34562 2002-12-24  Karl Berry  <karl@gnu.org>
34563
34564         * config/config.guess: update from prep.
34565
34566 2002-12-24  Bruno Haible  <bruno@clisp.org>
34567
34568         General infrasructure.
34569         * m4/README: Rewritten.
34570         * m4/onceonly.m4: New file.
34571         * m4/onceonly_2_57.m4: New file.
34572
34573         Module atexit.
34574         * m4/atexit.m4: New file.
34575
34576         Module strtod.
34577         * m4/strtod.m4: New file.
34578
34579         Module strtol.
34580         * m4/strtol.m4: New file.
34581
34582         Module strtoul.
34583         * m4/strtoul.m4: New file.
34584
34585         Module memchr.
34586         * m4/memchr.m4: New file.
34587
34588         Module memcmp.
34589         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
34590         (jm_FUNC_MEMCMP): Invoke it.
34591
34592         Module memcpy.
34593         * m4/memcpy.m4: New file.
34594
34595         Module memmove.
34596         * m4/memmove.m4: New file.
34597
34598         Module memset.
34599         * m4/memset.m4: New file.
34600
34601         Module strcspn.
34602         * m4/strcspn.m4: New file.
34603
34604         Module strpbrk.
34605         * m4/strpbrk.m4: New file.
34606
34607         Module strstr.
34608         * m4/strstr.m4: New file.
34609
34610         Module strerror.
34611         * m4/strerror.m4: New file.
34612
34613         Module mktime.
34614         * m4/mktime.m4: Renamed from jm-mktime.m4.
34615         (gl_PREREQ_MKTIME): New macro.
34616         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
34617
34618         Module malloc.
34619         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
34620         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
34621         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
34622
34623         Module realloc.
34624         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
34625         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
34626         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
34627
34628         Module strftime.
34629         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
34630         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
34631         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
34632         gl_TM_GMTOFF.
34633         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
34634
34635         Module xalloc.
34636         * m4/xalloc.m4: New file.
34637
34638         Module alloca.
34639         * m4/alloca.m4: New file.
34640
34641         Module putenv.
34642         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
34643         (jm_FUNC_PUTENV): Invoke it.
34644
34645         Module setenv.
34646         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
34647         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
34648         when invoked twice.
34649         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
34650         gt_FUNC_SETENV.
34651
34652         Module memrchr.
34653         * m4/memrchr.m4: New file.
34654
34655         Module stpcpy.
34656         * m4/stpcpy.m4: New file.
34657
34658         Module strcase.
34659         * m4/strcase.m4: New file.
34660
34661         Module strdup.
34662         * m4/strdup.m4: New file.
34663
34664         Module strnlen.
34665         * m4/strnlen.m4: New file.
34666
34667         Module strndup.
34668         * m4/strndup.m4: New file.
34669
34670         Module xstrtod.
34671         * m4/xstrtod.m4: New file.
34672
34673         Module xstrtol.
34674         * m4/xstrtol.m4: New file.
34675
34676         Module getdate.
34677         * m4/getdate.m4: New file.
34678
34679         Module unlocked-io.
34680         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
34681         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
34682         * m4/jm-glibc-io.m4n: Remove file.
34683
34684         Module long-options.
34685         * m4/long-options.m4: New file.
34686
34687         Module md5.
34688         * m4/md5.m4: New file.
34689
34690         Module sha.
34691         * m4/sha.m4: New file.
34692
34693         Module getstr.
34694         * m4/getstr.m4: New file.
34695
34696         Module getline.
34697         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
34698         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
34699         <sys/types.h>, for size_t. Use the function name gnu_getline, not
34700         simply getline. Infoke gl_PREREQ_GETLINE.
34701
34702         Module obstack.
34703         * m4/obstack.m4: New file.
34704
34705         Module hash.
34706         * m4/hash.m4: New file.
34707
34708         Module readtokens.
34709         * m4/readtokens.m4: New file.
34710
34711         Module strverscmp.
34712         * m4/strverscmp.m4: New file.
34713
34714         Module stdbool.
34715         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
34716         OSF/1.
34717
34718         Module strtoll.
34719         * m4/strtoll.m4: New file.
34720
34721         Module strtoull.
34722         * m4/strtoull.m4: New file.
34723
34724         Module strtoimax.
34725         * m4/strtoimax.m4: New file.
34726
34727         Module strtoumax.
34728         * m4/strtoumax.m4: New file.
34729
34730         Module xstrtoimax.
34731         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
34732         jm_AC_PREREQ_XSTRTOIMAX.
34733         Moved the strtol prerequisites to strtol.m4.
34734         Moved the strtoll prerequisites to strtoll.m4.
34735         Moved the strtoimax prerequisites to strtoimax.m4.
34736
34737         Module xstrtoumax.
34738         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
34739         jm_AC_PREREQ_XSTRTOUMAX.
34740         Moved the strtoul prerequisites to strtoul.m4.
34741         Moved the strtoull prerequisites to strtoull.m4.
34742         Moved the strtoumax prerequisites to strtoumax.m4.
34743
34744         Module chown.
34745         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
34746         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
34747
34748         Module dup2.
34749         * m4/dup2.m4: New file.
34750
34751         Module ftruncate.
34752         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
34753         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
34754
34755         Module getgroups.
34756         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
34757         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
34758
34759         Module gettimeofday.
34760         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
34761         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
34762         gl_PREREQ_GETTIMEOFDAY.
34763
34764         Module mkdir.
34765         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
34766         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
34767
34768         Module mkstemp.
34769         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
34770         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
34771         jm_AC_TYPE_UINTMAX_T.
34772         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
34773
34774         Module stat.
34775         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
34776         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
34777
34778         Module lstat.
34779         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
34780         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
34781
34782         Module timespec.
34783         * m4/timespec.m4 (gl_TIMESPEC): New macro.
34784         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
34785         * m4/st_mtim.m4: Indentation.
34786
34787         Module nanosleep.
34788         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
34789         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
34790         gl_PREREQ_NANOSLEEP.
34791
34792         Module regex.
34793         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
34794         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
34795         (gl_REGEX): New macro.
34796
34797         Module rename.
34798         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
34799         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
34800
34801         Module rmdir.
34802         * m4/rmdir.m4: New file.
34803
34804         Module utime.
34805         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
34806         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
34807         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
34808
34809         Module dirname.
34810         * m4/dirname.m4: New file.
34811
34812         Module getopt.
34813         * m4/getopt.m4: New file.
34814
34815         Module unistd-safer.
34816         * m4/unistd-safer.m4: New file.
34817
34818         Module fnmatch.
34819         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
34820         declaration.
34821         (gl_PREREQ_FNMATCH_EXTRA): New macro.
34822         (gl_FUNC_FNMATCH_POSIX): New macro.
34823         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
34824         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
34825         simply fnmatch.
34826
34827         Module exclude.
34828         * m4/exclude.m4: New file.
34829
34830         Module human.
34831         * m4/human.m4: New file.
34832
34833         Module acl.
34834         * m4/acl.m4: Nop.
34835
34836         Module backupfile.
34837         * m4/backupfile.m4: New file.
34838         * m4/d-ino.m4: Indentation.
34839
34840         Module fsusage.
34841         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
34842         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
34843         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
34844
34845         Module dirfd.
34846         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
34847         requirements.
34848
34849         Module euidaccess.
34850         * m4/euidaccess.m4: New file.
34851
34852         Module file-type.
34853         * m4/file-type.m4: New file.
34854
34855         Module fileblocks.
34856         * m4/fileblocks.m4: New file.
34857
34858         Module filemode.
34859         * m4/filemode.m4: New file.
34860
34861         Module isdir.
34862         * m4/isdir.m4: New file.
34863
34864         Module lchown.
34865         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
34866         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
34867
34868         Module makepath.
34869         * m4/makepath.m4: New file.
34870
34871         Module modechange.
34872         * m4/modechange.m4: New file.
34873
34874         Module mountlist.
34875         * m4/mountlist.m4: New file.
34876         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
34877         Indentation.
34878
34879         Module path-concat.
34880         * m4/path-concat.m4: New file.
34881
34882         Module pathmax.
34883         * m4/pathmax.m4: New file.
34884
34885         Module same.
34886         * m4/same.m4: New file.
34887
34888         Module save-cwd.
34889         * m4/save-cwd.m4: New file.
34890
34891         Module savedir.
34892         * m4/savedir.m4: New file.
34893
34894         Module xgetcwd.
34895         * m4/xgetcwd.m4: New file.
34896         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
34897
34898         Module xreadlink.
34899         * m4/xreadlink.m4: New file.
34900
34901         Module safe-read.
34902         * m4/safe-read.m4: New file.
34903
34904         Module safe-write.
34905         * m4/safe-write.m4: New file.
34906
34907         Module closeout.
34908         * m4/closeout.m4: New file.
34909
34910         Module stdio-safer.
34911         * m4/stdio-safer.m4: New file.
34912
34913         Module getpass.
34914         * m4/getpass.m4: New file.
34915
34916         Module getugroups.
34917         * m4/getugroups.m4: New file.
34918
34919         Module group-member.
34920         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
34921         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
34922
34923         Module idcache.
34924         * m4/idcache.m4: New file.
34925
34926         Module userspec.
34927         * m4/userspec.m4: New file.
34928
34929         Module gettime.
34930         * m4/clock_time.m4: New file.
34931         * m4/gettime.m4: New file.
34932
34933         Module settime.
34934         * m4/settime.m4: New file.
34935
34936         Module posixtm.
34937         * m4/posixtm.m4: New file.
34938
34939         Module gethostname.
34940         * m4/gethostname.m4: New file.
34941
34942         Module canon-host.
34943         * m4/canon-host.m4: New file.
34944
34945         Module gettext.
34946         * m4/codeset.m4: New file, from gettext-0.11.5.
34947         * m4/gettext.m4: New file, from gettext-0.11.5.
34948         * m4/glibc21.m4: New file, from gettext-0.11.5.
34949         * m4/iconv.m4: New file, from gettext-0.11.5.
34950         * m4/intdiv0.m4: New file, from gettext-0.11.5.
34951         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
34952         * m4/inttypes.m4: New file, from gettext-0.11.5.
34953         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
34954         * m4/isc-posix.m4: New file, from gettext-0.11.5.
34955         * m4/lcmessage.m4: New file, from gettext-0.11.5.
34956         * m4/lib-ld.m4: New file, from gettext-0.11.5.
34957         * m4/lib-link.m4: New file, from gettext-0.11.5.
34958         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
34959         * m4/progtest.m4: New file, from gettext-0.11.5.
34960         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
34961         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
34962         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
34963
34964         Module localcharset.
34965         * m4/localcharset.m4: New file.
34966
34967         Module hard-locale.
34968         * m4/hard-locale.m4: New file.
34969
34970         Module mbswidth.
34971         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
34972         onceonly macros.
34973         * m4/mbrtowc.m4: Add comment.
34974
34975         Module memcasecmp.
34976         * m4/memcasecmp.m4: New file.
34977
34978         Module memcoll.
34979         * m4/memcoll.m4: New file.
34980
34981         Module unicodeio.
34982         * m4/unicodeio.m4: New file.
34983
34984         Module rpmatch.
34985         * m4/rpmatch.m4: New file.
34986
34987         Module yesno.
34988         * m4/yesno.m4: New file.
34989
34990         Module exitfail.
34991         * m4/exitfail.m4: New file.
34992
34993         Module c-stack.
34994         * m4/c-stack.m4 (gl_C_STACK): New macro.
34995         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
34996
34997         Module error.
34998         * m4/error.m4 (gl_ERROR): New macro.
34999         (jm_PREREQ_ERROR): Use onceonly macros.
35000
35001         Module fatal.
35002         * m4/fatal.m4: New file.
35003
35004         Module getloadavg.
35005         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
35006         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
35007
35008         Module getpagesize.
35009         * m4/getpagesize.m4: New file.
35010
35011         Module getusershell.
35012         * m4/getusershell.m4: New file.
35013
35014         Module physmem.
35015         * m4/physmem.m4: New file.
35016
35017         Module posixver.
35018         * m4/posixver.m4: New file.
35019
35020         Module quotearg.
35021         * m4/quotearg.m4: New file.
35022
35023         Module quote.
35024         * m4/quote.m4: New file.
35025
35026         Module readutmp.
35027         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
35028
35029         Module sig2str.
35030         * m4/sig2str.m4: New file.
35031
35032         Other.
35033         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
35034         ulonglong.m4.
35035         * m4/intmax_t.m4: New file.
35036         * m4/d-type.m4: Indentation.
35037         * m4/jm-macros.m4: Update.
35038         * m4/prereq.m4 (jm_PREREQ): Update.
35039         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
35040         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
35041         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
35042         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
35043         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
35044         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
35045         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
35046         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
35047         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
35048         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
35049         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
35050         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
35051         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
35052         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
35053         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
35054         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
35055         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
35056         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
35057         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
35058
35059 2002-12-24  Bruno Haible  <bruno@clisp.org>
35060
35061         * MODULES.txt: Update according to m4/ changes.
35062
35063         Module gettext.
35064         * config.rpath: New file, from gettext-0.11.5.
35065
35066         * modules/*: New module descriptions.
35067         * gnulib-tool: New file.
35068         * MODULES.html.sh: New file.
35069
35070 2002-12-21  Karl Berry  <karl@gnu.org>
35071
35072         * doc/fdl.texi: update to version 1.2.
35073
35074 2002-12-19  Karl Berry  <karl@gnu.org>
35075
35076         * config/config.guess: update from prep.
35077
35078 2002-12-18  Bruno Haible  <bruno@clisp.org>
35079
35080         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
35081         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
35082
35083 2002-12-17  Bruno Haible  <bruno@clisp.org>
35084
35085         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
35086         stdlib.h, string.h.
35087
35088 2002-12-17  Bruno Haible  <bruno@clisp.org>
35089
35090         * lib/canon-host.c (strdup): Remove unused declaration.
35091
35092         * lib/fsusage.c: Include full_read.h.
35093         (get_fs_usage): Use full_read instead of safe_read.
35094
35095         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
35096
35097 2002-12-12  Karl Berry  <karl@gnu.org>
35098
35099         * config/config.guess: update from prep.
35100
35101 2002-12-11  Bruno Haible  <bruno@clisp.org>
35102
35103         * m4/setenv.m4: New file, from gettext-0.11.5.
35104
35105 2002-12-11  Bruno Haible  <bruno@clisp.org>
35106
35107         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
35108         not unsetenv().
35109         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
35110         modifications:
35111
35112         2002-12-11  Bruno Haible  <bruno@clisp.org>
35113
35114                 * setenv.c (alloca): Fall back to malloc.
35115                 (freea): New macro.
35116                 (setenv): Use freea() to free memory allocated with alloca().
35117
35118         2002-11-13  Bruno Haible  <bruno@clisp.org>
35119
35120                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
35121                 function declarations.
35122                 * unsetenv.c (unsetenv): Likewise.
35123
35124         2002-03-04  Bruno Haible  <bruno@clisp.org>
35125
35126                 Portability to AIX 4.3.3.
35127                 * unsetenv.c: New file, extracted from setenv.c.
35128                 * setenv.c: Move the unsetenv() function to unsetenv.c.
35129
35130         2001-12-20  Bruno Haible  <bruno@clisp.org>
35131
35132                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
35133                 use malloc instead. For SunOS 4.
35134
35135         2001-12-11  Bruno Haible  <bruno@clisp.org>
35136
35137                 * setenv.c: Declare alloca.
35138                 (compar_fn_t): New typedef.
35139                 (KNOWN_VALUE, STORE_VALUE): Use it.
35140
35141         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
35142         setenv.h.
35143
35144 2002-12-10  Paul Eggert  <eggert@twinsun.com>
35145
35146         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
35147         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
35148         Choose values that are less likely to collide with system fnmatch
35149         options.
35150         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
35151         defined (e.g., a pure POSIX system).
35152         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
35153         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
35154
35155 2002-12-06  Paul Eggert  <eggert@twinsun.com>
35156
35157         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
35158         a pain in practice to deal with generated m4 files.  This change
35159         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
35160
35161         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
35162         and jm-glibc-io.m4, as they are no longer a special case.
35163         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
35164         kludge and the auto-generation stuff.  Check only whether the
35165         functions are declared, not whether they exist, since older hosts
35166         that don't declare the functions can't use the optimization anyway.
35167
35168 2002-12-06  Jim Meyering  <jim@meyering.net>
35169
35170         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
35171
35172         Merge in changes from libc's misc/error.c, in preparation
35173         for the merge of gnulib's changes back into libc.
35174
35175         * lib/error.c (_): Define only if not already defined.
35176         Move definition to follow all #include directives.
35177         Include unlocked-io.h only if !_LIBC.
35178         [_LIBC]: Include <libio/libioP.h>.
35179         [USE_IN_LIBIO]: Include <libio/iolibio.h>
35180         (fflush): Tweak definition to use INTUSE.
35181         (putc): Define.
35182
35183 2002-12-05  Paul Eggert  <eggert@twinsun.com>
35184
35185         * lib/alloca.c [defined emacs]: Include "lisp.h".
35186         (xalloc_die) [defined emacs]: New macro.
35187         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
35188         [! defined emacs]: Include <xalloc.h>.
35189         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
35190         (pointer): Typedef to POINTER_TYPE *.
35191         (malloc): Remove decl; we now always use xmalloc.
35192         (alloca): Use old-style definition, since Emacs needs this.
35193         Check for arithmetic overflow when computing combined size.
35194
35195 2002-12-04  Paul Eggert  <eggert@twinsun.com>
35196
35197         Do not generate unlocked-io.h automatically, since it's easier to
35198         maintain it by hand.
35199
35200         * lib/unlocked-io.h: New file, from GNU diffutils,
35201         but with proper copyright notice and attribution.
35202         * lib/gen-uio: Remove.
35203         * lib/Makefile.am: Add copyright notice.
35204         (libfetish_a_SOURCES): Add unlocked-io.h.
35205         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
35206         (DISTCLEANFILES, io_functions): Remove macros.
35207         (EXTRA_DIST): Remove gen_uio.
35208         (unlocked-io.h): Remove rule.
35209
35210 2002-12-04  Jim Meyering  <jim@meyering.net>
35211
35212         Reflect the fact that stat.c and lstat.c are no longer generated.
35213         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
35214         (DISTCLEANFILES): Likewise.
35215         (EXTRA_DIST): Likewise.
35216         (all_local): Don't depend on stat.c or lstat.c.
35217         (stat.c, lstat.c): Remove rules.
35218         (EXTRA_DIST): Remove xstat.in.
35219
35220         * lib/xstat.in: Remove file.  Contents moved into stat.c.
35221         * lib/stat.c: New file.  Contents mostly from xstat.in.
35222         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
35223         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
35224
35225         * lib/safe-read.c: Rework so that it may serve to define safe_write,
35226         too.
35227         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
35228
35229 2002-12-03  Jim Meyering  <jim@meyering.net>
35230
35231         * lib/safe-read.c, safe-write.c: Change variable names and comments,
35232         but not semantics, to minimize the differences between these two files.
35233         (safe_read): Change comment to mention SAFE_READ_ERROR.
35234
35235         * lib/safe-read.c (IS_EINTR): Define.
35236         (safe_read): Use IS_EINTR in place of in-function cpp directives.
35237
35238 2002-12-02  Jim Meyering  <jim@meyering.net>
35239
35240         * lib/safe-read.c (EINTR): Define.
35241         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
35242         (INT_MAX): Provide fallback.
35243         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
35244
35245         * lib/safe-read.h (SAFE_READ_ERROR): Define.
35246
35247 2002-12-02  Bruno Haible  <bruno@clisp.org>
35248
35249         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
35250         Define, taken from safe-read.c.
35251         (INT_MAX): Provide fallback.
35252         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
35253         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
35254
35255         * lib/safe-read.c (EINTR): Remove definition.
35256         (safe_read): Don't use EINTR if it is absent.
35257
35258 2002-12-01  Jim Meyering  <jim@meyering.net>
35259
35260         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
35261         zero.
35262         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
35263
35264 2002-11-27  Paul Eggert  <eggert@twinsun.com>
35265
35266         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
35267         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
35268         with `if (! (value < limit)) abort ();', for readability.
35269
35270 2002-11-26  Karl Berry  <karl@gnu.org>
35271
35272         * lib/strdup.c: copy from libc again, with jim's ok.
35273         * lib/.cppi-disable: re-add strdup.c
35274
35275 2002-11-25  Karl Berry  <karl@gnu.org>
35276
35277         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
35278         instead of "strtol.c".
35279
35280 2002-11-25  Karl Berry  <karl@gnu.org>
35281
35282         * config/install-sh: update from automake for variable quoting, $0 in
35283         error msgs, etc.
35284
35285         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
35286         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
35287         entry.
35288
35289 2002-11-25  Jim Meyering  <jim@meyering.net>
35290
35291         * lib/mktime.c: Sync from libc, now that it has the latest fix.
35292
35293 2002-11-24  Karl Berry  <karl@gnu.org>
35294
35295         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
35296         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
35297
35298 2002-11-24  Jim Meyering  <jim@meyering.net>
35299
35300         Update from coreutils:
35301
35302         * lib/mktime.c: Merge in changes from libc.
35303
35304         Avoid a link-time failure on some Linux systems.
35305         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
35306         (otherwise).
35307         (__mon_yday): Declare with the STATIC attribute.
35308         (__mktime_internal): Likewise.
35309         Based on a report from Greg Schafer.
35310
35311 2002-11-23  Jim Meyering  <jim@meyering.net>
35312
35313         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
35314         Use `unsigned', not `int', as type of index.
35315
35316         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
35317
35318         * lib/fsusage.c: Remove unneeded parentheses around operands of
35319         `defined'.
35320
35321 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35322
35323         * lib/quotearg.h: Allow multiple inclusion by surrounding with
35324         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
35325         so that we can be included first.
35326         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
35327         * lib/quotearg.c: Include quotearg.h immediately after config.h.
35328         No need to include stddef.h or sys/types.h any more.
35329         Surround local include files with "", not "<>".
35330         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
35331         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
35332         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
35333         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
35334         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
35335         (ISPRINT): Remove; no longer needed now that we assume C89.
35336
35337         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
35338         Preserve errno.
35339
35340         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
35341         quotearg_char): Use SIZE_MAX rather than
35342         (size_t) -1 when we are talking about "infinity".
35343
35344         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
35345
35346 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35347
35348         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
35349         hint that one should use `if (! x) abort ();' rather than `assert
35350         (x);', and anyway it's one less thing to worry about configuring.
35351         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
35352         hash_rehash, hash_insert): Use abort rather than assert.
35353
35354 2002-11-22  Bruno Haible  <bruno@clisp.org>
35355
35356         * lib/safe-read.h: Assume C89. Add comments.
35357         (safe_read): Change return type to size_t.
35358         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
35359         byte counts > SSIZE_MAX correctly.
35360         * lib/safe-write.h: New file.
35361         * lib/safe-write.c: New file.
35362         * lib/full-read.h: New file.
35363         * lib/full-read.c: New file.
35364         * lib/full-write.h: Assume C89. Add comments.
35365         * lib/full-write.c: Include safe-write.h.
35366         (full_write): Rewritten to use safe_write.
35367         Suggested by Jim Meyering and Paul Eggert.
35368
35369 2002-11-21  Jim Meyering  <jim@meyering.net>
35370
35371         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
35372
35373         Merge in changes from the coreutils.
35374
35375         2002-09-25  Paul Eggert  <eggert@twinsun.com>
35376         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
35377         <stdint.h>.
35378         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
35379         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
35380         int.  Work more efficiently if X is the same width as uintmax_t.
35381         Do not compare X to -1, to avoid bogus compiler warning.
35382         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
35383         Don't assume that f_frsize and f_bsize are the same type.
35384
35385         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
35386         warning on FreeBSD.
35387
35388         * lib/makepath.c (make_path): Restore umask *before* creating the final
35389         component.
35390         (make_path): Minor reformatting.
35391
35392         * lib/xmalloc.c: Adjust to work with new autoconf macros,
35393         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
35394         HAVE_MALLOC/HAVE_REALLOC.
35395
35396         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
35397         dummy ones.  At least on GNU/Linux systems, `auto' means something
35398         else.
35399         From Michael Stone.
35400
35401 2002-11-21  Bruno Haible  <bruno@clisp.org>
35402
35403         Remove case insensitive option matching.
35404         * lib/argmatch.h (argcasematch): Remove declaration.
35405         (ARGCASEMATCH): Remove macro.
35406         (__xargmatch_internal): Remove case_sensitive argument.
35407         (XARGMATCH): Update.
35408         (XARGCASEMATCH): Remove macro.
35409         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
35410         case_sensitive argument.
35411         (argcasematch): Remove function.
35412         (__xargmatch_internal): Remove case_sensitive argument.
35413         (main): Use XARGMATCH instead of XARGCASEMATCH.
35414
35415         * lib/xmalloc.c: Change compile-time error message. Add comment about
35416         required autoconf version.
35417
35418 2002-11-20  Paul Eggert  <eggert@twinsun.com>
35419
35420         Merge argmatch cleanups from Bison.  Assume C89.
35421
35422         * lib/argmatch.c: Include config.h here, not in argmatch.h.
35423         Include stdlib.h, for EXIT_FAILURE.
35424         Always include <string.h>, since we assume C89.
35425         (EXIT_FAILURE): Remove pre-C89 bug workaround.
35426         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
35427         Include <stddef.h> instead, since it's all we need for size_t.
35428         (PARAMS): Remove.  All uses removed.
35429         (ARRAY_CARDINALITY): Do not bother to #undef.
35430         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
35431         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
35432         Remove unnecessary parentheses.
35433         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
35434         Insert necessary parentheses.
35435         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
35436         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
35437
35438 2002-11-19  Bruno Haible  <bruno@clisp.org>
35439
35440         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
35441         * lib/mbswidth.h: Include <stddef.h>, for size_t.
35442
35443         * lib/mbswidth.h (PARAMS): Remove macro.
35444         (mbswidth, mbsnwidth): Use ANSI C function declarations.
35445         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
35446
35447         * lib/gcd.h (PARAMS): Remove macro.
35448         (gcd): Use ANSI C function declarations.
35449         * lib/gcd.c (gcd): Likewise.
35450
35451 2002-11-15  Bruno Haible  <bruno@clisp.org>
35452
35453         * lib/strcspn.c: Include <stddef.h>.
35454         (strcspn): Use ANSI C function declaration. Change return type to
35455         size_t. Use NULL.
35456         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
35457         (strpbrk): Use NULL.
35458         * lib/strpbrk.h (PARAMS): Remove macro.
35459         (strpbrk): Use ANSI C function declaration.
35460         * lib/strstr.c: Don't include <sys/types.h>.
35461         * lib/strstr.h (PARAMS): Remove macro.
35462         (strstr): Use ANSI C function declarations.
35463
35464 2002-11-14  Karl Berry  <karl@gnu.org>
35465
35466         * config/mkinstalldirs: `do' on separate line, instead of
35467         `for var; do'.
35468
35469 2002-11-06  Bruno Haible  <bruno@clisp.org>
35470
35471         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
35472         * lib/gcd.c (gcd): Likewise.
35473
35474 2002-11-05  Bruno Haible  <bruno@clisp.org>
35475
35476         * lib/gcd.h: New file, from gettext-0.11.5.
35477         * lib/gcd.c: New file, from gettext-0.11.5.
35478
35479 2002-11-05  Bruno Haible  <bruno@clisp.org>
35480
35481         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35482         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35483         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35484         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35485
35486         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
35487         <libintl.h>.
35488         * lib/makepath.c: Include gettext.h instead of <locale.h> and
35489         <libintl.h>.
35490
35491         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
35492         * lib/human.c: Include gettext.h instead of <libintl.h>.
35493         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
35494         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
35495         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
35496         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
35497         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
35498         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
35499         (textdomain): Remove definition.
35500         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
35501
35502         * lib/long-options.c: Remove include of <libintl.h> and definition of
35503         _.
35504         * lib/same.c: Remove include of <libintl.h> and definition of _.
35505
35506 2002-11-04  Owen Taylor  <otaylor@redhat.com>
35507
35508         * lib/config.charset: A few additions for Solaris.
35509
35510 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
35511
35512         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
35513         * lib/localcharset.c (locale_charset): Declare as extern "C".
35514
35515 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
35516
35517         * lib/config.charset: msdos in uk_UA uses CP1125.
35518
35519 2002-11-04  Bruno Haible  <bruno@clisp.org>
35520
35521         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
35522         * lib/strcase.h: New file, from GNU gettext-0.11.5.
35523         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
35524         * lib/strstr.h: New file, from GNU gettext-0.11.5.
35525         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
35526
35527 2002-11-04  Bruno Haible  <bruno@clisp.org>
35528
35529         * lib/localcharset.c (locale_charset): Don't return an empty string.
35530
35531 2002-11-04  Bruno Haible  <bruno@clisp.org>
35532
35533         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
35534         aliases.
35535
35536 2002-11-04  Bruno Haible  <bruno@clisp.org>
35537
35538         * lib/config.charset: Update for newest glibc. Add canonical names
35539         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
35540
35541 2002-11-04  Bruno Haible  <bruno@clisp.org>
35542
35543         * lib/config.charset: Add support for NetBSD.
35544
35545 2002-11-04  Bruno Haible  <bruno@clisp.org>
35546
35547         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
35548
35549 2002-11-01  Bruno Haible  <bruno@clisp.org>
35550
35551         * configure.in: Add AC_CONFIG_AUX_DIR call.
35552         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
35553         test/Makefile.
35554         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
35555
35556 2002-09-28  Karl Berry  <karl@gnu.org>
35557
35558         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
35559         installed automake until the next release, since changes have been
35560         made.
35561
35562 2002-09-25  Karl Berry  <karl@gnu.org>
35563
35564         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
35565         * lib/getopt*: copy from libc/posix.
35566         * lib/gettext.h: copy from gettext.
35567         * lib/.cppi-disable: add strdup.c, gettext.h.
35568
35569 2002-09-25  Karl Berry  <karl@gnu.org>
35570
35571         * config/srclist.txt: enable gettext.h check.
35572         * config/config.{guess,sub}: update from prep.
35573         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
35574                 from automake 1.6.3.
35575         See srclist*.
35576
35577 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
35578
35579         * regex.c (PATFETCH): Remove the translating fetch.
35580         (PATFETCH_RAW): Rename to PATFETCH.
35581         (set_image_of_range): New fun.
35582         (SET_RANGE_TABLE_WORK_AREA): Use it.
35583         (regex_compile): Don't translate the pattern chars so eagerly.
35584         Only do it when inserting an `exactn' bytecode or when handling
35585         a char-range.
35586         (mutually_exclusive_p): Avoid empty statement.
35587
35588 2002-07-06  Jim Meyering  <meyering@lucent.com>
35589
35590         * m4/README: Don't mention Makefile.am.in.
35591         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
35592
35593 2002-07-01  Jim Meyering  <meyering@lucent.com>
35594
35595         * lib/c-stack.c: Include sys/time.h.
35596         From Volker Borchert.
35597
35598 2002-06-26  Paul Eggert  <eggert@twinsun.com>
35599
35600         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
35601
35602 2002-06-26  Paul Eggert  <eggert@twinsun.com>
35603
35604         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
35605         New macro.  Use it uniformly instead of
35606         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
35607         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
35608         reported by Vin Shelton.
35609
35610 2002-06-22  Paul Eggert  <eggert@twinsun.com>
35611
35612         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
35613         Do not assume SA_SIGINFO behavior.
35614         Bug reported by Jim Meyering on NetBSD 1.5.2.
35615
35616 2002-06-22  Jim Meyering  <meyering@lucent.com>
35617
35618         * m4/c-stack.m4: New file, from diffutils-2.8.2.
35619         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
35620
35621         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
35622         now that configure.ac uses AC_GNU_SOURCE.
35623         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
35624         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
35625
35626         Update to latest tools.  Suggestions from Paul Eggert.
35627         * m4/stdbool.m4: New file, from diffutils-2.8.2.
35628         * m4/gnu-source.m4: Update from diffutils-2.8.2.
35629         * m4/fnmatch.m4: Likewise.
35630         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
35631         to AC_HEADER_STDBOOL
35632
35633 2002-06-22  Jim Meyering  <meyering@lucent.com>
35634
35635         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
35636         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
35637
35638 2002-06-22  Jim Meyering  <meyering@lucent.com>
35639
35640         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
35641
35642         * lib/exitfail.c, exitfail.h: Likewise.
35643         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
35644
35645         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
35646         of fnmatch.h.
35647         (EXTRA_DIST): Add fnmatch_loop.c.
35648         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
35649
35650         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
35651         * lib/fnmatch.c: Update from diffutils-2.8.2.
35652         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
35653         * lib/fnmatch.h: Remove file.
35654
35655 2002-06-21  Jim Meyering  <meyering@lucent.com>
35656
35657         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
35658         * m4/mbrtowc.m4: Likewise.
35659
35660         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
35661         * m4/mbswidth.m4: Reflect name change:
35662         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
35663         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
35664
35665         * m4/lib-link.m4: Update from gettext-0.11.2.
35666         * m4/gettext.m4: Likewise.
35667
35668         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
35669         From Alfred M. Szmidt.
35670
35671 2002-06-18  Paul Eggert  <eggert@twinsun.com>
35672
35673         * lib/file-type.h: Report an error if neither S_ISREG nor
35674         S_IFREG is defined, instead of using a test specific to glibc
35675         2.2.  This should be safe, since POSIX requires S_ISREG and
35676         Unix Version 7 had S_IFREG.  We don't need to check for
35677         <sys/types.h> since we don't use any symbols that it defines.
35678
35679 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
35680
35681         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
35682         $@-t, so that each temporary file name is unique and valid in the first
35683         8 characters, for operation under DOS.
35684
35685 2002-06-15  Paul Eggert  <eggert@twinsun.com>
35686
35687         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
35688
35689 2002-06-15  Jim Meyering  <meyering@lucent.com>
35690
35691         Work even with DJGPP 2.03, which lacks support for symlinks.
35692         From Richard Dawe.
35693         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
35694         is defined.
35695         * lib/lchown.c (S_ISLNK): Likewise.
35696
35697 2002-06-15  Jim Meyering  <meyering@lucent.com>
35698
35699         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
35700         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
35701         have been included before this file.
35702
35703 2002-06-14  Jim Meyering  <meyering@lucent.com>
35704
35705         * lib/file-type.h: Use the version from diffutils-2.8.2.
35706         * lib/file-type.c: Likewise.
35707
35708 2002-06-07  Jim Meyering  <meyering@lucent.com>
35709
35710         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
35711         They're needed at least for NetBSD 1.5.2.
35712         ($statxfs_includes): Include those same headers.
35713         ($statxfs_includes): Include sys/vfs.h if available.
35714         ($statxfs_includes): Likewise for sys/statvfs.h.
35715         Check for the following members in both structs statfs and statvfs:
35716         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
35717
35718 2002-06-01  Jim Meyering  <meyering@lucent.com>
35719
35720         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
35721         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
35722
35723 2002-05-28  Jim Meyering  <meyering@lucent.com>
35724
35725         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
35726         Reported by Volker Borchert.
35727
35728 2002-05-27  Jim Meyering  <meyering@lucent.com>
35729
35730         Fix a problem seen only on nonconforming systems whereby ls.c's
35731         use of localtime, and then of gettimeofday would cause trouble:
35732         the localtime call used to initialize rpl_gettimeofday's save
35733         mechanism would clobber ls's current local time information so
35734         that in any long listing the first file would always be listed
35735         with date 1970-01-01.  Analysis by Volker Borchert.
35736
35737         * lib/gettimeofday.c (localtime): Undefine.
35738         (rpl_localtime): New function.
35739
35740 2002-05-27  Jim Meyering  <meyering@lucent.com>
35741
35742         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
35743         localtime.
35744
35745         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
35746         use the replacement function; it wouldn't resolve at link time.
35747         Reported by Volker Borchert.
35748
35749 2002-05-22  Jim Meyering  <meyering@lucent.com>
35750
35751         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
35752         file-type.h.
35753         * lib/file-type.h: New file.
35754         * lib/file-type.c (file_type): New file/function.  Extracted from
35755         diffutils.
35756
35757 2002-04-30  Jim Meyering  <meyering@lucent.com>
35758
35759         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
35760
35761 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35762
35763         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
35764
35765 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35766
35767         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
35768         Do not check for alloca.h (no longer used) or stdbool.h (was never
35769         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
35770
35771 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35772
35773         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
35774
35775 2002-04-29  Jim Meyering  <meyering@lucent.com>
35776
35777         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
35778         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
35779         Use AC_FUNC_STRNLEN here instead.
35780
35781         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
35782         With autoconf-2.53a, it's part of AC_PROG_CC.
35783
35784 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35785
35786         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
35787         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
35788
35789 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35790
35791         * lib/sig2str.h, lib/sig2str.c: New files.
35792         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
35793
35794 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35795
35796         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
35797         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
35798         of 127, since 64 is the largest conceivable number for ancient
35799         nonstandard hosts.
35800         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
35801
35802 2002-04-28  Jim Meyering  <meyering@lucent.com>
35803
35804         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
35805
35806 2002-04-24  Jim Meyering  <meyering@lucent.com>
35807
35808         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
35809         (jm_PREREQ): Use it.
35810
35811         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
35812         mach/mach.h fcntl.h.
35813         Check for this function: setlocale.
35814
35815 2002-04-24  Jim Meyering  <meyering@lucent.com>
35816
35817         * lib/gettext.h: New file, from Gettext.
35818         * lib/Makefile.am (INCLUDES): Remove -I../intl.
35819         (libfetish_a_SOURCES): Add gettext.h.
35820
35821 2002-04-16  Jim Meyering  <meyering@lucent.com>
35822
35823         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
35824         ut_pid, ut_id, ut_exit.
35825
35826 2002-04-16  Jim Meyering  <meyering@lucent.com>
35827
35828         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
35829         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
35830         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
35831
35832 2002-04-12  Jim Meyering  <meyering@lucent.com>
35833
35834         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
35835         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
35836         existence of the getmntinfo function.  Needed for Darwin 5.3.
35837
35838         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
35839         This is necessary at least on Darwin 5.3.
35840
35841         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
35842         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
35843         strnlen.o in the library, and that makes some versions of ranlib
35844         object.
35845
35846 2002-04-12  Jim Meyering  <meyering@lucent.com>
35847
35848         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
35849
35850 2002-04-09  Jim Meyering  <meyering@lucent.com>
35851
35852         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
35853         to be more precise.  Rather than saying we're checking whether the
35854         function `works', say what we're testing.
35855         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
35856         Reported by Bruno Haible.
35857
35858 2002-03-10  Jim Meyering  <meyering@lucent.com>
35859
35860         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
35861         Suggestion from Santiago Vila.
35862
35863 2002-03-08  Jim Meyering  <meyering@lucent.com>
35864
35865         * lib/rename.c: Mention that this wrapper is needed also on
35866         mips-dec-ultrix4.4 systems.
35867
35868 2002-03-02  Jim Meyering  <meyering@lucent.com>
35869
35870         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
35871         not HAVE_CLOCK_SETTIME.
35872
35873 2002-02-27  Paul Eggert  <eggert@twinsun.com>
35874
35875         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
35876         Check for clock_settime.
35877
35878 2002-02-27  Paul Eggert  <eggert@twinsun.com>
35879
35880         * lib/nanosleep.h: Rename to....
35881         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
35882
35883         * lib/gettime.c: New file.
35884         * lib/settime.c: New file.
35885         * lib/stime.c: Remove.
35886
35887         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
35888         timespec.h.  Remove nanosleep.h.
35889
35890 2002-02-25  Paul Eggert  <eggert@twinsun.com>
35891
35892         * m4/acl.m4: New file.
35893         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
35894         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
35895
35896 2002-02-25  Paul Eggert  <eggert@twinsun.com>
35897
35898         * lib/acl.c, lib/acl.h: New files.
35899         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
35900
35901 2002-02-24  Jim Meyering  <meyering@lucent.com>
35902
35903         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
35904         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
35905         cause trouble.  Reported by Nelson Beebe.
35906
35907 2002-02-23  Paul Eggert  <eggert@twinsun.com>
35908
35909         * lib/path-concat.c (xpath_concat): Reorder code to pacify
35910         compilers that don't know that xalloc_die never returns.
35911
35912 2002-02-20  Jim Meyering  <meyering@lucent.com>
35913
35914         * lib/getdate.c: Regenerate using bison-1.33.
35915
35916 2002-02-17  Jim Meyering  <meyering@lucent.com>
35917
35918         * config/config.guess (main): Don't use `head -1'; it's no longer
35919         portable. Use `sed 1q' instead.
35920
35921 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
35922
35923         * m4/codeset.m4: Upgrade to gettext-0.11.
35924         * m4/gettext.m4: Upgrade to gettext-0.11.
35925         * m4/glibc21.m4: Upgrade to gettext-0.11.
35926         * m4/iconv.m4: Upgrade to gettext-0.11.
35927         * m4/isc-posix.m4: Upgrade to gettext-0.11.
35928         * m4/lcmessage.m4: Upgrade to gettext-0.11.
35929         * m4/lib-ld.m4: New file, from gettext-0.11.
35930         * m4/lib-link.m4: New file, from gettext-0.11.
35931         * m4/lib-prefix.m4: New file, from gettext-0.11.
35932         * m4/progtest.m4: Upgrade to gettext-0.11.
35933
35934 2002-02-15  Paul Eggert  <eggert@twinsun.com>
35935
35936         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
35937         (jm_PREREQ): Use it.
35938
35939 2002-02-15  Paul Eggert  <eggert@twinsun.com>
35940
35941         * lib/posixver.c, lib/posixver.h: New files.
35942         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
35943
35944 2002-02-02  Paul Eggert  <eggert@twinsun.com>
35945             Bruno Haible  <bruno@clisp.org>
35946
35947         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
35948         (fwrite_success_callback): New declaration.
35949         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
35950         print_unicode_char. Call failure callback instead of error.
35951         (fwrite_success_callback): New function.
35952         (exit_failure_callback): New function.
35953         (fallback_failure_callback): New function.
35954         (print_unicode_char): Call unicode_to_mb.
35955
35956 2002-01-26  Jim Meyering  <meyering@lucent.com>
35957
35958         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
35959         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
35960
35961 2002-01-26  Jim Meyering  <meyering@lucent.com>
35962
35963         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
35964
35965 2002-01-22  Paul Eggert  <eggert@twinsun.com>
35966
35967         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
35968
35969 2002-01-22  Jim Meyering  <meyering@lucent.com>
35970
35971         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
35972         Otherwise, some versions of automake would omit the rule that makes
35973         Makefile from Makefile.in.
35974
35975 2002-01-21  Paul Eggert  <eggert@twinsun.com>
35976
35977         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
35978         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
35979         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
35980         (memcoll): Set errno to zero if there is no error.
35981
35982         * lib/quotearg.c (quotearg_buffer_restyled):
35983         Fix bug with quoting buffers containing NUL when backslashing escapes.
35984         This bug was exposed by the other changes in this patch.
35985         (quotearg_n_options): New arg ARGSIZE.
35986         All callers changed.
35987         (quoting_options_from_style): New function.
35988         (quotearg_n_style): Use it.
35989         (quotearg_n_style_mem): New function.
35990
35991         * lib/quotearg.h (quotearg_n_style_mem): New function.
35992
35993 2002-01-19  Jim Meyering  <meyering@lucent.com>
35994
35995         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
35996         Remove useless quotes: DF_PROG="df".
35997         * m4/strnlen.m4: New file.
35998
35999 2002-01-16  Paul Eggert  <eggert@twinsun.com>
36000
36001         * lib/backupfile.c (ISDIGIT): Comment fix.
36002         * lib/getdate.y (ISDIGIT): Likewise.
36003         * lib/posixtm.c (ISDIGIT, year): Likewise.
36004         * lib/strverscmp.c (ISDIGIT): Likewise.
36005         * lib/userspec.c (ISDIGIT): Likewise.
36006
36007 2002-01-16  Jim Meyering  <meyering@lucent.com>
36008
36009         * lib/getdate.y: Add three semicolons, each just before a closing
36010         brace. Bison (as of version 1.31) no longer papers over that mistake.
36011
36012 2002-01-05  Jim Meyering  <meyering@lucent.com>
36013
36014         * lib/version-etc.c (version_etc_copyright): Update copyright year.
36015
36016 2001-12-19  Paul Eggert  <eggert@twinsun.com>
36017
36018         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
36019         not silently exit merely because the output buffer happens to
36020         have nothing pending.
36021
36022 2001-12-18  Paul Eggert  <eggert@twinsun.com>
36023
36024         See the big note in ../ChangeLog.
36025         * lib/human.c (suffixes): Prefer K to k for 1024.
36026         (generate_suffix_backwards): New function.
36027         (human_readable_inexact): Use it.
36028         * lib/xstrtol.c (__xstrtol): If there is no number but there
36029         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
36030         Accept 'K' as well as 'k'.
36031
36032 2001-12-15  Jim Meyering  <meyering@lucent.com>
36033
36034         * lib/regex.h (__restrict_arr): Update from libc.
36035
36036         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
36037         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
36038         (STREQ): Define.
36039
36040 2001-12-14  Jim Meyering  <meyering@lucent.com>
36041
36042         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
36043         Suggestion from Bruno Haible.
36044
36045 2001-12-10  Jim Meyering  <meyering@lucent.com>
36046
36047         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
36048         xrealloc, Instead, include "xalloc.h".
36049         (initbuffer): Don't cast xmalloc return value to char*.
36050         (readline): Reword comment.
36051         Don't cast xrealloc return value to char*
36052         Return NULL, not 0.
36053
36054 2001-12-09  Jim Meyering  <meyering@lucent.com>
36055
36056         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
36057         about `signed and unsigned type in conditional expression'.
36058         * lib/posixtm.c (posix_time_parse): Likewise.
36059
36060         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
36061
36062         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
36063         to avoid a pedantic warning.
36064
36065         * lib/getstr.c: Don't include assert.h.
36066         (getstr): Remove warning-evoking assertions.
36067         Return -1 if offset parameter is out of bounds.
36068         Change the type of a local from int to size_t.
36069
36070         * lib/strftime.c (my_strftime_localtime_r): Include this function
36071         definition in the `#if ! HAVE_TM_GMTOFF' block.
36072
36073         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
36074         Include xalloc.h instead.
36075
36076 2001-12-02  Jim Meyering  <meyering@lucent.com>
36077
36078         * lib/tempname.c: Don't declare getenv, thus reverting the change of
36079         2001-11-18.  It's no longer necessary, now that stdlib.h is always
36080         included.
36081
36082         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
36083         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
36084
36085 2001-11-30  Akim Demaille  <akim@epita.fr>
36086
36087         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
36088         before being defined.
36089
36090 2001-11-27  Paul Eggert  <eggert@twinsun.com>
36091
36092         * lib/quotearg.h (quotearg_n, quotearg_n_style):
36093         First arg is int, not unsigned.
36094         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
36095         (SIZE_MAX, UINT_MAX): New macros.
36096         (quotearg_n_options): Abort if N is negative.
36097         Avoid overflow check on hosts where size_t is 64 bits and int
36098         is 32 bits, as overflow is impossible there.
36099         Fix off-by-one typo that caused unnecessary reallocation.
36100
36101 2001-11-27  Jim Meyering  <meyering@lucent.com>
36102
36103         * lib/tempname.c: Merge with version from libc.
36104         * lib/regex.c: Likewise.
36105
36106         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
36107         systems for which STDC_HEADERS is 0, it was not included, resulting in
36108         a warning about an integer-to-pointer conversion problem with getenv.
36109         Reported by Volker Borchert.
36110
36111 2001-11-26  Jim Meyering  <meyering@lucent.com>
36112
36113         * lib/gtod.h: Remove file.
36114         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
36115         * lib/gettimeofday.c: Don't include gtod.h.
36116         (GTOD_init): Remove function.
36117         (rpl_gettimeofday): Do its job here instead, rather than aborting.
36118         Suggestion from Volker Borchert.
36119
36120 2001-11-23  Jim Meyering  <meyering@lucent.com>
36121
36122         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
36123         it.
36124         * lib/hash.c (struct hash_table): Define it here instead.
36125
36126 2001-11-22  Jim Meyering  <meyering@lucent.com>
36127
36128         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
36129
36130 2001-11-20  Jim Meyering  <meyering@lucent.com>
36131
36132         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
36133         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
36134
36135 2001-11-19  Jim Meyering  <meyering@lucent.com>
36136
36137         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
36138         directory.  Use "conftestXXXXXX" as the template.
36139         Suggestion from Paul Eggert.
36140
36141         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
36142         immediately, so the test doesn't mistakenly hit the max-open-files
36143         limit.
36144
36145 2001-11-18  Paul Eggert  <eggert@twinsun.com>
36146
36147         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
36148         (TEMPORARIES): New macro.
36149         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
36150         removes an artificial limitation (e.g. HP-UX 10.20, where
36151         TMP_MAX is 17576).
36152
36153 2001-11-18  Jim Meyering  <meyering@lucent.com>
36154
36155         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
36156
36157 2001-11-18  Jim Meyering  <meyering@lucent.com>
36158
36159         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
36160         on SunOS 4.
36161
36162         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
36163         files will be created before anything else.
36164
36165 2001-11-17  Paul Eggert  <eggert@twinsun.com>
36166
36167         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
36168         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
36169
36170 2001-11-17  Jim Meyering  <meyering@lucent.com>
36171
36172         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
36173         Prompted by a report from Bob Proulx.
36174
36175         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
36176         Instead, require UTILS_FUNC_MKSTEMP.
36177
36178 2001-11-17  Jim Meyering  <meyering@lucent.com>
36179
36180         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
36181         Now, that's done as part of AC_FUNC_STRTOD.
36182
36183 2001-11-17  Jim Meyering  <meyering@lucent.com>
36184
36185         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
36186         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
36187         rather than group writable.  Patch by Juan F. Codagnone.
36188
36189         * lib/readtokens.c: Remove explicit declarations of xmalloc and
36190         xrealloc, Instead, include "xalloc.h".
36191
36192         * lib/mountlist.c: Include unlocked-io.h after all system headers.
36193         Remove explicit declarations of xmalloc, xrealloc,
36194         and xstrdup.  Instead, include "xalloc.h".
36195
36196         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
36197         unlocked-io.h.
36198         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
36199         Likewise.
36200         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
36201
36202         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
36203         Reported by Padraig Brady.
36204
36205         * lib/mkstemp.c: #undef mkstemp.
36206         Include config.h.
36207         (rpl_mkstemp): Rename from mkstemp.
36208         Protoize.
36209
36210 2001-11-16  Jim Meyering  <meyering@lucent.com>
36211
36212         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
36213         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
36214         determine the amount of total physical memory, use pstat_getstatic.
36215         HPUX-11 doesn't define _SC_PHYS_PAGES.
36216         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
36217         If sysconf couldn't be used to determine the amount of available
36218         physical memory, use both pstat_getstatic and pstat_getdynamic.
36219         Based on a patch from Bob Proulx.
36220
36221 2001-11-10  Jim Meyering  <meyering@lucent.com>
36222
36223         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
36224         (jm_PREREQ): Use it.
36225
36226 2001-11-09  Jim Meyering  <meyering@lucent.com>
36227
36228         * m4/jm-macros.m4: Require autoconf-2.52f.
36229         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
36230         Use these AC_-prefixed names, not the AM_-prefixed ones.
36231
36232         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
36233
36234 2001-11-05  Jim Meyering  <meyering@lucent.com>
36235
36236         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
36237
36238 2001-11-04  Jim Meyering  <meyering@lucent.com>
36239
36240         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
36241         $DEFS.
36242
36243 2001-11-03  Jim Meyering  <meyering@lucent.com>
36244
36245         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
36246         of AC_DEFUN.
36247
36248         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
36249         know the name of the variable in the macro definition.
36250
36251 2001-11-03  Jim Meyering  <meyering@lucent.com>
36252
36253         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
36254         in argmatch_to_argument call.
36255
36256         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
36257         argument.
36258
36259         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
36260         e.g., a fault due to an attempt to free a NULL pointer.
36261
36262 2001-11-01  Jim Meyering  <meyering@lucent.com>
36263
36264         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
36265         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
36266
36267 2001-11-01  Jim Meyering  <meyering@lucent.com>
36268
36269         * lib/dirfd.c, lib/dirfd.h: New files.
36270         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
36271
36272         * lib/hash.c (hash_print) [TESTING]: Clean up.
36273
36274 2001-10-22  Paul Eggert  <eggert@twinsun.com>
36275
36276         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
36277         to avoid a warning if -Wall.
36278
36279 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
36280
36281         * README: New file
36282         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
36283         (per RMS's instructions, this is now the canonical source)
36284         * lgpl/, gpl/: New directories.
36285
36286 2001-10-21  Paul Eggert  <eggert@twinsun.com>
36287
36288         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
36289
36290 2001-10-21  Jim Meyering  <meyering@lucent.com>
36291
36292         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
36293         this code would end up calling gettext even in packages built
36294         with --disable-nls.
36295         * lib/getopt.c (_): Likewise.
36296         * lib/regex.c (_): Likewise.
36297
36298 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36299
36300         * m4/error.m4 (jm_PREREQ_ERROR):
36301         Do not invoke AC_CHECK_FUNCS with strerror_r, as
36302         AC_FUNC_STRERROR_R does that.
36303         Check for strerror declaration.
36304
36305         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
36306         are supposed to have them these days.
36307         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
36308         Merge changes from latest Autoconf CVS.
36309         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
36310         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
36311         POSIX decided to standardize on the int flavor of strerror_r.
36312
36313 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36314
36315         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
36316         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
36317         Use strerror_r that is only a macro, even if it is not a function.
36318         (strerror): Check for HAVE_DECL_STRERROR before declaring.
36319         (private_strerror): Use prototypes, not old-style function definition.
36320         (print_errno_message): New function.
36321         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
36322         char*-flavored one.
36323         (error_tail, error, error_at_line): Use it.
36324
36325 2001-10-11  Jim Meyering  <meyering@lucent.com>
36326
36327         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
36328         and quote_n (1, ... to avoid clobbering a buffer.
36329
36330 2001-10-05  Jim Meyering  <meyering@lucent.com>
36331
36332         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
36333         hash-pjw.h.
36334         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
36335         * lib/hash-pjw.h: New file.
36336
36337 2001-09-30  Jim Meyering  <meyering@lucent.com>
36338
36339         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
36340         `struct fsstat' has the `f_fstypename' member.
36341         Use that to define FS_TYPE, which is now used to make
36342         the getfsstat link test tighter.
36343
36344 2001-09-30  Jim Meyering  <meyering@lucent.com>
36345
36346         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
36347         Include <sys/ucred.h>, for Apple Darwin.
36348         Include sys/mount.h and sys/fs_types.h only if available.
36349         (FS_TYPE): Define.
36350         (read_filesystem_list): Use FS_TYPE.
36351
36352 2001-09-29  Paul Eggert  <eggert@twinsun.com>
36353
36354         * lib/exclude.c (excluded_filename): 0 -> false, since it's
36355         a boolean context.
36356
36357 2001-09-29  Jim Meyering  <meyering@lucent.com>
36358
36359         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36360         [one-argument getmntent function]): Include stdio.h before mntent.h.
36361         SunOS 4.1.x needs it for the declaration of `FILE'.
36362         Patch by Volker Borchert.
36363
36364         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36365         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
36366         sys/fs_types.h, and make the link-test for getfsstat guard #include
36367         directives with appropriate #if HAVE_*_H tests so that we can
36368         detect getfsstat on Apple Darwin1.3.7 systems.
36369         Reported by Nelson Beebe.
36370         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
36371
36372 2001-09-28  Paul Eggert  <eggert@twinsun.com>
36373
36374         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
36375         #defines strtoimax.  Also treat the other strto* functions
36376         like strtoimax.
36377
36378         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
36379         Check for strtoul and strtoumax,
36380         as those declarations are made even in the signed case.
36381         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
36382         Likewise, for strtol and strtoimax.
36383
36384 2001-09-28  Paul Eggert  <eggert@twinsun.com>
36385
36386         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
36387         #defines strtoimax.  Also treat the other strto* functions
36388         like strtoimax.
36389
36390         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
36391         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
36392         (strtoimax, strtoumax): Do not declare if already defined as a macro.
36393
36394 2001-09-26  Jim Meyering  <meyering@lucent.com>
36395
36396         Most macros in unlocked-io.h had the wrong number of arguments.
36397         * lib/gen-uio: New script.
36398         (USE_UNLOCKED_IO): Define to 1 if not already defined.
36399         * lib/unlocked-io.hin: Remove file.
36400         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
36401         rather than trying to embed it here.
36402         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
36403         Reported by Padraig Brady.
36404
36405 2001-09-25  Volker Borchert  <bt@teknon.de>
36406
36407         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
36408         `result'.
36409
36410 2001-09-24  Jim Meyering  <meyering@lucent.com>
36411
36412         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
36413
36414 2001-09-23  Jim Meyering  <meyering@lucent.com>
36415
36416         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
36417         instead of the mere test for existence of mntent.h.  The latter
36418         would get a false-positive on AIX 3.4 systems.
36419         In the outer getmntent if-block, don't die if neither of the getmntent
36420         tests succeeds.  Instead, just fall through and continue with the
36421         remaining tests.
36422
36423 2001-09-23  Jim Meyering  <meyering@lucent.com>
36424
36425         * lib/mountlist.c: Remove useless parentheses in #if directives.
36426         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
36427         the deprecated MOUNTED symbol is no longer defined in mntent.h.
36428
36429 2001-09-22  Jim Meyering  <meyering@lucent.com>
36430
36431         * m4/gettext.m4: New file.  From gettext.
36432         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
36433         * m4/progtest.m4: Likewise
36434         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
36435         * m4/glibc21.m4: Likewise.
36436
36437         * m4/libintl.m4: Remove.  No longer used.
36438
36439 2001-09-22  Jim Meyering  <meyering@lucent.com>
36440
36441         * lib/localcharset.c: Update from latest gettext.
36442         * lib/config.charset: Likewise.
36443
36444 2001-09-20  Jim Meyering  <meyering@lucent.com>
36445
36446         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
36447         strtoimax.
36448         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
36449         strtoumax.
36450
36451 2001-09-20  Jim Meyering  <meyering@lucent.com>
36452
36453         * lib/xstrtol.c (strtoimax): Guard declaration with
36454         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
36455         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
36456         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
36457         (strtoumax): Likewise, for completeness (it wasn't necessary).
36458
36459 2001-09-17  Paul Eggert  <eggert@twinsun.com>
36460
36461         * lib/strtoimax.c (HAVE_LONG_LONG):
36462         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
36463         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
36464         to work around bug in IBM C compiler.
36465
36466 2001-09-17  Jim Meyering  <meyering@lucent.com>
36467
36468         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
36469         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
36470         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
36471         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
36472         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
36473         whenever the right hand side need not be expanded by the shell.
36474
36475 2001-09-16  Paul Eggert  <eggert@twinsun.com>
36476
36477         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
36478         library.  It's not correct, as some older glibcs are buggy.
36479         fnmatch wasn't fixed until glibc 2.2.
36480
36481         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
36482         special shell magic here.
36483
36484 2001-09-16  Jim Meyering  <meyering@lucent.com>
36485
36486         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
36487         * m4/jm-macros.m4: Require it.
36488
36489 2001-09-16  Jim Meyering  <meyering@lucent.com>
36490
36491         * lib/mkdir.c: New file.
36492
36493 2001-09-15  Jim Meyering  <meyering@lucent.com>
36494
36495         * m4/jm-macros.m4: Check for help2man.
36496
36497 2001-09-11  Jim Meyering  <meyering@lucent.com>
36498
36499         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
36500         The body, by Paul Eggert, was moved here from configure.in.
36501         * m4/jm-macros.m4: Require UTILS_HOST_OS.
36502
36503 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36504
36505         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
36506         (jm_PREREQ): Use it.
36507
36508 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36509
36510         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
36511         Use ssize_t, not int, to store result of readlink.
36512         Check for ssize_t overflow as well as size_t overflow,
36513         as POSIX says the result of readlink is implementation-defined
36514         when ssize_t overflows.
36515         Remove unnecessary cast to char*.
36516         Use free+malloc instead of realloc, as the storage doesn't need
36517         to be preserved and it's clearer and can be more efficient that way.
36518         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
36519         * lib/xreadlink.h (xreadlink): Update prototype.
36520
36521 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36522
36523         * lib/xgetcwd.c: Revert some of the previous change; intead,
36524         fix the HAVE_GETCWD_NULL code to behave more like the
36525         !HAVE_GETCWD_NULL code used to.
36526
36527         Include "xalloc.h".
36528         (xgetcwd): Do not return NULL when memory is exhausted; instead,
36529         invoke xalloc_die.
36530
36531 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36532
36533         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
36534         sys/param.h, as pathmax.h includes them.
36535
36536 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36537
36538         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
36539         (jm_PREREQ_XGETCWD): New macro.
36540
36541         * m4/getcwd.m4: New file.
36542
36543 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36544
36545         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
36546         like the HAVE_GETCWD_NULL code.
36547         Include pathmax.h if not HAVE_GETCWD.
36548         Do not include xalloc.h.
36549         (INITIAL_BUFFER_SIZE): New symbol.
36550         Do not use xmalloc / xrealloc, since the caller is responsible for
36551         handling errors.  Preserve errno around `free' during failure.
36552         Do not overrun buffer when using getwd.
36553
36554 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36555
36556         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
36557         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
36558         getcwd (NULL, 0).
36559
36560 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36561
36562         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
36563         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
36564         spotted by Jim Meyering.
36565
36566 2001-09-03  Jim Meyering  <meyering@lucent.com>
36567
36568         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
36569         failure.
36570
36571 2001-09-02  Jim Meyering  <meyering@lucent.com>
36572
36573         * lib/error.c: Update from GNU libc.
36574
36575 2001-09-01  Jim Meyering  <meyering@lucent.com>
36576
36577         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
36578         Used by df.
36579
36580 2001-09-01  Jim Meyering  <meyering@lucent.com>
36581
36582         * lib/xreadlink.c: New file.
36583         * lib/xreadlink.h: New file.
36584         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
36585         xreadlink.h.
36586
36587         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
36588         doesn't conflict with sparc Solaris 7's definition in
36589         /usr/include/sys/int_types.h.
36590
36591         * lib/exclude.c: Use `""', not `<>' to #include non-system header
36592         files.
36593         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
36594         and strncasecmp as r-values.  Unixware didn't have declarations.
36595
36596 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36597
36598         * lib/xstrtol.h: Add copyright notice.
36599         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
36600         LONGINT_INVALID_SUFFIX_CHAR.
36601
36602 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36603
36604         * lib/xstrtol.c (strtoimax): New decl.
36605
36606 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36607
36608         * lib/xgetcwd.c: Don't include pathmax.h.
36609         Include stdlib.h and unistd.h if available.
36610         Include xalloc.h.
36611         (xmalloc, xstrdup, free): Remove decls.
36612         (xgetcwd): Don't assume sizes fit in unsigned.
36613         Check for overflow when computing sizes.
36614         Simplify reallocation code.
36615
36616 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36617
36618         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
36619         a directory's st_size can have an arbitrary value, so the old
36620         usage could waste an arbitrary amount of memory.  All uses
36621         changed.
36622         * lib/savedir.h: Update prototype.
36623
36624 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36625
36626         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
36627
36628         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
36629         old strtoimax.c.
36630
36631         Also, make the following further changes to make this file's
36632         configuration more similar to that of strtol.c:
36633         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
36634         (strtoumax, uintmax_t, strtoull, strtol): Remove.
36635         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
36636         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
36637         changed to signed values.
36638
36639         And make the following changes as well:
36640         Fix copyright notice, as 1999 was missing.
36641         (verify): New macro.
36642         (strtoimax): Check sizes at compile-time, not run-time.
36643         Prefer strtol to strtoll if both work.
36644         (main): Remove; it was not that useful and was a pain to maintain.
36645
36646         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
36647
36648 2001-08-31  Jim Meyering  <meyering@lucent.com>
36649
36650         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
36651         Use an initial, malloc'd, buffer of length 128 rather than
36652         a statically allocated one of length 1024.
36653
36654 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36655
36656         Simplify code, partly by assuming autoconf 2.52 semantics.
36657
36658         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
36659
36660         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
36661         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
36662         All uses removed.
36663         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
36664         Move AC_REQUIRE to next-to-top level, to avoid confusion.
36665         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
36666         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
36667         jm_AC_HEADER_INTTYPES_H.
36668         * m4/jm-macros.m4 (jm_MACROS): Likewise.
36669
36670         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
36671
36672         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
36673         Quote first arg of AC_DEFUN.
36674         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
36675         since they are needed to parse the include file even if we need
36676         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
36677         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
36678         but with opposite signedness.
36679
36680 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36681
36682         Merge 'exclude' changes from tar 1.13.22.
36683         This fixes one or two unlikely storage allocation overflow bugs,
36684         but doesn't change user-visible behavior otherwise.
36685
36686 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36687
36688         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
36689         (jm_PREREQ_EXCLUDE): New macro.
36690
36691 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36692
36693         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
36694         tm to be declared.
36695
36696 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36697
36698         * lib/hash.c: Remove '2001' from copyright notice.
36699
36700 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36701
36702         * lib/full-write.h: New file.
36703         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
36704         * lib/full-write.c: Correct credits, as cccp.c no longer
36705         exists and anyway it was so heavily changed from the old cccp
36706         code as to be unrecognizable.  Include full-write.h.
36707         (full_write) Return size_t, with short writes meaning failure.
36708         All callers changed.  This fixes a bug with large buffers
36709         on 64-bit hosts.
36710         * lib/utime.c: Include full-write.h.
36711
36712 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36713
36714         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
36715         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
36716         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
36717         Include if available.
36718         (<xalloc.h>): Include
36719         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
36720         (verify): New macro.  Use it to verify that EXCLUDE macros do not
36721         collide with FNM macros.
36722         (struct patopts): New struct.
36723         (struct exclude): Use it, as exclude patterns now come with options.
36724         (new_exclude): Support above changes.
36725         (new_exclude, add_exclude_file):
36726         Initial size must now be a power of two to simplify overflow checking.
36727         (free_exclude, fnmatch_no_wildcards): New function.
36728         (excluded_filename): No longer requires options arg, as the options
36729         are determined by add_exclude.  Now returns bool, not int.
36730         (excluded_filename, add_exclude):
36731         Add support for the fancy new exclusion options.
36732         (add_exclude, add_exclude_file): Now takes int options arg.
36733         Check for arithmetic overflow when computing sizes.
36734         (add_exclude_file): xrealloc might modify errno, so don't
36735         realloc until after errno might be used.
36736
36737         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
36738         New macros.
36739         (free_exclude): New decl.
36740         (add_exclude, add_exclude_file): Now takes int options arg.
36741         (excluded_filename): No longer requires options arg, as the options
36742         are determined by add_exclude.  Now returns bool, not int.
36743
36744 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36745
36746         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
36747
36748 2001-08-27  Jim Meyering  <meyering@lucent.com>
36749
36750         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
36751
36752         * lib/version-etc.c (N_): Remove definition.
36753         Revert most of last change.
36754         Instead, simply don't mark the `Copyright...' string for translation.
36755         Based on advice from Paul Eggert.
36756
36757         * lib/strtoxmax.c: Tweak comment.
36758
36759 2001-08-26  Jim Meyering  <meyering@lucent.com>
36760
36761         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
36762
36763         * m4/xstrtoimax.m4: New file.
36764         * m4/xstrtoumax.m4: Add comments explaining why we
36765         AC_REPLACE_FUNCS(strtol).
36766
36767 2001-08-26  Jim Meyering  <meyering@lucent.com>
36768
36769         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
36770         of copyright with `%s' so translators don't get an untranslated
36771         message in 2002.
36772         (COPYRIGHT_YEAR): Define.
36773         (version_etc): Use fprintf rather than fputs.
36774         Suggestion from Ulrich Drepper.
36775
36776         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
36777
36778         * lib/strtoll.c: New file, from GNU libc.
36779         * lib/xstrtoimax.c: New file.
36780
36781         * lib/xstrtol.h: Add xstrtoimax.
36782         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
36783         * lib/strtoimax.c: New file.  Likewise, but first define
36784         STRTOUXMAX_SIGNED.
36785
36786         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
36787         ...
36788         * lib/strtoxmax.c: ... then renamed to this.
36789
36790 2001-08-18  Paul Eggert  <eggert@twinsun.com>
36791
36792         * m4/inttypes.m4: Add AC_PREREQ(2.13).
36793         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
36794         (jm_AC_TYPE_INTMAX_T): New macro.
36795         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
36796
36797         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
36798
36799         * m4/longlong.m4: Renamed from ulonglong.m4.
36800         * m4/inttypes.m4: Renamed from inttypes_h.m4.
36801         * m4/uintmax_t.m4: Removed.
36802
36803 2001-08-13  Paul Eggert  <eggert@twinsun.com>
36804
36805         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
36806         Port to Solaris 8, where 'sed' requires a space after the 'r'
36807         command, and where sh dislikes "$/".  Clean up the spacing a bit.
36808         Redirect output to $tmp just once.
36809
36810 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
36811
36812         * lib/addext.c (<errno.h>): Include.
36813         (errno): Declare if not defined.
36814         (addext): Work correctly when pathconf returns -1 and leaves
36815         errno alone because there is no limit.  Also, work even if
36816         pathconf returns a value greater than SIZE_MAX.
36817
36818 2001-08-12  Jim Meyering  <meyering@lucent.com>
36819
36820         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
36821         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
36822         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
36823         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
36824         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
36825         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
36826         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
36827         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
36828         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
36829         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
36830         utime.m4, utimes.m4, xstrtoumax.m4:
36831         Quote the first argument in each use of AC_DEFUN.
36832
36833 2001-08-12  Jim Meyering  <meyering@lucent.com>
36834
36835         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
36836         Simply `return getcwd (NULL, 0);'.
36837         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
36838         Use 1300 as initial value for length, not PATH_MAX.
36839
36840         * lib/pathmax.h: Clean up cpp syntax.
36841
36842 2001-08-12  Jim Meyering  <meyering@lucent.com>
36843
36844         * lib/gettimeofday.c: New file.
36845         * lib/gtod.h: New file.
36846         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
36847
36848 2001-08-05  Jim Meyering  <meyering@lucent.com>
36849
36850         * m4/jm-macros.m4: Require autoconf-2.52.
36851
36852 2001-08-04  Jim Meyering  <meyering@lucent.com>
36853
36854         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
36855         stmt, to get in sync with glibc.
36856
36857 2001-08-03  Paul Eggert  <eggert@twinsun.com>
36858
36859         The following changes are from gettext 0.10.39 as maintained by
36860         Bruno Haible.
36861
36862         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
36863         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
36864         with inverted sense.  All uses changed.
36865
36866         * lib/mbswidth.c: Don't include <limits.h>.
36867         Include <stdlib.h> and <string.h> unconditionally.
36868         (iswcntrl, mbsinit, ISCNTRL): New macros.
36869         (mbsnwidth): Use K&R style function declarations.
36870         Don't bother checking for MB_LEN_MAX == 1, since the compiler
36871         can optimize it when MB_CUR_MAX == 1.
36872         The width of control characters is zero, not 1.
36873
36874 2001-08-03  Paul Eggert  <eggert@twinsun.com>
36875
36876         The following changes are from gettext 0.10.39 as maintained by
36877         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
36878
36879         * m4/codeset.m4: Upgrade to serial AM1.
36880         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
36881         all uses changed.  Quote first arg of AC_DEFUN.
36882         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
36883
36884         * m4/iconv.m4: Upgrade to serial AM2.
36885         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
36886         Add --with-libconv-prefix.
36887         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
36888         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
36889         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
36890         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
36891         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
36892
36893         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
36894         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
36895         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
36896         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
36897         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
36898         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
36899         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
36900         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
36901         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
36902
36903         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
36904         string.h any more.
36905
36906         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
36907         not the default value.
36908
36909         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
36910         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
36911         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
36912         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
36913         Also check for iswcntrl, used for wcwidth fallback.
36914         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
36915         to Autoconf 2.13.
36916
36917 2001-08-03  Jim Meyering  <meyering@lucent.com>
36918
36919         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
36920         as it was in the original.  Reported by Paul Eggert.
36921
36922 2001-07-16  Jim Meyering  <meyering@lucent.com>
36923
36924         * m4/gettimeofday.m4: New file.
36925         Prompted by a report from Bernhard Baehr.
36926
36927 2001-07-15  Jim Meyering  <meyering@lucent.com>
36928
36929         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
36930         stuff. Now it's in ../Makefile.cfg.
36931
36932 2001-07-15  Jim Meyering  <meyering@lucent.com>
36933
36934         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
36935         (BUILT_SOURCES): Add unlocked-io.h.
36936         (io_functions): Define.
36937         (unlocked-io.h): New rule.
36938         (DISTCLEANFILES): Add unlocked-io.h.
36939         (all-local): Depend on unlocked-io.h, to ensure it is created.
36940
36941         * lib/unlocked-io.hin: New file
36942
36943         * lib/regex.c: Update from glibc.
36944
36945 2001-07-05  Jim Meyering  <meyering@lucent.com>
36946
36947         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
36948         recommendation.
36949         (libfetish_a_SOURCES): Put all .h files here instead.
36950         Remove a thus-exposed (better checks in automake) duplicate and
36951         two unnecessary .h files.
36952
36953 2001-07-04  Jim Meyering  <meyering@lucent.com>
36954
36955         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
36956         that generates jm-glibc-io.m4 so that it doesn't trigger any make
36957         distcheck failure.
36958
36959 2001-07-02  Jim Meyering  <meyering@lucent.com>
36960
36961         The following changes were prompted by suggestions from Bruno Haible.
36962
36963         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
36964         is now generated.
36965         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
36966         definition of EXTRA_DIST.
36967         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
36968         ensure that the generated file is created/updated whenever the list
36969         of $(unlocked_functions) is changed.
36970         (jm-glibc-io.m4): New rule.
36971         (unlocked-io.h): New rule -- currently unused.
36972
36973 2001-06-24  Jim Meyering  <meyering@lucent.com>
36974
36975         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
36976         unmatched right bracket, rather than kludging it with an extra,
36977         falsely-matching quote in a comment.  Patch by Akim Demaille.
36978
36979 2001-06-11  Jim Meyering  <meyering@lucent.com>
36980
36981         * lib/regex.c: Update from GNU libc.
36982
36983 2001-05-27  Jim Meyering  <meyering@lucent.com>
36984
36985         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
36986         Check for ut_type in struct utmp.
36987
36988 2001-05-27  Jim Meyering  <meyering@lucent.com>
36989
36990         * lib/readutmp.h (UT_TYPE): Define.
36991
36992 2001-05-24  Jim Meyering  <meyering@lucent.com>
36993
36994         * lib/argmatch.c: Include "quote.h".
36995         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
36996         quote function.  Reported by Göran Uddeborg.
36997
36998 2001-05-22  Jim Meyering  <meyering@lucent.com>
36999
37000         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
37001         now that we use the package-supplied version unconditionally.
37002         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
37003
37004 2001-05-21  Jim Meyering  <meyering@lucent.com>
37005
37006         * m4/regex.m4: Change a couple backticks to single quotes to avoid
37007         shell syntax errors.
37008
37009 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
37010
37011         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
37012
37013 2001-05-20  Paul Eggert  <eggert@twinsun.com>
37014
37015         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
37016         Don't bother to check library strftime, since
37017         we'll be using our own my_strftime function anyway.
37018         Define my_strftime instead of strftime.
37019
37020 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
37021
37022         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
37023         which is not yet declared.
37024
37025 2001-05-15  Jim Meyering  <meyering@lucent.com>
37026
37027         * m4/regex.m4: Use proper quoting so brackets appear in the test
37028         program.
37029         Reported by, and with help from, Bruno Haible.
37030
37031 2001-05-13  Jim Meyering  <meyering@lucent.com>
37032
37033         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
37034         undefined.
37035
37036 2001-05-11  Paul Eggert  <eggert@twinsun.com>
37037
37038         dirname code cleanup.  base_name now behaves more compatibly
37039         with POSIX basename when given file names that have trailing
37040         slashes, and similarly for dir_name.  Add new primitives
37041         base_len and dir_len.  Put the directory-name-related decls
37042         into dirname.h.
37043
37044         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
37045         * lib/backupfile.c (base_name): Likewise.
37046         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
37047         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
37048         * lib/makepath.c (strip_trailing_slashes): Likewise.
37049         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
37050         ISSLASH): Likewise.
37051         * lib/rename.c (strip_trailing_slashes): Likewise.
37052         * lib/same.c (base_name): Likewise.
37053         * lib/stripslash.c (ISSLASH): Likewise.
37054
37055         * lib/addext.c: Include <dirname.h> after size_t is defined.
37056         * lib/backupfile.c: Likewise.
37057
37058         * lib/addext.c (addext): Use base_len to trim redundant
37059         trailing slashes instead of doing it ourselves.
37060         But do not trim the last slash if it is not redundant.
37061
37062         * lib/backupfile.c (find_backup_file_name,
37063         max_backup_version): Use base_len instead of rolling it ourselves.
37064         Handle the case of "" and (on DOS) "C:" correctly.
37065
37066         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
37067         needed. Include <string.h>, <dirname.h>.
37068         (base_name): Allow file names ending in slashes, other than names
37069         that are all slashes.  In this case, return the basename followed
37070         by the slashes.  This is more general, and can be used in places
37071         where the original base_name purposely had an assertion failure.
37072         (base_len): New function.
37073
37074         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
37075         Do not include <assert.h>; no longer needed.
37076         Include xalloc.h.
37077         (memrchr): Remove decl.
37078         (dir_name_r): Remove.
37079         (dir_len): Renamed from dirlen.  All callers changed.
37080         Rewrite in terms of base_name, for simplicity and consistency.
37081         (dir_name): Never return NULL.  All callers changed.
37082         Do not include <stdlib.h> in test program; no longer needed.
37083         return 0; is fine for test program.
37084
37085         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
37086         New macros.
37087         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
37088
37089         * lib/path-concat.c (path_concat): Use base_len to compute
37090         base length, not strlen; this means we cannot rely on memcpy
37091         to null-terminate.
37092
37093         * lib/same.c (STREQ): Remove.
37094         (same_name): Handle the case where the basename ends in trailing '/'.
37095
37096         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
37097         a slash was stripped.  Do not strip the last slash after a
37098         file system prefix.
37099
37100 2001-05-11  Paul Eggert  <eggert@twinsun.com>
37101
37102         * lib/Makefile.am (libfetish_a_SOURCES):
37103         Add strftime.c, since we now compile it on all hosts.
37104
37105         * lib/strftime.c (my_strftime):
37106         Define to nstrftime if emacs, but only if my_strftime is not defined.
37107         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
37108         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
37109         Add one more extra argument: a nanoseconds value.
37110         All uses changed.
37111         (ns): New macro.
37112         (my_strftime function): Add %N format.
37113         (emacs_strftimeu): Renamed from emacs_strftime,
37114         with extra ut argument.
37115
37116 2001-05-09  Paul Eggert  <eggert@twinsun.com>
37117
37118         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
37119
37120 2001-04-21  Jim Meyering  <meyering@lucent.com>
37121
37122         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
37123         doesn't interfere.
37124
37125 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
37126
37127         * m4/ftruncate.m4: Check for chsize.
37128         Link with ftruncate.o unconditionally if ftruncate is missing.
37129         This was required when cross-compiling to i586-mingw32msvc.
37130
37131 2001-04-08  Jim Meyering  <meyering@lucent.com>
37132
37133         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
37134         recomputed; that's necessary when the offset spans a DST transition.
37135         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
37136
37137 2001-04-02  Jim Meyering  <meyering@lucent.com>
37138
37139         * lib/regex.h, regex.c: Update from GNU libc.
37140
37141 2001-03-24  Jim Meyering  <meyering@lucent.com>
37142
37143         * m4/jm-macros.m4: Require autoconf-2.49d.
37144
37145 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
37146
37147         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
37148
37149 2001-03-19  Paul Eggert  <eggert@twinsun.com>
37150
37151         * lib/version-etc.c (version_etc_copyright): Update to 2001.
37152
37153 2001-03-17  Jim Meyering  <meyering@lucent.com>
37154
37155         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
37156         now that the version in autoconf is equivalent.
37157         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
37158
37159         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
37160         Suggestion from Akim Demaille.
37161
37162         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
37163         (jm_PREREQ_TEMPNAME): New function.
37164
37165 2001-03-16  Paul Eggert  <eggert@twinsun.com>
37166
37167         * lib/tempname.c (uint64_t): Define to uintmax_t if
37168         not defined, and if UINT64_MAX is not defined.
37169         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
37170         Reported by John David Anglin.
37171
37172 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
37173
37174         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
37175         resolve alias if codeset is empty.
37176         * lib/config.charset (BeOS): Use wildcard syntax.
37177
37178 2001-03-13  Jim Meyering  <meyering@lucent.com>
37179
37180         * lib/path-concat.c (path_concat)
37181         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
37182         concatenating e.g., `C:' and `foo'.
37183         From Bruno Haible.
37184
37185 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37186
37187         * lib/localcharset.c (locale_charset): Don't use
37188         setlocale(LC_CTYPE,NULL). Don't return NULL.
37189         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
37190
37191 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37192
37193         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
37194         support for DOS/DJGPP.
37195
37196 2001-03-01  Paul Eggert  <eggert@twinsun.com>
37197
37198         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
37199         lacks mkstemp.  Compile our own tempname.c if we compile our own
37200         mkstemp.c, as mkstemp relies on tempname.
37201
37202 2001-03-01  Jim Meyering  <meyering@lucent.com>
37203
37204         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
37205         AH_VERBATIM really does output its argument verbatim.
37206
37207 2001-02-28  Paul Eggert  <eggert@twinsun.com>
37208
37209         * lib/Makefile.am (libfetish_a_SOURCES):
37210         Add dup-safer.c, fopen-safer.c.
37211         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
37212
37213         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
37214         * lib/unistd-safer.h: New files.
37215
37216 2001-02-25  Paul Eggert  <eggert@twinsun.com>
37217
37218         The mkstemp replacement is taken from glibc 2.2.2, with some
37219         portability fixes for use outside glibc, as follows:
37220
37221         * lib/tempname.c (struct_stat64): New macro.
37222         (direxists, __gen_tempname): Use it.
37223         This avoids a portability problem with Solaris 8.
37224
37225         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
37226         (<stddef.h>, <stdint.h>, <string.h>):
37227         Include only if STDC_HEADERS || _LIBC.
37228         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
37229         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
37230         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
37231         (__set_errno): Define this macro if <errno.h> doesn't.
37232         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
37233         Define these macros if <stdio.h> doesn't.
37234         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
37235         Define these macros if <sys/stat.h>
37236         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
37237         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
37238         __xstat64): Define if not _LIBC.
37239         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
37240         (__gen_tempname): Invoke gettimeofday only if
37241         HAVE_GETTIMEOFDAY || _LIBC;
37242         otherwise, fall back on plain "time".
37243         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
37244
37245         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
37246
37247         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
37248
37249 2001-02-18  Paul Eggert  <eggert@twinsun.com>
37250
37251         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
37252
37253 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37254
37255         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
37256         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
37257         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
37258         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
37259
37260 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37261
37262         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
37263         Remove workaround macros for hosts that have mbrtowc but not
37264         mbstate_t, as we now insist on proper declarations for both
37265         before using mbrtowc.
37266
37267 2001-02-17  Jim Meyering  <meyering@lucent.com>
37268
37269         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
37270         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
37271         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
37272         UnixWare 7.1.1.
37273
37274         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
37275         rather than AC_CACHE_VAL.
37276
37277 2001-02-17  Jim Meyering  <meyering@lucent.com>
37278
37279         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
37280         around included file name.
37281
37282         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
37283
37284         * lib/strftime.c: Update from GNU libc (the only changes were to
37285         comments).
37286
37287 2001-02-17  Jim Meyering  <meyering@lucent.com>
37288
37289         * lib/regex.c: Update from libc.
37290
37291 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
37292
37293         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
37294         clash.
37295
37296 2001-02-16  Paul Eggert  <eggert@twinsun.com>
37297
37298         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
37299         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
37300         Reported by Mark Hounschell via Paul Eggert.
37301
37302 2001-02-07  Jim Meyering  <meyering@lucent.com>
37303
37304         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
37305
37306 2001-02-05  Jim Meyering  <meyering@lucent.com>
37307
37308         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
37309         it includes the patch required for `large file' support with at least
37310         HP-UX's 10.20 /bin/cc.
37311
37312 2001-02-03  Jim Meyering  <meyering@lucent.com>
37313
37314         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
37315         AS_IF, now that it works once again (mysteriously).
37316         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37317
37318 2001-01-30  Jim Meyering  <meyering@lucent.com>
37319
37320         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
37321         * m4/chown.m4: Rename conftestchown to conftest.chown.
37322         * m4/rename.m4: s/conftestdir/conftest.d1/ and
37323         s/conftestdir2/conftest.d2/.
37324         * m4/utimes.m4: s/conftestdata/conftest.data/
37325         Inspired by Pavel Roskin's change in autoconf.
37326
37327 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
37328
37329         * lib/config.charset: Update for FreeBSD 4.2.
37330
37331 2001-01-27  Jim Meyering  <meyering@lucent.com>
37332
37333         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
37334         a use of AS_IF.
37335         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37336
37337 2001-01-26  Jim Meyering  <meyering@lucent.com>
37338
37339         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
37340         quotearg.c includes it.
37341
37342 2001-01-26  Jim Meyering  <meyering@lucent.com>
37343
37344         * lib/quotearg.c: Include stddef.h.
37345         * lib/quote.c: Include stddef.h.
37346         Reported by Axel Kittenberger.
37347
37348         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
37349         line in double quotes so that it evokes a better diagnostic.
37350         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
37351         Reported by Axel Kittenberger.
37352
37353 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
37354
37355         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
37356         as if it was a `charset'.
37357
37358 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37359
37360         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
37361         has const.
37362
37363 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37364
37365         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
37366         to avoid a warning.  Add back 'const' to inptr.
37367
37368 2001-01-20  Jim Meyering  <meyering@lucent.com>
37369
37370         Be sure that headers are checked before used in code compiled
37371         for the type checks.
37372         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
37373         In place of that, invoke jm_CHECK_ALL_TYPES.
37374         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
37375         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
37376         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
37377         The check for ssize_t was mistakenly run before the test for unistd.h.
37378
37379         The configure-time check for stdbool.h was missing.
37380         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
37381         (jm_PREREQ_HASH): New function.
37382
37383 2001-01-17  Jim Meyering  <meyering@lucent.com>
37384
37385         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
37386         for autoconf-2.49c.
37387         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
37388
37389 2001-01-16  Jim Meyering  <meyering@lucent.com>
37390
37391         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
37392         From Bruno Haible.
37393
37394 2001-01-14  Jim Meyering  <meyering@lucent.com>
37395
37396         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
37397         foo and bar.  Create conftestdir/ in the script, not in the C code.
37398         Remove directories in the script, not in the C code.
37399         Remove conftestdir{,2} before trying to create the directory.
37400         Make the entire configure script fail if the mkdir fails.
37401
37402 2001-01-14  Jim Meyering  <meyering@lucent.com>
37403
37404         * lib/rename.c: New file.  From Volker Borchert.
37405         Include stdlib.h, string.h or strings.h, and xalloc.h.
37406         Use strip_trailing_slashes rather than open-coding it.
37407
37408 2001-01-03  Paul Eggert  <eggert@twinsun.com>
37409
37410         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
37411
37412 2001-01-03  Jim Meyering  <meyering@lucent.com>
37413
37414         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
37415         of local `inptr' to avoid warning with some system declarations of
37416         iconv.
37417
37418 2001-01-02  Volker Borchert  <bt@teknon.de>
37419
37420         * m4/rename.m4: New file.
37421         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
37422
37423 2001-01-01  Jim Meyering  <meyering@lucent.com>
37424
37425         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
37426         even on systems with utmpx.h.  It's necessary for the declaration of
37427         utmp's ut_user member.  Reported by Andreas Jaeger.
37428
37429         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
37430         available. They are required for the declarations of getgrgid and
37431         getpwuid resp.
37432         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
37433         Reported by Andreas Jaeger.
37434
37435 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
37436
37437         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
37438         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
37439         so `make install' also works in VPATH builds.
37440
37441 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
37442
37443         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
37444         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
37445         can be used in subdirectories.
37446
37447 2000-12-29  Paul Eggert  <eggert@twinsun.com>
37448
37449         * lib/modechange.c: Do not assume that mode_t uses the
37450         traditional octal encoding.  E.g. "chmod 1 FOO" should set
37451         the other-execute bit of FOO even if S_IXOTH != 1.
37452
37453         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
37454         WOTH, XOTH, ALLM): New macros.
37455         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
37456          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
37457         Use them.
37458         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
37459         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
37460         (mode_compile):
37461         No need to use uintmax_t; unsigned long is long enough.
37462         Don't bother to get suffix since we don't use it.
37463
37464 2000-12-26  Jim Meyering  <meyering@lucent.com>
37465
37466         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
37467         better with autoheader.
37468
37469 2000-12-24  Jim Meyering  <meyering@lucent.com>
37470
37471         * lib/hash.c (is_prime): Return explicit boolean values.
37472         (hash_get_first): Return NULL to appease Irix5.6's 89.
37473         Reported by Nelson Beebe.
37474
37475 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
37476
37477         * lib/localcharset.c (locale_charset): Add support for Win32.
37478
37479 2000-12-18  Paul Eggert  <eggert@twinsun.com>
37480
37481         * lib/physmem.h, lib/physmem.c: New files.
37482
37483         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
37484         (noinst_HEADERS): Add physmem.h.
37485
37486         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
37487         't' for compatibility with Solaris 8 sort.
37488
37489 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
37490
37491         * lib/config.charset: Add support for BeOS.
37492
37493 2000-12-17  Jim Meyering  <meyering@lucent.com>
37494
37495         * m4/dos.m4 (jm_AC_DOS): New file and macro.
37496         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
37497
37498 2000-12-16  Jim Meyering  <meyering@lucent.com>
37499
37500         This bug had a serious impact on chown: `chown N:M FILE' (for integer
37501         N and M) would have treated it like `chown N:N FILE'.
37502
37503         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
37504
37505 2000-12-16  Jim Meyering  <meyering@lucent.com>
37506
37507         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
37508         SHELLS_FILE to a file name that's useful on djgpp systems.
37509         Include stdlib.h.
37510         (ADDITIONAL_DEFAULT_SHELLS): Define.
37511         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
37512         Based mostly on a patch from Prashant TR.
37513
37514 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
37515
37516         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
37517         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
37518         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
37519
37520 2000-12-08  Andreas Schwab  <schwab@suse.de>
37521
37522         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
37523         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
37524
37525 2000-12-07  Jim Meyering  <meyering@lucent.com>
37526
37527         * lib/stripslash.c (ISSLASH): Define.
37528         (strip_trailing_slashes): Use ISSLASH rather than comparing against
37529         `/'.
37530         From Prashant TR.
37531
37532         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
37533         (dir_name_r): Declare this function as static.
37534         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
37535         manifest itself on a name containing a mix of slashes and
37536         backslashes.
37537         Make this function work with names starting with a DOS-style
37538         drive letter and colon prefix.
37539         (dir_name): Append `.' if necessary.
37540         Based mostly on patches from Prashant TR and Eli Zaretskii.
37541
37542         * lib/dirname.h (dir_name_r): Remove prototype.
37543
37544 2000-12-06  Paul Eggert  <eggert@twinsun.com>
37545
37546         * m4/off_t-format.m4: Remove this file.
37547         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
37548
37549 2000-12-06  Jim Meyering  <meyering@lucent.com>
37550
37551         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
37552         replacement strtoull, we may well need the replacement strtoul, too.
37553         Check for declarations of strtoul and strtoull.
37554         Check for strtol.  Mainly as a cue to cause automake to include
37555         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
37556         Check for limits.h -- strtol.c needs it.
37557
37558 2000-12-05  Jim Meyering  <meyering@lucent.com>
37559
37560         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
37561
37562 2000-12-04  Jim Meyering  <meyering@lucent.com>
37563
37564         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
37565         Also include memory.h, stdlib.h, unistd.h if appropriate.
37566         Reported by Andreas Jaeger (conflicting declaration of malloc).
37567
37568 2000-12-02  Jim Meyering  <meyering@lucent.com>
37569
37570         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
37571         * m4/jm-macros.m4 (jm_MACROS): require it.
37572
37573 2000-12-02  Jim Meyering  <meyering@lucent.com>
37574
37575         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
37576
37577 2000-12-01  Paul Eggert  <eggert@twinsun.com>
37578
37579         * lib/memrchr.c: Include <config.h> before any system include file.
37580
37581 2000-11-30  Jim Meyering  <meyering@lucent.com>
37582
37583         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
37584
37585 2000-11-30  Jim Meyering  <meyering@lucent.com>
37586
37587         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
37588
37589 2000-11-29  Paul Eggert  <eggert@twinsun.com>
37590
37591         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
37592
37593 2000-11-26  Jim Meyering  <meyering@lucent.com>
37594
37595         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
37596
37597 2000-11-22  Paul Eggert  <eggert@twinsun.com>
37598
37599         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
37600         size of (size_t) -1; it's not portable.
37601
37602 2000-11-17  Jim Meyering  <meyering@lucent.com>
37603
37604         * lib/strstr.c: Update from GNU libc.
37605
37606 2000-11-17  Akim Demaille  <akim@epita.fr>
37607
37608         * lib/obstack.h: Formatting changes.
37609         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
37610         prevent type checking.
37611         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
37612         cast the value to (void *): assigning a `foo *' to a `void *'
37613         variable is valid.
37614         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
37615
37616 2000-11-16  Jim Meyering  <meyering@lucent.com>
37617
37618         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
37619
37620 2000-11-11  Jim Meyering  <meyering@lucent.com>
37621
37622         * lib/error.c: Add a couple #includes, merging from GNU libc version.
37623
37624 2000-11-10  Jim Meyering  <meyering@lucent.com>
37625
37626         * lib/obstack.h: Update from GNU libc.
37627         * lib/obstack.c: Likewise.
37628
37629 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
37630
37631         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
37632
37633 2000-11-06  Paul Eggert  <eggert@twinsun.com>
37634
37635         * lib/getusershell.c (setusershell): Use rewind rather than
37636         fseek/fseeko, to avoid configuration hassles with fseeko.
37637         Don't bother opening SHELLS_FILE if shellstream is NULL;
37638         it's not necessary.
37639
37640 2000-11-05  Jim Meyering  <meyering@lucent.com>
37641
37642         * lib/makepath.h (make_dir): Declare.
37643         * lib/makepath.c (make_dir): Remove `static' attribute.
37644         Tweak a comment.
37645
37646 2000-11-04  Jim Meyering  <meyering@lucent.com>
37647
37648         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
37649
37650 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
37651
37652         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
37653         last one in a bucket, advance to the next bucket.
37654
37655 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
37656
37657         * lib/fnmatch.c: Do not comment out all the code if we are using
37658         the GNU C library, because in some cases we are replacing buggy
37659         code in the GNU C library itself.
37660
37661 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
37662
37663         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
37664         (regex_compile): Catch bogus \(\1\).
37665
37666 2000-10-30  Paul Eggert  <eggert@twinsun.com>
37667
37668         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
37669         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
37670         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
37671
37672 2000-10-30  Paul Eggert  <eggert@twinsun.com>
37673
37674         * lib/error.h, getline.h, modechange.h:
37675         Remove "2000" from Copyright line, as the file hasn't been
37676         changed this year other than in the copyright notice.
37677
37678         * lib/xalloc.h: Add "2000" to Copyright line, as this file
37679         was changed this year.
37680
37681 2000-10-29  Jim Meyering  <meyering@lucent.com>
37682
37683         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
37684         renaming.
37685         * m4/ls-mntd-fs.m4: Likewise
37686
37687 2000-10-29  Jim Meyering  <meyering@lucent.com>
37688
37689         * lib/xstat.in: Fix grammar in comment.
37690
37691 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
37692
37693         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
37694         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
37695         doesn't define __restrict_arr.
37696
37697 2000-10-28  Jim Meyering  <meyering@lucent.com>
37698
37699         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
37700         (jm_PREREQ_MEMCHR): New function.
37701
37702 2000-10-28  Jim Meyering  <meyering@lucent.com>
37703
37704         * lib/memchr.c: Update from libc.
37705         Adjust for portability:
37706         [HAVE_STDLIB_H]: Include stdlib.h.
37707         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
37708         Undef __memchr, too.
37709         [!weak_alias]: Define __memchr to memchr.
37710
37711         * lib/regex.c: Update from libc.
37712         * lib/regex.h: Likewise.
37713         * lib/getopt1.c: Likewise.
37714         * lib/memcmp.c: Likewise.
37715
37716         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
37717         Avoid using fseek, when possible -- it's broken by design.
37718         Patch by Ulrich Drepper.
37719
37720 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
37721
37722         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
37723         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
37724         Giving in to popular pressure to shut up the compiler with casts.
37725
37726 2000-10-26  Jim Meyering  <meyering@lucent.com>
37727
37728         * lib/strftime.c: Update from libc.
37729
37730 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
37731
37732         * regex.c: More `unsigned char' -> `re_char' changes.
37733         Also change several `int' into `re_wchar_t'.
37734         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
37735         (PUSH_FAILURE_POINTER): Don't cast any more.
37736         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
37737         We want GCC to complain, since this piece of code makes
37738         re_match non-reentrant, which *should* be fixed.
37739         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
37740         (EXTEND_BUFFER): Use RETALLOC.
37741         (SET_LIST_BIT): Don't cast.
37742         (re_wchar_t): New type.
37743         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
37744         that those two functions will always properly return.
37745         (IMMEDIATE_QUIT_CHECK): Cast to void.
37746         (analyse_first): Use recursion rather than an explicit stack.
37747         (re_compile_fastmap): Can't fail anymore.
37748         (re_search_2): Don't check re_compile_fastmap for failure.
37749         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
37750         Now also sets the new value (passed in a new argument).
37751         (re_match_2_internal): Use it.
37752         Also, use a new var `reg' of type size_t when looping through regs
37753         rather than reuse the inappropriate `mcnt'.
37754
37755 2000-10-25  Jim Meyering  <meyering@lucent.com>
37756
37757         * lib/obstack.c: Update from libc.
37758
37759 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
37760
37761         * regex.c (regex_compile): Change the way of handling a range from
37762         a char less than 256 to a char not less than 256.
37763
37764 2000-10-24  Andrew Innes  <andrewi@gnu.org>
37765
37766         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
37767         NT-Emacs only.
37768         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
37769         so that re_search functions only quit when callers expect them to.
37770
37771 2000-10-23  Jim Meyering  <meyering@lucent.com>
37772
37773         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
37774         wrong.  That set_locale call must not have any side effects.
37775         From Paul Eggert.
37776
37777 2000-10-22  Jim Meyering  <meyering@lucent.com>
37778
37779         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
37780         [CYCLIC]: Remove now-unused definition.
37781
37782         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
37783         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
37784         Suggestion from Ulrich Drepper.
37785
37786 2000-10-21  Jim Meyering  <meyering@lucent.com>
37787
37788         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
37789         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
37790         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
37791
37792 2000-10-21  Jim Meyering  <meyering@lucent.com>
37793
37794         * lib/dirname.c (memrchr): Declare if necessary.
37795         (dir_name): Remove the restriction that there be no
37796         trailing slashes.  Now, this code skips past them, effectively
37797         ignoring them.
37798         [TEST_DIRNAME] (main): New unit tests.
37799
37800         * lib/memrchr.c: New file from GNU libc.
37801         Undef __memrchr, too.
37802         [!weak_alias]: Define __memrchr to memrchr.
37803         Guard weak_alias use with `#ifdef weak_alias'.
37804
37805 2000-10-21  Jim Meyering  <meyering@lucent.com>
37806
37807         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
37808         (dir_name): Use dir_name_r.
37809         * lib/dirname.h (dir_name_r): Declare it.
37810
37811 2000-10-17  Jim Meyering  <meyering@lucent.com>
37812
37813         * lib/quote.h (PARAMS): Define and use.
37814         Reported by Akim Demaille.
37815
37816         * lib/getopt.c: Update from libc.
37817
37818 2000-10-16  Jim Meyering  <meyering@lucent.com>
37819
37820         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
37821         setlocale.
37822         From Jan Fedak.
37823
37824 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
37825
37826         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
37827
37828 2000-09-25  Jim Meyering  <meyering@lucent.com>
37829
37830         * lib/md5.h (rol): Define (from GnuPG).
37831
37832         * lib/sha.c: Give credit (GnuPG) where due.
37833         (M): Use rol rather than open-coding it.
37834         Add a FIXME comment.
37835
37836 2000-09-21  Jim Meyering  <meyering@lucent.com>
37837
37838         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
37839         Reported by Michael Stone.
37840
37841 2000-09-20  Jim Meyering  <meyering@lucent.com>
37842
37843         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
37844         (noinst_HEADERS): Add sha.h.
37845         Based on code from Scott G. Miller and from GnuPG.
37846
37847 2000-09-18  Jim Meyering  <meyering@lucent.com>
37848
37849         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
37850         LIBS. Otherwise, everyone ends up linking with -lelf for some
37851         configurations.
37852         Reported by Mike Stone.
37853
37854 2000-09-15  Jim Meyering  <meyering@lucent.com>
37855
37856         * lib/regex.c: Update from libc.
37857
37858 2000-09-10  Jim Meyering  <meyering@lucent.com>
37859
37860         * lib/getopt.c (_getopt_internal): Update from glibc.
37861
37862 2000-09-09  Jim Meyering  <meyering@lucent.com>
37863
37864         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
37865         think it should be used as a general replacement for isascii.
37866         * lib/fnmatch.c: Likewise.
37867         * lib/mbswidth.c: Likewise
37868         * lib/regex.c: Likewise.
37869
37870         Don't use atoi.
37871         * lib/userspec.c: Include sys/param.h and limits.h.
37872         Include xstrtol.h.
37873         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
37874         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
37875         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
37876         UID, GID.  Check range.
37877
37878 2000-09-06  Jim Meyering  <meyering@lucent.com>
37879
37880         * lib/getopt.c (_getopt_internal): Update from glibc.
37881
37882 2000-08-30  Jim Meyering  <meyering@lucent.com>
37883
37884         * lib/strftime.c: Merge in changes from GNU libc.
37885
37886 2000-08-26  Jim Meyering  <meyering@lucent.com>
37887
37888         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
37889         * m4/fpending.m4: New file.
37890
37891 2000-08-26  Jim Meyering  <meyering@lucent.com>
37892
37893         * lib/closeout.c: Include "__fpending.h".
37894         (close_stdout_status): Return right away if there's nothing to flush.
37895
37896         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
37897         * lib/__fpending.c: New file.
37898         * lib/__fpending.h: New file.
37899
37900 2000-08-20  Jim Meyering  <meyering@lucent.com>
37901
37902         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
37903         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
37904         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
37905
37906 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
37907
37908         Improve fileutils installation on systems where running
37909         programs (like install) can't be unlinked.
37910         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
37911         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
37912
37913 2000-08-07  Paul Eggert  <eggert@twinsun.com>
37914
37915         Standardize on "memory exhausted" instead of "Memory exhausted"
37916         or "virtual memory exhausted".
37917         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
37918         "virtual memory exhausted".
37919         * lib/same.c (same_name): Invoke xalloc_die instead of printing
37920         our own message.
37921         * lib/userspec.c (parse_user_spec): Likewise.
37922         * lib/bumpalloc.h: comment fix
37923         * lib/same.c, userspec.c: Include xalloc.h.
37924
37925         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
37926         not char *const and pointing to a constant array.
37927         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
37928         (xrealloc): Comment fix.
37929
37930         * lib/userspec.c (parse_user_spec):
37931         Don't translate a message until just before returning,
37932         to avoid unnecessary translation.
37933
37934 2000-08-07  Jim Meyering  <meyering@lucent.com>
37935
37936         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
37937         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
37938         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
37939         getgroups.c, gethostname.c, getopt.h, group-member.c,
37940         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
37941         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
37942         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
37943         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
37944         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
37945         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
37946         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
37947         yesno.c: Back out Copyright date changes for each file with no change
37948         this year.  This eases coordination with other programs using the same
37949         source code modules.  From Paul Eggert.
37950
37951 2000-08-06  Paul Eggert  <eggert@twinsun.com>
37952
37953         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
37954         not char, for compatibility with glibc 2.1.3 strftime.c.
37955
37956 2000-08-03  Greg McGary  <greg@mcgary.org>
37957
37958         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
37959         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
37960         (EXTEND_BUFFER): Use them.
37961
37962 2000-08-01  Jim Meyering  <meyering@lucent.com>
37963
37964         * lib/dirname.c (ISSLASH): Define.
37965         (BACKSLASH_IS_PATH_SEPARATOR): Define.
37966         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
37967         both `\' and `/' may be use as path separators.
37968         Based on a patch from Prashant TR.
37969
37970 2000-07-31  Paul Eggert  <eggert@twinsun.com>
37971
37972         * lib/quotearg.c (quotearg_n_options): Don't make the initial
37973         slot vector a constant, since it might get modified.
37974
37975 2000-07-31  Jim Meyering  <meyering@lucent.com>
37976
37977         * lib/xmalloc.c: Use `virtual memory exhausted', not
37978         `Memory exhausted'.
37979         * lib/obstack.c (print_and_abort): Likewise.
37980
37981 2000-07-30  Paul Eggert  <eggert@twinsun.com>
37982
37983         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
37984         buffer, so that the caller can always quote one small
37985         component of a "memory exhausted" message in slot 0.
37986         From a suggestion by Jim Meyering.
37987
37988 2000-07-30  Jim Meyering  <meyering@lucent.com>
37989
37990         * lib/makepath.c (make_path): Quote the other instance, too.
37991
37992         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
37993         (STATIC_BUF_SIZE): Define.
37994         (quotearg_n_options): Use only statically allocated storage when
37995         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
37996         than STATIC_BUF_SIZE.
37997
37998 2000-07-29  Jim Meyering  <meyering@lucent.com>
37999
38000         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
38001         * lib/dirname.c (dir_name): Likewise.
38002
38003         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
38004         `/'.
38005
38006         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
38007         (dir_name): Assert that there are no trailing slashes.
38008
38009 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
38010
38011         * lib/mbswidth.h (mbswidth): Add a flags argument.
38012         (mbswidth): New declaration.
38013         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
38014         * lib/mbswidth.c (mbswidth): Add a flags argument.
38015         (mbsnwidth): New function.
38016
38017 2000-07-24  Jim Meyering  <meyering@lucent.com>
38018
38019         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
38020
38021 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38022
38023         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
38024
38025 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38026
38027         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
38028         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
38029         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
38030         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
38031         invoke multibyte primitives.
38032
38033 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38034
38035         * lib/quotearg.c:
38036         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
38037         so that mbstate_t is always defined.
38038
38039         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
38040         be 1 in at least one GCC installation, and this configuration
38041         error is likely to be common.  Ignoring MB_LEN_MAX hurts
38042         performance on hosts that have mbrtowc but have only unibyte
38043         locales, but I assume these hosts are rare.
38044
38045 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38046
38047         * lib/mbswidth.c (_XOPEN_SOURCE):
38048         Don't define; this causes problems on Solaris 7.
38049         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
38050
38051 2000-07-23  Jim Meyering  <meyering@lucent.com>
38052
38053         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
38054         too: getgrgid, getpwuid, getuid.
38055
38056 2000-07-23  Jim Meyering  <meyering@lucent.com>
38057
38058         * lib/basename.c (base_name): Add an assertion.
38059
38060 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
38061
38062         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
38063         shadow its mbsinit function.
38064
38065 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
38066
38067         * lib/mbswidth.h: New file.
38068         * lib/mbswidth.c: New file.
38069         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
38070         (noinst_HEADERS): Add mbswidth.h.
38071
38072 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
38073
38074         * lib/config.charset: Add support for FreeBSD. Improve support for
38075         HP-UX and IRIX 6.
38076
38077 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
38078
38079         * m4/mbswidth.m4: New file.
38080         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
38081
38082 2000-07-15  Jim Meyering  <meyering@lucent.com>
38083
38084         * lib/makepath.c: Include quote.h.
38085         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
38086         corresponding argument in a `quote (...)' call.
38087         Give better diagnostics.
38088
38089         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
38090         (noinst_HEADERS): Add quote.h.
38091
38092         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
38093         from tar's src/misc.c.
38094         * lib/quote.h: New file.  Prototypes for same.
38095
38096 2000-07-14  Paul Eggert  <eggert@twinsun.com>
38097
38098         From a suggestion by Bruno Haible.
38099         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
38100         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
38101         to decide whether to define the BeOS workaround macro;
38102         this adjusts to the change to AC_MBSTATE_T.
38103
38104 2000-07-14  Jim Meyering  <meyering@lucent.com>
38105
38106         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
38107         jm_AC_TYPE_UINTMAX_T.
38108
38109 2000-07-13  Paul Eggert  <eggert@twinsun.com>
38110
38111         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
38112
38113         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
38114         quotearg_buffer_restyled): Add support for
38115         clocale_quoting_style.  Undo previous change to
38116         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
38117         and "{RIGHT QUOTATION MARK}" msgids.
38118
38119 2000-07-10  Paul Eggert  <eggert@twinsun.com>
38120
38121         From a suggestion by Bruno Haible.
38122         * m4/mbstate_t.m4 (AC_MBSTATE_T):
38123         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
38124         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
38125         and mbstate_t, to a single-part test that simply defines mbstate_t.
38126         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
38127         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
38128
38129 2000-07-10  Jim Meyering  <meyering@lucent.com>
38130
38131         * m4/strerror_r.m4: Mirror the correction made in autoconf.
38132
38133         * m4/gnu-source.m4: Output to confdefs.h directly.
38134         Suggestion from Akim Demaille.
38135
38136 2000-07-09  Paul Eggert  <eggert@twinsun.com>
38137
38138         The old behavior of quoting `like this' doesn't look good with
38139         newer, ISO-style fonts.  See:
38140         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
38141
38142         Instead, quote "like this" by default.  Let the translator
38143         tailor the locale-specific quoting behavior by providing
38144         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
38145
38146         * lib/quotearg.c (N_): New macro.
38147         (gettext_default): New function.
38148         (quotearg_buffer_restyled): Use
38149         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
38150         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
38151
38152 2000-07-09  Jim Meyering  <meyering@lucent.com>
38153
38154         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
38155         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
38156
38157         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
38158         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
38159
38160 2000-07-09  Jim Meyering  <meyering@lucent.com>
38161
38162         * lib/Most files: Update copyright dates to include 2000.
38163
38164 2000-07-08  Jim Meyering  <meyering@lucent.com>
38165
38166         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
38167         if not defined.
38168         (xgethostname): Remove now-unnecessary #ifdef.
38169         Move declaration of `err' into loop where it's used.
38170
38171 2000-07-05  Paul Eggert  <eggert@twinsun.com>
38172         and Bruno Haible  <haible@clisp.cons.org>
38173
38174         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
38175         only if the test for an object-type mbstate_t fails.  This
38176         prevents us from mistakenly reporting that mbstate_t is a
38177         system object type after we "#define mbstate_t int" to work
38178         around its lack.
38179
38180 2000-07-05  Paul Eggert  <eggert@twinsun.com>
38181         and Bruno Haible  <haible@clisp.cons.org>
38182
38183         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
38184
38185 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38186
38187         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
38188         to strerror_r.
38189         Include <ctype.h> for use of isalpha.
38190
38191 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38192
38193         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
38194         by allocating a larger buffer. Test the gethostname return value for
38195         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
38196         returns an error and ENAMETOOLONG isn't defined.
38197
38198 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38199
38200         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
38201         dimension.
38202
38203 2000-07-04  Jim Meyering  <meyering@lucent.com>
38204
38205         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
38206         of the deprecated AC_CHECKING.
38207
38208 2000-07-04  Jim Meyering  <meyering@lucent.com>
38209
38210         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
38211         Reported by Bruno Haible.
38212
38213 2000-07-04  Jim Meyering  <meyering@lucent.com>
38214
38215         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
38216         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
38217         lacks mbrtowc.
38218
38219 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38220
38221         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
38222         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
38223
38224 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38225         and Bruno Haible  <haible@clisp.cons.org>
38226
38227         * lib/quotearg.c (mbrtowc):
38228         Assign to *pwc, and return 1 only if result is nonzero.
38229         (iswprint): Use ISPRINT when substituting our own mbrtowc.
38230
38231 2000-07-03  Jim Meyering  <meyering@lucent.com>
38232
38233         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
38234
38235 2000-07-03  Jim Meyering  <meyering@lucent.com>
38236
38237         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
38238         This is necessary to get a definition of e.g., UTMP_FILE on
38239         HP-UX 10.20.
38240         From Bob Proulx.
38241
38242 2000-07-02  Jim Meyering  <meyering@lucent.com>
38243
38244         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
38245
38246         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
38247         AC_LIBOBJ(function_name).
38248         * m4/chown.m4: Likewise.
38249         * m4/fnmatch.m4: Likewise.
38250         * m4/ftruncate.m4: Likewise.
38251         * m4/getgroups.m4: Likewise.
38252         * m4/getline.m4: Likewise.
38253         * m4/group-member.m4: Likewise.
38254         * m4/jm-macros.m4: Likewise.
38255         * m4/lstat.m4: Likewise.
38256         * m4/malloc.m4: Likewise.
38257         * m4/memcmp.m4: Likewise.
38258         * m4/nanosleep.m4: Likewise.
38259         * m4/putenv.m4: Likewise.
38260         * m4/realloc.m4: Likewise.
38261         * m4/regex.m4: Likewise.
38262         * m4/stat.m4: Likewise.
38263         * m4/strftime.m4: Likewise.
38264
38265 2000-07-02  Jim Meyering  <meyering@lucent.com>
38266
38267         * lib/quotearg.c (mbstate_t): Don't define here.
38268
38269 2000-07-02  Jim Meyering  <meyering@lucent.com>
38270
38271         * lib/nanosleep.c (SIGCONT): Define if not already defined.
38272
38273 2000-07-01  Jim Meyering  <meyering@lucent.com>
38274
38275         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
38276
38277 2000-07-01  Jim Meyering  <meyering@lucent.com>
38278
38279         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
38280         problem.
38281
38282 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38283
38284         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
38285         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
38286
38287 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38288
38289         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
38290         per change in ../m4/ls-mntd-fs.m4.
38291         (read_filesystem_list): Ignore symbolic links.
38292
38293 2000-06-29  Jim Meyering  <meyering@lucent.com>
38294
38295         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
38296         for declaration of strcmp.
38297
38298         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
38299
38300         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
38301         Avoid warning by casting result to `char *' to remove `const'.
38302
38303 2000-06-28  Jim Meyering  <meyering@lucent.com>
38304
38305         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
38306         included by quotearg.c, for which we perform this test.  From
38307         Bruno Haible.
38308
38309 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38310
38311         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
38312         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
38313         <utmpx.h> exists, put readutmp.o into LIBOBJS.
38314
38315 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38316
38317         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
38318
38319 2000-06-26  Paul Eggert  <eggert@twinsun.com>
38320
38321         savedir now sets errno on failure and invokes xmalloc to get memory.
38322         Fix a couple of other minor bugs while we're at it.
38323
38324         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
38325         (NAMLEN): Remove macro.
38326         (malloc, realloc): Remove decls.
38327         (stpcpy): Likewise.
38328         ("xalloc.h"): Include.
38329         (NAME_SIZE_DEFAULT): New macro.
38330         (savedir): Use xmalloc / xrealloc to allocate memory.
38331         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
38332         Skip "" directory entries.
38333         Use strlen to calculate directory entry length, since the old method
38334         is rarely used these days and isn't worth supporting.
38335         Don't use a pointer after freeing it.
38336         Check for integer overflow when calculating allocation size.
38337         Use memcpy to copy entries, instead of stpcpy.
38338         Set errno properly when returning NULL.
38339         Check for readdir error.
38340
38341 2000-06-26  Jim Meyering  <meyering@lucent.com>
38342
38343         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
38344
38345 2000-06-25  Jim Meyering  <meyering@lucent.com>
38346
38347         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
38348         Linux header bug when _XOPEN_SOURCE is defined to 500.
38349
38350 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38351
38352         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
38353         deficiency.
38354
38355 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38356
38357         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
38358         Include xalloc.h.
38359         Don't include <stdlib.h>.  Don't declare malloc, realloc.
38360
38361 2000-06-24  Jim Meyering  <meyering@lucent.com>
38362
38363         * m4/strerror_r.m4: Revive this file -- to try out an experimental
38364         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
38365         for which strerror does return char*, but which lacks a conveniently
38366         accessible declaration of the function.  If the compile-test says
38367         strerror_r doesn't work, then resort to a `run'-test that works on
38368         BeOS and segfaults on DEC Unix.
38369
38370 2000-06-24  Jim Meyering  <meyering@lucent.com>
38371
38372         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
38373
38374 2000-06-23  Paul Eggert  <eggert@twinsun.com>
38375
38376         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
38377         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
38378
38379 2000-06-23  Paul Eggert  <eggert@twinsun.com>
38380
38381         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
38382         (mbrtowc, mbstate_t): Define substitutes if
38383         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
38384         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
38385         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
38386
38387 2000-06-23  Jim Meyering  <meyering@lucent.com>
38388
38389         * m4/afs.m4: Add missing AC_MSG_RESULT.
38390         Reported by Bruno Haible.
38391
38392         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
38393         Suggestion from Bruno Haible.
38394
38395 2000-06-23  Jim Meyering  <meyering@lucent.com>
38396
38397         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
38398
38399 2000-06-21  Jim Meyering  <meyering@lucent.com>
38400
38401         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
38402
38403 2000-06-21  Jim Meyering  <meyering@lucent.com>
38404
38405         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
38406         (noinst_HEADERS): Add getstr.h.
38407
38408         * lib/getline.c (getstr): Move into a separate file.
38409         * lib/getstr.c (getstr): New file, extracted from getline.c, with
38410         the following changes: new parameter, delim2; both delim[12]
38411         parameters have type `int', not `char'.  The latter would lose
38412         with 8-bit delimiters.
38413         * lib/getstr.h: New file.
38414
38415 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38416
38417         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
38418         than 1024, return a memory chunk of least possible size, instead
38419         of size PATH_MAX + 2. In the loop, increment the size proportionally.
38420         Use free/xmalloc instead of xrealloc to avoid copying for very long
38421         paths.
38422
38423 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38424
38425         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
38426         the empty string.
38427
38428 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38429
38430         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
38431         address, not strdup.  Include <stdlib.h> and don't declare free().
38432
38433 2000-06-19  Jim Meyering  <meyering@lucent.com>
38434
38435         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
38436
38437 2000-06-18  Jim Meyering  <meyering@lucent.com>
38438
38439         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
38440
38441         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
38442         `checking whether...' message to be consistent with that of the
38443         lstat test.
38444
38445 2000-06-18  Jim Meyering  <meyering@lucent.com>
38446
38447         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
38448         Besides, these days every porting target provides a mkdir function.
38449
38450         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
38451         needed. (this snippet comes from src/system.h).
38452
38453 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
38454
38455         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
38456
38457 2000-06-15  Paul Eggert  <eggert@twinsun.com>
38458
38459         * lib/human.c (adjust_value): New function.
38460         (human_readable_inexact): Apply rounding style even when
38461         printing approximate values.
38462
38463 2000-06-14  Paul Eggert  <eggert@twinsun.com>
38464
38465         * lib/human.c (human_readable_inexact): Allow an input block
38466         size that is not a multiple of the output block size, and vice versa.
38467         Reported by Piergiorgio Sartor.
38468
38469 2000-06-14  Paul Eggert  <eggert@twinsun.com>
38470
38471         * lib/getdate.y (get_date): Apply relative times after time
38472         zone indicator, not before.  Reported by Todd A. Jacobs.
38473
38474 2000-06-13  Jim Meyering  <meyering@lucent.com>
38475
38476         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
38477
38478         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
38479
38480 2000-06-12  Paul Eggert  <eggert@twinsun.com>
38481
38482         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
38483
38484 2000-06-12  Jim Meyering  <meyering@lucent.com>
38485
38486         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
38487         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
38488         optional argument.
38489         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
38490         the optional argument, `lib'.
38491
38492 2000-06-08  Jim Meyering  <meyering@lucent.com>
38493
38494         * m4/largefile.m4: Remove file (now that it's part of autoconf).
38495
38496 2000-06-04  Paul Eggert  <eggert@twinsun.com>
38497
38498         Rewrite largefile configuration so that we don't need to run
38499         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
38500         AC_CANONICAL_HOST in configure.in -- jmm]
38501
38502         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
38503         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
38504         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
38505         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
38506         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
38507         All uses changed.
38508         Instead of inspecting the output of getconf, try to compile the
38509         test program without and with the macro definition.
38510         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
38511         for getconf.  Instead, check for the needed flags by compiling
38512         test programs.
38513
38514 2000-06-04  Paul Eggert  <eggert@twinsun.com>
38515
38516         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
38517
38518 2000-06-04  Jim Meyering  <meyering@lucent.com>
38519
38520         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
38521         SunOS 4.1.4 for which gid_t is an unsigned type.
38522
38523 2000-06-03  Jim Meyering  <meyering@lucent.com>
38524
38525         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
38526         now that autoconf requires that.
38527
38528         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
38529         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
38530         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
38531
38532 2000-06-03  Jim Meyering  <meyering@lucent.com>
38533
38534         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
38535
38536 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
38537
38538         * m4/glibc21.m4: New file.
38539         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
38540
38541 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
38542
38543         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
38544         newer, don't install charset.alias.
38545         * lib/config.charset: Change the Linux/glibc rules so they become empty
38546         on glibc-2.1 or newer.
38547
38548 2000-06-02  Jim Meyering  <meyering@lucent.com>
38549
38550         * lib/mountlist.c: Back out last change.  Instead, do this...
38551         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
38552         me_dummy member using the same `ignore'-testing code.
38553         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
38554         fs_type strings.
38555         From Mark D. Roth.
38556
38557 2000-05-29  Jim Meyering  <meyering@lucent.com>
38558
38559         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
38560         mounts with the `ignore' attribute.  Based on a patch from
38561         Mark D. Roth.
38562
38563 2000-05-28  Jim Meyering  <meyering@lucent.com>
38564
38565         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
38566         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
38567         * m4/stat.m4: Likewise.
38568         * m4/lstat.m4: Likewise.
38569         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
38570
38571         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
38572         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
38573
38574 2000-05-26  Jim Meyering  <meyering@lucent.com>
38575
38576         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
38577
38578 2000-05-24  Jim Meyering  <meyering@lucent.com>
38579
38580         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
38581         autoconf requires that.
38582         * m4/lib-check.m4: Likewise.
38583         * m4/jm-macros.m4: Likewise.
38584         * m4/strftime.m4: Likewise.
38585
38586         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
38587         AC_CHECK_DECLS, now that autoconf requires that.
38588
38589 2000-05-22  Jim Meyering  <meyering@lucent.com>
38590
38591         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
38592         * m4/lstat.m4: Likewise.
38593
38594 2000-05-22  Jim Meyering  <meyering@lucent.com>
38595
38596         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
38597
38598 2000-05-20  Jim Meyering  <meyering@lucent.com>
38599
38600         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
38601         (jm_PREREQ): Use it.
38602
38603 2000-05-18  Jim Meyering  <meyering@lucent.com>
38604
38605         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
38606         back, too, since it may have been modified by allocate_entry.
38607         (hash_delete): Rewrite to use neither the assignment operator
38608         nor the comma operator in an if-expression.
38609
38610 2000-05-15  Paul Eggert  <eggert@twinsun.com>
38611
38612         * lib/closeout.c:
38613         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
38614         Remove; no longer needed.
38615         "quotearg.h": Add include.
38616         (file_name): Do not bother to explicitly initialize to NULL; it's less
38617         efficient on some hosts.
38618         (close_stdout_status): Remove test as to whether stdout was already
38619         closed; it breaks for the case "echo x | sort >&-".
38620         Quote file name colons.
38621         Do not assume that _("write error") lacks format strings.
38622
38623 2000-05-15  Jim Meyering  <meyering@lucent.com>
38624
38625         * lib/version-etc.c (version_etc_copyright): Update the copyright
38626         string used in all --version output.
38627
38628 2000-05-14  Jim Meyering  <meyering@lucent.com>
38629
38630         * lib/closeout.c (close_stdout_set_file_name): New function.
38631         (close_stdout_status): Use new file-scoped global.
38632         Return right away if fstat says the stdout file descriptor is invalid.
38633         * lib/closeout.h (close_stdout_set_file_name): Declare.
38634
38635 2000-05-10  Jim Meyering  <meyering@lucent.com>
38636
38637         * lib/closeout.c [default_exit_status]: New file-scoped variable.
38638         (close_stdout_set_status): New function.
38639         * lib/closeout.h (close_stdout_set_status): Declare.
38640
38641 2000-05-09  Jim Meyering  <meyering@lucent.com>
38642
38643         * m4/gettext.m4: Rename this...
38644         * m4/libintl.m4: ...to this.
38645
38646 2000-05-08  Jim Meyering  <meyering@lucent.com>
38647
38648         * lib/long-options.c: Don't include closeout.h.
38649         (parse_long_options): Don't call close_stdout for --version.
38650
38651 2000-05-06  Paul Eggert  <eggert@twinsun.com>
38652
38653         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
38654         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
38655         2.1.3 bug.  This avoids a clash when files like regex.c define
38656         _GNU_SOURCE.
38657
38658 2000-05-06  Jim Meyering  <meyering@lucent.com>
38659
38660         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
38661         (AC_REPLACE_FUNCS): Add strnlen.
38662
38663         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
38664         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
38665
38666         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
38667         AC_SEARCH_LIBS call for nanosleep.
38668         (LIB_NANOSLEEP): Set and AC_SUBST.
38669
38670 2000-05-06  Jim Meyering  <meyering@lucent.com>
38671
38672         * lib/strnlen.c: Undefine __strnlen and strnlen.
38673         [!weak_alias]: Define __strnlen to strnlen.
38674
38675         * lib/atexit.c: New file, from libiberty.
38676
38677 2000-05-06  Jim Meyering  <meyering@lucent.com>
38678
38679         * lib/closeout.c (close_stdout_status): Also check for errors on the
38680         stderr stream.
38681
38682 2000-05-05  Jim Meyering  <meyering@lucent.com>
38683
38684         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
38685         AC_SEARCH_LIBS call for clock_gettime.
38686         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
38687
38688         * m4/search-libs.m4: Update from autoconf.
38689
38690         su doesn't work on Solaris 2.6.
38691         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
38692         <shadow.h>.  Reported by Dragos Harabor.
38693
38694 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
38695
38696         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
38697         memcpy instead of xmalloc, xrealloc, path_concat.
38698         (locale_charset): Treat empty environment variables as absent.
38699         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
38700
38701 2000-05-04  Jim Meyering  <meyering@lucent.com>
38702
38703         * lib/getopt.c: Update from glibc.
38704         * lib/obstack.c: Likewise.
38705         * lib/obstack.h: Likewise.
38706         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
38707         file
38708
38709         * lib/regex.h: Likewise.
38710         * lib/strndup.c: Likewise.
38711         * lib/strnlen.c: New file, from glibc.
38712
38713 2000-05-03  Jim Meyering  <meyering@lucent.com>
38714
38715         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
38716
38717 2000-05-02  Paul Eggert  <eggert@twinsun.com>
38718
38719         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
38720         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
38721         compile-time test, rather than inspecting host and OS, to
38722         decide whether to define _LARGEFILE_SOURCE.
38723
38724 2000-05-01  Jim Meyering  <meyering@lucent.com>
38725
38726         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
38727
38728         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
38729         Based on a patch from Bruno Haible.
38730
38731 2000-05-01  Jim Meyering  <meyering@lucent.com>
38732
38733         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
38734
38735 2000-04-29  Jim Meyering  <meyering@lucent.com>
38736
38737         * lib/path-concat.c: Declare strdup only if it's not defined.
38738         * lib/canon-host.c: Likewise.
38739
38740 2000-04-28  Jim Meyering  <meyering@lucent.com>
38741
38742         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
38743         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
38744         is included first, then limits.h is included by locale.h by libintl.h.
38745         From John David Anglin.
38746
38747 2000-04-25  Jim Meyering  <meyering@lucent.com>
38748
38749         * lib/makepath.c (S_IRWXUGO): Define.
38750         (make_path): Always perform explicit chmod if MODE specifies any
38751         of the `special' permission bits.  Prompted by a bug report against
38752         install from Mate Wierdl and Joost van Baal.
38753
38754 2000-04-18  Jim Meyering  <meyering@lucent.com>
38755
38756         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
38757         (jm_PREREQ): Use it.
38758
38759 2000-04-18  Jim Meyering  <meyering@lucent.com>
38760
38761         * lib/README: New file.
38762
38763         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
38764         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
38765
38766 2000-04-17  Jim Meyering  <meyering@lucent.com>
38767
38768         Get it right :-)
38769         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
38770         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
38771         Suggestion from Akim Demaille.
38772
38773 2000-04-17  Jim Meyering  <meyering@lucent.com>
38774
38775         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
38776         the definition of it to rpl_strftime also defined-away the system's
38777         declaration.
38778
38779 2000-04-15  Jim Meyering  <meyering@lucent.com>
38780
38781         Use `C' to denote so-called `contiguous' files, the same way
38782         that tar does.
38783         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
38784         (ftypelet): Use S_ISCTG.
38785         From Michael Deutschmann.
38786
38787 2000-04-14  Jim Meyering  <meyering@lucent.com>
38788
38789         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
38790         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
38791         clobbered.
38792
38793 2000-04-14  Jim Meyering  <meyering@lucent.com>
38794
38795         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
38796
38797 2000-04-13  Jim Meyering  <meyering@lucent.com>
38798
38799         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
38800         AH_VERBATIM to insert required #ifndef into config.h.in.
38801         Suggestion from Akim Demaille.
38802
38803 2000-04-12  Jim Meyering  <meyering@lucent.com>
38804
38805         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
38806         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
38807         Christian Krackowizer.
38808
38809         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
38810         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
38811         (AC_SYS_LARGEFILE): Require.
38812         (AM_C_PROTOTYPES): Require.
38813
38814 2000-04-08  Jim Meyering  <meyering@lucent.com>
38815
38816         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
38817         names don't conflict.  Reported by Eli Zaretskii.
38818
38819 2000-04-07  Jim Meyering  <meyering@lucent.com>
38820
38821         * lib/putenv.c: Move inclusion of errno.h so it follows that of
38822         sys/types.h, to work around system header problems on AIX 3.2.5.
38823         From Bruno Haible.
38824
38825 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
38826
38827         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
38828         bug.  Deal with the different error behavior of Irix iconv.
38829
38830 2000-04-05  Paul Eggert  <eggert@twinsun.com>
38831
38832         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
38833         IRIX if the installer said otherwise.
38834
38835 2000-04-05  Jim Meyering  <meyering@lucent.com>
38836
38837         Portability tweaks required for ultrix4.3.
38838         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
38839         (jm_CHECK_DECLS): Add getutent to the list of functions.
38840         (_jm_DECL_HEADERS): Add utmpx.h.
38841         From John David Anglin.
38842
38843         * m4/strftime.m4: Back out the 2000-04-02 change.
38844         Instead of that change, simply undefine putenv in the test program.
38845
38846 2000-04-05  Jim Meyering  <meyering@lucent.com>
38847
38848         Portability tweaks required for ultrix4.3.
38849         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
38850         getutent.
38851         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
38852         * lib/canon-host.c: Declare strdup.
38853         * lib/path-concat.c: Likewise.
38854         From John David Anglin.
38855
38856 2000-04-04  Jim Meyering  <meyering@lucent.com>
38857
38858         Be more DOS 8.3-friendly.
38859         * lib/ref-add.sin: Renamed from ref-add.sed.in.
38860         * lib/ref-del.sin: Renamed from ref-del.sed.in.
38861         * lib/Makefile.am: Reflect renaming.
38862         Reported by Eli Zaretskii.
38863
38864         Use a temporary file name that won't clash with `charset.alias'
38865         in the DOS 8.3 name space.
38866         * lib/Makefile.am (charset_tmp): Define.
38867         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
38868         (uninstall-local): Likewise.
38869         Reported by Eli Zaretskii.
38870
38871 2000-04-03  Jim Meyering  <meyering@lucent.com>
38872
38873         * m4/gettext.m4: Fix typo in comment.
38874
38875         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
38876         textutils/configure.in).  Suggestion from Paul Eggert.
38877         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
38878
38879 2000-04-02  Paul Eggert  <eggert@twinsun.com>
38880
38881         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
38882         variable in the shell rather than using putenv, which isn't
38883         portable.  This avoids the configure-time inter-test dependency
38884         on the potentially-renamed putenv function.
38885
38886 2000-03-30  Paul Eggert  <eggert@twinsun.com>
38887
38888         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
38889         before checking struct stat.st_blksize, so that
38890         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
38891
38892 2000-03-29  Paul Eggert  <eggert@twinsun.com>
38893
38894         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
38895         since strftime.c uses HAVE_STRFTIME to decide whether to use
38896         the underlying strftime.
38897
38898 2000-03-29  Paul Eggert  <eggert@twinsun.com>
38899
38900         * lib/time/strftime.c (my_strftime): Make sure we call the system
38901         strftime, not ourselves, when invoking the underlying strftime.
38902
38903 2000-03-24  Jim Meyering  <meyering@lucent.com>
38904
38905         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
38906         (charset_alias): Define.
38907         (install-exec-local): Factor out common code.
38908         (uninstall-local): Split lines longer than 80.
38909         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
38910         (SUFFIXES): Define.
38911         (.sed.in.sed): New rule.  Don't redirect directly to $@.
38912         (CLEANFILES): Add ref-add.sed and ref-del.sed.
38913
38914 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
38915
38916         * lib/config.charset: Output a line containing "Packages using this
38917         file".
38918         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
38919         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
38920         ref-del.sed): New rules.
38921
38922 2000-03-17  Jim Meyering  <meyering@lucent.com>
38923
38924         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
38925         Otherwise, include <strings.h>
38926
38927 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
38928
38929         * lib/unicodeio.c (utf8_wctomb): New function.
38930         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
38931         format instead of in UCS-4 with platform dependent endianness.
38932
38933 2000-03-10  Jim Meyering  <meyering@lucent.com>
38934
38935         * m4/lib-check.m4: Look for getspnam in -lgen, too.
38936         From Marco Franzen.
38937
38938 2000-03-07  Paul Eggert  <eggert@twinsun.com>
38939
38940         * lib/savedir.c (savedir): Work even if directory size is
38941         negative; this can happen with some screwy NFS configurations.
38942
38943 2000-03-06  Jim Meyering  <meyering@lucent.com>
38944
38945         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
38946         if it's NULL (because we ran out of memory).  From Bruno Haible.
38947
38948 2000-03-05  Jim Meyering  <meyering@lucent.com>
38949
38950         * lib/localcharset.c ("path-concat.h"): Include.
38951         (get_charset_aliases): Use path_concat instead of ANSI string
38952         concatenation.
38953
38954         * lib/unicodeio.h (PARAMS): Define.
38955         Use it to guard prototype.
38956
38957 2000-03-04  Jim Meyering  <meyering@lucent.com>
38958
38959         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
38960         for lib/localcharset.c.
38961
38962 2000-03-04  Jim Meyering  <meyering@lucent.com>
38963
38964         * lib/Makefile.am (install-exec-local): Create $(libdir) before
38965         installing into it.
38966         (uninstall-local): Uncomment this rule so `make distcheck' works
38967         once again.
38968
38969         * lib/unicodeio.c (<errno.h>): Include it.
38970         (errno): Declare if not defined.
38971
38972         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
38973
38974         * lib/config.charset: New version, incorporating remarks from a linux
38975         i18n mailing list.  From Bruno Haible.
38976
38977 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
38978
38979         * m4/codeset.m4: New file.
38980         * m4/iconv.m4: New file.
38981         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
38982
38983 2000-03-03  Jim Meyering  <meyering@lucent.com>
38984
38985         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
38986
38987 2000-03-02  Jim Meyering  <meyering@lucent.com>
38988
38989         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
38990         the messages come out on separate lines.
38991
38992         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
38993         rather than jm_CHECK_DECLARATIONS.
38994         * m4/decl.m4: Remove now-unused file.
38995
38996         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
38997         geteuid.
38998
38999 2000-03-02  Jim Meyering  <meyering@lucent.com>
39000
39001         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
39002
39003 2000-03-01  Jim Meyering  <meyering@lucent.com>
39004
39005         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
39006         * lib/unicodeio.c: Likewise.
39007
39008 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
39009
39010         * lib/config.charset: New file.
39011         * lib/localcharset.c: New file.
39012         * lib/unicodeio.h, lib/unicodeio.c: New files.
39013         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
39014         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
39015         (noinst_HEADERS): Add unicodeio.h.
39016         (all-local, install-exec-local, charset.alias): New targets.
39017
39018 2000-02-28  Paul Eggert  <eggert@twinsun.com>
39019
39020         * lib/quotearg.c (ALERT_CHAR): New macro.
39021         (quotearg_buffer_restyled): Use it.
39022
39023 2000-02-27  Jim Meyering  <meyering@lucent.com>
39024
39025         * m4/check-decl.m4: Add getenv to the list.
39026
39027 2000-02-27  Jim Meyering  <meyering@lucent.com>
39028
39029         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
39030         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
39031
39032         * lib/backupfile.c: Guard inclusion of stdlib.h with
39033         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
39034         Declare malloc if needed.
39035
39036         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
39037         `#ifndef HAVE_DECL..'
39038         now that autoconf always defines the HAVE_DECL_ symbols.
39039         * lib/human.c: Likewise.
39040         * lib/same.c: Likewise.
39041         * lib/strtoumax.c: Likewise.
39042
39043         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
39044         declaration check was not run.
39045         * lib/hash.c: Likewise.
39046         * lib/human.c: Likewise.
39047         * lib/same.c: Likewise.
39048         * lib/strtoumax.c: Likewise.
39049
39050         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
39051         `.', then first look up the entire `.'-containing string as a login
39052         name.
39053
39054 2000-02-23  Jim Meyering  <meyering@lucent.com>
39055
39056         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
39057         in place of my hack.
39058
39059 2000-02-18  Paul Eggert  <eggert@twinsun.com>
39060
39061         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
39062         (textint): New typedef.
39063         (parser_control): Member year changed from int to textint.
39064         All uses changed.
39065         (YYSTYPE): Removed; replaced by %union with int and textint members.
39066         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
39067         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
39068         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
39069         (tSNUMBER, tUNUMBER): Now of type <textintval>.
39070         (date, number, to_year): Use width of number in digits, not its value,
39071         to determine whether it's a 2-digit year, or a 2-digit time.
39072         (yylex): Store number of digits of numeric tokens.
39073         Reported by John Kendall.
39074
39075         (parser_control): Changed from struct parser_control to typedef (for
39076         consistency).  All uses changed.
39077
39078         (tID): Removed; not used.
39079         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
39080
39081 2000-02-14  Paul Eggert  <eggert@twinsun.com>
39082
39083         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
39084         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
39085
39086 2000-02-12  Jim Meyering  <meyering@lucent.com>
39087
39088         * lib/userspec.c (ISDIGIT): Define it.
39089         (isdigit): Remove definition.
39090         (is_number): Use ISDIGIT, not isdigit.
39091         <libintl.h>: Include.
39092         (_ and N_): Define.
39093         (parse_user_spec): Mark translatable strings.
39094
39095 2000-02-10  Jim Meyering  <meyering@lucent.com>
39096
39097         With these changes, nanosleep.[ch] are finally enough like the other
39098         lib/* replacement files to compile on a few more losing systems.
39099
39100         * lib/nanosleep.h: Don't include config.h.
39101         Remove prototype from declaration of nanosleep.
39102         (PARAMS): Remove now-unneeded definition.
39103         * lib/nanosleep.c: #undef nanosleep.
39104         (rpl_nanosleep): Rename from nanosleep.
39105
39106 2000-02-10  Jim Meyering  <meyering@lucent.com>
39107
39108         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
39109         gnu_nanosleep to rpl_nanosleep.
39110
39111 2000-02-09  Jim Meyering  <meyering@lucent.com>
39112
39113         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
39114         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
39115
39116 2000-02-08  Akim Demaille  <akim@epita.fr>
39117
39118         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
39119         `[' and `]' and remove uses of `changequote'.
39120         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
39121         (AC_SYS_LARGEFILE): Likewise.
39122         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
39123         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
39124         of changequote.
39125         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
39126         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
39127         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
39128         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
39129
39130 2000-02-05  Jim Meyering  <meyering@lucent.com>
39131
39132         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
39133         Remove explicit use of AC_HEADER_TIME.  It is required by
39134         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
39135         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
39136         in autoconf whereby the expansion of the latter ended up preceding
39137         the expansion of its prerequisite, AC_HEADER_TIME.
39138         Reported by Volker Borchert.
39139
39140 2000-02-03  Jim Meyering  <meyering@lucent.com>
39141
39142         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
39143
39144 2000-02-03  Jim Meyering  <meyering@lucent.com>
39145
39146         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
39147         rather than with `#if HAVE_UTMPNAME'.
39148
39149 2000-02-02  Jim Meyering  <meyering@lucent.com>
39150
39151         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
39152         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
39153         Reported by Eli Zaretskii.
39154
39155 2000-02-01  Jim Meyering  <meyering@lucent.com>
39156
39157         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
39158
39159 2000-01-31  Jim Meyering  <meyering@lucent.com>
39160
39161         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
39162         functions.  Add the time.h and sys/time.h headers along with the
39163         AC_REQUIRE'ment of AC_HEADER_TIME.
39164
39165 2000-01-31  Jim Meyering  <meyering@lucent.com>
39166
39167         * lib/nanosleep.h (nanosleep): Guard declaration with
39168         `#if ! HAVE_DECL_NANOSLEEP'.
39169         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
39170         the declaration in that vendor's sys/timers.h.
39171         Reported by Christian Krackowizer.
39172
39173         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
39174         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
39175         (ISPRINT): Likewise.
39176         Reported by Tom Tromey.
39177
39178 2000-01-30  Jim Meyering  <meyering@lucent.com>
39179
39180         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
39181
39182         * m4/prereq.m4 (utmp_includes): Define.
39183         Check for ut_user and ut_name members in both struct utmpx
39184         and struct utmp.
39185
39186 2000-01-30  Jim Meyering  <meyering@lucent.com>
39187
39188         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
39189         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
39190         header files where only utmpx.ut_user is declared.
39191
39192         * lib/readutmp.h (UT_USER): Define.
39193
39194 2000-01-29  Jim Meyering  <meyering@lucent.com>
39195
39196         * m4/lib-check.m4: New file containing library-related checks from
39197         fileutils and sh-utils (textutils had none).
39198
39199 2000-01-28  Jim Meyering  <meyering@lucent.com>
39200
39201         * m4/perl.m4: Change format of warning message to look more like that
39202         from the missing script.  Suggestion from François Pinard.
39203
39204 2000-01-25  Jim Meyering  <meyering@lucent.com>
39205
39206         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
39207         well as time.h in the compile check.
39208         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
39209         Fix typo in cross-compiling case: s/yes/no/.
39210
39211 2000-01-23  Jim Meyering  <meyering@lucent.com>
39212
39213         * m4/jm-macros.m4: Move df-related tests here from
39214         fileutils/configure.in
39215
39216         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
39217         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
39218
39219         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
39220         s/space/ac_fsusage_space/.
39221         (jm_FILE_SYSTEM_USAGE): Take two parameters.
39222
39223         * m4/ftruncate.m4: New file (derived from part of
39224         fileutils/configure.in).
39225         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
39226         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
39227
39228         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
39229         AC_SUBST these here, rather than just in sh-util/configure.in, so
39230         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
39231         all the same.
39232         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
39233         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
39234         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
39235         (AC_SUBST(POW_LIBM)): Likewise.
39236         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
39237
39238 2000-01-23  Jim Meyering  <meyering@lucent.com>
39239
39240         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
39241         obstack.c.
39242
39243 2000-01-22  Jim Meyering  <meyering@lucent.com>
39244
39245         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
39246
39247         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
39248
39249         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
39250         configure.in
39251         (AC_CHECK_HEADERS): Likewise for sh-utils.
39252         (AC_CHECK_HEADERS): Likewise for textutils.
39253         Merge the three lists of headers.
39254
39255         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
39256         from fileutils' configure.in.
39257
39258         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
39259         code. Moved tests into their own function (_jm_DECL_HEADERS) in
39260         check-decl.m4.
39261
39262         * m4/check-decl.m4: Use #if rather than #ifdef.
39263         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
39264         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
39265         (_jm_DECL_HEADERS): Define new function.
39266         (jm_CHECK_DECLARATIONS): Require it.
39267
39268 2000-01-22  Jim Meyering  <meyering@lucent.com>
39269
39270         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
39271         [! HAVE_DECL_STRTOULL]: Declare strtoull.
39272         Required for some AIX systems.  Reported by Christian Krackowizer.
39273         [TESTING] (main): New function.
39274
39275         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
39276         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
39277         letters.
39278
39279         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
39280         iswprint.
39281
39282         * lib/strverscmp.c (ISDIGIT): Define.
39283         (strverscmp): Use ISDIGIT, not isdigit.
39284
39285 2000-01-19  Jim Meyering  <meyering@lucent.com>
39286
39287         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
39288         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
39289         defines `struct timespec' in <sys/time.h>
39290
39291         * m4/c-bs-a.m4: Remove uses of changequote altogether.
39292         Thanks to Akim for explaining.
39293
39294 2000-01-17  Paul Eggert  <eggert@twinsun.com>
39295
39296         * lib/nanosleep.c (nanosleep):
39297         Don't use SA_INTERRUPT to decide whether to call sigaction, as
39298         POSIX.1 doesn't require SA_INTERRUPT and some systems
39299         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
39300         it's been part of POSIX.1 since day 1 (in 1988).
39301
39302 2000-01-17  Jim Meyering  <meyering@lucent.com>
39303
39304         * lib/interlock: Remove unused file.  Reported by François Pinard.
39305
39306 2000-01-16  Paul Eggert  <eggert@twinsun.com>
39307
39308         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
39309         alert, backslash, formfeed, and vertical tab unnecessarily in
39310         shell quoting style.
39311
39312 2000-01-16  Jim Meyering  <meyering@lucent.com>
39313
39314         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
39315         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
39316         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
39317         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
39318
39319 2000-01-16  Jim Meyering  <meyering@lucent.com>
39320
39321         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
39322         because the latter didn't work.
39323
39324 2000-01-15  Jim Meyering  <meyering@lucent.com>
39325
39326         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
39327         (AC_REPLACE_FUNCS): Add memcpy and memset.
39328         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
39329         Add strpbrk.
39330         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
39331
39332 2000-01-12  Jim Meyering  <meyering@lucent.com>
39333
39334         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
39335         (jm_PREREQ): Use it.
39336         (jm_PREREQ_READUTMP): New macro.
39337         (jm_PREREQ): Use it.
39338
39339 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39340
39341         Quote multibyte characters correctly.
39342         * m4/c-bs-a.m4: New file.
39343         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
39344         (jm_PREREQ): Use it.
39345
39346 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39347
39348         * m4/uintmax_t.m4: Port to autoconf 2.13.
39349
39350 2000-01-08  Jim Meyering  <meyering@ascend.com>
39351
39352         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
39353         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
39354
39355 2000-01-04  Jim Meyering  <meyering@ascend.com>
39356
39357         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
39358         jm_STRUCT_DIRENT_D_TYPE.
39359         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
39360         jm_STRUCT_DIRENT_D_INO.
39361         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
39362         jm_STRUCT_UTIMBUF.
39363         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
39364         renamings.
39365         * m4/utime.m4: Likewise.
39366
39367         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
39368         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
39369
39370 2000-01-03  Paul Eggert  <eggert@twinsun.com>
39371
39372         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
39373         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
39374
39375 2000-01-02  Jim Meyering  <meyering@ascend.com>
39376
39377         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
39378         remember if this is necessary.
39379
39380 1999-12-26  Jim Meyering  <meyering@ascend.com>
39381
39382         * m4/jm-macros.m4: Use it here.
39383         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
39384
39385 1999-12-23  Jim Meyering  <meyering@ascend.com>
39386
39387         * m4/jm-macros.m4: Check for clock_gettime (moved from
39388         fileutils/configure.in)
39389         Check for gettimeofday.
39390
39391 1999-12-20  Jim Meyering  <meyering@ascend.com>
39392
39393         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
39394         autoconf-2.14a-1999-12-20.
39395
39396 1999-12-19  Jim Meyering  <meyering@ascend.com>
39397
39398         * m4/lstat-slash.m4: New file.
39399         * m4/jm-macros.m4: Use the new macro:
39400         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39401
39402 1999-12-07  Jim Meyering  <meyering@ascend.com>
39403
39404         * m4/perl.m4: Require that File::Compare be available, too.
39405         Too many systems seem to lack it.
39406
39407         * m4/strftime.m4: Add checks for most of the cpp macros tested in
39408         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
39409
39410 1999-11-18  Paul Eggert  <eggert@twinsun.com>
39411
39412         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
39413         problem with the QNX 4.25 shell, which doesn't propagate exit
39414         status of failed commands inside shell assignments.
39415
39416 1999-11-17  Jim Meyering  <meyering@ascend.com>
39417
39418         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
39419
39420 1999-11-07  Jim Meyering  <meyering@ascend.com>
39421
39422         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
39423
39424 1999-11-06  Jim Meyering  <meyering@ascend.com>
39425
39426         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
39427         * m4/jm-macros.m4 (jm_MACROS): Use it here.
39428
39429 1999-11-05  Jim Meyering  <meyering@ascend.com>
39430
39431         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
39432         configure.in of textutils, fileutils, and sh-utils into this one
39433         (shared between those packages) file.
39434         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
39435         AC_STRUCT_ST_BLKSIZE.
39436
39437 1999-11-03  Jim Meyering  <meyering@ascend.com>
39438
39439         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
39440         of AC_CHECK_TYPE checks includes unistd.h.
39441         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
39442         Suggestion from Akim Demaille.
39443
39444 1999-10-30  Jim Meyering  <meyering@ascend.com>
39445
39446         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
39447         m4-quoted string.
39448         * m4/ls-mntd-fs.m4: Likewise.
39449         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
39450         * m4/jm-winsz1.m4: Likewise.
39451
39452         * m4/const.m4: Remove file, since the fix made it into the experimental
39453         version of autoconf.
39454         * m4/mktime.m4: Likewise.
39455
39456         * m4/check-type.m4: Remove file, now that the latest version of
39457         AC_CHECK_TYPE takes a third arg to specify additional #includes.
39458
39459         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
39460         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
39461         AC_CHECK_TYPE.
39462
39463 1999-10-04  Jim Meyering  <meyering@ascend.com>
39464
39465         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
39466
39467 1999-09-22  Paul Eggert  <eggert@twinsun.com>
39468
39469         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
39470         2.95.1 bug with HP-UX 10.20.
39471
39472 1999-09-17  Jim Meyering  <meyering@ascend.com>
39473
39474         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
39475         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
39476         due to missing strdup (against sh-utils-2.0).
39477
39478 1999-08-29  Jim Meyering  <meyering@ascend.com>
39479
39480         * m4/jm-macros.m4: Require jm_BISON.
39481         * m4/bison.m4: New file.
39482
39483 1999-08-17  Paul Eggert  <eggert@twinsun.com>
39484
39485         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
39486         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
39487
39488 1999-08-05  Jim Meyering  <meyering@ascend.com>
39489
39490         * m4/getline.m4: Rename test file from conftestdata to conftest.data
39491         to avoid conflicts with `conftest' on 8+3 filesystems.
39492         Suggestion from Eli Zaretskii.
39493
39494 1999-08-04  Jim Meyering  <meyering@ascend.com>
39495
39496         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
39497         fileutils and sh-utils (textutils's getline test was inadequate).
39498         (AM_FUNC_GETLINE): Run this test.
39499         (AC_CHECK_FUNCS): Check for getdelim.
39500         Reported by Bob Proulx.
39501
39502 1999-08-02  Jim Meyering  <meyering@ascend.com>
39503
39504         * m4/jm-macros.m4: Add a comment.
39505
39506 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39507
39508         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
39509         <inttypes.h> defines strtoumax as a macro (and not as a
39510         function).
39511
39512 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39513
39514         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
39515         that we can shift, multiply and divide unsigned long long
39516         values; Ultrix cc can't do it.
39517
39518 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39519
39520         * m4/mktime.m4: New file, which is a preview of what should appear
39521         in the next public autoconf release.
39522
39523 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39524
39525         * m4/lfs.m4: Remove this file.
39526         * m4/largefile.m4: New file.  It contains the old contents of
39527         lfs.m4, except that all names with prefix AC_LFS have been
39528         changed to use the prefix AC_SYS_LARGEFILE instead, to be
39529         compatible with future autoconf versions.  Also, some minor m4
39530         quoting problems have been fixed.
39531
39532 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39533
39534         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
39535         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
39536         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
39537         and simplify the shell code.
39538
39539 1999-08-01  Jim Meyering  <meyering@ascend.com>
39540
39541         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
39542         m4.
39543
39544 1999-07-20  Jim Meyering  <meyering@ascend.com>
39545
39546         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
39547
39548 1999-07-15  Jim Meyering  <meyering@ascend.com>
39549
39550         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
39551
39552 1999-05-22  Jim Meyering  <meyering@ascend.com>
39553
39554         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
39555
39556 1999-05-20  Jim Meyering  <meyering@ascend.com>
39557
39558         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
39559         Add a colon after each `then' in case $4 is empty.
39560
39561 1999-05-16  Jim Meyering  <meyering@ascend.com>
39562
39563         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
39564
39565 1999-05-10  Jim Meyering  <meyering@ascend.com>
39566
39567         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
39568
39569         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
39570         AC_FUNC_MKTIME.
39571
39572 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
39573
39574         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
39575
39576 1999-05-04  Paul Eggert  <eggert@twinsun.com>
39577
39578         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
39579         not CPPFLAGS, so that linking works correctly in IRIX.
39580
39581 1999-04-30  Paul Eggert  <eggert@twinsun.com>
39582
39583         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
39584
39585 1999-04-20  Paul Eggert  <eggert@twinsun.com>
39586
39587         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
39588         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
39589         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
39590         jm_AC_TYPE_UNSIGNED_LONG_LONG.
39591         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
39592
39593         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
39594
39595 1999-04-20  Jim Meyering  <meyering@ascend.com>
39596
39597         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
39598         AC_REPLACE xstroull if necessary.  From Paul Eggert.
39599         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
39600
39601 1999-04-18  Jim Meyering  <meyering@ascend.com>
39602
39603         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
39604         * m4/jm-macros.m4: Use it.
39605
39606 1999-04-06  Jim Meyering  <meyering@ascend.com>
39607
39608         * m4/strftime.m4: Remove test for %f.
39609
39610 1999-03-29  Jim Meyering  <meyering@ascend.com>
39611
39612         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
39613         superset of the AC_TYPE_* checks in the textutils, fileutils,
39614         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
39615         AC_TYPE_PID_T.
39616
39617 1999-03-28  Jim Meyering  <meyering@ascend.com>
39618
39619         * m4/jm-macros.m4: Define GNU_PACKAGE here.
39620         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
39621         replaced e.g., in the *.sh files of the sh-utils.
39622
39623 1999-03-20  Jim Meyering  <meyering@ascend.com>
39624
39625         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
39626         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
39627         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
39628
39629 1999-03-19  Jim Meyering  <meyering@ascend.com>
39630
39631         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
39632
39633 1999-03-12  Jim Meyering  <meyering@ascend.com>
39634
39635         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
39636
39637 1999-03-07  Jim Meyering  <meyering@ascend.com>
39638
39639         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
39640         declared.
39641
39642 1999-02-17  Jim Meyering  <meyering@ascend.com>
39643
39644         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
39645         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
39646
39647 1999-02-07  Jim Meyering  <meyering@ascend.com>
39648
39649         * m4/group-member.m4: New file -- extracted from sh-utils'
39650         configure.in.
39651
39652         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
39653         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
39654
39655 1999-02-06  Jim Meyering  <meyering@ascend.com>
39656
39657         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
39658         * m4/fnmatch.m4: Likewise.
39659         * m4/getgroups.m4: Likewise.
39660         * m4/lstat.m4: Likewise.
39661         * m4/malloc.m4: Likewise.
39662         * m4/putenv.m4: Likewise.
39663         * m4/realloc.m4: Likewise.
39664         * m4/regex.m4: Likewise.
39665         * m4/stat.m4: Likewise.
39666         * m4/strftime.m4: Likewise.
39667         Suggestion from Alain Magloire.
39668
39669         * m4/chown.m4: Use `.$ac_objext', not `.o'.
39670         * m4/fnmatch.m4: Likewise.
39671         * m4/getgroups.m4: Likewise.
39672         * m4/getline.m4: Likewise.
39673         * m4/lstat.m4: Likewise.
39674         * m4/malloc.m4: Likewise.
39675         * m4/memcmp.m4: Likewise.
39676         * m4/putenv.m4: Likewise.
39677         * m4/realloc.m4: Likewise.
39678         * m4/regex.m4: Likewise.
39679         * m4/stat.m4: Likewise.
39680         * m4/strftime.m4: Likewise.
39681         Suggestion from Alain Magloire.
39682
39683         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
39684         an argument.
39685
39686         * m4/regex.m4: Add a run-time Test for proper operation of
39687         re_compile_pattern.
39688
39689 1999-01-31  Jim Meyering  <meyering@ascend.com>
39690
39691         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
39692
39693 1999-01-30  Jim Meyering  <meyering@ascend.com>
39694
39695         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
39696
39697         * m4/jm-mktime.m4: Make this a wrapper around the official
39698         AM_FUNC_MKTIME rather than my private copy, now that the official one
39699         is up to date.
39700         * m4/mktime.m4: Remove file.
39701
39702         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
39703         * m4/uptime.m4: Likewise.
39704         * m4/uintmax_t.m4: Likewise.
39705
39706 1999-01-28  Jim Meyering  <meyering@ascend.com>
39707
39708         * m4/jm-macros.m4: Use jm_AFS.
39709         * m4/afs.m4: New file (from fileutils' configure.in).
39710
39711         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
39712         * m4/chown.m4: Likewise.
39713         * m4/d-ino.m4: Likewise.
39714         * m4/d-type.m4: Likewise.
39715         * m4/fnmatch.m4: Likewise.
39716         * m4/getgroups.m4: Likewise.
39717         * m4/gettext.m4: Likewise.
39718         * m4/jm-mktime.m4: Likewise.
39719         * m4/jm-winsz2.m4: Likewise.
39720         * m4/lcmessage.m4: Likewise.
39721         * m4/ls-mntd-fs.m4: Likewise.
39722         * m4/malloc.m4: Likewise.
39723         * m4/memcmp.m4: Likewise.
39724         * m4/putenv.m4: Likewise.
39725         * m4/realloc.m4: Likewise.
39726         * m4/st_mtim.m4: Likewise.
39727         * m4/strftime.m4: Likewise.
39728
39729 1999-01-16  Jim Meyering  <meyering@ascend.com>
39730
39731         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
39732         (ARGMATCH_DIE_DECL): Define.
39733
39734 1999-01-12  Jim Meyering  <meyering@ascend.com>
39735
39736         * m4/Makefile.am.in: Rewrite to avoid using fmt.
39737         Reported by Lars Hecking.
39738
39739 1999-01-10  Jim Meyering  <meyering@ascend.com>
39740
39741         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
39742         gross kludge.
39743         * m4/inttypes_h.m4: Likewise.
39744         * m4/lstat.m4: Likewise.
39745         * m4/malloc.m4: Likewise.
39746         * m4/readdir.m4: Likewise.
39747         * m4/realloc.m4: Likewise.
39748         * m4/st_dm_mode.m4: Likewise.
39749         * m4/stat.m4: Likewise.
39750         * m4/utimbuf.m4: Likewise.
39751         * m4/utimes.m4: Likewise.
39752
39753         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
39754         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
39755         comments in config.h.in are meaningful.
39756
39757         * m4/jm-macros.m4: Require autoconf-2.13 here.
39758
39759         * m4/regex.m4: By default, don't use the included regex.c on systems
39760         with glibc 2.  Suggestion from Uli Drepper.
39761
39762 1999-01-02  Jim Meyering  <meyering@ascend.com>
39763
39764         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
39765
39766 1998-12-18  Jim Meyering  <meyering@ascend.com>
39767
39768         * m4/Makefile.am.in (Makefile.am): Simplify rule.
39769         Based on a suggestion from Lars Hecking.
39770
39771 1998-11-16  Paul Eggert  <eggert@twinsun.com>
39772
39773         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
39774
39775 1998-11-16  Jim Meyering  <meyering@ascend.com>
39776
39777         * m4/lfs.m4: Double-quote the `uname...` expression.
39778
39779 1998-11-14  Jim Meyering  <meyering@ascend.com>
39780
39781         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
39782         * m4/stat.m4: Likewise.
39783
39784 1998-11-03  Jim Meyering  <meyering@ascend.com>
39785
39786         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
39787         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
39788
39789 1998-10-18  Jim Meyering  <meyering@ascend.com>
39790
39791         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
39792
39793 1998-10-17  Jim Meyering  <meyering@ascend.com>
39794
39795         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
39796         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
39797         calls for those previously hard-coded headers.  Instead, take a new
39798         parameter.
39799         (jm_CHECK_DECLARATIONS): Reflect interface change.
39800         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
39801         (jm_CHECK_DECL_LOCALTIME_R): New macro.
39802
39803         * m4/mktime.m4: Test for spring-forward gap before long-running test.
39804
39805 1998-10-14  Jim Meyering  <meyering@ascend.com>
39806
39807         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
39808         instead of "TZ=America/Vancouver".  From Paul Eggert.
39809
39810 1998-10-11  Jim Meyering  <meyering@ascend.com>
39811
39812         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
39813         This adds a test for a recently added compatibility fix for mktime.c.
39814         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
39815
39816 1998-09-27  Jim Meyering  <meyering@ascend.com>
39817
39818         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
39819
39820         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
39821         ../configure.in, including a change from Gordon Matzigkeit to allow
39822         cross-compiling for the Hurd.
39823
39824         * m4/glibc.m4: New file/macro to test for the GNU C Library
39825         versions 1 and 2.  From Gordon Matzigkeit.
39826         Indent.
39827
39828 1998-09-21  Jim Meyering  <meyering@ascend.com>
39829
39830         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
39831
39832 1998-08-18  Paul Eggert  <eggert@twinsun.com>
39833
39834         Port nanosecond-resolution times to UnixWare 2.1.2 and
39835         pedantic Solaris 2.6.
39836
39837         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
39838         AC_STRUCT_ST_MTIM.
39839         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
39840         Generate name of ns member, instead of just 1 or undef.
39841         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
39842
39843 1998-08-15  Jim Meyering  <meyering@ascend.com>
39844
39845         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
39846         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
39847         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
39848         instead of jm_TYPE_SSIZE_T.
39849
39850 1998-08-12  Jim Meyering  <meyering@ascend.com>
39851
39852         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
39853
39854 1998-08-02  Jim Meyering  <meyering@ascend.com>
39855
39856         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
39857         in acconfig.h manually.
39858
39859 1998-07-31  Paul Eggert  <eggert@twinsun.com>
39860
39861         * m4/st_mtim.m4: New file.
39862
39863 1998-07-28  Jim Meyering  <meyering@ascend.com>
39864
39865         * m4/utimes.m4: Undef stat.
39866
39867 1998-07-25  Jim Meyering  <meyering@ascend.com>
39868
39869         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
39870         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
39871
39872 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
39873
39874         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
39875         uid and gid actually remain unchanged.
39876
39877 1998-07-07  Jim Meyering  <meyering@ascend.com>
39878
39879         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
39880
39881 1998-07-04  Jim Meyering  <meyering@ascend.com>
39882
39883         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
39884         to prove that this macro can be used in packages without regex.c.
39885
39886 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
39887
39888         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
39889         is to be used.
39890
39891 1998-07-03  Jim Meyering  <meyering@ascend.com>
39892
39893         * m4/gettext.m4: Add -lintl if it's found to be necessary.
39894
39895         * m4/gettext.m4: New file -- from gettext-0.10.35.
39896         * m4/lcmessage.m4: Likewise.
39897         * m4/progtest.m4: Likewise.
39898
39899         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
39900         * m4/jm-macros.m4: Require the new macro.
39901
39902 1998-06-29  Jim Meyering  <meyering@ascend.com>
39903
39904         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
39905         for the definition of NGROUPS (used in a system header included
39906         by sys/mount.h).
39907
39908 1998-06-28  Jim Meyering  <meyering@ascend.com>
39909
39910         * m4/ls-mntd-fs.m4: New file.
39911         * m4/fstypename.m4: New file.
39912
39913         * m4/jm-macros.m4: Require the new macro.
39914         * m4/jm-glibc-io.m4: New file.
39915
39916 1998-05-19  Jim Meyering  <meyering@ascend.com>
39917
39918         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
39919         * m4/lchown.m4: New file.
39920
39921         * m4/Makefile.am.in: New file.
39922         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
39923
39924 1998-05-14  Jim Meyering  <meyering@ascend.com>
39925
39926         * m4/Makefile.am (EXTRA_DIST): Add them.
39927         * m4/jm-macros.m4: New file.
39928         * m4/utimbuf.m4: New file.
39929
39930 1998-05-12  Jim Meyering  <meyering@ascend.com>
39931
39932         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
39933
39934 1998-05-11  Jim Meyering  <meyering@ascend.com>
39935
39936         * m4/isc-posix.m4: New file.
39937
39938 1998-05-10  Jim Meyering  <meyering@ascend.com>
39939
39940         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
39941
39942 1998-05-09  Jim Meyering  <meyering@ascend.com>
39943
39944         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
39945         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
39946         with automake.
39947
39948         * m4/ssize_t.m4: New file.
39949         * m4/mktime.m4: Remove file -- the new automake has this now.
39950
39951 1998-04-26  Jim Meyering  <meyering@ascend.com>
39952
39953         * m4/assert.m4: New file.
39954         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
39955
39956 1998-04-05  Jim Meyering  <meyering@ascend.com>
39957
39958         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
39959         (jm_PREREQ): Use it here.
39960
39961 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
39962
39963         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
39964         in acconfig.h.
39965
39966 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
39967
39968         * m4/prereq.m4: New file.
39969         * m4/error.m4: New file.
39970         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
39971
39972 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
39973
39974         * m4/getline.m4: Don't set am_cv_func_working_getline before the
39975         cache-check for the same variable -- that defeated the purpose of
39976         the test; the test program was never run.  This was a problem only
39977         on systems with losing getline functions -- HP-UX 10.20 is one.
39978         Reported by Bjorn Helgaas.
39979
39980 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
39981
39982         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
39983
39984 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
39985
39986         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
39987
39988         * m4/const.m4: New file.  Use an initializer in this declaration
39989         typedef int charset[2]; const charset x;
39990         Reported by Bob Glickstein.
39991
39992 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
39993
39994         * m4/chown.m4: Fix reversed types on -1 args to chown.
39995         From Kaveh Ghazi.
39996
39997 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
39998
39999         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
40000         Add lseek and memchr.
40001
40002         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
40003         T.E.Dickey <dickey@clark.net> said that some older preprocessors
40004         have a 20-character limit on names.
40005
40006 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
40007
40008         * m4/inttypes_h.m4: New file.
40009         * m4/uintmax_t.m4: New file.
40010         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
40011
40012
40013         -----
40014
40015         Copyright (C) 1997-2008 Free Software Foundation, Inc.
40016
40017         Copying and distribution of this file, with or without
40018         modification, are permitted provided the copyright notice
40019         and this notice are preserved.